Difference between revisions of "Entity Functions"
From theFarWilds
Line 25: | Line 25: | ||
bool '''isType'''( int type ); | bool '''isType'''( int type ); | ||
− | // Types: | + | // Types: CREATURE=1, BUILDING=2, ENCHANTMENT=3, ITEM=4, MARKER(Corpse,Flux Well,Ruin)=5, WORLD_ENCHANT=6 |
Location '''getLoc'''(); | Location '''getLoc'''(); |
Revision as of 16:06, 5 April 2010
Each entity object represents a creature, building, enchantment, corpse, or ruin. Collectively, these objects define the current game state.
Constructors
Entity createEntity( string cardName, int x_coord, int y_coord, Player controller ); Entity createEntity( string cardName, Location loc, Player controller ); Entity createEntity( string cardName, Location loc );
See also getFigure( Location loc ).
Methods
bool isValid(); // check to see if entity was created successfully bool doesExist(); // check to see if entity has been removed
string getName(); Player getController(); void setController( Player controller ); bool isType( int type ); // Types: CREATURE=1, BUILDING=2, ENCHANTMENT=3, ITEM=4, MARKER(Corpse,Flux Well,Ruin)=5, WORLD_ENCHANT=6 Location getLoc(); bool moveEntity( Location ); // returns false if unsuccessful (e.g., trying to move figure into occupied location) void remove(); void destroy(); void sacrifice(); void setDim( bool dimOrNot ); bool isDim();