2010-12-31 14:56:24 +08:00
/****************************************************************************
2012-09-24 21:22:20 +08:00
Copyright ( c ) 2010 - 2012 cocos2d - x . org
2011-03-19 14:45:51 +08:00
Copyright ( c ) 2010 Ricardo Quesada
2011-07-01 16:11:31 +08:00
Copyright ( c ) 2011 Zynga Inc .
2010-12-31 14:56:24 +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 .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# include "CCAnimationCache.h"
# include "ccMacros.h"
# include "CCAnimation.h"
# include "CCSpriteFrame.h"
2012-03-16 13:42:53 +08:00
# include "CCSpriteFrameCache.h"
2012-06-19 16:20:46 +08:00
# include "cocoa/CCString.h"
# include "platform/CCFileUtils.h"
2010-12-31 14:56:24 +08:00
2012-03-16 13:42:53 +08:00
using namespace std ;
2010-12-31 14:56:24 +08:00
2012-03-16 13:42:53 +08:00
NS_CC_BEGIN
2010-12-31 14:56:24 +08:00
2012-03-16 13:42:53 +08:00
CCAnimationCache * CCAnimationCache : : s_pSharedAnimationCache = NULL ;
2010-12-31 14:56:24 +08:00
2012-03-16 13:42:53 +08:00
CCAnimationCache * CCAnimationCache : : sharedAnimationCache ( void )
{
if ( ! s_pSharedAnimationCache )
2012-04-19 14:35:52 +08:00
{
s_pSharedAnimationCache = new CCAnimationCache ( ) ;
s_pSharedAnimationCache - > init ( ) ;
}
2010-12-31 14:56:24 +08:00
2012-04-19 14:35:52 +08:00
return s_pSharedAnimationCache ;
2012-03-16 13:42:53 +08:00
}
2010-12-31 14:56:24 +08:00
2012-03-16 13:42:53 +08:00
void CCAnimationCache : : purgeSharedAnimationCache ( void )
{
CC_SAFE_RELEASE_NULL ( s_pSharedAnimationCache ) ;
}
2010-12-31 14:56:24 +08:00
2012-03-16 13:42:53 +08:00
bool CCAnimationCache : : init ( )
{
2012-04-19 14:35:52 +08:00
m_pAnimations = new CCDictionary ( ) ;
return true ;
2012-03-16 13:42:53 +08:00
}
CCAnimationCache : : CCAnimationCache ( )
: m_pAnimations ( NULL )
{
}
CCAnimationCache : : ~ CCAnimationCache ( )
{
2012-04-19 14:35:52 +08:00
CCLOGINFO ( " cocos2d: deallocing %p " , this ) ;
CC_SAFE_RELEASE ( m_pAnimations ) ;
2012-03-16 13:42:53 +08:00
}
2010-12-31 14:56:24 +08:00
2012-03-16 13:42:53 +08:00
void CCAnimationCache : : addAnimation ( CCAnimation * animation , const char * name )
{
2012-04-19 14:35:52 +08:00
m_pAnimations - > setObject ( animation , name ) ;
2012-03-16 13:42:53 +08:00
}
void CCAnimationCache : : removeAnimationByName ( const char * name )
{
if ( ! name )
2012-04-19 14:35:52 +08:00
{
return ;
}
2010-12-31 14:56:24 +08:00
2012-04-19 14:35:52 +08:00
m_pAnimations - > removeObjectForKey ( name ) ;
2012-03-16 13:42:53 +08:00
}
2010-12-31 14:56:24 +08:00
2012-03-16 13:42:53 +08:00
CCAnimation * CCAnimationCache : : animationByName ( const char * name )
{
2012-04-19 14:35:52 +08:00
return ( CCAnimation * ) m_pAnimations - > objectForKey ( name ) ;
2012-03-16 13:42:53 +08:00
}
2010-12-31 14:56:24 +08:00
2012-04-19 14:35:52 +08:00
void CCAnimationCache : : parseVersion1 ( CCDictionary * animations )
{
CCSpriteFrameCache * frameCache = CCSpriteFrameCache : : sharedSpriteFrameCache ( ) ;
CCDictElement * pElement = NULL ;
CCDICT_FOREACH ( animations , pElement )
{
CCDictionary * animationDict = ( CCDictionary * ) pElement - > getObject ( ) ;
CCArray * frameNames = ( CCArray * ) animationDict - > objectForKey ( " frames " ) ;
float delay = animationDict - > valueForKey ( " delay " ) - > floatValue ( ) ;
CCAnimation * animation = NULL ;
if ( frameNames = = NULL )
{
CCLOG ( " cocos2d: CCAnimationCache: Animation '%s' found in dictionary without any frames - cannot add to animation cache. " , pElement - > getStrKey ( ) ) ;
continue ;
}
2012-07-23 22:49:11 +08:00
CCArray * frames = CCArray : : createWithCapacity ( frameNames - > count ( ) ) ;
2012-04-19 14:35:52 +08:00
frames - > retain ( ) ;
CCObject * pObj = NULL ;
CCARRAY_FOREACH ( frameNames , pObj )
{
const char * frameName = ( ( CCString * ) pObj ) - > getCString ( ) ;
CCSpriteFrame * spriteFrame = frameCache - > spriteFrameByName ( frameName ) ;
if ( ! spriteFrame ) {
CCLOG ( " cocos2d: CCAnimationCache: Animation '%s' refers to frame '%s' which is not currently in the CCSpriteFrameCache. This frame will not be added to the animation. " , pElement - > getStrKey ( ) , frameName ) ;
continue ;
}
CCAnimationFrame * animFrame = new CCAnimationFrame ( ) ;
animFrame - > initWithSpriteFrame ( spriteFrame , 1 , NULL ) ;
frames - > addObject ( animFrame ) ;
animFrame - > release ( ) ;
}
if ( frames - > count ( ) = = 0 ) {
CCLOG ( " cocos2d: CCAnimationCache: None of the frames for animation '%s' were found in the CCSpriteFrameCache. Animation is not being added to the Animation Cache. " , pElement - > getStrKey ( ) ) ;
continue ;
} else if ( frames - > count ( ) ! = frameNames - > count ( ) ) {
CCLOG ( " cocos2d: CCAnimationCache: An animation in your dictionary refers to a frame which is not in the CCSpriteFrameCache. Some or all of the frames for the animation '%s' may be missing. " , pElement - > getStrKey ( ) ) ;
}
2012-06-27 14:21:29 +08:00
animation = CCAnimation : : create ( frames , delay , 1 ) ;
2012-04-19 14:35:52 +08:00
CCAnimationCache : : sharedAnimationCache ( ) - > addAnimation ( animation , pElement - > getStrKey ( ) ) ;
frames - > release ( ) ;
}
}
void CCAnimationCache : : parseVersion2 ( CCDictionary * animations )
{
CCSpriteFrameCache * frameCache = CCSpriteFrameCache : : sharedSpriteFrameCache ( ) ;
CCDictElement * pElement = NULL ;
CCDICT_FOREACH ( animations , pElement )
{
const char * name = pElement - > getStrKey ( ) ;
CCDictionary * animationDict = ( CCDictionary * ) pElement - > getObject ( ) ;
2013-01-05 18:54:08 +08:00
const CCString * loops = animationDict - > valueForKey ( " loops " ) ;
2012-04-19 14:35:52 +08:00
bool restoreOriginalFrame = animationDict - > valueForKey ( " restoreOriginalFrame " ) - > boolValue ( ) ;
CCArray * frameArray = ( CCArray * ) animationDict - > objectForKey ( " frames " ) ;
if ( frameArray = = NULL ) {
CCLOG ( " cocos2d: CCAnimationCache: Animation '%s' found in dictionary without any frames - cannot add to animation cache. " , name ) ;
continue ;
}
// Array of AnimationFrames
2012-07-23 22:49:11 +08:00
CCArray * array = CCArray : : createWithCapacity ( frameArray - > count ( ) ) ;
2012-04-19 14:35:52 +08:00
array - > retain ( ) ;
CCObject * pObj = NULL ;
CCARRAY_FOREACH ( frameArray , pObj )
{
CCDictionary * entry = ( CCDictionary * ) ( pObj ) ;
const char * spriteFrameName = entry - > valueForKey ( " spriteframe " ) - > getCString ( ) ;
CCSpriteFrame * spriteFrame = frameCache - > spriteFrameByName ( spriteFrameName ) ;
if ( ! spriteFrame ) {
CCLOG ( " cocos2d: CCAnimationCache: Animation '%s' refers to frame '%s' which is not currently in the CCSpriteFrameCache. This frame will not be added to the animation. " , name , spriteFrameName ) ;
continue ;
}
float delayUnits = entry - > valueForKey ( " delayUnits " ) - > floatValue ( ) ;
CCDictionary * userInfo = ( CCDictionary * ) entry - > objectForKey ( " notification " ) ;
CCAnimationFrame * animFrame = new CCAnimationFrame ( ) ;
animFrame - > initWithSpriteFrame ( spriteFrame , delayUnits , userInfo ) ;
array - > addObject ( animFrame ) ;
animFrame - > release ( ) ;
}
float delayPerUnit = animationDict - > valueForKey ( " delayPerUnit " ) - > floatValue ( ) ;
CCAnimation * animation = new CCAnimation ( ) ;
2013-01-05 18:54:08 +08:00
animation - > initWithAnimationFrames ( array , delayPerUnit , 0 ! = loops - > length ( ) ? loops - > intValue ( ) : 1 ) ;
2012-04-19 14:35:52 +08:00
array - > release ( ) ;
animation - > setRestoreOriginalFrame ( restoreOriginalFrame ) ;
CCAnimationCache : : sharedAnimationCache ( ) - > addAnimation ( animation , name ) ;
animation - > release ( ) ;
}
}
void CCAnimationCache : : addAnimationsWithDictionary ( CCDictionary * dictionary )
{
CCDictionary * animations = ( CCDictionary * ) dictionary - > objectForKey ( " animations " ) ;
if ( animations = = NULL ) {
CCLOG ( " cocos2d: CCAnimationCache: No animations were found in provided dictionary. " ) ;
return ;
}
unsigned int version = 1 ;
CCDictionary * properties = ( CCDictionary * ) dictionary - > objectForKey ( " properties " ) ;
if ( properties )
{
version = properties - > valueForKey ( " format " ) - > intValue ( ) ;
CCArray * spritesheets = ( CCArray * ) properties - > objectForKey ( " spritesheets " ) ;
CCObject * pObj = NULL ;
CCARRAY_FOREACH ( spritesheets , pObj )
{
CCString * name = ( CCString * ) ( pObj ) ;
CCSpriteFrameCache : : sharedSpriteFrameCache ( ) - > addSpriteFramesWithFile ( name - > getCString ( ) ) ;
}
}
switch ( version ) {
case 1 :
parseVersion1 ( animations ) ;
break ;
case 2 :
parseVersion2 ( animations ) ;
break ;
default :
CCAssert ( false , " Invalid animation format " ) ;
}
}
/** Read an NSDictionary from a plist file and parse it automatically for animations */
void CCAnimationCache : : addAnimationsWithFile ( const char * plist )
{
CCAssert ( plist , " Invalid texture file name " ) ;
2013-01-25 20:51:52 +08:00
std : : string path = CCFileUtils : : sharedFileUtils ( ) - > fullPathForFilename ( plist ) ;
CCDictionary * dict = CCDictionary : : createWithContentsOfFile ( path . c_str ( ) ) ;
2012-04-19 14:35:52 +08:00
CCAssert ( dict , " CCAnimationCache: File could not be found " ) ;
addAnimationsWithDictionary ( dict ) ;
2012-03-16 13:42:53 +08:00
}
NS_CC_END