cocos2d中的動(dòng)畫在每一個(gè)游戲當(dāng)中,都有很多各種各樣的動(dòng)畫效果,比如街頭霸王中的旋風(fēng)腿,植物大戰(zhàn)僵尸中豌豆的扭動(dòng)、僵尸的走路、***動(dòng)作等,雖然簡(jiǎn)單的移動(dòng)動(dòng)作也可以實(shí)現(xiàn)這些功能,但是這樣看上去非常的笨拙和不真實(shí)。那么這些效果到底是如何實(shí)現(xiàn)的呢?其實(shí)很簡(jiǎn)單,我們只需要將一系列圖片按照特定的順序排列,然后在精靈對(duì)象上執(zhí)行特定的動(dòng)畫動(dòng)作就可以了。
1 cocos2d中動(dòng)畫相關(guān)的類
在cocos2d中實(shí)現(xiàn)動(dòng)畫,需要了解以下幾個(gè)類。 q CCAnimate:該類為一種特殊的動(dòng)作,也稱為動(dòng)畫動(dòng)作。 q CCAnimation:該類封裝了一個(gè)精靈幀序列和各個(gè)精靈幀之間的延遲時(shí)間,作為精靈播放動(dòng)畫的參數(shù)。 q CCAnimationCache:該類是一個(gè)單例,作為一個(gè)緩存池來緩存CCAnimation動(dòng)畫。
2 簡(jiǎn)單動(dòng)畫效果
接下來我們通過示例演示在cocos2d中實(shí)現(xiàn)動(dòng)畫效果。在Xcdoe中使用cocos2d模板創(chuàng)建一個(gè)項(xiàng)目,命名為“AnimationTest”,加入準(zhǔn)備好的圖片資源,本例為8張植物大戰(zhàn)僵尸中的僵尸圖片,利用這些單獨(dú)的圖片創(chuàng)建動(dòng)畫,完成一個(gè)僵尸走路的動(dòng)畫效果。實(shí)現(xiàn)代碼如下。
創(chuàng)新互聯(lián)主要從事成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)鄂倫春,10年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575
程序清單:codes/13/13.11/AnimationTest/AnimationTest/HelloWorldLayer.m
-(id) init
{
if( (self=[super init]) ) {
CGSize winSize = [[CCDirector sharedDirector] winSize];
CCSprite* bgSprite = [CCSprite spriteWithFile:@"gamebg.png"];
bgSprite.position = ccp(winSize.width/2,winSize.height/2);
[self addChild:bgSprite];
// 創(chuàng)建僵尸精靈,并設(shè)置坐標(biāo)位置在屏幕之外
CCSprite* zSprite = [CCSprite spriteWithFile:@"z_00_01.png"];
zSprite.position = ccp(winSize.width+zSprite.contentSize.width/2,winSize.height/2);
[self addChild:zSprite];
// 創(chuàng)建CCAnimation動(dòng)畫,指定動(dòng)畫幀的內(nèi)容
CCAnimation* anim = [CCAnimation animation];
[anim addSpriteFrameWithFilename:@"z_00_01.png"];
[anim addSpriteFrameWithFilename:@"z_00_02.png"];
[anim addSpriteFrameWithFilename:@"z_00_03.png"];
[anim addSpriteFrameWithFilename:@"z_00_04.png"];
[anim addSpriteFrameWithFilename:@"z_00_05.png"];
[anim addSpriteFrameWithFilename:@"z_00_06.png"];
[anim addSpriteFrameWithFilename:@"z_00_07.png"];
[anim addSpriteFrameWithFilename:@"z_00_08.png"];
// 創(chuàng)建animAction動(dòng)畫,restoreOriginalFrame:YES
// 可以讓精靈對(duì)象在動(dòng)畫執(zhí)行完后恢復(fù)到最初狀態(tài)
id animAction = [CCAnimate actionWithDuration:1.5f animation:anim
restoreOriginalFrame:YES];
// 定義一個(gè)動(dòng)作,重復(fù)執(zhí)行CCAnimate動(dòng)畫
id repeatanimAction = [CCRepeatForever actionWithAction:animAction];
// 定義一個(gè)動(dòng)作,讓精靈對(duì)象移動(dòng)到特定的位置
id moveTo = [CCMoveTo actionWithDuration:10.0f
position:ccp(-zSprite.contentSize.width/2,winSize.height/2)];
// 僵尸精靈重復(fù)執(zhí)行動(dòng)畫動(dòng)作和移動(dòng)動(dòng)作
[zSprite runAction:repeatanimAction];
[zSprite runAction:moveTo];
}
return self;
}
-(id) init
{
if( (self=[super init]) ) {
CGSize winSize = [[CCDirector sharedDirector] winSize];
// ①讀取plist文件將精靈幀紋理添加到精靈幀緩存當(dāng)中
[[CCSpriteFrameCache sharedSpriteFrameCache]
addSpriteFramesWithFile:@"animation.plist"];
// ②創(chuàng)建一個(gè)精靈表單
CCSpriteBatchNode* batchNode = [CCSpriteBatchNode
batchNodeWithFile:@"animation.png"];
// ③將精靈表單作為層的子節(jié)點(diǎn)添加到層當(dāng)中
[self addChild:batchNode];
// ④創(chuàng)建背景精靈添加到精靈表單中
CCSprite* bgSprite = [CCSprite spriteWithSpriteFrameName:@"gamebg.png"];
bgSprite.position = ccp(winSize.width/2,winSize.height/2);
[batchNode addChild:bgSprite];
// ⑤創(chuàng)建僵尸精靈,設(shè)置坐標(biāo)位置在屏幕之外
CCSprite* zSprite = [CCSprite spriteWithSpriteFrameName:@"z_00_01.png"];
zSprite.position = ccp(winSize.width+zSprite.contentSize.width,winSize.height/2);
// ⑥創(chuàng)建一個(gè)數(shù)組用來保存動(dòng)畫
NSMutableArray* array = [NSMutableArray array];
// 遍歷所有圖片,然后從精靈幀緩存中獲取與圖片名稱相對(duì)應(yīng)的精靈幀保存到數(shù)組當(dāng)中
for(int i = 1;i<=8;i++){
NSString* fileName = [NSString stringWithFormat:@"z_00_0%i.png",i];
CCSpriteFrame* frame = [[CCSpriteFrameCache sharedSpriteFrameCache]
spriteFrameByName:fileName];
[array addObject:frame];
}
// ⑦創(chuàng)建一個(gè)動(dòng)畫并設(shè)計(jì)成重復(fù)動(dòng)作
id animation = [CCAnimation animationWithSpriteFrames:array delay:0.1f];
id animate = [CCAnimate actionWithAnimation:animation];
id repeate = [CCRepeatForever actionWithAction:animate];
// ⑧創(chuàng)建一個(gè)CCMoveTo讓精靈移動(dòng)到特定的位置
id moveTo = [CCMoveTo actionWithDuration:10.0f
position:ccp(-zSprite.contentSize.width/2,winSize.height/2)];
// ⑨讓僵尸精靈運(yùn)行動(dòng)畫和移動(dòng)動(dòng)作
[zSprite runAction:repeate];
[zSprite runAction:moveTo];
// ⑩將僵尸精靈添加到精靈表單中
[bgSprite addChild:zSprite];
}
return self;
}
編號(hào)⑨代碼讓僵尸精靈執(zhí)行動(dòng)畫和移動(dòng)的動(dòng)作。編號(hào)⑩代碼將僵尸精靈添加到精靈表單中。
通過以上步驟,我們就完成了通過精靈表單創(chuàng)建cocos2d動(dòng)畫效果的過程。單擊“Run”按鈕執(zhí)行AnimationCacheTest項(xiàng)目,模擬器顯示和直接使用圖片幀創(chuàng)建動(dòng)畫的效果一樣。使用精靈表單可以大大提升游戲的性能,在實(shí)際的項(xiàng)目開發(fā)當(dāng)中應(yīng)該更多地采用精靈表單的方式加載所有的精靈對(duì)象。