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