X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftile_manager.cpp;h=391fc5549dd3102651f4556ac5ec7dc98a9650dc;hb=ffaadd80066a2a0f8c30d58ef3466f79e98254d7;hp=d301867e3c7c1d93a4ddfa67f439b8ab179706ef;hpb=07ddaed2a657e4d2a3d038fed223fc5827159caf;p=supertux.git diff --git a/src/tile_manager.cpp b/src/tile_manager.cpp index d301867e3..391fc5549 100644 --- a/src/tile_manager.cpp +++ b/src/tile_manager.cpp @@ -35,6 +35,8 @@ #include "tile_manager.hpp" #include "resources.hpp" +TileManager* tile_manager = NULL; + TileManager::TileManager(const std::string& filename) { #ifdef DEBUG @@ -65,7 +67,7 @@ void TileManager::load_tileset(std::string filename) } else { tiles_path = filename.substr(0, t+1); } - + lisp::Parser parser; std::auto_ptr root (parser.parse(filename)); @@ -78,13 +80,16 @@ void TileManager::load_tileset(std::string filename) if(iter.item() == "tile") { Tile* tile = new Tile(); tile->parse(*(iter.lisp())); - while(tile->id >= tiles.size()) { - tiles.push_back(0); - } + + if(tile->id >= tiles.size()) + tiles.resize(tile->id+1, 0); + if(tiles[tile->id] != 0) { log_warning << "Tile with ID " << tile->id << " redefined" << std::endl; + delete tile; + } else { + tiles[tile->id] = tile; } - tiles[tile->id] = tile; } else if(iter.item() == "tilegroup") { TileGroup tilegroup; const lisp::Lisp* tilegroup_lisp = iter.lisp(); @@ -99,7 +104,7 @@ void TileManager::load_tileset(std::string filename) std::string image; // width and height of the image in tile units, this is used for two - // purposes: + // purposes: // a) so we don't have to load the image here to know its dimensions // b) so that the resulting 'tiles' entry is more robust, // ie. enlarging the image won't break the tile id mapping @@ -132,15 +137,37 @@ void TileManager::load_tileset(std::string filename) int x = 32*(i % width); int y = 32*(i / width); Tile* tile = new Tile(ids[i], attributes[i], Tile::ImageSpec(image, Rect(x, y, x + 32, y + 32))); - tiles[ids[i]] = tile; + if (tiles[ids[i]] == 0) { + tiles[ids[i]] = tile; + } else { + log_warning << "Tile with ID " << ids[i] << " redefined" << std::endl; + delete tile; + } } } - + } else if(iter.item() == "properties") { // deprecated } else { log_warning << "Unknown symbol '" << iter.item() << "' tile defintion file" << std::endl; } } -} + if (0) + { // enable this if you want to see a list of free tiles + log_info << "Last Tile ID is " << tiles.size()-1 << std::endl; + int last = -1; + for(int i = 0; i < int(tiles.size()); ++i) + { + if (tiles[i] == 0 && last == -1) + { + last = i; + } + else if (tiles[i] && last != -1) + { + log_info << "Free Tile IDs (" << i - last << "): " << last << " - " << i-1 << std::endl; + last = -1; + } + } + } +}