X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fworldmap.h;h=8c19d74c27e3e1b537c3e26365fd831c74a604f3;hb=d471366f1ac5e8fad47e6ce161edc4977f180704;hp=4bf2b69ceb96071c1a84e5dd312df9fd47d86ef7;hpb=6e843b1780f62f45b7021bd8c38181aa211588ee;p=supertux.git diff --git a/src/worldmap.h b/src/worldmap.h index 4bf2b69ce..8c19d74c2 100644 --- a/src/worldmap.h +++ b/src/worldmap.h @@ -25,13 +25,14 @@ #include "math/vector.h" #include "audio/musicref.h" #include "video/screen.h" +#include "lisp/lisp.h" +#include "control/controller.h" #include "statistics.h" #include "timer.h" +#include "tile_manager.h" -namespace SuperTux { - class Menu; -} - +class Sprite; +class Menu; extern Menu* worldmap_menu; namespace WorldMapNS { @@ -39,7 +40,7 @@ namespace WorldMapNS { enum WorldMapMenuIDs { MNID_RETURNWORLDMAP, MNID_QUITWORLDMAP - }; +}; // For one way tiles enum { @@ -48,47 +49,6 @@ enum { SOUTH_NORTH_WAY, EAST_WEST_WAY, WEST_EAST_WAY - }; - -class Tile -{ -public: - Tile(); - ~Tile(); - - void draw(DrawingContext& context, Vector pos); - - std::vector images; - float anim_fps; - - // Directions in which Tux is allowed to walk from this tile - bool north; - bool east; - bool south; - bool west; - - /** One way tile */ - int one_way; - - /** Stop on this tile or walk over it? */ - bool stop; - - /** When set automatically turn directions when walked over such a - tile (ie. walk smoothly a curve) */ - bool auto_walk; -}; - -class TileManager -{ -private: - typedef std::vector Tiles; - Tiles tiles; - -public: - TileManager(); - ~TileManager(); - - Tile* get(int i); }; enum Direction { D_NONE, D_WEST, D_EAST, D_NORTH, D_SOUTH }; @@ -105,9 +65,8 @@ public: Direction back_direction; private: WorldMap* worldmap; - Surface* largetux_sprite; - Surface* firetux_sprite; - Surface* smalltux_sprite; + Sprite* tux_sprite; + Controller* controller; Direction input_direction; Direction direction; @@ -122,7 +81,7 @@ public: Tux(WorldMap* worldmap_); ~Tux(); - void draw(DrawingContext& context, const Vector& offset); + void draw(DrawingContext& context); void action(float elapsed_time); void set_direction(Direction dir); @@ -219,11 +178,12 @@ public: }; /** Variables to deal with the passive map messages */ - Timer2 passive_message_timer; + Timer passive_message_timer; std::string passive_message; private: std::string map_filename; + std::string levels_path; typedef std::vector SpecialTiles; SpecialTiles special_tiles; @@ -233,10 +193,11 @@ private: MusicRef song; - bool enter_level; - Vector offset; std::string savegame_file; + + std::string intro_filename; + bool intro_displayed; void get_level_title(Level& level); @@ -262,10 +223,10 @@ public: void update(float delta); /** Draw one frame */ - void draw(DrawingContext& context, const Vector& offset); + void draw(DrawingContext& context); Vector get_next_tile(Vector pos, Direction direction); - Tile* at(Vector pos); + const Tile* at(Vector pos); WorldMap::Level* at_level(); WorldMap::SpecialTile* at_special_tile(); @@ -296,6 +257,7 @@ public: private: void on_escape_press(); + void parse_special_tiles(const lisp::Lisp* lisp); }; } // namespace WorldMapNS