b347bc928c55f03ef9774afce63a8b23bca3e648
[supertux.git] / src / worldmap.h
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Ingo Ruhnke <grumbel@gmx.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 // 
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 #ifndef HEADER_WORLDMAP_HXX
21 #define HEADER_WORLDMAP_HXX
22
23 #include <vector>
24 #include <string>
25
26 namespace WorldMapNS {
27
28 struct Point
29 {
30   Point() : x(0), y(0) {}
31
32   Point(const Point& pos)
33     : x(pos.x), y(pos.y) {}
34
35   Point& operator=(const Point& pos)
36   { x = pos.x;
37     y = pos.y; 
38     return *this; }
39
40   Point(int x_, int y_)
41     : x(x_), y(y_) {}
42
43   int x;
44   int y;
45 };
46
47 struct Level
48 {
49   int x;
50   int y;
51   std::string name;
52 };
53
54 struct Tile
55 {
56   texture_type sprite;
57
58   // Directions in which Tux is allowed to walk from this tile
59   bool north;
60   bool east;
61   bool south;
62   bool west;
63
64   /** Stop on this tile or walk over it? */
65   bool stop;
66 };
67
68 class TileManager
69 {
70 private:
71   typedef std::vector<Tile*> Tiles;
72   Tiles tiles;
73   static TileManager* instance_ ;
74
75  TileManager();
76 public:
77   static TileManager* instance() { return instance_ ? instance_ : instance_ = new TileManager(); }
78
79   void load();
80   Tile* get(int i);
81 };
82
83 enum Direction { NONE, WEST, EAST, NORTH, SOUTH };
84
85 class WorldMap;
86
87 class Tux
88 {
89 private:
90   WorldMap* worldmap;
91   texture_type sprite;
92
93   Direction input_direction;
94   Direction direction;
95   Point tile_pos;
96   /** Length by which tux is away from its current tile, length is in
97       input_direction direction */
98   float offset;
99   bool  moving;
100
101   void stop();
102 public: 
103   Tux(WorldMap* worldmap_);
104   
105   void draw();
106   void update(float delta);
107
108   void set_direction(Direction d) { input_direction = d; }
109
110   bool is_moving() const { return moving; }
111   Point get_tile_pos() const { return tile_pos; } 
112   void  set_tile_pos(Point p) { tile_pos = p; } 
113 };
114
115 /** */
116 class WorldMap
117 {
118 private:
119   Tux* tux;
120
121   texture_type level_sprite;
122   bool quit;
123
124   std::string name;
125   std::string music;
126
127   std::vector<int> tilemap;
128   int width;
129   int height;
130
131   typedef std::vector<Level> Levels;
132   Levels levels;
133
134   Mix_Music* song;
135
136   Direction input_direction;
137   bool enter_level;
138
139 public:
140   WorldMap();
141   ~WorldMap();
142
143   /** Busy loop */
144   void display();
145
146   void load_map();
147   
148   void get_input();
149
150   /** Update Tux position */
151   void update();
152
153   /** Draw one frame */
154   void draw();
155
156   Point get_next_tile(Point pos, Direction direction);
157   Tile* at(Point pos);
158   bool path_ok(Direction direction, Point old_pos, Point* new_pos);
159 };
160
161 } // namespace WorldMapNS
162
163 void worldmap_run();
164
165 #endif
166
167 /* Local Variables: */
168 /* mode:c++ */
169 /* End */