Split particlesystem_interactive.?pp into separate files
[supertux.git] / src / supertux / tile_manager.cpp
1 //  SuperTux
2 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
3 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #include "supertux/tile_manager.hpp"
19
20 #include <limits>
21 #include <memory>
22
23 #include "lisp/list_iterator.hpp"
24 #include "supertux/tile_set.hpp"
25
26 TileManager::TileManager() :
27   tilesets()
28 {
29 }
30
31 TileManager::~TileManager()
32 {
33 }
34
35 TileSet* TileManager::get_tileset(const std::string &filename)
36 {
37   TileSets::const_iterator i = tilesets.find(filename);
38   if(i != tilesets.end())
39     return i->second;
40
41   std::auto_ptr<TileSet> tileset (new TileSet(filename));
42   tilesets.insert(std::make_pair(filename, tileset.get()));
43
44   return tileset.release();
45 }
46
47 TileSet* TileManager::parse_tileset_definition(const Reader& reader)
48 {
49   std::auto_ptr<TileSet> result(new TileSet());
50
51   lisp::ListIterator iter(&reader);
52   while(iter.next()) {
53     const std::string& token = iter.item();
54     if(token != "tileset") {
55       log_warning << "Skipping unrecognized token \"" << token << "\" in tileset definition" << std::endl;
56       continue;
57     }
58     const lisp::Lisp* tileset_reader = iter.lisp();
59
60     std::string file; 
61     if (!tileset_reader->get("file", file)) {
62       log_warning << "Skipping tileset import without file name" << std::endl;
63       continue;
64     }
65
66     const TileSet *tileset = get_tileset(file);
67
68     uint32_t start  = 0;
69     uint32_t end    = std::numeric_limits<uint32_t>::max();
70     uint32_t offset = 0;
71     tileset_reader->get("start",  start);
72     tileset_reader->get("end",    end);
73     tileset_reader->get("offset", offset);
74
75     result->merge(tileset, start, end, offset);
76   }
77
78   return result.release();
79 }
80
81 /* EOF */