diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-03-07 08:43:25 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-03-07 08:43:25 -0500 |
commit | c1aed2c62f32976b60e4036cbc284fb129f8a7e1 (patch) | |
tree | 6d3831fe7e24532a3cbde646d8d0ed65e2f8277d /include/world.h | |
parent | 0a06697db87063b77b71388278933807899568ef (diff) |
arenas, player lighting
Diffstat (limited to 'include/world.h')
-rw-r--r-- | include/world.h | 72 |
1 files changed, 65 insertions, 7 deletions
diff --git a/include/world.h b/include/world.h index 825d83d..a60eab6 100644 --- a/include/world.h +++ b/include/world.h @@ -68,6 +68,20 @@ typedef struct { unsigned char groundColor; } WorldData; +/** + * A value used by World::draw() for shading, ranges from -50 to 50 depending + * on the current time of day. + */ + +extern int worldShade; + +/** + * The path to the currently loaded XML file. + */ + +extern std::string currentXML; + +// prototype so Village can reference it class World; /** @@ -293,6 +307,11 @@ public: */ void addNPC(float x,float y); + + /** + * Adds a Merchant to the world at the specified coordinates. + */ + void addMerchant(float x, float y); /** @@ -413,7 +432,7 @@ public: }; /* - * IndoorWorld - Indoor settings stored in a World class ;) + * IndoorWorld - Indoor settings stored in a World class */ class IndoorWorld : public World { @@ -425,19 +444,58 @@ public: void draw(Player *p); // Draws the world (ignores layers) }; +/** + * The arena class - creates an arena. + * + * This world, when created, expects a pointer to a Mob. This mob will be + * transported to a temporary world with the player, and the Mob will be + * killed upon exiting the arena. + */ + class Arena : public World { private: - Mob *mmob; + + /** + * The mob that the player is fighting. + */ + + Mob *mmob; + public: - Arena(World *leave,Player *p,Mob *m); - ~Arena(void); - World *exitArena(Player *p); + + /** + * Creates a world with the player and mob, returning the player to the + * world `leave` upon exit. + */ + + Arena( World *leave, Player *p, Mob *m ); + + /** + * Frees resources taken by the arena. + */ + + ~Arena( void ); + + /** + * Attempts to exit the world, returning the player to the world they were + * last in. + */ + + World *exitArena( Player *p ); }; -extern int worldShade; -extern std::string currentXML; +/** + * Loads the player into the world created by the given XML file. If a world is + * already loaded it will be saved before the transition is made. + */ World *loadWorldFromXML(std::string path); + +/** + * Loads the player into the XML-scripted world, but does not save data from the + * previous world if one was loaded. + */ + World *loadWorldFromXMLNoSave(std::string path); #endif // WORLD_H |