More -Weffc++ cleanup
[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* tile_manager    = NULL;
27 TileSet*     current_tileset = NULL;
28
29 TileManager::TileManager() :
30   tilesets()
31 {
32 }
33
34 TileManager::~TileManager()
35 {
36 }
37
38 TileSet* TileManager::get_tileset(const std::string &filename)
39 {
40   TileSets::const_iterator i = tilesets.find(filename);
41   if(i != tilesets.end())
42     return i->second;
43
44   std::auto_ptr<TileSet> tileset (new TileSet(filename));
45   tilesets.insert(std::make_pair(filename, tileset.get()));
46
47   return tileset.release();
48 }
49
50 TileSet* TileManager::parse_tileset_definition(const Reader& reader)
51 {
52   std::auto_ptr<TileSet> result(new TileSet());
53
54   lisp::ListIterator iter(&reader);
55   while(iter.next()) {
56     const std::string& token = iter.item();
57     if(token != "tileset") {
58       log_warning << "Skipping unrecognized token \"" << token << "\" in tileset definition" << std::endl;
59       continue;
60     }
61     const lisp::Lisp* tileset_reader = iter.lisp();
62
63     std::string file; 
64     if (!tileset_reader->get("file", file)) {
65       log_warning << "Skipping tileset import without file name" << std::endl;
66       continue;
67     }
68
69     const TileSet *tileset = get_tileset(file);
70
71     uint32_t start  = 0;
72     uint32_t end    = std::numeric_limits<uint32_t>::max();
73     uint32_t offset = 0;
74     tileset_reader->get("start",  start);
75     tileset_reader->get("end",    end);
76     tileset_reader->get("offset", offset);
77
78     result->merge(tileset, start, end, offset);
79   }
80
81   return result.release();
82 }
83
84 /* EOF */