(https://i.imgur.com/3gh7y6P.jpg)
I want to access to the rectangle/convex/circle methods in my sGameObject, dGameObjects or Player class but i dont know how, because my current class sGameObject just have a Shape {get;set;} so i can create for example a sGameObject doing this:
RectangleShape rectangleShape
= new RectangleShape
(new Vector2f
(50f,50f
));SGameObject box
= new SGameObject
();box
.Shape = rectangleShape
;//but i cant access to the RectangleShape methodsbox
.RectangleShape.getSize(); // error
I don't think your inheritance flow makes sense.
Is it possible that a "dynamic game object" that "can move" is a "static game object" that "can't move"?
I honestly think it needs some more careful thought.
Anyway, from the shapes to Shape and back, you can cast. Just be really careful to make sure that they are the thing you are casting them to/from.
For example:
sf::RectangleShape* rectangle = new sf::Rectangle;
sf::Shape* shape = dynamic_cast<sf::Shape*>(rectangle);
// ...
sf::RectangleShape* thatRectangle = dynamic_cast<sf::RectangleShape*>(shape);
That's untested. It's also a pretty volatile system :P