]> git.localhorst.tv Git - l2e.git/blob - src/map/Map.h
added debug mode for maps
[l2e.git] / src / map / Map.h
1 /*
2  * Map.h
3  *
4  *  Created on: Sep 29, 2012
5  *      Author: holy
6  */
7
8 #ifndef MAP_MAP_H_
9 #define MAP_MAP_H_
10
11 #include "fwd.h"
12 #include "../geometry/Vector.h"
13 #include "../graphics/fwd.h"
14
15 #include <SDL.h>
16
17 namespace map {
18
19 class Map {
20
21 public:
22         Map();
23         ~Map() { }
24
25 public:
26         const graphics::Sprite *Tileset() const { return tileset; }
27         const Area &AreaAt(const geometry::Vector<int> &) const;
28         const Tile &TileAt(const geometry::Vector<int> &) const;
29         Trigger *TriggerAt(const geometry::Vector<int> &);
30         geometry::Vector<int> TileCoordinates(const geometry::Vector<int> &) const;
31
32         void Render(SDL_Surface *dest, const geometry::Vector<int> &offset) const;
33         void RenderDebug(SDL_Surface *dest, const geometry::Vector<int> &offset) const;
34
35 // temporary setters
36 public:
37         void SetTileset(const graphics::Sprite *t) { tileset = t; }
38         void SetAreas(Area *a, int num) { areas = a; numAreas = num; }
39         void SetTriggers(Trigger *t, int num) { triggers = t; numTriggers = num; }
40         void SetWidth(int w) { width = w; }
41
42 private:
43         const graphics::Sprite *tileset;
44         Area *areas;
45         int numAreas;
46         Trigger *triggers;
47         int numTriggers;
48         int width;
49
50 };
51
52 }
53
54 #endif /* MAP_MAP_H_ */