New grow and skid sounds from remaxim
[supertux.git] / src / tile_set.hpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2008 Matthias Braun <matze@braunis.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 #ifndef HEADER_TILE_SET_HPP
21 #define HEADER_TILE_SET_HPP
22
23 #include "log.hpp"
24 #include "tile.hpp"
25
26 #include <vector>
27 #include <string>
28
29 class TileSet
30 {
31 private:
32   typedef std::vector<Tile*> Tiles;
33   Tiles tiles;
34
35   std::string tiles_path;
36   bool        tiles_loaded;
37
38   friend class TileManager;
39   friend class Tile;
40   TileSet(const std::string& filename);
41
42 public:
43   TileSet();
44   ~TileSet();
45
46   void merge(const TileSet *tileset, uint32_t start, uint32_t end,
47              uint32_t offset);
48
49   const Tile* get(uint32_t id) const
50   {
51     assert(id < tiles.size());
52     Tile* tile = tiles[id];
53     if(!tile) {
54       log_warning << "Invalid tile: " << id << std::endl;
55       return tiles[0];
56     }
57
58     if(tile->images.size() == 0 && tile->imagespecs.size() != 0)
59       tile->load_images();
60
61     return tile;
62   }
63
64   uint32_t get_max_tileid() const
65   {
66     return tiles.size();
67   }
68 };
69
70 #endif