SFML community forums
Help => General => Topic started by: julen26 on January 18, 2012, 06:17:08 pm
-
I'm implementing my own collision sistem with collision shapes, and I'm using sf::ConvexShape, sf::CircleShape and own clases for this.
I use a vector to hold all shapes and then check for collision. So I use a base class type, CollisionShape.
std::vector<CollisionShape*> m_shapeList;
I have my own shape classes like Box, Circle, Polygon... and some of them inherit sf::ConvexShape and use its methods. I have something like this.
(http://img267.imageshack.us/img267/7471/sinttulowsm.png)
Note that there are more shapes inheriting CollisionShape class.
I have a problem when I do this:
Polygon* polygon = new Polygon();
addShape(polygon);
...
void addShape( CollisionShape* shape )
{
shape->SetOutlineColor(...); <----------------------
m_shapeList.push_back(shape);
}
I can't use sf::ConvexShape 's methods, so I could change CollisionShape pointer to sf::ConvexShape pointer. But I have more shapes inheriting other classes (a.s.a sf::CircleShape).
Any OOP idea for solving this? A better design?
Hope someone can understand my problem,
Thanks!
-
If you insist on going the inheritence route, why not use sf::Shape instead?
Additionally, are you sure it isn't a HasA relationship in that CollisionShape HasA Shape, not IsA shape, meaning you can implement the relationship as a member, preferably a templated one, if the signatures are consistent enough.
-
If all your shape classes inherit from a sf::Shape class, you can cross-cast with dynamic_cast, but I don't know if cross-casting is good design-wise (never used it myself). I guess it's as bad as down-casting.
Transforming public inheritance to composition might be a good solution, if your public API doesn't depend too much on SFML shape's API.
-
Yes, that's a nice solution. I wanted to know your opinions, so I'll try to implement the shape as a member for now. In fact, I wanted to avoid the use of multiple inheritance.
Thank you very much!