2011-03-19 10:59:01 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2011 cocos2d-x.org
|
|
|
|
Copyright (c) 2008-2010 Ricardo Quesada
|
2011-07-05 10:47:25 +08:00
|
|
|
Copyright (c) 2011 Zynga Inc.
|
2011-03-19 10:59:01 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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__
|
|
|
|
|
2012-06-19 13:50:11 +08:00
|
|
|
#include "cocoa/CCObject.h"
|
|
|
|
#include "cocoa/CCDictionary.h"
|
|
|
|
#include "textures/CCTexture2D.h"
|
2011-03-19 10:59:01 +08:00
|
|
|
#include <string>
|
2012-01-08 21:03:16 +08:00
|
|
|
|
2010-07-16 14:15:06 +08:00
|
|
|
|
2012-06-06 10:06:51 +08:00
|
|
|
#if CC_ENABLE_CACHE_TEXTURE_DATA
|
2012-06-19 17:22:55 +08:00
|
|
|
#include "platform/CCImage.h"
|
2011-04-06 16:29:58 +08:00
|
|
|
#include <list>
|
|
|
|
#endif
|
|
|
|
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2011-03-09 14:40:05 +08:00
|
|
|
class CCLock;
|
2011-03-07 17:11:57 +08:00
|
|
|
class CCImage;
|
2010-08-04 15:46:12 +08:00
|
|
|
|
2010-09-29 09:44:57 +08:00
|
|
|
/** @brief Singleton that handles the loading of textures
|
2010-07-16 14:15:06 +08:00
|
|
|
* Once the texture is loaded, the next time it will return
|
|
|
|
* a reference of the previously loaded texture reducing GPU & CPU memory
|
|
|
|
*/
|
2012-01-08 21:03:16 +08:00
|
|
|
class CC_DLL CCTextureCache : public CCObject
|
2010-07-16 14:15:06 +08:00
|
|
|
{
|
2010-07-16 16:28:11 +08:00
|
|
|
protected:
|
2012-04-19 14:35:52 +08:00
|
|
|
CCDictionary* m_pTextures;
|
|
|
|
//pthread_mutex_t *m_pDictLock;
|
2011-11-16 11:04:29 +08:00
|
|
|
|
2010-07-16 14:15:06 +08:00
|
|
|
|
2010-07-21 11:13:32 +08:00
|
|
|
private:
|
2012-04-19 14:35:52 +08:00
|
|
|
// @todo void addImageWithAsyncObject(CCAsyncObject* async);
|
2012-06-08 13:55:28 +08:00
|
|
|
void addImageAsyncCallBack(float dt);
|
2010-07-21 11:13:32 +08:00
|
|
|
|
2010-07-16 16:28:11 +08:00
|
|
|
public:
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
CCTextureCache();
|
|
|
|
virtual ~CCTextureCache();
|
|
|
|
|
|
|
|
const char* description(void);
|
|
|
|
|
2012-04-27 18:47:49 +08:00
|
|
|
CCDictionary* snapshotTextures();
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Retruns ths shared instance of the cache */
|
|
|
|
static CCTextureCache * sharedTextureCache();
|
|
|
|
|
|
|
|
/** purges the cache. It releases the retained instance.
|
|
|
|
@since v0.99.0
|
|
|
|
*/
|
|
|
|
static void purgeSharedTextureCache();
|
|
|
|
|
|
|
|
/** Returns a Texture2D object given an file image
|
|
|
|
* If the file image was not previously loaded, it will create a new CCTexture2D
|
|
|
|
* object and it will return it. It will use the filename as a key.
|
|
|
|
* Otherwise it will return a reference of a previosly loaded image.
|
|
|
|
* Supported image extensions: .png, .bmp, .tiff, .jpeg, .pvr, .gif
|
|
|
|
*/
|
|
|
|
CCTexture2D* addImage(const char* fileimage);
|
|
|
|
|
|
|
|
/* Returns a Texture2D object given a file image
|
|
|
|
* If the file image was not previously loaded, it will create a new CCTexture2D object and it will return it.
|
|
|
|
* Otherwise it will load a texture in a new thread, and when the image is loaded, the callback will be called with 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
|
|
|
|
* @since v0.8
|
|
|
|
*/
|
|
|
|
|
|
|
|
void addImageAsync(const char *path, CCObject *target, SEL_CallFuncO selector);
|
|
|
|
|
|
|
|
/* Returns a Texture2D object given an CGImageRef image
|
|
|
|
* If the image was not previously loaded, it will create a new CCTexture2D object and it will return it.
|
|
|
|
* Otherwise it will return a reference of a previously loaded image
|
|
|
|
* 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.
|
|
|
|
* @since v0.8
|
|
|
|
*/
|
|
|
|
// @todo CGImageRef CCTexture2D* addCGImage(CGImageRef image, string & key);
|
|
|
|
/** Returns a Texture2D object given an UIImage image
|
|
|
|
* If the image was not previously loaded, it will create a new CCTexture2D object and it will return it.
|
|
|
|
* Otherwise it will return a reference of a previously loaded image
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
CCTexture2D* addUIImage(CCImage *image, const char *key);
|
|
|
|
|
|
|
|
/** Returns an already created texture. Returns nil if the texture doesn't exist.
|
|
|
|
@since v0.99.5
|
|
|
|
*/
|
|
|
|
CCTexture2D* textureForKey(const char* key);
|
|
|
|
/** Purges the dictionary of loaded textures.
|
|
|
|
* 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
|
|
|
|
* Textures that have a retain count of 1 will be deleted
|
|
|
|
* It is convinient to call this method after when starting a new Scene
|
|
|
|
* @since v0.8
|
|
|
|
*/
|
|
|
|
void removeUnusedTextures();
|
|
|
|
|
|
|
|
/** Deletes a texture from the cache given a texture
|
|
|
|
*/
|
|
|
|
void removeTexture(CCTexture2D* texture);
|
|
|
|
|
|
|
|
/** Deletes a texture from the cache given a its key name
|
|
|
|
@since v0.99.4
|
|
|
|
*/
|
|
|
|
void removeTextureForKey(const char *textureKeyName);
|
|
|
|
|
|
|
|
/** Output to CCLOG the current contents of this CCTextureCache
|
|
|
|
* This will attempt to calculate the size of each texture, and the total texture memory in use
|
|
|
|
*
|
|
|
|
* @since v1.0
|
|
|
|
*/
|
|
|
|
void dumpCachedTextureInfo();
|
2011-07-05 10:47:25 +08:00
|
|
|
|
2011-07-19 15:14:59 +08:00
|
|
|
#ifdef CC_SUPPORT_PVRTC
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Returns a Texture2D object given an PVRTC RAW filename
|
|
|
|
* If the file image was not previously loaded, it will create a new CCTexture2D
|
|
|
|
* object and it will return it. Otherwise it will return a reference of a previosly loaded image
|
|
|
|
*
|
|
|
|
* It can only load square images: width == height, and it must be a power of 2 (128,256,512...)
|
|
|
|
* bpp can only be 2 or 4. 2 means more compression but lower quality.
|
|
|
|
* hasAlpha: whether or not the image contains alpha channel
|
|
|
|
*/
|
|
|
|
CCTexture2D* addPVRTCImage(const char* fileimage, int bpp, bool hasAlpha, int width);
|
2011-07-19 15:14:59 +08:00
|
|
|
#endif // CC_SUPPORT_PVRTC
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Returns a Texture2D object given an PVR filename
|
|
|
|
* If the file image was not previously loaded, it will create a new CCTexture2D
|
|
|
|
* object and it will return it. Otherwise it will return a reference of a previosly loaded image
|
|
|
|
*/
|
|
|
|
CCTexture2D* addPVRImage(const char* filename);
|
2011-04-06 16:29:58 +08:00
|
|
|
|
|
|
|
/** Reload all textures
|
2012-06-06 10:06:51 +08:00
|
|
|
It's only useful when the value of CC_ENABLE_CACHE_TEXTURE_DATA is 1
|
2011-04-06 16:29:58 +08:00
|
|
|
*/
|
|
|
|
static void reloadAllTextures();
|
|
|
|
};
|
|
|
|
|
2012-06-06 10:06:51 +08:00
|
|
|
#if CC_ENABLE_CACHE_TEXTURE_DATA
|
2011-04-06 16:29:58 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
class VolatileTexture
|
|
|
|
{
|
|
|
|
typedef enum {
|
|
|
|
kInvalid = 0,
|
|
|
|
kImageFile,
|
|
|
|
kImageData,
|
|
|
|
kString,
|
2012-04-24 15:02:18 +08:00
|
|
|
kImage,
|
2012-04-19 14:35:52 +08:00
|
|
|
}ccCachedImageType;
|
|
|
|
|
|
|
|
public:
|
|
|
|
VolatileTexture(CCTexture2D *t);
|
|
|
|
~VolatileTexture();
|
|
|
|
|
|
|
|
static void addImageTexture(CCTexture2D *tt, const char* imageFileName, CCImage::EImageFormat format);
|
2012-06-13 18:33:44 +08:00
|
|
|
static void addStringTexture(CCTexture2D *tt, const char* text, const CCSize& dimensions, CCTextAlignment alignment,
|
|
|
|
CCVerticalTextAlignment vAlignment, const char *fontName, float fontSize);
|
2012-04-19 14:35:52 +08:00
|
|
|
static void addDataTexture(CCTexture2D *tt, void* data, CCTexture2DPixelFormat pixelFormat, const CCSize& contentSize);
|
2012-04-24 15:02:18 +08:00
|
|
|
static void addCCImage(CCTexture2D *tt, CCImage *image);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
static void removeTexture(CCTexture2D *t);
|
|
|
|
static void reloadAllTextures();
|
|
|
|
|
|
|
|
public:
|
|
|
|
static std::list<VolatileTexture*> textures;
|
|
|
|
static bool isReloading;
|
2012-04-24 15:02:18 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
// find VolatileTexture by CCTexture2D*
|
|
|
|
// if not found, create a new one
|
|
|
|
static VolatileTexture* findVolotileTexture(CCTexture2D *tt);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
CCTexture2D *texture;
|
2012-04-24 15:02:18 +08:00
|
|
|
|
|
|
|
CCImage *uiImage;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
ccCachedImageType m_eCashedImageType;
|
|
|
|
|
|
|
|
void *m_pTextureData;
|
|
|
|
CCSize m_TextureSize;
|
|
|
|
CCTexture2DPixelFormat m_PixelFormat;
|
2011-04-06 16:29:58 +08:00
|
|
|
|
|
|
|
std::string m_strFileName;
|
|
|
|
CCImage::EImageFormat m_FmtImage;
|
|
|
|
|
|
|
|
CCSize m_size;
|
|
|
|
CCTextAlignment m_alignment;
|
2012-06-13 18:33:44 +08:00
|
|
|
CCVerticalTextAlignment m_vAlignment;
|
2011-04-06 16:29:58 +08:00
|
|
|
std::string m_strFontName;
|
|
|
|
std::string m_strText;
|
|
|
|
float m_fFontSize;
|
2011-03-19 10:59:01 +08:00
|
|
|
};
|
2011-04-06 16:29:58 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2012-04-18 18:43:45 +08:00
|
|
|
NS_CC_END
|
2011-03-19 10:59:01 +08:00
|
|
|
|
|
|
|
#endif //__CCTEXTURE_CACHE_H__
|
|
|
|
|