2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2012-01-02 17:58:37 +01:00
|
|
|
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
#include "texturemanager.h"
|
|
|
|
#include "animatedtexture.h"
|
2012-03-30 09:39:46 +02:00
|
|
|
#include "graphics.h"
|
2012-06-08 18:58:08 +02:00
|
|
|
#include "image.h"
|
2011-08-15 16:06:15 +02:00
|
|
|
|
|
|
|
#include <framework/core/resourcemanager.h>
|
2012-07-14 03:10:24 +02:00
|
|
|
#include <framework/graphics/apngloader.h>
|
2011-08-14 04:09:11 +02:00
|
|
|
|
|
|
|
TextureManager g_textures;
|
|
|
|
|
2012-06-18 10:13:52 +02:00
|
|
|
void TextureManager::init()
|
|
|
|
{
|
|
|
|
m_emptyTexture = TexturePtr(new Texture);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextureManager::terminate()
|
|
|
|
{
|
|
|
|
m_textures.clear();
|
|
|
|
m_emptyTexture = nullptr;
|
|
|
|
}
|
|
|
|
|
2012-07-14 23:30:00 +02:00
|
|
|
void TextureManager::clearTexturesCache()
|
|
|
|
{
|
|
|
|
m_textures.clear();
|
|
|
|
}
|
|
|
|
|
2012-04-24 18:18:45 +02:00
|
|
|
TexturePtr TextureManager::getTexture(const std::string& fileName)
|
2011-08-14 04:09:11 +02:00
|
|
|
{
|
|
|
|
TexturePtr texture;
|
|
|
|
|
2012-04-24 18:18:45 +02:00
|
|
|
// before must resolve filename to full path
|
|
|
|
std::string filePath = g_resources.resolvePath(fileName);
|
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
// check if the texture is already loaded
|
2012-04-24 18:18:45 +02:00
|
|
|
auto it = m_textures.find(filePath);
|
2011-08-14 04:09:11 +02:00
|
|
|
if(it != m_textures.end()) {
|
2012-07-29 05:34:40 +02:00
|
|
|
texture = it->second;
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// texture not found, load it
|
|
|
|
if(!texture) {
|
|
|
|
try {
|
|
|
|
// currently only png textures are supported
|
2012-08-01 09:49:09 +02:00
|
|
|
if(!stdext::ends_with(filePath, ".png"))
|
2012-08-25 18:05:33 +02:00
|
|
|
stdext::throw_exception("texture file format not supported");
|
2011-08-14 04:09:11 +02:00
|
|
|
|
|
|
|
// load texture file data
|
|
|
|
std::stringstream fin;
|
2012-04-24 18:18:45 +02:00
|
|
|
g_resources.loadFile(filePath, fin);
|
2011-08-14 04:09:11 +02:00
|
|
|
texture = loadPNG(fin);
|
2012-05-28 15:06:26 +02:00
|
|
|
} catch(stdext::exception& e) {
|
2012-08-25 18:05:33 +02:00
|
|
|
g_logger.error(stdext::format("Unable to load texture '%s': %s", fileName, e.what()));
|
2012-06-18 10:13:52 +02:00
|
|
|
texture = g_textures.getEmptyTexture();
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
2012-04-24 23:05:46 +02:00
|
|
|
|
|
|
|
if(texture)
|
|
|
|
m_textures[filePath] = texture;
|
2011-08-14 04:09:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
|
|
|
TexturePtr TextureManager::loadPNG(std::stringstream& file)
|
|
|
|
{
|
|
|
|
TexturePtr texture;
|
|
|
|
|
|
|
|
apng_data apng;
|
|
|
|
if(load_apng(file, &apng) == 0) {
|
|
|
|
if(apng.num_frames > 1) { // animated texture
|
2012-06-08 18:58:08 +02:00
|
|
|
//uchar *framesdata = apng.pdata + (apng.first_frame * apng.width * apng.height * apng.bpp);
|
|
|
|
//texture = TexturePtr(new AnimatedTexture(apng.width, apng.height, apng.bpp, apng.num_frames, framesdata, (int*)apng.frames_delay));
|
|
|
|
g_logger.error("animated textures is disabled for a while");
|
|
|
|
} else {
|
|
|
|
ImagePtr image = ImagePtr(new Image(Size(apng.width, apng.height), apng.bpp, apng.pdata));
|
|
|
|
texture = TexturePtr(new Texture(image));
|
|
|
|
}
|
2011-08-14 04:09:11 +02:00
|
|
|
free_apng(&apng);
|
|
|
|
}
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|