Few level polish
[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 Tile;
26
27 class TileSet
28 {
29 private:
30   typedef std::vector<Tile*> Tiles;
31   Tiles tiles;
32
33   bool        tiles_loaded;
34
35   friend class TileManager;
36   friend class Tile;
37   friend class TileSetParser;
38
39   TileSet(const std::string& filename);
40
41 public:
42   TileSet();
43   ~TileSet();
44
45   void merge(const TileSet *tileset, uint32_t start, uint32_t end,
46              uint32_t offset);
47
48   const Tile* get(const uint32_t id) const
49   {
50     assert(id < tiles.size());
51     Tile* tile = tiles[id];
52     if(!tile) {
53       log_warning << "Invalid tile: " << id << std::endl;
54       return tiles[0];
55     }
56
57     tile->load_images();
58
59     return tile;
60   }
61
62   uint32_t get_max_tileid() const
63   {
64     return tiles.size();
65   }
66 };
67
68 #endif
69
70 /* EOF */