X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fworldmap.h;h=f44ba506064c68736cfd0c97da02bd06a50adbd0;hb=546364c9567ef212ea9276201facf73f5ada696a;hp=10b86d7fb6c21cf36384adf22cb3eebd1c82ef3d;hpb=331ddd57535dd0e1aa5bb9595e8b22a5e8c59629;p=supertux.git diff --git a/src/worldmap.h b/src/worldmap.h index 10b86d7fb..f44ba5060 100644 --- a/src/worldmap.h +++ b/src/worldmap.h @@ -26,6 +26,8 @@ #include "math/vector.h" #include "audio/musicref.h" #include "video/screen.h" +#include "statistics.h" +#include "special/timer.h" extern Menu* worldmap_menu; @@ -36,13 +38,25 @@ enum WorldMapMenuIDs { MNID_QUITWORLDMAP }; +// For one way tiles +enum { + BOTH_WAYS, + NORTH_SOUTH_WAY, + SOUTH_NORTH_WAY, + EAST_WEST_WAY, + WEST_EAST_WAY + }; + class Tile { public: Tile(); ~Tile(); - - Surface* sprite; + + void draw(DrawingContext& context, Vector pos); + + std::vector images; + int anim_speed; // Directions in which Tux is allowed to walk from this tile bool north; @@ -50,6 +64,9 @@ public: bool south; bool west; + /** One way tile */ + int one_way; + /** Stop on this tile or walk over it? */ bool stop; @@ -124,6 +141,7 @@ private: Surface* leveldot_green; Surface* leveldot_red; Surface* messagedot; + Surface* teleporterdot; std::string name; std::string music; @@ -140,12 +158,38 @@ private: public: struct SpecialTile { - int x; - int y; - std::string level_name; + Vector pos; + + /** Optional flags: */ + + /** Position to swap to player */ + Vector teleport_dest; + + /** Message to show in the Map */ + std::string map_message; + bool passive_message; + + /** Hide special tile */ + bool invisible; + + /** Only applies actions (ie. passive messages) when going to that direction */ + bool apply_action_north; + bool apply_action_east; + bool apply_action_south; + bool apply_action_west; + }; + + struct Level + { + Vector pos; + + std::string name; std::string title; bool solved; + /** Statistics for level tiles */ + Statistics statistics; + /** Optional flags: */ /** Check if this level should be vertically flipped */ @@ -155,13 +199,6 @@ public: successfully completed */ std::string extro_filename; - /** Position to swap player */ - int swap_x, swap_y; - - /** Message to show in the Map */ - std::string display_map_message; - bool passive_message; - /** Go to this world */ std::string next_worldmap; @@ -188,6 +225,9 @@ private: typedef std::vector SpecialTiles; SpecialTiles special_tiles; + typedef std::vector Levels; + Levels levels; + MusicRef song; bool enter_level; @@ -195,9 +235,17 @@ private: Vector offset; std::string savegame_file; - void get_level_title(SpecialTile& special_tile); + void get_level_title(Level& level); void draw_status(DrawingContext& context); + + // to avoid calculating total stats all the time. This way only + // when need, it is calculated. + Statistics total_stats; + void calculate_total_stats(); + + Timer frame_timer; + public: WorldMap(); ~WorldMap(); @@ -217,6 +265,8 @@ public: Vector get_next_tile(Vector pos, Direction direction); Tile* at(Vector pos); + + WorldMap::Level* at_level(); WorldMap::SpecialTile* at_special_tile(); /** Check if it is possible to walk from \a pos into \a direction, @@ -225,7 +275,8 @@ public: /* Save map to slot */ void savegame(const std::string& filename); - /* Load map from slot */ + /* Load map from slot + You should call set_map_filename() before this */ void loadgame(const std::string& filename); /* Load map directly from file */ void loadmap(const std::string& filename); @@ -239,6 +290,9 @@ public: const int& get_start_y() const { return start_y; } + void set_map_filename(std::string filename) + { map_filename = filename; } + private: void on_escape_press(); };