X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=universe.cc;h=4a2e4f9e1189a8d4921c853a316d477a56686e8b;hb=a014985119307fe97a26f33a98c9c5d7b99f09f2;hp=8d8aa7157a7d58a542dab1de11cc4356f3d36dcf;hpb=ba46b057f3e2613a86f2dea7fa8022990482c735;p=universe.git diff --git a/universe.cc b/universe.cc index 8d8aa71..4a2e4f9 100644 --- a/universe.cc +++ b/universe.cc @@ -1,35 +1,26 @@ -//////////////////////////////////////////////////////////////////////////////// -// This program is free software; you can redistribute it and/or // -// modify it under the terms of the GNU General Public License // -// version 2 as published by the Free Software Foundation. // -// // -// This program is distributed in the hope that it will be useful, but // -// WITHOUT ANY WARRANTY; without even the implied warranty of // -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // -// General Public License for more details. // -// // -// Written and (C) by François Fleuret // -// Contact for comments & bug reports // -//////////////////////////////////////////////////////////////////////////////// - -// $Id: universe.cc,v 1.88 2007-06-16 13:51:54 fleuret Exp $ +// Written and (C) by Francois Fleuret +// Contact for comments & bug reports + +#include #include "universe.h" Universe::Universe(int nb_max_polygons, - scalar_t xmax, scalar_t ymax) : _xmax(xmax), _ymax(ymax), - _nb_max_polygons(nb_max_polygons), _nb_polygons(0) { + scalar_t width, scalar_t height) : _width(width), + _height(height), + _nb_max_polygons(nb_max_polygons), + _nb_polygons(0) { _polygons = new Polygon *[_nb_max_polygons]; for(int n = 0; n < _nb_max_polygons; n++) _polygons[n] = 0; } Universe::~Universe() { - for(int n = 0; n < _nb_polygons; n++) if(_polygons[n]) delete _polygons[n]; + clear(); delete[] _polygons; } -void Universe::initialize(Polygon *p) { +void Universe::initialize_polygon(Polygon *p) { p->initialize(_nb_max_polygons); } @@ -46,7 +37,7 @@ void Universe::add_polygon(Polygon *p) { } _polygons[_nb_polygons++] = p; } else { - cerr << "To many polygons!" << endl; + cerr << "Too many polygons!" << endl; exit(1); } } @@ -115,7 +106,7 @@ bool Universe::update(scalar_t dt) { bool result = false; apply_collision_forces(dt); for(int n = 0; n < _nb_polygons; n++) if(_polygons[n]) { - _polygons[n]->apply_border_forces(dt, _xmax, _ymax); + _polygons[n]->apply_border_forces(dt, _width, _height); result |= _polygons[n]->update(dt); } return result; @@ -127,22 +118,49 @@ Polygon *Universe::pick_polygon(scalar_t x, scalar_t y) { return 0; } -void Universe::print_fig(ostream &os) { - os << "#FIG 3.2" << endl; - os << "Portrait" << endl; - os << "Center" << endl; - os << "Metric" << endl; - os << "A4 " << endl; - os << "100.00" << endl; - os << "Single" << endl; - os << "-2" << endl; - os << "1200 2" << endl; - for(int n = 0; n < _nb_polygons; n++) if(_polygons[n]) _polygons[n]->print_fig(os); +#ifdef XFIG_SUPPORT +void Universe::print_xfig(XFigTracer *tracer) { + for(int n = 0; n < _nb_polygons; n++) { + if(_polygons[n]) { + _polygons[n]->color_xfig(tracer); + } + } + for(int n = 0; n < _nb_polygons; n++) { + if(_polygons[n]) { + _polygons[n]->print_xfig(tracer); + } + } } +#endif +#ifdef X11_SUPPORT void Universe::draw(SimpleWindow *window) { - for(int n = 0; n < _nb_polygons; n++) if(_polygons[n]) _polygons[n]->draw(window); - for(int n = 0; n < _nb_polygons; n++) if(_polygons[n]) _polygons[n]->draw_contours(window); + for(int n = 0; n < _nb_polygons; n++) { + if(_polygons[n]) { + _polygons[n]->draw(window); + } + } + + for(int n = 0; n < _nb_polygons; n++) { + if(_polygons[n]) { + _polygons[n]->draw_contours(window); + } + } +} +#endif + +void Universe::draw(Canvas *canvas) { + for(int n = 0; n < _nb_polygons; n++) { + if(_polygons[n]) { + _polygons[n]->draw(canvas); + } + } + + for(int n = 0; n < _nb_polygons; n++) { + if(_polygons[n]) { + _polygons[n]->draw_contours(canvas); + } + } } void Universe::apply_collision_forces(scalar_t dt) {