309311e3e55929ccf4e293929b49337b32f33d9a
[supertux.git] / src / tile_manager.cpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
5 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
6 //
7 //  This program is free software; you can redistribute it and/or
8 //  modify it under the terms of the GNU General Public License
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 //
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 //  02111-1307, USA.
21 #include <config.h>
22
23 #include <memory>
24 #include <stdexcept>
25 #include <sstream>
26 #include <iostream>
27 #include <assert.h>
28 #include <SDL.h>
29 #include "video/drawing_context.hpp"
30 #include "log.hpp"
31 #include "lisp/lisp.hpp"
32 #include "lisp/parser.hpp"
33 #include "lisp/list_iterator.hpp"
34 #include "tile.hpp"
35 #include "tile_manager.hpp"
36 #include "resources.hpp"
37
38 TileManager* tile_manager = NULL;
39
40 TileManager::TileManager(const std::string& filename)
41 {
42 #ifdef DEBUG
43   Uint32 ticks = SDL_GetTicks();
44 #endif
45   load_tileset(filename);
46 #ifdef DEBUG
47   log_debug << "Tiles loaded in " << (SDL_GetTicks() - ticks) / 1000.0 << " seconds" << std::endl;
48 #endif
49 }
50
51 TileManager::~TileManager()
52 {
53   for(Tiles::iterator i = tiles.begin(); i != tiles.end(); ++i)
54     delete *i;
55 }
56
57 void TileManager::load_tileset(std::string filename)
58 {
59   // free old tiles
60   for(Tiles::iterator i = tiles.begin(); i != tiles.end(); ++i)
61     delete *i;
62   tiles.clear();
63
64   std::string::size_type t = filename.rfind('/');
65   if(t == std::string::npos) {
66     tiles_path = "";
67   } else {
68     tiles_path = filename.substr(0, t+1);
69   }
70  
71   lisp::Parser parser;
72   std::auto_ptr<lisp::Lisp> root (parser.parse(filename));
73
74   const lisp::Lisp* tiles_lisp = root->get_lisp("supertux-tiles");
75   if(!tiles_lisp)
76     throw std::runtime_error("file is not a supertux tiles file.");
77
78   lisp::ListIterator iter(tiles_lisp);
79   while(iter.next()) {
80     if(iter.item() == "tile") {
81       Tile* tile = new Tile();
82       tile->parse(*(iter.lisp()));
83       while(tile->id >= tiles.size()) {
84         tiles.push_back(0);
85       }
86       if(tiles[tile->id] != 0) {
87         log_warning << "Tile with ID " << tile->id << " redefined" << std::endl;
88       }
89       tiles[tile->id] = tile;
90     } else if(iter.item() == "tilegroup") {
91       TileGroup tilegroup;
92       const lisp::Lisp* tilegroup_lisp = iter.lisp();
93       tilegroup_lisp->get("name", tilegroup.name);
94       tilegroup_lisp->get_vector("tiles", tilegroup.tiles);
95       tilegroups.insert(tilegroup);
96     } else if (iter.item() == "tiles") {
97       // List of ids (use 0 if the tile should be ignored)
98       std::vector<unsigned int> ids;
99       // List of attributes of the tile
100       std::vector<unsigned int> attributes;
101       std::string image;
102
103       // width and height of the image in tile units, this is used for two
104       // purposes: 
105       //  a) so we don't have to load the image here to know its dimensions
106       //  b) so that the resulting 'tiles' entry is more robust,
107       //  ie. enlarging the image won't break the tile id mapping
108       // FIXME: height is actually not used, since width might be enough for
109       // all purposes, still feels somewhat more natural this way
110       unsigned int width  = 0;
111       unsigned int height = 0;
112
113       iter.lisp()->get_vector("ids",        ids);
114       iter.lisp()->get_vector("attributes", attributes);
115       iter.lisp()->get("image",      image);
116       iter.lisp()->get("width",      width);
117       iter.lisp()->get("height",     height);
118
119       if (ids.size() != attributes.size())
120         {
121           std::ostringstream err;
122           err << "Number of ids (" << ids.size() <<  ") and attributes (" << attributes.size()
123               << ") missmatch for image '" << image << "', but must be equal";
124           throw std::runtime_error(err.str());
125         }
126
127       for(std::vector<unsigned int>::size_type i = 0; i < ids.size() && i < width*height; ++i)
128         {
129           if (ids[i])
130             {
131               if(ids[i] >= tiles.size())
132                 tiles.resize(ids[i]+1, 0);
133
134               int x = 32*(i % width);
135               int y = 32*(i / width);
136               Tile* tile = new Tile(ids[i], attributes[i], Tile::ImageSpec(image, Rect(x, y, x + 32, y + 32)));
137               tiles[ids[i]] = tile;
138             }
139         }
140       
141     } else if(iter.item() == "properties") {
142       // deprecated
143     } else {
144       log_warning << "Unknown symbol '" << iter.item() << "' tile defintion file" << std::endl;
145     }
146   }
147 }
148