axmol/cocos2dx/textures/CCTextureCache.cpp

438 lines
11 KiB
C++
Raw Normal View History

/****************************************************************************
Copyright (c) 2010 cocos2d-x.org
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.
****************************************************************************/
#include <stack>
#include <string>
2010-07-26 17:32:23 +08:00
#include <cctype>
#include "CCTextureCache.h"
#include "CCTexture2D.h"
#include "ccMacros.h"
#include "NSData.h"
2010-07-30 16:35:07 +08:00
#include "CCDirector.h"
2010-08-25 14:14:31 +08:00
#include "platform/platform.h"
2010-08-25 17:21:38 +08:00
#include "CCXFileUtils.h"
#include "ccxImage.h"
2010-11-22 18:09:38 +08:00
namespace cocos2d {
class CCAsyncObject : NSObject
{
public:
fpAsyncCallback m_pfnCallback;
NSObject* m_pTarget;
std::string * m_pData;
public:
CCAsyncObject();
~CCAsyncObject()
{
CCLOGINFO("cocos2d: deallocing CCAsyncObject.");
CCX_SAFE_DELETE(m_pTarget);
CCX_SAFE_DELETE(m_pData);
}
};
// implementation CCTextureCache
// TextureCache - Alloc, Init & Dealloc
static CCTextureCache *g_sharedTextureCache;
CCTextureCache * CCTextureCache::sharedTextureCache()
{
if (!g_sharedTextureCache)
g_sharedTextureCache = new CCTextureCache();
return g_sharedTextureCache;
}
CCTextureCache::CCTextureCache()
{
NSAssert(g_sharedTextureCache == NULL, "Attempted to allocate a second instance of a singleton.");
2010-07-21 11:13:32 +08:00
m_pTextures = new NSMutableDictionary<std::string, CCTexture2D*>();
2010-07-26 17:32:23 +08:00
m_pDictLock = new NSLock();
m_pContextLock = new NSLock();
}
CCTextureCache::~CCTextureCache()
{
CCLOG("cocos2d: deallocing CCTextureCache.");
CCX_SAFE_RELEASE(m_pTextures);
CCX_SAFE_DELETE(m_pDictLock);
CCX_SAFE_DELETE(m_pContextLock);
}
void CCTextureCache::purgeSharedTextureCache()
{
2010-09-06 18:10:41 +08:00
CCX_SAFE_RELEASE_NULL(g_sharedTextureCache);
}
2010-08-06 16:05:19 +08:00
char * CCTextureCache::description()
{
2010-08-06 16:05:19 +08:00
char *ret = new char[100];
sprintf(ret, "<CCTextureCache | Number of textures = %u>", m_pTextures->count());
2010-07-21 11:13:32 +08:00
return ret;
}
// TextureCache - Add Images
/* @todo EAGLContext
void CCTextureCache::addImageWithAsyncObject(CCAsyncObject* async)
{
NSAutoreleasePool *autoreleasepool = [[NSAutoreleasePool alloc] init];
// textures will be created on the main OpenGL context
// it seems that in SDK 2.2.x there can't be 2 threads creating textures at the same time
// the lock is used for this purpose: issue #472
[contextLock lock];
if( auxEAGLcontext == nil ) {
auxEAGLcontext = [[EAGLContext alloc]
initWithAPI:kEAGLRenderingAPIOpenGLES1
sharegroup:[[[[CCDirector sharedDirector] openGLView] context] sharegroup]];
if( ! auxEAGLcontext )
CCLOG(@"cocos2d: TextureCache: Could not create EAGL context");
}
if( [EAGLContext setCurrentContext:auxEAGLcontext] ) {
// load / create the texture
CCTexture2D *tex = [self addImage:async.data];
// The callback will be executed on the main thread
[async.target performSelectorOnMainThread:async.selector withObject:tex waitUntilDone:NO];
[EAGLContext setCurrentContext:nil];
} else {
CCLOG(@"cocos2d: TetureCache: EAGLContext error");
}
[contextLock unlock];
[autoreleasepool release];
}*/
/* @todo selector, NSThread
2010-07-22 11:15:25 +08:00
void CCTextureCache::addImageAsync(const char* filename, NSObject *target, fpAsyncCallback func)
{
2010-07-22 11:15:25 +08:00
NSAssert(filename != NULL , "TextureCache: fileimage MUST not be nill");
// optimization
CCTexture2D * tex;
if ( (tex = m_pTextures->objectForKey(filename)) )
{
target->
}
if( (tex=[textures objectForKey: filename] ) ) {
[target performSelector:selector withObject:tex];
return;
}
// schedule the load
CCAsyncObject *asyncObject = [[CCAsyncObject alloc] init];
asyncObject.selector = selector;
asyncObject.target = target;
asyncObject.data = filename;
[NSThread detachNewThreadSelector:@selector(addImageWithAsyncObject:) toTarget:self withObject:asyncObject];
[asyncObject release];
}*/
CCTexture2D * CCTextureCache::addImage(const char * path)
{
2010-07-26 17:32:23 +08:00
NSAssert(path != NULL, "TextureCache: fileimage MUST not be NULL");
2010-08-06 14:32:32 +08:00
CCTexture2D * texture = NULL;
// Split up directory and filename
std::string fullpath(CCFileUtils::fullPathFromRelativePath(path));
// MUTEX:
// Needed since addImageAsync calls this method from a different thread
2010-07-26 17:32:23 +08:00
m_pDictLock->lock();
2010-12-30 17:30:11 +08:00
// remove possible -HD suffix to prevent caching the same image twice (issue #1040)
fullpath = string(CCFileUtils::ccRemoveHDSuffixFromFile(fullpath.c_str()));
2010-12-30 17:30:11 +08:00
texture = m_pTextures->objectForKey(fullpath);
if( ! texture )
{
std::string lowerCase(path);
for (unsigned int i = 0; i < lowerCase.length(); ++i)
{
lowerCase[i] = tolower(lowerCase[i]);
}
// all images are handled by UIImage except PVR extension that is handled by our own handler
// if ( [[path lowercaseString] hasSuffix:@".pvr"] )
do
{
if (std::string::npos != lowerCase.find(".pvr"))
{
#ifdef _POWERVR_SUPPORT_
texture = this->addPVRTCImage(fullpath.c_str());
#endif
2010-09-26 10:09:05 +08:00
}
2010-11-22 18:09:38 +08:00
// Issue #886: TEMPORARY FIX FOR TRANSPARENT JPEGS IN IOS4
else if (std::string::npos != lowerCase.find(".jpg") || std::string::npos != lowerCase.find(".jpeg"))
{
2011-01-27 17:07:36 +08:00
ccxImage * image = new ccxImage();
if(! image->initWithImageFile(fullpath.c_str(), ccxImage::kFmtJpg))
{
delete image;
break;
}
texture = new CCTexture2D();
texture->initWithImage(image);
CCX_SAFE_DELETE(image);// image->release();
if( texture )
{
m_pTextures->setObject(texture, fullpath);
texture->release();
}
else
{
CCLOG("cocos2d: Couldn't add image:%s in CCTextureCache", path);
}
}
else
{
2010-11-22 18:09:38 +08:00
//# work around for issue #910
#if 0
UIImage *image = [UIImage imageNamed:path];
tex = [ [CCTexture2D alloc] initWithImage: image ];
#else
// prevents overloading the autorelease pool
2011-01-27 17:07:36 +08:00
ccxImage * image = new ccxImage();
if(! image->initWithImageFile(fullpath.c_str(), ccxImage::kFmtPng))
{
delete image;
break;
}
texture = new CCTexture2D();
texture->initWithImage(image);
CCX_SAFE_DELETE(image);// image->release();
2010-11-22 18:09:38 +08:00
#endif
if( texture )
{
m_pTextures->setObject(texture, fullpath);
texture->release();
}
else
{
CCLOG("cocos2d: Couldn't add image:%s in CCTextureCache", path);
}
}
} while (0);
}
2010-08-04 15:46:12 +08:00
m_pDictLock->unlock();
2010-08-06 14:32:32 +08:00
return texture;
}
#ifdef _POWERVR_SUPPORT_
2010-07-22 11:15:25 +08:00
CCTexture2D* CCTextureCache::addPVRTCImage(const char* path, int bpp, bool hasAlpha, int width)
{
2010-07-22 11:15:25 +08:00
NSAssert(path != NULL, "TextureCache: fileimage MUST not be nill");
NSAssert( bpp==2 || bpp==4, "TextureCache: bpp must be either 2 or 4");
2010-08-06 14:32:32 +08:00
CCTexture2D * texture;
2010-07-26 17:32:23 +08:00
std::string temp(path);
2010-08-06 14:32:32 +08:00
if ( (texture = m_pTextures->objectForKey(temp)) )
{
2010-08-06 14:32:32 +08:00
return texture;
}
2010-07-26 17:32:23 +08:00
// Split up directory and filename
2010-07-26 17:32:23 +08:00
std::string fullpath( CCFileUtils::fullPathFromRelativePath(path) );
2010-07-28 13:48:13 +08:00
NSData * data = NSData::dataWithContentsOfFile(fullpath);
2010-08-06 14:32:32 +08:00
texture = new CCTexture2D();
texture->initWithPVRTCData(data->bytes(), 0, bpp, hasAlpha, width);
if( texture )
{
2010-08-06 14:32:32 +08:00
m_pTextures->setObject(texture, temp);
texture->autorelease();
}
else
{
2010-07-26 17:32:23 +08:00
CCLOG("cocos2d: Couldn't add PVRTCImage:%s in CCTextureCache",path);
}
2010-07-26 17:32:23 +08:00
CCX_SAFE_DELETE(data);
2010-08-06 14:32:32 +08:00
return texture;
}
2010-07-22 11:15:25 +08:00
CCTexture2D * CCTextureCache::addPVRTCImage(const char* fileimage)
{
2010-07-22 11:15:25 +08:00
NSAssert(fileimage != NULL, "TextureCache: fileimage MUST not be nill");
2010-08-06 14:32:32 +08:00
CCTexture2D * texture;
2010-07-22 11:20:52 +08:00
std::string key(fileimage);
2010-08-06 14:32:32 +08:00
if( (texture = m_pTextures->objectForKey(key)) )
2010-07-21 11:13:32 +08:00
{
2010-08-06 14:32:32 +08:00
return texture;
}
2010-08-06 14:32:32 +08:00
texture = new CCTexture2D();
texture = texture->initWithPVRTCFile(fileimage);
if( texture )
{
2010-08-06 14:32:32 +08:00
m_pTextures-> setObject( texture, key);
texture->autorelease();
}
else
{
CCLOG("cocos2d: Couldn't add PVRTCImage:%s in CCTextureCache",fileimage);
}
2010-07-21 11:13:32 +08:00
2010-08-06 14:32:32 +08:00
return texture;
}
#endif
/* @todo CGImageRef
-(CCTexture2D*) addCGImage: (CGImageRef) imageref forKey: (string & )key
{
NSAssert(imageref != nil, @"TextureCache: image MUST not be nill");
CCTexture2D * tex = nil;
// If key is nil, then create a new texture each time
if( key && (tex=[textures objectForKey: key] ) ) {
return tex;
}
// prevents overloading the autorelease pool
UIImage *image = [[UIImage alloc] initWithCGImage:imageref];
tex = [[CCTexture2D alloc] initWithImage: image];
[image release];
if(tex && key)
[textures setObject: tex forKey:key];
else
CCLOG(@"cocos2d: Couldn't add CGImage in CCTextureCache");
return [tex autorelease];
}*/
2011-01-27 17:07:36 +08:00
CCTexture2D* CCTextureCache::addUIImage(ccxImage *image, const char *key)
2010-08-26 14:06:41 +08:00
{
NSAssert(image != NULL && key != NULL, "TextureCache: image MUST not be nill");
2010-08-26 14:06:41 +08:00
CCTexture2D * texture = NULL;
std::string forKey = key;
2010-08-26 14:06:41 +08:00
m_pDictLock->lock();
2010-08-26 14:06:41 +08:00
do
2010-08-26 14:06:41 +08:00
{
// If key is nil, then create a new texture each time
if(texture = m_pTextures->objectForKey(forKey))
{
break;
}
// prevents overloading the autorelease pool
texture = new CCTexture2D();
texture->initWithImage(image);
if(texture)
{
m_pTextures->setObject(texture, forKey);
texture->autorelease();
}
else
{
CCLOG("cocos2d: Couldn't add UIImage in CCTextureCache");
}
} while (0);
m_pDictLock->unlock();
2010-08-26 14:06:41 +08:00
return texture;
}
// TextureCache - Remove
void CCTextureCache::removeAllTextures()
{
2010-07-21 17:40:10 +08:00
m_pTextures->removeAllObjects();
}
void CCTextureCache::removeUnusedTextures()
{
2010-07-30 16:35:07 +08:00
std::vector<std::string> keys = m_pTextures->allKeys();
std::vector<std::string>::iterator it;
2010-11-22 18:09:38 +08:00
for (it = keys.begin(); it != keys.end(); it++)
{
CCTexture2D *value = m_pTextures->objectForKey(*it);
if (value->retainCount() == 1)
{
CCLOG("cocos2d: CCTextureCache: removing unused texture: %s", (*it).c_str());
m_pTextures->removeObjectForKey(*it);
}
}
}
2010-08-06 14:32:32 +08:00
void CCTextureCache::removeTexture(CCTexture2D* texture)
{
2010-08-06 14:32:32 +08:00
if( ! texture )
return;
2010-08-06 14:32:32 +08:00
std::vector<std::string> keys = m_pTextures->allKeysForObject(texture);
for (unsigned int i = 0; i < keys.size(); i++)
{
m_pTextures->removeObjectForKey(keys[i]);
}
}
2010-12-30 17:30:11 +08:00
void CCTextureCache::removeTextureForKey(const char *textureKeyName)
{
2010-12-30 17:30:11 +08:00
if (textureKeyName == NULL)
{
return;
2010-12-30 17:30:11 +08:00
}
2010-12-30 17:30:11 +08:00
m_pTextures->removeObjectForKey(string(textureKeyName));
}
CCTexture2D* CCTextureCache::textureForKey(const char* key)
{
return m_pTextures->objectForKey(string(key));
}
2010-11-22 18:09:38 +08:00
}//namespace cocos2d