C#: Inheritence, Overriding, and Hiding
Posted
by Rosarch
on Stack Overflow
See other posts from Stack Overflow
or by Rosarch
Published on 2010-04-08T02:39:49Z
Indexed on
2010/04/08
2:43 UTC
Read the original article
Hit count: 409
I'm having difficulty with an architectural decision for my C# XNA game.
The basic entity in the world, such as a tree, zombie, or the player, is represented as a GameObject. Each GameObject is composed of at least a GameObjectController
, GameObjectModel
, and GameObjectView
.
These three are enough for simple entities, like inanimate trees or rocks. However, as I try to keep the functionality as factored out as possible, the inheritance begins to feel unwieldy. Syntactically, I'm not even sure how best to accomplish my goals.
Here is the GameObjectController
:
public class GameObjectController
{
protected GameObjectModel model;
protected GameObjectView view;
public GameObjectController(GameObjectManager gameObjectManager)
{
this.gameObjectManager = gameObjectManager;
model = new GameObjectModel(this);
view = new GameObjectView(this);
}
public GameObjectManager GameObjectManager
{
get
{
return gameObjectManager;
}
}
public virtual GameObjectView View
{
get
{
return view;
}
}
public virtual GameObjectModel Model
{
get
{
return model;
}
}
public virtual void Update(long tick)
{
}
}
I want to specify that each subclass of GameObjectController
will have accessible at least a GameObjectView
and GameObjectModel
. If subclasses are fine using those classes, but perhaps are overriding for a more sophisticated Update()
method, I don't want them to have to duplicate the code to produce those dependencies. So, the GameObjectController
constructor sets those objects up.
However, some objects do want to override the model and view. This is where the trouble comes in.
Some objects need to fight, so they are CombatantGameObjects
:
public class CombatantGameObject : GameObjectController
{
protected new readonly CombatantGameModel model;
public new virtual CombatantGameModel Model
{
get { return model; }
}
protected readonly CombatEngine combatEngine;
public CombatantGameObject(GameObjectManager gameObjectManager, CombatEngine combatEngine)
: base(gameObjectManager)
{
model = new CombatantGameModel(this);
this.combatEngine = combatEngine;
}
public override void Update(long tick)
{
if (model.Health <= 0)
{
gameObjectManager.RemoveFromWorld(this);
}
base.Update(tick);
}
}
Still pretty simple. Is my use of new
to hide instance variables correct? Note that I'm assigning CombatantObjectController.model
here, even though GameObjectController.Model
was already set. And, combatants don't need any special view functionality, so they leave GameObjectController.View
alone.
Then I get down to the PlayerController
, at which a bug is found.
public class PlayerController : CombatantGameObject
{
private readonly IInputReader inputReader;
private new readonly PlayerModel model;
public new PlayerModel Model
{
get { return model; }
}
private float lastInventoryIndexAt;
private float lastThrowAt;
public PlayerController(GameObjectManager gameObjectManager, IInputReader inputReader, CombatEngine combatEngine)
: base(gameObjectManager, combatEngine)
{
this.inputReader = inputReader;
model = new PlayerModel(this);
Model.Health = Constants.PLAYER_HEALTH;
}
public override void Update(long tick)
{
if (Model.Health <= 0)
{
gameObjectManager.RemoveFromWorld(this);
for (int i = 0; i < 10; i++)
{
Debug.WriteLine("YOU DEAD SON!!!");
}
return;
}
UpdateFromInput(tick);
// ....
}
}
The first time that this line is executed, I get a null reference exception:
model.Body.ApplyImpulse(movementImpulse, model.Position);
model.Position
looks at model.Body
, which is null.
This is a function that initializes GameObjects before they are deployed into the world:
public void Initialize(GameObjectController controller, IDictionary<string, string> data, WorldState worldState)
{
controller.View.read(data);
controller.View.createSpriteAnimations(data, _assets);
controller.Model.read(data);
SetUpPhysics(controller,
worldState,
controller.Model.BoundingCircleRadius,
Single.Parse(data["x"]),
Single.Parse(data["y"]), bool.Parse(data["isBullet"]));
}
Every object is passed as a GameObjectController
. Does that mean that if the object is really a PlayerController
, controller.Model
will refer to the base's GameObjectModel
and not the PlayerController
's overriden PlayerObjectModel
?
© Stack Overflow or respective owner