Started moving TileSet parsing code into separate class
[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   friend class TileSetParser;
37
38   TileSet(const std::string& filename);
39
40 public:
41   TileSet();
42   ~TileSet();
43
44   void merge(const TileSet *tileset, uint32_t start, uint32_t end,
45              uint32_t offset);
46
47   const Tile* get(uint32_t id) const
48   {
49     assert(id < tiles.size());
50     Tile* tile = tiles[id];
51     if(!tile) {
52       log_warning << "Invalid tile: " << id << std::endl;
53       return tiles[0];
54     }
55
56     tile->load_images();
57
58     return tile;
59   }
60
61   uint32_t get_max_tileid() const
62   {
63     return tiles.size();
64   }
65 };
66
67 #endif
68
69 /* EOF */