diff options
Diffstat (limited to 'src/resources/resourcemanager.cpp')
-rw-r--r-- | src/resources/resourcemanager.cpp | 43 |
1 files changed, 35 insertions, 8 deletions
diff --git a/src/resources/resourcemanager.cpp b/src/resources/resourcemanager.cpp index e507835a..3368d05b 100644 --- a/src/resources/resourcemanager.cpp +++ b/src/resources/resourcemanager.cpp @@ -28,6 +28,7 @@ #include <physfs.h> #include <SDL_image.h> +#include "dye.h" #include "image.h" #include "music.h" #include "soundeffect.h" @@ -204,12 +205,6 @@ Resource *ResourceManager::load(std::string const &path, loader fun) return get(path, ResourceLoader::load, &l); } -Image* -ResourceManager::getImage(const std::string &idPath) -{ - return static_cast<Image*>(load(idPath, Image::load)); -} - Music* ResourceManager::getMusic(const std::string &idPath) { @@ -222,6 +217,38 @@ ResourceManager::getSoundEffect(const std::string &idPath) return static_cast<SoundEffect*>(load(idPath, SoundEffect::load)); } +struct DyedImageLoader +{ + ResourceManager *manager; + std::string path; + static Resource *load(void *v) + { + DyedImageLoader *l = static_cast< DyedImageLoader * >(v); + std::string path = l->path; + std::string::size_type p = path.find('|'); + Dye *d = NULL; + if (p != std::string::npos) + { + d = new Dye(path.substr(p + 1)); + path = path.substr(0, p); + } + int fileSize; + void *buffer = l->manager->loadFile(path, fileSize); + if (!buffer) return NULL; + Resource *res = d ? Image::load(buffer, fileSize, *d) + : Image::load(buffer, fileSize); + free(buffer); + delete d; + return res; + } +}; + +Image *ResourceManager::getImage(std::string const &idPath) +{ + DyedImageLoader l = { this, idPath }; + return static_cast<Image*>(get(idPath, DyedImageLoader::load, &l)); +} + struct ImageSetLoader { ResourceManager *manager; @@ -258,8 +285,8 @@ struct SpriteDefLoader } }; -SpriteDef* -ResourceManager::getSprite(const std::string &path, int variant) +SpriteDef *ResourceManager::getSprite + (std::string const &path, int variant) { SpriteDefLoader l = { path, variant }; std::stringstream ss; |