X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FEntities%2FPolygon.cpp;h=4b3826e68f06b014feaf0c08bb6ff895e004ea5d;hb=88085362ef3590bdbae3fb4bf25796c84582cc73;hp=6b272bdaa44e45ffa2f7ca69625f0bb3fd856a08;hpb=ad9f1fb6bdfc51df61a7fb52d607ca0c0bceca4c;p=physics.git diff --git a/src/Entities/Polygon.cpp b/src/Entities/Polygon.cpp index 6b272bd..4b3826e 100644 --- a/src/Entities/Polygon.cpp +++ b/src/Entities/Polygon.cpp @@ -1,24 +1,70 @@ +/* + * Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * 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. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include "Polygon.h" -#include "../Vector2.h" -/// ***** Public Class Methods ***** -Polygon::Polygon(Vector2 pos, vector points) - : PhysicsEntity(pos), points(points) +#include +#include +using namespace bear; + +#include "graphics/graphics.h" + + +/// ***** Constructors/Destructors ***** + +Polygon::Polygon(const vector& points, const float* color) + : PhysicsEntity(Vector2(0,0)), points(points), color(color) { - CreateBindingBox(); + DASSERT(0 < points.size()); + + createBindingBox(); + centerPosition(); } Polygon::~Polygon() { } +/// ***** Public Class Methods ***** + void Polygon::draw() const { - // TODO + graphics::drawPolygon(points, color); } /// ***** Private Class Methods ***** -void CreateBindingBox() +void Polygon::createBindingBox() +{ + DASSERT(0 < points.size()); + + maxP = points.at(0); + minP = points.at(0); + + for(unsigned int i=1; i maxP.m_fX) maxP.m_fX = points[i].m_fX; + + if(points[i].m_fY < minP.m_fY) minP.m_fY = points[i].m_fY; + else if(points[i].m_fY > maxP.m_fY) maxP.m_fY = points[i].m_fY; + } +} + +void Polygon::centerPosition() { // TODO }