Had a bit of time today and worked on supertux:
[supertux.git] / src / tile_manager.cpp
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.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 #include <config.h>
21
22 #include <memory>
23 #include <stdexcept>
24 #include <assert.h>
25 #include "video/drawing_context.h"
26 #include "app/setup.h"
27 #include "app/globals.h"
28 #include "lisp/lisp.h"
29 #include "lisp/parser.h"
30 #include "lisp/list_iterator.h"
31 #include "tile.h"
32 #include "tile_manager.h"
33 #include "resources.h"
34
35 TileManager::TileManager(const std::string& filename)
36 {
37   load_tileset(filename);
38 }
39
40 TileManager::~TileManager()
41 {
42   for(Tiles::iterator i = tiles.begin(); i != tiles.end(); ++i)
43     delete *i;
44 }
45
46 void TileManager::load_tileset(std::string filename)
47 {
48   // free old tiles
49   for(Tiles::iterator i = tiles.begin(); i != tiles.end(); ++i)
50     delete *i;
51   tiles.clear();
52
53   std::string::size_type t = filename.rfind('/');
54   if(t == std::string::npos) {
55     tiles_path = "";
56   } else {
57     tiles_path = filename.substr(0, t+1);
58   }
59
60   lisp::Parser parser;
61   std::auto_ptr<lisp::Lisp> root (parser.parse(
62         get_resource_filename(filename)));
63
64   const lisp::Lisp* tiles_lisp = root->get_lisp("supertux-tiles");
65   if(!tiles_lisp)
66     throw std::runtime_error("file is not a supertux tiles file.");
67
68   lisp::ListIterator iter(tiles_lisp);
69   while(iter.next()) {
70     if(iter.item() == "tile") {
71       Tile* tile = new Tile();
72       tile->parse(*(iter.lisp()));
73       while(tile->id >= tiles.size()) {
74         tiles.push_back(0);
75       }
76       tiles[tile->id] = tile;
77     } else if(iter.item() == "tilegroup") {
78         TileGroup tilegroup;
79         const lisp::Lisp* tilegroup_lisp = iter.lisp();
80         tilegroup_lisp->get("name", tilegroup.name);
81         tilegroup_lisp->get_vector("tiles", tilegroup.tiles);
82         tilegroups.insert(tilegroup);
83     } else if(iter.item() == "properties") {
84       // deprecated
85     } else {
86       std::cerr << "Unknown symbol '" << iter.item() << "'.\n";
87     }
88   }
89 }
90