I want to load game objects from definition files (XMLs) and then just create them in game with prepared properties (like weapon, textures, max. speed, range of sight etc.). I thought of IClonable interface but it seems very weird. Also I need to differentiate between Units (soldiers, vehicles maybe aircrafts) and Buildings.
|
|
|||||||
|
|
|
Don't implement I think what you want is the Factory Pattern. |
||
|
|
|
|
Sounds like you want a general factory that can call a specific factory. The generic factory takes the definition file and determines the object's generic type "weapon, unit, building". Then it passes the DOM tree to a specific factory for that type. The weapon factory knows how to construct all the different weapons in the system. And it passes the DOM tree to the weapon's constructor so all the details are available to the constructor. How you write these factories is dependent on what your XML looks like and how "automated" you really want it to be. You need to provide more specifics to get a more specific answer. EDIT: Now I get it. You want to use the XML files as a template for future object creation. You want a generic "vehicle" object. You load the XML file for "helicopter" and it creates a new "class" of "vehicle" without actually creating a class, right? So, you create a vehicle "class" which all vehicles descend from. Then you create a vehicle template "class" which all templates descend from. The XML is used to instantiate a template class. The template class issed to instantiate the actual object.
Obviously that's not runnable code but it should get your started. I don't know how you are going to get these objects to behave differently, but that should solve your loading problem. Perhaps you need a duck-typed language where you can add methods to the objects at runtime. |
||||||||
|
