2010-12-31 14:56:24 +08:00
|
|
|
/****************************************************************************
|
|
|
|
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 "CCAnimationCache.h"
|
|
|
|
#include "ccMacros.h"
|
|
|
|
#include "CCAnimation.h"
|
|
|
|
#include "CCSpriteFrame.h"
|
|
|
|
|
|
|
|
namespace cocos2d
|
|
|
|
{
|
|
|
|
CCAnimationCache* CCAnimationCache::s_pSharedAnimationCache = NULL;
|
|
|
|
|
|
|
|
CCAnimationCache* CCAnimationCache::sharedAnimationCache(void)
|
|
|
|
{
|
|
|
|
if (! s_pSharedAnimationCache)
|
|
|
|
{
|
|
|
|
s_pSharedAnimationCache = new CCAnimationCache();
|
|
|
|
s_pSharedAnimationCache->init();
|
|
|
|
}
|
|
|
|
|
|
|
|
return s_pSharedAnimationCache;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCAnimationCache::purgeSharedAnimationCache(void)
|
|
|
|
{
|
2011-03-07 17:11:57 +08:00
|
|
|
CC_SAFE_RELEASE_NULL(s_pSharedAnimationCache);
|
2010-12-31 14:56:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CCAnimationCache::init()
|
|
|
|
{
|
2011-03-07 17:11:57 +08:00
|
|
|
m_pAnimations = new CCMutableDictionary<std::string, CCAnimation*>();
|
2010-12-31 14:56:24 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CCAnimationCache::CCAnimationCache()
|
2011-03-11 17:00:10 +08:00
|
|
|
: m_pAnimations(NULL)
|
2010-12-31 14:56:24 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CCAnimationCache::~CCAnimationCache()
|
|
|
|
{
|
|
|
|
CCLOGINFO("cocos2d: deallocing %p", this);
|
|
|
|
m_pAnimations->release();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCAnimationCache::addAnimation(CCAnimation *animation, const char * name)
|
|
|
|
{
|
|
|
|
m_pAnimations->setObject(animation, std::string(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCAnimationCache::removeAnimationByName(const char* name)
|
|
|
|
{
|
|
|
|
if (! name)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_pAnimations->removeObjectForKey(std::string(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
CCAnimation* CCAnimationCache::animationByName(const char* name)
|
|
|
|
{
|
|
|
|
return m_pAnimations->objectForKey(std::string(name));
|
|
|
|
}
|
|
|
|
}
|