/* * The ManaPlus Client * Copyright (C) 2004-2009 The Mana World Development Team * Copyright (C) 2009-2010 The Mana Developers * Copyright (C) 2011-2013 The ManaPlus Developers * * This file is part of The ManaPlus Client. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "resources/image.h" #include "resources/dye.h" #include "resources/resourcemanager.h" #ifdef USE_OPENGL #include "mobileopenglgraphics.h" #include "normalopenglgraphics.h" #include "safeopenglgraphics.h" #endif #include "client.h" #include "logger.h" #include "resources/imagehelper.h" #include "resources/openglimagehelper.h" #include "resources/sdlimagehelper.h" #include "resources/subimage.h" #include #ifndef USE_SDL2 #include #endif #include "debug.h" #ifdef USE_SDL2 Image::Image(SDL_Texture *const image, const int width, const int height) : Resource(), #ifdef USE_OPENGL mGLImage(0), mTexWidth(0), mTexHeight(0), #endif mBounds(), mAlpha(1.0f), mSDLSurface(nullptr), mTexture(image), mAlphaChannel(nullptr), mAlphaCache(), mLoaded(false), mHasAlphaChannel(false), mUseAlphaCache(false), mIsAlphaVisible(true), mIsAlphaCalculated(false) { #ifdef DEBUG_IMAGES logger->log("created: %p", this); #endif mBounds.x = 0; mBounds.y = 0; if (mTexture) { mBounds.w = static_cast(width); mBounds.h = static_cast(height); mLoaded = true; } else { logger->log("Image::Image(SDL_Texture *const image):" " Couldn't load invalid Surface!"); mBounds.w = 0; mBounds.h = 0; } } #endif Image::Image(SDL_Surface *const image, const bool hasAlphaChannel0, uint8_t *const alphaChannel) : Resource(), #ifdef USE_OPENGL mGLImage(0), mTexWidth(0), mTexHeight(0), #endif mBounds(), mAlpha(1.0f), mSDLSurface(image), #ifdef USE_SDL2 mTexture(nullptr), #endif mAlphaChannel(alphaChannel), mAlphaCache(), mLoaded(false), mHasAlphaChannel(hasAlphaChannel0), mUseAlphaCache(SDLImageHelper::mEnableAlphaCache), mIsAlphaVisible(hasAlphaChannel0), mIsAlphaCalculated(false) { #ifdef DEBUG_IMAGES logger->log("created: %p", this); #endif mBounds.x = 0; mBounds.y = 0; if (mSDLSurface) { mBounds.w = static_cast(mSDLSurface->w); mBounds.h = static_cast(mSDLSurface->h); mLoaded = true; } else { logger->log( "Image::Image(SDL_Surface*): Couldn't load invalid Surface!"); mBounds.w = 0; mBounds.h = 0; } } #ifdef USE_OPENGL Image::Image(const GLuint glimage, const int width, const int height, const int texWidth, const int texHeight) : Resource(), mGLImage(glimage), mTexWidth(texWidth), mTexHeight(texHeight), mBounds(), mAlpha(1.0f), mSDLSurface(nullptr), #ifdef USE_SDL2 mTexture(nullptr), #endif mAlphaChannel(nullptr), mAlphaCache(), mLoaded(false), mHasAlphaChannel(true), mUseAlphaCache(false), mIsAlphaVisible(true), mIsAlphaCalculated(false) { #ifdef DEBUG_IMAGES logger->log("created: %p", this); #endif mBounds.x = 0; mBounds.y = 0; mBounds.w = static_cast(width); mBounds.h = static_cast(height); if (mGLImage) { mLoaded = true; } else { logger->log("Image::Image(GLuint*, ...):" " Couldn't load invalid Surface!"); } } #endif Image::~Image() { #ifdef DEBUG_IMAGES logger->log("delete: %p, %s, %s", this, mIdPath.c_str(), mSource.c_str()); #endif unload(); } void Image::SDLCleanCache() { ResourceManager *const resman = ResourceManager::getInstance(); for (std::map::iterator i = mAlphaCache.begin(), i_end = mAlphaCache.end(); i != i_end; ++i) { if (mSDLSurface != i->second) resman->scheduleDelete(i->second); i->second = nullptr; } mAlphaCache.clear(); } void Image::unload() { mLoaded = false; if (mSDLSurface) { SDLCleanCache(); // Free the image surface. SDL_FreeSurface(mSDLSurface); mSDLSurface = nullptr; delete [] mAlphaChannel; mAlphaChannel = nullptr; } #ifdef USE_SDL2 if (mTexture) { SDL_DestroyTexture(mTexture); mTexture = nullptr; } #endif #ifdef USE_OPENGL if (mGLImage) { glDeleteTextures(1, &mGLImage); mGLImage = 0; #ifdef DEBUG_OPENGL_LEAKS if (textures_count > 0) textures_count --; #endif } #endif } bool Image::hasAlphaChannel() const { if (mLoaded) return mHasAlphaChannel; #ifdef USE_OPENGL if (OpenGLImageHelper::mUseOpenGL) return true; #endif return false; } SDL_Surface *Image::getByAlpha(const float alpha) { const std::map::const_iterator it = mAlphaCache.find(alpha); if (it != mAlphaCache.end()) return (*it).second; return nullptr; } void Image::setAlpha(const float alpha) { if (mAlpha == alpha || !ImageHelper::mEnableAlpha) return; if (alpha < 0.0f || alpha > 1.0f) return; if (mSDLSurface) { if (mUseAlphaCache) { SDL_Surface *surface = getByAlpha(mAlpha); if (!surface) { if (mAlphaCache.size() > 100) { #ifdef DEBUG_ALPHA_CACHE logger->log("cleanCache"); for (std::map::const_iterator i = mAlphaCache.begin(), i_end = mAlphaCache.end(); i != i_end; ++i) { logger->log("alpha: " + toString(i->first)); } #endif SDLCleanCache(); } surface = mSDLSurface; if (surface) mAlphaCache[mAlpha] = surface; } else { logger->log("cache bug"); } surface = getByAlpha(alpha); if (surface) { if (mSDLSurface == surface) logger->log("bug"); mAlphaCache.erase(alpha); mSDLSurface = surface; mAlpha = alpha; return; } else { mSDLSurface = SDLImageHelper::SDLDuplicateSurface(mSDLSurface); } } mAlpha = alpha; if (!mHasAlphaChannel) { #ifdef USE_SDL2 SDL_SetSurfaceAlphaMod(mSDLSurface, static_cast(255 * mAlpha)); #else // Set the alpha value this image is drawn at SDL_SetAlpha(mSDLSurface, SDL_SRCALPHA, static_cast(255 * mAlpha)); #endif } else { if (SDL_MUSTLOCK(mSDLSurface)) SDL_LockSurface(mSDLSurface); // Precompute as much as possible const int maxHeight = std::min((mBounds.y + mBounds.h), mSDLSurface->h); const int maxWidth = std::min((mBounds.x + mBounds.w), mSDLSurface->w); const int i1 = mBounds.y * mSDLSurface->w + mBounds.x; const int i2 = (maxHeight - 1) * mSDLSurface->w + maxWidth - 1; const SDL_PixelFormat * const fmt = mSDLSurface->format; for (int i = i1; i <= i2; i++) { // Only change the pixel if it was visible at load time... const uint8_t sourceAlpha = mAlphaChannel[i]; if (sourceAlpha > 0) { const uint8_t a = static_cast( static_cast(sourceAlpha) * mAlpha); uint32_t c = (static_cast( mSDLSurface->pixels))[i]; c &= ~fmt->Amask; c |= ((a >> fmt->Aloss) << fmt->Ashift & fmt->Amask); (static_cast(mSDLSurface->pixels))[i] = c; } } if (SDL_MUSTLOCK(mSDLSurface)) SDL_UnlockSurface(mSDLSurface); } } #ifdef USE_SDL2 else if (mTexture) { mAlpha = alpha; SDL_SetTextureAlphaMod(mTexture, static_cast(255 * mAlpha)); } #endif else { mAlpha = alpha; } } Image* Image::SDLgetScaledImage(const int width, const int height) const { // No scaling on incorrect new values. if (width == 0 || height == 0) return nullptr; // No scaling when there is ... no different given size ... if (width == mBounds.w && height == mBounds.h) return nullptr; Image* scaledImage = nullptr; #ifndef USE_SDL2 if (mSDLSurface) { SDL_Surface *const scaledSurface = zoomSurface(mSDLSurface, static_cast(width) / mBounds.w, static_cast(height) / mBounds.h, 1); // The load function takes care of the SDL<->OpenGL implementation // and about freeing the given SDL_surface*. if (scaledSurface) { scaledImage = imageHelper->load(scaledSurface); SDL_FreeSurface(scaledSurface); } } #endif return scaledImage; } Image *Image::getSubImage(const int x, const int y, const int width, const int height) { // Create a new clipped sub-image #ifdef USE_OPENGL if (OpenGLImageHelper::mUseOpenGL) { return new SubImage(this, mGLImage, x, y, width, height, mTexWidth, mTexHeight); } #endif #ifdef USE_SDL2 return new SubImage(this, mTexture, x, y, width, height); #else return new SubImage(this, mSDLSurface, x, y, width, height); #endif } void Image::SDLTerminateAlphaCache() { SDLCleanCache(); mUseAlphaCache = false; }