diff options
author | Blue Sans Douze <bluesansdouze@gmail.com> | 2010-01-23 18:56:21 +0100 |
---|---|---|
committer | Blue Sans Douze <bluesansdouze@gmail.com> | 2010-01-23 18:56:21 +0100 |
commit | fc3c62f2d68851b89b345a7aa7852d4a22f848dc (patch) | |
tree | c39634989cb0f7a637daaac642f728fe513133cc | |
parent | 943166059f5e0b7403b00f5d5fc19bd72c706657 (diff) | |
download | mana-fc3c62f2d68851b89b345a7aa7852d4a22f848dc.tar.gz mana-fc3c62f2d68851b89b345a7aa7852d4a22f848dc.tar.bz2 mana-fc3c62f2d68851b89b345a7aa7852d4a22f848dc.tar.xz mana-fc3c62f2d68851b89b345a7aa7852d4a22f848dc.zip |
Chaning the method name Map::getMapId() to map::getFilename()
-rw-r--r-- | src/gui/minimap.cpp | 8 | ||||
-rw-r--r-- | src/map.cpp | 2 | ||||
-rw-r--r-- | src/map.h | 2 |
3 files changed, 7 insertions, 5 deletions
diff --git a/src/gui/minimap.cpp b/src/gui/minimap.cpp index 539bfbaa..ef86dfd4 100644 --- a/src/gui/minimap.cpp +++ b/src/gui/minimap.cpp @@ -97,15 +97,17 @@ void Minimap::setMap(Map *map) if (map) { - std::string tempname = "graphics/minimaps/"+(*map->getMapId())+".png"; - + std::string tempname = + "graphics/minimaps/"+(*map->getFilename())+".png"; ResourceManager *resman = ResourceManager::getInstance(); + minimapName = map->getProperty("minimap"); + if (minimapName.empty() && resman->exists(tempname)) { minimapName = tempname; } - std::cout << "Minimap name : " << minimapName << std::endl; + mMapImage = resman->getImage(minimapName); } diff --git a/src/map.cpp b/src/map.cpp index 5f411c47..0c6aee8f 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -583,7 +583,7 @@ const std::string &Map::getName() const return getProperty("mapname"); } -const std::string *Map::getMapId() const +const std::string *Map::getFilename() const { std::string fileName = getProperty("_filename"); int lastSlash = fileName.rfind("/") + 1; @@ -269,7 +269,7 @@ class Map : public Properties /** * Gives the map id based on filepath (ex: 009-1) */ - const std::string *getMapId() const; + const std::string *getFilename() const; /** * Find a path from one location to the next. |