diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-04-09 18:49:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-04-09 18:49:05 +0300 |
commit | b9d66c41246fef56e41f600b5523a5ff1a29a1c8 (patch) | |
tree | 3e6e546d393975b83ae951561cb6b05d920ef048 /src/resources | |
parent | 8bed92098b94ebe14dfd9d622585fbfc150a8757 (diff) | |
download | plus-b9d66c41246fef56e41f600b5523a5ff1a29a1c8.tar.gz plus-b9d66c41246fef56e41f600b5523a5ff1a29a1c8.tar.bz2 plus-b9d66c41246fef56e41f600b5523a5ff1a29a1c8.tar.xz plus-b9d66c41246fef56e41f600b5523a5ff1a29a1c8.zip |
Improve map loading speed.
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/image.h | 3 | ||||
-rw-r--r-- | src/resources/mapreader.cpp | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/resources/image.h b/src/resources/image.h index 585b3d62b..beaba7b0e 100644 --- a/src/resources/image.h +++ b/src/resources/image.h @@ -209,6 +209,8 @@ class Image : public Resource static int getTextureType() { return mTextureType; } + + static int mTextureType; #endif protected: @@ -268,7 +270,6 @@ class Image : public Resource int mTexWidth, mTexHeight; static int mUseOpenGL; - static int mTextureType; static int mTextureSize; #endif }; diff --git a/src/resources/mapreader.cpp b/src/resources/mapreader.cpp index 25e9750de..d2bcde06d 100644 --- a/src/resources/mapreader.cpp +++ b/src/resources/mapreader.cpp @@ -370,7 +370,7 @@ Map *MapReader::readMap(xmlNodePtr node, const std::string &path) } map->initializeAmbientLayers(); - + map->clearIndexedTilesets(); return map; } @@ -424,6 +424,8 @@ void MapReader::readLayer(xmlNodePtr node, Map *map) const bool isFringeLayer = (name.substr(0, 6) == "fringe"); const bool isCollisionLayer = (name.substr(0, 9) == "collision"); + map->indexTilesets(); + MapLayer *layer = 0; if (!isCollisionLayer) |