Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / supertux / tile_set.hpp
1 //  SuperTux
2 //  Copyright (C) 2008 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_SUPERTUX_TILE_SET_HPP
18 #define HEADER_SUPERTUX_SUPERTUX_TILE_SET_HPP
19
20 #include <stdint.h>
21
22 #include "supertux/tile.hpp"
23 #include "util/log.hpp"
24
25 class TileSet
26 {
27 private:
28   typedef std::vector<Tile*> Tiles;
29   Tiles tiles;
30
31   std::string tiles_path;
32   bool        tiles_loaded;
33
34   friend class TileManager;
35   friend class Tile;
36   TileSet(const std::string& filename);
37
38 public:
39   TileSet();
40   ~TileSet();
41
42   void merge(const TileSet *tileset, uint32_t start, uint32_t end,
43              uint32_t offset);
44
45   const Tile* get(uint32_t id) const
46   {
47     assert(id < tiles.size());
48     Tile* tile = tiles[id];
49     if(!tile) {
50       log_warning << "Invalid tile: " << id << std::endl;
51       return tiles[0];
52     }
53
54     if(tile->images.size() == 0 && tile->imagespecs.size() != 0)
55       tile->load_images();
56
57     return tile;
58   }
59
60   uint32_t get_max_tileid() const
61   {
62     return tiles.size();
63   }
64 };
65
66 #endif
67
68 /* EOF */