axmol/core/renderer/CCTextureCache.h

312 lines
10 KiB
C
Raw Normal View History

/****************************************************************************
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2011 Zynga Inc.
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
Copyright (c) 2020 C4games Ltd.
Copyright (c) 2021-2022 Bytedance Inc.
2022-01-04 12:36:20 +08:00
https://adxeproject.github.io/
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.
****************************************************************************/
#ifndef __CCTEXTURE_CACHE_H__
#define __CCTEXTURE_CACHE_H__
#include <mutex>
2013-06-26 14:48:19 +08:00
#include <thread>
#include <condition_variable>
#include <queue>
#include <string>
#include <unordered_map>
2014-01-02 17:23:00 +08:00
#include <functional>
#include "base/CCRef.h"
Squashed commit of the following: commit a794d107ad85667e3d754f0b6251fc864dfbf288 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 14:33:49 2014 -0700 Yeah... everything compiles on win32 and wp8 commit 4740be6e4a0d16f742c27996e7ab2c100adc76af Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:58:38 2014 -0700 CCIME moved to base and compiles on Android commit ff3e1bf1eb27a01019f4e1b56d1aebbe2d385f72 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:02:57 2014 -0700 compiles Ok for Windows Phone 8 commit 8160a4eb2ecdc61b5bd1cf56b90d2da6f11e3ebd Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 12:25:31 2014 -0700 fixes for Windows Phone 8 commit 418197649efc93032aee0adc205e502101cdb53d Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 11:15:13 2014 -0700 Compiles on Win32 commit 08813ed7cf8ac1079ffadeb1ce78ea9e833e1a33 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 10:08:31 2014 -0700 Compiles on linux! commit 118896521e5b335a5257090b6863f1fb2a2002fe Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 09:30:42 2014 -0700 moves cocos/2d/platform -> cocos/platform commit 4fe9319d7717b0c1bccb2db0156eeb86255a89e0 Merge: bd68ec2 511295e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 08:24:41 2014 -0700 Merge remote-tracking branch 'cocos2d/v3' into files commit bd68ec2f0e3a826d8b2f4b60564ba65ce766bc56 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu May 15 19:36:23 2014 -0700 files in the correct directory
2014-05-17 05:36:00 +08:00
#include "renderer/CCTexture2D.h"
#include "platform/CCImage.h"
#if CC_ENABLE_CACHE_TEXTURE_DATA
2021-12-25 10:04:45 +08:00
# include <list>
#endif
2012-04-18 18:43:45 +08:00
NS_CC_BEGIN
2012-06-20 18:09:11 +08:00
/**
* @addtogroup _2d
2012-06-20 18:09:11 +08:00
* @{
*/
/*
2021-12-25 10:04:45 +08:00
* From version 3.0, TextureCache will never be treated as a singleton, it will be owned by director.
* All call by TextureCache::getInstance() should be replaced by Director::getInstance()->getTextureCache().
*/
2012-06-20 18:09:11 +08:00
/** @brief Singleton that handles the loading of textures.
2021-12-25 10:04:45 +08:00
* Once the texture is loaded, the next time it will return.
* A reference of the previously loaded texture reducing GPU & CPU memory.
*/
class CC_DLL TextureCache : public Ref
{
public:
// ETC1 ALPHA supports.
2021-12-26 23:26:34 +08:00
static void setETC1AlphaFileSuffix(std::string_view suffix);
static std::string getETC1AlphaFileSuffix();
public:
/**
* @js ctor
*/
TextureCache();
/**
* @js NA
* @lua NA
*/
virtual ~TextureCache();
/**
* @js NA
* @lua NA
*/
virtual std::string getDescription() const;
// Dictionary* snapshotTextures();
/** Returns a Texture2D object given an filename.
* If the filename was not previously loaded, it will create a new Texture2D.
* Object and it will return it. It will use the filename as a key.
* Otherwise it will return a reference of a previously loaded image.
2019-08-20 15:15:40 +08:00
* Supported image extensions: .png, .bmp, .jpeg, .pvr.
@param filepath The file path.
*/
2021-12-26 23:26:34 +08:00
Texture2D* addImage(std::string_view filepath);
Texture2D* addImage(std::string_view filepath, PixelFormat format);
/** Returns a Texture2D object given a file image.
* If the file image was not previously loaded, it will create a new Texture2D object and it will return it.
* Otherwise it will load a texture in a offthread, and when the image is loaded, the callback will be called with
2021-12-25 10:04:45 +08:00
the Texture2D as a parameter.
* The callback will be called from the main thread, so it is safe to create any cocos2d object from the callback.
* Supported image extensions: .png, .jpg
@param filepath The file path.
@param callback A callback function would be invoked after the image is loaded.
@since v0.8
@remark Please don't invoke Texture2D::setDefaultAlphaPixelFormat in main GL thread before invoke this API.
*/
2021-12-26 23:26:34 +08:00
virtual void addImageAsync(std::string_view filepath, const std::function<void(Texture2D*)>& callback);
2021-12-25 10:04:45 +08:00
2021-12-26 23:26:34 +08:00
void addImageAsync(std::string_view path,
2021-12-25 10:04:45 +08:00
const std::function<void(Texture2D*)>& callback,
2021-12-26 23:26:34 +08:00
std::string_view callbackKey);
/** Unbind a specified bound image asynchronous callback.
2021-12-25 10:04:45 +08:00
* In the case an object who was bound to an image asynchronous callback was destroyed before the callback is
* invoked, the object always need to unbind this callback manually.
* @param filename It's the related/absolute path of the file image.
* @since v3.1
*/
2021-12-26 23:26:34 +08:00
virtual void unbindImageAsync(std::string_view filename);
2021-12-25 10:04:45 +08:00
/** Unbind all bound image asynchronous load callbacks.
* @since v3.1
*/
virtual void unbindAllImageAsync();
/** Returns a Texture2D object given an Image.
2021-12-25 10:04:45 +08:00
* If the image was not previously loaded, it will create a new Texture2D object and it will return it.
* Otherwise it will return a reference of a previously loaded image.
* @param key The "key" parameter will be used as the "key" for the cache.
* If "key" is nil, then a new texture will be created each time.
*/
2021-12-26 23:26:34 +08:00
Texture2D* addImage(Image* image, std::string_view key);
Texture2D* addImage(Image* image, std::string_view key, PixelFormat format);
/** Returns an already created texture. Returns nil if the texture doesn't exist.
@param key It's the related/absolute path of the file image.
@since v0.99.5
*/
2021-12-26 23:26:34 +08:00
Texture2D* getTextureForKey(std::string_view key) const;
/** Reload texture from the image file.
2021-12-25 10:04:45 +08:00
* If the file image hasn't loaded before, load it.
* Otherwise the texture will be reloaded from the file image.
* @param fileName It's the related/absolute path of the file image.
* @return True if the reloading is succeed, otherwise return false.
*/
2021-12-26 23:26:34 +08:00
bool reloadTexture(std::string_view fileName);
/** Purges the dictionary of loaded textures.
2021-12-25 10:04:45 +08:00
* Call this method if you receive the "Memory Warning".
* In the short term: it will free some resources preventing your app from being killed.
* In the medium term: it will allocate more resources.
* In the long term: it will be the same.
*/
void removeAllTextures();
/** Removes unused textures.
2021-12-25 10:04:45 +08:00
* Textures that have a retain count of 1 will be deleted.
* It is convenient to call this method after when starting a new Scene.
* @since v0.8
*/
void removeUnusedTextures();
/** Deletes a texture from the cache given a texture.
2021-12-25 10:04:45 +08:00
*/
void removeTexture(Texture2D* texture);
/** Deletes a texture from the cache given a its key name.
@param key It's the related/absolute path of the file image.
@since v0.99.4
*/
2021-12-26 23:26:34 +08:00
void removeTextureForKey(std::string_view key);
/** Output to CCLOG the current contents of this TextureCache.
2021-12-25 10:04:45 +08:00
* This will attempt to calculate the size of each texture, and the total texture memory in use.
*
* @since v1.0
*/
std::string getCachedTextureInfo() const;
2021-12-25 10:04:45 +08:00
// Wait for texture cache to quit before destroy instance.
/**Called by director, please do not called outside.*/
void waitForQuit();
/**
* Get the file path of the texture
*
* @param texture A Texture2D object pointer.
*
* @return The full path of the file.
*/
std::string getTextureFilePath(Texture2D* texture) const;
2015-12-09 00:45:39 +08:00
/** Reload texture from a new file.
2021-12-25 10:04:45 +08:00
* This function is mainly for editor, won't suggest use it in game for performance reason.
*
* @param srcName Original texture file name.
* @param dstName New texture file name.
*
* @since v3.10
*/
2021-12-26 23:26:34 +08:00
void renameTextureWithKey(std::string_view srcName, std::string_view dstName);
private:
void addImageAsyncCallBack(float dt);
2013-06-21 15:49:45 +08:00
void loadImage();
2021-12-26 23:26:34 +08:00
void parseNinePatchImage(Image* image, Texture2D* texture, std::string_view path);
2021-12-25 10:04:45 +08:00
public:
protected:
struct AsyncStruct;
2021-12-25 10:04:45 +08:00
2013-06-26 14:48:19 +08:00
std::thread* _loadingThread;
std::deque<AsyncStruct*> _asyncStructQueue;
std::deque<AsyncStruct*> _requestQueue;
std::deque<AsyncStruct*> _responseQueue;
std::mutex _requestMutex;
std::mutex _responseMutex;
2021-12-25 10:04:45 +08:00
2013-06-21 15:49:45 +08:00
std::condition_variable _sleepCondition;
2013-06-21 15:49:45 +08:00
bool _needQuit;
2013-06-21 15:49:45 +08:00
int _asyncRefCount;
2021-12-26 23:26:34 +08:00
hlookup::string_map<Texture2D*> _textures;
static std::string s_etc1AlphaFileSuffix;
};
#if CC_ENABLE_CACHE_TEXTURE_DATA
class VolatileTexture
{
2021-12-25 10:04:45 +08:00
typedef enum
{
kInvalid = 0,
kImageFile,
kImageData,
kString,
kImage,
2021-12-25 10:04:45 +08:00
} ccCachedImageType;
private:
2021-12-25 10:04:45 +08:00
VolatileTexture(Texture2D* t);
/**
* @js NA
* @lua NA
*/
~VolatileTexture();
protected:
2021-12-25 10:04:45 +08:00
friend class VolatileTextureMgr;
Texture2D* _texture;
Image* _uiImage;
ccCachedImageType _cashedImageType;
2021-12-25 10:04:45 +08:00
void* _textureData;
int _dataLen;
2021-10-23 23:27:14 +08:00
Vec2 _textureSize;
backend::PixelFormat _pixelFormat;
std::string _fileName;
2021-12-25 10:04:45 +08:00
std::string _text;
FontDefinition _fontDefinition;
};
class CC_DLL VolatileTextureMgr
{
public:
2021-12-26 23:26:34 +08:00
static void addImageTexture(Texture2D* tt, std::string_view imageFileName);
2021-12-25 10:04:45 +08:00
static void addStringTexture(Texture2D* tt, const char* text, const FontDefinition& fontDefinition);
static void addDataTexture(Texture2D* tt,
void* data,
int dataLen,
backend::PixelFormat pixelFormat,
const Vec2& contentSize);
static void addImage(Texture2D* tt, Image* image);
static void removeTexture(Texture2D* t);
static void reloadAllTextures();
public:
static std::list<VolatileTexture*> _textures;
static bool _isReloading;
// find VolatileTexture by Texture2D*
// if not found, create a new one
2021-12-25 10:04:45 +08:00
static VolatileTexture* findVolotileTexture(Texture2D* tt);
private:
2021-12-26 23:26:34 +08:00
static void reloadTexture(Texture2D* texture, std::string_view filename, backend::PixelFormat pixelFormat);
};
#endif
2012-06-20 18:09:11 +08:00
// end of textures group
/// @}
2012-04-18 18:43:45 +08:00
NS_CC_END
2021-12-25 10:04:45 +08:00
#endif //__CCTEXTURE_CACHE_H__