add code to debug collision rectangles
[supertux.git] / src / tile_manager.hpp
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@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
19 //  02111-1307, USA.
20
21 #ifndef HEADER_TILE_MANAGER_HXX
22 #define HEADER_TILE_MANAGER_HXX
23
24 #include <set>
25 #include <vector>
26 #include <string>
27 #include <map>
28 #include <iostream>
29 #include <stdint.h>
30 #include <assert.h>
31 #include "log.hpp"
32 #include "tile.hpp"
33
34 struct TileGroup
35 {
36   friend bool operator<(const TileGroup& lhs, const TileGroup& rhs)
37   { return lhs.name < rhs.name; };
38   friend bool operator>(const TileGroup& lhs, const TileGroup& rhs)
39   { return lhs.name > rhs.name; };
40
41   std::string name;
42   std::vector<int> tiles;
43 };
44
45 class TileManager
46 {
47 private:
48   typedef std::vector<Tile*> Tiles;
49   Tiles tiles;
50
51   static TileManager* instance_ ;
52   std::set<TileGroup> tilegroups;
53
54   std::string tiles_path;
55   
56   void load_tileset(std::string filename);
57
58 public:
59   TileManager(const std::string& filename);
60   ~TileManager();
61
62   const std::set<TileGroup>& get_tilegroups() const
63   {
64     return tilegroups;
65   }
66
67   const Tile* get(uint32_t id) const
68   {
69     //FIXME: Commenting out tiles in sprites.strf makes tiles.size() fail - it's being set to the first tile commented out.
70     assert(id < tiles.size());
71     Tile* tile = tiles[id];
72     if(!tile) {
73       log_warning << "Invalid tile: " << id << std::endl;
74       return tiles[0];
75     }
76
77     if(tile->images.size() == 0 && tile->imagespecs.size() != 0)
78       tile->load_images(tiles_path);
79     
80     return tile;
81   }
82
83   uint32_t get_max_tileid() const
84   {
85     return tiles.size();
86   }
87
88   int get_default_width() const
89   {
90     return 32;
91   }
92
93   int get_default_height() const
94   {
95     return 32;
96   }
97 };
98
99 #endif