So I'm having trouble with a simple RTS design.
Basically I want to have a Model and a Controller, where people can program their own AI's to play the game, so I need some form of Interface that sits between the Model and the Controller that allows the Players to control their units without being able to 'set' things in the unit like a units stats.
So I figured to reduce code re-use I'd use a hierarchical structure for creating a unit that does different things in OO:
Player Owned Object -> Object with Stats (health, attack) -> Object that can Attack -> Object that can move -> Unit
So a unit is an object that: is player owned, has stats, can attack, and can move
My problem is this: How do I create some form of interface that works with all this inheritence? So that the interface returns stats if the object inherits 'Object with Stats' as well as the other 'attributes' of the unit. Is it possible with this kind of inheritence? or should I be doing this a different way?
I hope that makes sense! Thanks