cocos2d-x动作详解

之前两斧子,相信大家已经对于动画的原理有了比较清楚的了解,这最后一斧子,咱们一起看一看ActionsTest.hcpp。我们打开头文件来看一下代码:

源码打印?

  1. #ifndef _ActionsTest_H_  

  2. #define _ActionsTest_H_  

  3. //包含示例的基本头文件,因为要用到演示场景基类TestScene。这个类在之前的TestCpp框架分析中有讲解。  

  4. #include "../testBasic.h"  

  5. ////----#include "cocos2d.h"  

  6. //使用Cocos2d的命名空间  

  7. USING_NS_CC;  

  8. //这里是一个枚举,列出了示例中所有的精灵动画类型  

  9. enum  

  10. {  

  11.     ACTION_MANUAL_LAYER = 0,//基本状态  

  12.     ACTION_MOVE_LAYER,      //移动动画  

  13.     ACTION_SCALE_LAYER,     //缩放动画  

  14.     ACTION_ROTATE_LAYER,        //旋转动画  

  15.     ACTION_SKEW_LAYER,      //扭曲动画  

  16.     ACTION_SKEWROTATE_LAYER,//扭曲与旋转组合动画  

  17.     ACTION_JUMP_LAYER,      //跳跃动画  

  18.     ACTION_CARDINALSPLINE_LAYER,//贝塞尔曲线动画  

  19.     ACTION_CATMULLROM_LAYER,//点构成的曲线动画  

  20.     ACTION_BEZIER_LAYER,        //贝塞尔曲线路径动画  

  21.     ACTION_BLINK_LAYER,     //闪现动画  

  22.     ACTION_FADE_LAYER,      //淡入淡出动画  

  23.     ACTION_TINT_LAYER,      //变色动画  

  24.     ACTION_ANIMATE_LAYER,   //帧动画  

  25.     ACTION_SEQUENCE_LAYER,  //动画序列  

  26.     ACTION_SEQUENCE2_LAYER, //动画序列  

  27.     ACTION_SPAWN_LAYER,     //动画组合  

  28.     ACTION_REVERSE,         //反向播放动画  

  29.     ACTION_DELAYTIME_LAYER, //动画暂停与继续播放  

  30.     ACTION_REPEAT_LAYER,        //重复播放动画  

  31.     ACTION_REPEATEFOREVER_LAYER,//无限循环播放动画  

  32.     ACTION_ROTATETOREPEATE_LAYER,//循环旋转动画一  

  33.     ACTION_ROTATEJERK_LAYER,//循环旋转动画二  

  34.     ACTION_CALLFUNC_LAYER,//动画与函数调用一  

  35.     ACTION_CALLFUNCND_LAYER,//动画与函数调用二  

  36.     ACTION_REVERSESEQUENCE_LAYER,//反向动画序列。  

  37.     ACTION_REVERSESEQUENCE2_LAYER,//反向动画序列二。  

  38.     ACTION_ORBIT_LAYER,//旋转摄像机动画  

  39.     ACTION_FLLOW_LAYER,//跟随动画  

  40.     ACTION_TARGETED_LAYER,//控制目标动画  

  41.     PAUSERESUMEACTIONS_LAYER,//暂停与恢复动画  

  42.     ACTION_ISSUE1305_LAYER,//1305号动画  

  43.     ACTION_ISSUE1305_2_LAYER,//1305号的动画二  

  44.     ACTION_ISSUE1288_LAYER,//1288号动画  

  45.     ACTION_ISSUE1288_2_LAYER,//1288的动画二  

  46.     ACTION_ISSUE1327_LAYER,//1327号动画  

  47.     ACTION_LAYER_COUNT,//动画最大数量  

  48. };  


//看完这些枚举,我想说的是,精灵动画的类型真TMD丰富啊!竟然多到想不出名字~:)

源码打印?

  1. //这是用于展示每种动画的基础场景类,它包含了一个返回主菜单的按钮。  

  2. class ActionsTestScene : public TestScene  

  3. {  

  4. public:  

  5.     //重虚函数runThisTest做一些初始化工作。  

  6.     virtual void runThisTest();  

  7. };  

  8. 为了方便代码阅读,我将CPP中相应函数实现移过来,后面都按这种格式:  

  9. //演示动画所用场景基类的初始化函数重载  

  10. void ActionsTestScene::runThisTest()  

  11. {  

  12.     //先将索引置-1,后面调用NextAction()使其加1变为0,即演示第一个动画。  

  13.     s_nActionIdx = -1;  

  14.     addChild(NextAction());  

  15.     //运行当前场景。  

  16.     CCDirector::sharedDirector()->replaceScene(this);  

  17. }  

  18.   

  19.   

  20.   

  21. //从CCLayer派生出一个基础的动画演示类,用于包含要表现动作的一些精灵。  

  22. class ActionsDemo : public CCLayer  

  23. {  

  24. protected:  

  25.     //动画的主角要出场啦!以下是三个图片精灵实例指针,其分别指向出场表演的男1号grossini,女1号tamara,女2号kathia,这一男两女将成为动画演示的三位演员。大家欢迎它们!  

  26.     CCSprite*    m_grossini;  

  27.     CCSprite*    m_tamara;  

  28.     CCSprite*    m_kathia;  

  29. public:  

  30.     //重载当前动画类被载入时要调用的函数onEnter做一些精灵生成的处理。  

  31.     virtual void onEnter();  

  32.     //重载当前动画类被卸载时要调用的函数onExit做一些释放处理。  

  33.     virtual void onExit();  

  34.     //这个函数用于指定需要几位演员出场时如果要求居中对齐该怎么站位。  

  35.     void centerSprites(unsigned int numberOfSprites);  

  36.     //这个函数用于指定需要几位演员出场时如果要求居左对齐该怎么站位。  

  37.     void alignSpritesLeft(unsigned int numberOfSprites);  

  38.     //取得动画的主标题  

  39.     virtual std::string title();  

  40.     //取得动画的副标题  

  41.     virtual std::string subtitle();  

  42.     //当在点击“重置”按钮时的回调函数  

  43.     void restartCallback(CCObject* pSender);  

  44.     //当在点击“下一个”按钮时的回调函数  

  45.     void nextCallback(CCObject* pSender);  

  46.     //当在点击“上一个”按钮时的回调函数。  

  47.     void backCallback(CCObject* pSender);  

  48. };  

  49. //取得演示动画CCLayer所用基类的主标题  

  50. std::string ActionsDemo::title()  

  51. {  

  52.     return "ActionsTest";  

  53. }  

  54. //取得演示动画CCLayer所用基类的副标题  

  55. std::string ActionsDemo::subtitle()  

  56. {  

  57.     return "";  

  58. }  

  59. //加载演示动画CCLayer所用基类时的初始化处理函数。  

  60. void ActionsDemo::onEnter()  

  61. {  

  62.     CCLayer::onEnter();  

  63.   

  64.     //创建了三个演员。  

  65.     //男一号,其使用图片地址为s_pPathGrossini  

  66.     m_grossini = CCSprite::create(s_pPathGrossini);  

  67.     m_grossini->retain();  

  68.   

  69.     //女一号,其使用图片地址为s_pPathSister1  

  70.     m_tamara = CCSprite::create(s_pPathSister1);   

  71.     m_tamara->retain();  

  72.       

  73.     //女二号,其使用图片地址为s_pPathSister2  

  74.     m_kathia = CCSprite::create(s_pPathSister2);  

  75.     m_kathia->retain();  

  76.       

  77.     //将三位演员都放入当前演示动画所在的CCLayer中。  

  78.     addChild(m_grossini, 1);  

  79.     addChild(m_tamara, 2);  

  80.     addChild(m_kathia, 3);  

  81.     //取得屏幕的大小  

  82.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  83.     //男一号站在屏幕中下位置  

  84.     m_grossini->setPosition(CCPointMake(s.width/2, s.height/3));  

  85.     //女一号站在屏幕中上位置  

  86.     m_tamara->setPosition(CCPointMake(s.width/2, 2*s.height/3));  

  87.     //女二号站在屏幕正中间  

  88.     m_kathia->setPosition(CCPointMake(s.width/2, s.height/2));   

  89.   

  90.     // 创建一个文字标签用于显示标题  

  91.     std::string str = title();  

  92.     const char * pTitle = str.c_str();  

  93.     CCLabelTTF* label = CCLabelTTF::create(pTitle, "Arial", 18);  

  94.     addChild(label, 1);  

  95.     //将文字标签放在屏幕正中靠上位置  

  96.     label->setPosition( CCPointMake(s.width/2, s.height - 30) );  

  97.     //创建一个文字标签用于显示副标题  

  98.     std::string strSubtitle = subtitle();  

  99.     if( ! strSubtitle.empty() )   

  100.     {  

  101.         //创建文件标签并放在主标题文字标签之下。  

  102.         CCLabelTTF* l = CCLabelTTF::create(strSubtitle.c_str(), "Thonburi", 22);  

  103.         addChild(l, 1);  

  104.         l->setPosition( CCPointMake(s.width/2, s.height - 60) );  

  105.     }      

  106.   

  107.     // 创建三个按钮(看名字应理解为图片菜单项,其实就是具有普通和按下两种状态的图片切换效果的按钮)用于控制演示的动画。  

  108.     // 第一个按钮,在按下时调用演示上一个动画的函数。  

  109.     CCMenuItemImage *item1 = CCMenuItemImage::create(s_pPathB1, s_pPathB2, this, menu_selector(ActionsDemo::backCallback) );  

  110.     // 第二个按钮,在按下时调用重新演示当前动画的函数。  

  111.     CCMenuItemImage *item2 = CCMenuItemImage::create(s_pPathR1, s_pPathR2, this, menu_selector(ActionsDemo::restartCallback) );  

  112.     // 第三个按钮,在按下时调用演示下一个动画的函数。  

  113.     CCMenuItemImage *item3 = CCMenuItemImage::create(s_pPathF1, s_pPathF2, this, menu_selector(ActionsDemo::nextCallback) );  

  114.     //由这三个按钮(也就是刚说的“图片菜单项”)生成一个菜单。因为CMenuItemImage和CCMenu都是CCNode的子类。所以这一句本质上是将若干CCNode做为一个新的CCNode的子节点并返回。  

  115.     CCMenu *menu = CCMenu::create(item1, item2, item3, NULL);  

  116.     //将菜单放在零零点位置。  

  117.     menu->setPosition(CCPointZero);  

  118.     //设置各个按钮相对于菜单项的位置。  

  119.     item1->setPosition(CCPointMake(s.width/2 - item2->getContentSize().width*2, item2->getContentSize().height/2));  

  120.     item2->setPosition(CCPointMake(s.width/2, item2->getContentSize().height/2));  

  121.     item3->setPosition(CCPointMake(s.width/2 + item2->getContentSize().width*2, item2->getContentSize().height/2));  

  122.     //将菜单加入当前的演示动画CCLayer所用基类中。  

  123.     addChild(menu, 1);  

  124. }  

  125. //在当前演示动画CCLayer所用基类被释放时的处理函数  

  126. void ActionsDemo::onExit()  

  127. {  

  128.     //精灵的释放,代表三位演员的退场。  

  129.     m_grossini->release();  

  130.     m_tamara->release();  

  131.     m_kathia->release();  

  132.   

  133.     CCLayer::onExit();  

  134. }  

  135. //重新演示当前动画的回调函数。  

  136. void ActionsDemo::restartCallback(CCObject* pSender)  

  137. {  

  138.     //创建一个新场景  

  139.     CCScene* s = new ActionsTestScene();  

  140.     //将RestartAction()函数返回的CCLayer加入场景中。  

  141.     s->addChild( RestartAction() );  

  142.     //将新场景做为游戏要显示的场景。  

  143.     CCDirector::sharedDirector()->replaceScene(s);  

  144.     //引用计数器减1操作,以使未来可以正确的被释放。  

  145.     s->release();  

  146. }  

  147. //演示下一个动画的回调函数。  

  148. void ActionsDemo::nextCallback(CCObject* pSender)  

  149. {  

  150.     //创建一个新场景  

  151.     CCScene* s = new ActionsTestScene();  

  152.     //将NextAction()函数返回的CCLayer加入场景中。  

  153.     s->addChild( NextAction() );  

  154.     //将新场景做为游戏要显示的场景。  

  155.     CCDirector::sharedDirector()->replaceScene(s);  

  156.     //引用计数器减1操作,以使未来可以正确的被释放。  

  157.     s->release();  

  158. }  

  159. //演示上一个动画的回调函数。  

  160. void ActionsDemo::backCallback(CCObject* pSender)  

  161. {  

  162.     //创建一个新场景  

  163.     CCScene* s = new ActionsTestScene();  

  164.     //将BackAction ()函数返回的CCLayer加入场景中。  

  165.     s->addChild( BackAction() );  

  166.     //将新场景做为游戏要显示的场景。  

  167.     CCDirector::sharedDirector()->replaceScene(s);  

  168.     //引用计数器减1操作,以使未来可以正确的被释放。  

  169.     s->release();  

  170. }  

  171. //这个函数用于指定需要几位演员出场时如果要求居中对齐该怎么站位。  

  172. void ActionsDemo::centerSprites(unsigned int numberOfSprites)  

  173. {  

  174.     //取得屏幕大小  

  175.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  176.     if( numberOfSprites == 0 )  

  177.     {   //如果指定没有演员,将三位演员都设为不显示  

  178.         m_tamara->setVisible(false);  

  179.         m_kathia->setVisible(false);  

  180.         m_grossini->setVisible(false);  

  181.     }   

  182.     else if ( numberOfSprites == 1 )   

  183.     {   //如果指定只有一位演员来表演,则将男一号放在屏幕中央,两位女演员设为不显示。  

  184.         m_tamara->setVisible(false);  

  185.         m_kathia->setVisible(false);  

  186.         m_grossini->setPosition(CCPointMake(s.width/2, s.height/2));  

  187.     }  

  188.     else if( numberOfSprites == 2 )   

  189.     {   //如果指定两位演员来表演,则将两位女演员放在屏幕中心位置对齐的两边,并将男演员设为不显示。       

  190.         m_kathia->setPosition( CCPointMake(s.width/3, s.height/2));  

  191.         m_tamara->setPosition( CCPointMake(2*s.width/3, s.height/2));  

  192.         m_grossini->setVisible(false);  

  193.     }   

  194.     else if( numberOfSprites == 3 )   

  195.     {   //三位演员同时上场,分别放在屏幕左,中,右三个位置。  

  196.         m_grossini->setPosition( CCPointMake(s.width/2, s.height/2));  

  197.         m_tamara->setPosition( CCPointMake(s.width/4, s.height/2));  

  198.         m_kathia->setPosition( CCPointMake(3 * s.width/4, s.height/2));  

  199.     }  

  200. }  

  201. //这个函数用于指定需要几位演员出场时如果要求居左对齐该怎么站位。同上,只是位置略有差别。  

  202. void ActionsDemo::alignSpritesLeft(unsigned int numberOfSprites)  

  203. {  

  204.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  205.   

  206.     if( numberOfSprites == 1 )   

  207.     {  

  208.         m_tamara->setVisible(false);  

  209.         m_kathia->setVisible(false);  

  210.         m_grossini->setPosition(CCPointMake(60, s.height/2));  

  211.     }   

  212.     else if( numberOfSprites == 2 )   

  213.     {          

  214.         m_kathia->setPosition( CCPointMake(60, s.height/3));  

  215.         m_tamara->setPosition( CCPointMake(60, 2*s.height/3));  

  216.         m_grossini->setVisible( false );  

  217.     }   

  218.     else if( numberOfSprites == 3 )   

  219.     {  

  220.         m_grossini->setPosition( CCPointMake(60, s.height/2));  

  221.         m_tamara->setPosition( CCPointMake(60, 2*s.height/3));  

  222.         m_kathia->setPosition( CCPointMake(60, s.height/3));  

  223.     }  

  224. }  

  225.   

  226.   

  227.   

  228. //这是第一个要演示的动画,其实它只是把三位演员显示出来。  

  229. class ActionManual : public ActionsDemo  

  230. {  

  231. public:  

  232.     //重载当前动画类被载入时要调用的函数onEnter做一些精灵生成的处理。  

  233.     virtual void onEnter();  

  234.     //重载取得动画的副标题  

  235.     virtual std::string subtitle();  

  236. };  

  237. //基础演示动画所用CCLayer被加载时的初始化处理函数。  

  238. void ActionManual::onEnter()  

  239. {   //调用基类的同名函数,加载三位演员。  

  240.     ActionsDemo::onEnter();  

  241.     //取得屏幕的大小  

  242.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  243.     //将女一号演员在X,Y方向上分别缩放后放在相应位置,并设置其半透明。  

  244.     m_tamara->setScaleX( 2.5f);  

  245.     m_tamara->setScaleY( -1.0f);  

  246.     m_tamara->setPosition( CCPointMake(100,70) );  

  247.     //透明度的取值为0~255,0代表完全透明,255代表完全不透明。  

  248.     m_tamara->setOpacity( 128);  

  249.   

  250.     //男一号演员,这里让它旋转120度之后放在屏幕中心位置,并设置其全身颜色为红色。  

  251.     m_grossini->setRotation( 120);  

  252.     m_grossini->setPosition( CCPointMake(s.width/2, s.height/2));  

  253.     //色彩设置为红色。ccc3分别用R,G,B三元色做为参数返回色彩值。  

  254.     m_grossini->setColor( ccc3( 255,0,0));  

  255.     //女二号演员,这里设置位置为屏幕中心靠左。  

  256.     m_kathia->setPosition( CCPointMake(s.width-100, s.height/2));  

  257.     //色彩设置为蓝色,这以用预定义的宏ccBLUE来代表蓝色的色彩值。  

  258.     m_kathia->setColor( ccBLUE);  

  259. }  

  260. //取得当前演示动画的副标题。  

  261. std::string ActionManual::subtitle()  

  262. {  

  263.     return "Manual Transformation";  

  264. }  

  265.   

  266.   

  267. //第二种动画演示表现了三位演员的移动变化。  

  268. class ActionMove : public ActionsDemo  

  269. {  

  270. public:  

  271.     virtual void onEnter();  

  272.     virtual std::string subtitle();  

  273. };  

  274. //移动动画所用CCLayer被加载时的初始化处理函数。  

  275. void ActionMove::onEnter()  

  276. {   //调用基类的同名函数,加载三位演员。  

  277.     ActionsDemo::onEnter();  

  278.     //让三位演员以居中对齐方式进行站位。  

  279.     centerSprites(3);  

  280.     //取得屏幕的大小  

  281.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  282.     //创建三个时间渐变动画。第一个是由CCActionInterval子类CCMoveTo静态函数所创建的“2秒移动到某位置”,第二个是由CCActionInterval子类CCMoveTo静态函数所创建的“2秒移动多少距离”。第三个是第二个动画的反向播放。  

  283.     CCActionInterval*  actionTo = CCMoveTo::create(2, CCPointMake(s.width-40, s.height-40));  

  284.     CCActionInterval*  actionBy = CCMoveBy::create(2, CCPointMake(80,80));  

  285.     CCActionInterval*  actionByBack = actionBy->reverse();  

  286.     //让三个演员分别按照不同的动画形式来演示。女一号就按第一种动画来进行演示。  

  287.     m_tamara->runAction( actionTo);  

  288.     //男一号呢?它的演示是第二个动画和第三个动画的串联。CCSequence::create函数可以将多个动画串联在一起,按照串联的顺序进行逐个播放。  

  289.     m_grossini->runAction( CCSequence::create(actionBy, actionByBack, NULL));  

  290.     //女二号同女一号类似也是演示一个移动到某位置的动画。这里指定1秒内移动到40,40的位置。  

  291.     m_kathia->runAction(CCMoveTo::create(1, CCPointMake(40,40)));  

  292. }  

  293. //这里取得移动动画演示的副标题。  

  294. std::string ActionMove::subtitle()  

  295. {  

  296.     return "MoveTo / MoveBy";  

  297. }  

  298.   

  299. //第三种动画演示表现了三位演员的缩放变化。  

  300. class ActionScale : public ActionsDemo  

  301. {  

  302. public:  

  303.     virtual void onEnter();  

  304.     virtual std::string subtitle();  

  305. };  

  306. //缩放动画演示  

  307. void ActionScale::onEnter()  

  308. {     

  309.     //动画演示的初始化  

  310.     ActionsDemo::onEnter();  

  311.     //将三个演员按居中对齐进行站位  

  312.     centerSprites(3);  

  313.     //三个要演示的动画形式分别是  

  314.     //1.缩放到指定的程度  

  315.     CCActionInterval*  actionTo = CCScaleTo::create(2.0f, 0.5f);  

  316.     //2.当前缩放值再续继缩放多少  

  317.     CCActionInterval*  actionBy = CCScaleBy::create(2.0f, 1.0f, 10.0f);  

  318.     //3.同2  

  319.     CCActionInterval*  actionBy2 = CCScaleBy::create(2.0f, 5.0f, 1.0f);  

  320.     //让男一号演示动画1  

  321.     m_grossini->runAction( actionTo);  

  322.     //让女一号演示一个动画序列,这个序列为先演示动画2,再演示动画2的反向播放。  

  323.     m_tamara->runAction( CCSequence::create(actionBy, actionBy->reverse(), NULL));  

  324.     //女二号的动画同女一号  

  325.     m_kathia->runAction( CCSequence::create(actionBy2, actionBy2->reverse(), NULL));  

  326. }  

  327. //副标题  

  328. std::string ActionScale::subtitle()  

  329. {  

  330.     return "ScaleTo / ScaleBy";  

  331. }  

  332.   

  333. //第四种动画演示表现了三位演员的旋转变化  

  334. class ActionRotate : public ActionsDemo  

  335. {  

  336. public:  

  337.     virtual void onEnter();  

  338.     virtual std::string subtitle();  

  339. };  

  340. void ActionRotate::onEnter()  

  341. {  

  342.     //动画演示的初始化  

  343.     ActionsDemo::onEnter();  

  344.     //将三个演员按居中对齐进行站位  

  345.     centerSprites(3);  

  346.     //定义几种旋转到某个角度的动画  

  347.     CCActionInterval*  actionTo = CCRotateTo::create( 2, 45);  

  348.     CCActionInterval*  actionTo2 = CCRotateTo::create( 2, -45);  

  349.     CCActionInterval*  actionTo0 = CCRotateTo::create(2 , 0);  

  350.     //女一号演示一个动画序列  

  351.     m_tamara->runAction( CCSequence::create(actionTo, actionTo0, NULL));  

  352.     //定义从现在的角度在2秒内继续旋转360度的动画  

  353.     CCActionInterval*  actionBy = CCRotateBy::create(2 ,  360);  

  354.     //定义actionBy的反向播放动画  

  355.     CCActionInterval*  actionByBack = actionBy->reverse();  

  356.     //男一号演示一个动画序列  

  357.     m_grossini->runAction( CCSequence::create(actionBy, actionByBack, NULL));  

  358.     //女二号演示一个动画序列,这个动画序列中有一个动画为actionTo0的拷贝,并将这个拷贝设为由内存管理器进行内存释放。这句里有两个知识点:(1)为什么要使用动画的拷贝?(2)为什么要调用autorelease?答案分别是:(1)目前的引擎机制要求每个动画只能有一个演员使用。当你调用runAction时会将动画加入动画管理器,而动画管理器调用addAction函数时,会在最后调用pAction->startWithTarget(pTarget);如果这个动画已经有一个演员在使用了,这里会覆盖掉之前的演员信息,动画只能被最后使用的演员占有。(2)因为create函数创建动画时,会在内部对动画调用autorelease,而copy函数只会新生成一个动画的复制品,不会对其进行调用autorelease。  

  359.     m_kathia->runAction( CCSequence::create(actionTo2, actionTo0->copy()->autorelease(), NULL));  

  360. }  

  361. //显示副标题  

  362. std::string ActionRotate::subtitle()  

  363. {  

  364.     return "RotateTo / RotateBy";  

  365. }  

  366.   

  367. //第五种动画演示表现了三位演员的扭曲变化。  

  368. class ActionSkew : public ActionsDemo  

  369. {  

  370.     virtual void onEnter();  

  371.     virtual std::string subtitle();  

  372. };  

  373. void ActionSkew::onEnter()  

  374. {     

  375.     //动画演示的初始化  

  376.     ActionsDemo::onEnter();  

  377.     //将三个演员按居中对齐进行站位  

  378.     centerSprites(3);  

  379.     //这里定义了五种动画  

  380.     //前两种动画是扭曲到指定程度  

  381.     CCActionInterval *actionTo = CCSkewTo::create(2, 37.2f, -37.2f);  

  382.     CCActionInterval *actionToBack = CCSkewTo::create(2, 0, 0);  

  383.     //然后两种动画是继续扭曲多少  

  384.     CCActionInterval *actionBy = CCSkewBy::create(2, 0.0f, -90.0f);  

  385.     CCActionInterval *actionBy2 = CCSkewBy::create(2, 45.0f, 45.0f);  

  386.     //最后一种动画是actionBy的反向播放  

  387.     CCActionInterval *actionByBack = actionBy->reverse();  

  388.     //女一号演示一个动画序列,这个动画序列有两个动画,先是actionTo,然后是actionToBack  

  389.     m_tamara->runAction(CCSequence::create(actionTo, actionToBack, NULL));  

  390.     //男一号演示一个动画序列,这个动画序列有两个动画,先是actionBy,然后是actionByBack  

  391.     m_grossini->runAction(CCSequence::create(actionBy, actionByBack, NULL));  

  392.     //女二号演示一个动画序列,这个动画序列也是有两个动画,先是actionBy2,然后是它的反向播放。  

  393.     m_kathia->runAction(CCSequence::create(actionBy2, actionBy2->reverse(), NULL));  

  394. }  

  395. //副标题  

  396. string ActionSkew::subtitle()  

  397. {  

  398.     return "SkewTo / SkewBy";  

  399. }  

  400.   

  401. //第六种动画演示表现的是前面几种变化的大杂烩。  

  402. class ActionSkewRotateScale : public ActionsDemo  

  403. {  

  404.     virtual void onEnter();  

  405.     virtual std::string subtitle();  

  406. };  

  407. void ActionSkewRotateScale::onEnter()  

  408. {  

  409.     //动画演示的初始化  

  410.     ActionsDemo::onEnter();  

  411.     //本动画用不到三位演员,在此将它们删除  

  412.     m_tamara->removeFromParentAndCleanup(true);  

  413.     m_grossini->removeFromParentAndCleanup(true);  

  414.     m_kathia->removeFromParentAndCleanup(true);  

  415.     //这里取得一个宽高均为100的大小  

  416.     CCSize boxSize = CCSizeMake(100.0f, 100.0f);  

  417.     //创建一个颜色层  

  418.     CCLayerColor *box = CCLayerColor::create(ccc4(255, 255, 0, 255));  

  419.     //设置锚点为左下角  

  420.     box->setAnchorPoint(ccp(0, 0));  

  421.     //设置当前颜色层的位置  

  422.     box->setPosition(ccp(190, 110));  

  423.     //设置颜色色的大小  

  424.     box->setContentSize(boxSize);  

  425.     //在颜色层上再加立两个子颜色层。  

  426.     //第一个是红色,放在左上角。  

  427.     static float markrside = 10.0f;  

  428.     CCLayerColor *uL = CCLayerColor::create(ccc4(255, 0, 0, 255));  

  429.     box->addChild(uL);  

  430.     uL->setContentSize(CCSizeMake(markrside, markrside));  

  431.     uL->setPosition(ccp(0.f, boxSize.height - markrside));  

  432.     uL->setAnchorPoint(ccp(0, 0));  

  433.     //第二个是蓝色,放在右上角。  

  434.     CCLayerColor *uR = CCLayerColor::create(ccc4(0, 0, 255, 255));  

  435.     box->addChild(uR);  

  436.     uR->setContentSize(CCSizeMake(markrside, markrside));  

  437.     uR->setPosition(ccp(boxSize.width - markrside, boxSize.height - markrside));  

  438.     uR->setAnchorPoint(ccp(0, 0));  

  439.     addChild(box);  

  440.     //定义几种动画,分别为扭曲,旋转,缩放。  

  441.     CCActionInterval *actionTo = CCSkewTo::create(2, 0.f, 2.f);  

  442.     CCActionInterval *rotateTo = CCRotateTo::create(2, 61.0f);  

  443.     CCActionInterval *actionScaleTo = CCScaleTo::create(2, -0.44f, 0.47f);  

  444.   

  445.     CCActionInterval *actionScaleToBack = CCScaleTo::create(2, 1.0f, 1.0f);  

  446.     CCActionInterval *rotateToBack = CCRotateTo::create(2, 0);  

  447.     CCActionInterval *actionToBack = CCSkewTo::create(2, 0, 0);  

  448.     //让颜色层同时演示三个动画序列。这里要理解为什么它可以同时演示多个动画序列?我们之前将过runAction会将演员和动画通知动画管理器,这些动画会存入相应的动画集,动画管理器在每帧会更新相应的动画,这里虽然用的是动画序列,但是动画序列本身仍然是动画。所以调用多次runAction可以将多个动画或动画序列同时播放。  

  449.     box->runAction(CCSequence::create(actionTo, actionToBack, NULL));  

  450.     box->runAction(CCSequence::create(rotateTo, rotateToBack, NULL));  

  451.     box->runAction(CCSequence::create(actionScaleTo, actionScaleToBack, NULL));  

  452. }  

  453. //取得副标题。  

  454. string ActionSkewRotateScale::subtitle()  

  455. {  

  456.     return "Skew + Rotate + Scale";  

  457. }  

  458.   

  459. //第七种动画演示表现的是如何让演员们按照抛物线跳跃。  

  460. class ActionJump : public ActionsDemo  

  461. {  

  462. public:  

  463.     virtual void onEnter();  

  464.     virtual std::string subtitle();  

  465. };  

  466. void ActionJump::onEnter()  

  467. {  

  468.     //动画演示的初始化  

  469.     ActionsDemo::onEnter();  

  470.     //将三个演员按居中对齐进行站位  

  471.     centerSprites(3);  

  472.     //定义一个动画,代表跳跃到某个位置  

  473.     CCActionInterval*  actionTo = CCJumpTo::create(2, CCPointMake(300,300), 50, 4);  

  474.     //定义一个动画,代表从现在的位置跳跃多远距离。  

  475.     CCActionInterval*  actionBy = CCJumpBy::create(2, CCPointMake(300,0), 50, 4);  

  476.     //定义一个只是向上跳的动画  

  477.     CCActionInterval*  actionUp = CCJumpBy::create(2, CCPointMake(0,0), 80, 4);  

  478.     //定义第二个动画的反向播放动画  

  479.     CCActionInterval*  actionByBack = actionBy->reverse();  

  480.     //三位演员分别运行相应动画。  

  481.     m_tamara->runAction( actionTo);  

  482.     m_grossini->runAction( CCSequence::create(actionBy, actionByBack, NULL));  

  483.     //CCRepeatForever是一个无限循环动画。它将指定的动画进行无限循环播放。  

  484.     m_kathia->runAction( CCRepeatForever::create(actionUp));  

  485. }  

  486. //显示副标题。  

  487. std::string ActionJump::subtitle()  

  488. {  

  489.     return "JumpTo / JumpBy";  

  490. }  

  491.   

  492. //第八种动画演示表现的是让演员们按照贝塞尔曲线的路径运动。  

  493. class ActionBezier : public ActionsDemo  

  494. {  

  495. public:  

  496.     virtual void onEnter();  

  497.     virtual std::string subtitle();  

  498. };  

  499. void ActionBezier::onEnter()  

  500. {  

  501.     //动画演示的初始化  

  502.     ActionsDemo::onEnter();  

  503.     //取得屏幕大小  

  504.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  505.   

  506.     //将三位演员按居中对齐进行站位  

  507.     centerSprites(3);  

  508.   

  509.     // 创建第一个贝塞尔曲线  

  510.     ccBezierConfig bezier;  

  511.     bezier.controlPoint_1 = CCPointMake(0, s.height/2);  

  512.     bezier.controlPoint_2 = CCPointMake(300, -s.height/2);  

  513.     bezier.endPosition = CCPointMake(300,100);  

  514.     //创建一个贝塞尔曲线动画,这个CCBezierBy的意思是当前位置为曲线起点。曲线的其它点是相对于它的位置。  

  515.     CCActionInterval*  bezierForward = CCBezierBy::create(3, bezier);  

  516.     //创建上面动画的反向播放动画。  

  517.     CCActionInterval*  bezierBack = bezierForward->reverse();      

  518.     //创建一个无限循环动画序列,这个动画序列由上面两个动画组成。    CCAction*  rep = CCRepeatForever::create((CCActionInterval*)CCSequence::create( bezierForward, bezierBack, NULL));  

  519.   

  520.   

  521.     // 创建第二个贝塞尔曲线  

  522.     // 设置一下女一号的当前位置。  

  523.     m_tamara->setPosition(CCPointMake(80,160));  

  524.     ccBezierConfig bezier2;  

  525.     bezier2.controlPoint_1 = CCPointMake(100, s.height/2);  

  526.     bezier2.controlPoint_2 = CCPointMake(200, -s.height/2);  

  527.     bezier2.endPosition = CCPointMake(240,160);  

  528.     //创建一个贝塞尔曲线动画,这个CCBezierTo的意思是演员当前位置为曲线起点。曲线的其它点是屏幕的绝对位置。  

  529.     CCActionInterval*  bezierTo1 = CCBezierTo::create(2, bezier2);      

  530.   

  531.     //设置一下女二号的当前位置。创建相同的动画。  

  532.     m_kathia->setPosition(CCPointMake(400,160));  

  533.     //如果刚才的ActionRotate 您理解的透彻,那这里其实也可以改成:CCActionInterval*  bezierTo2 = (CCActionInterval*)(bezierTo1->copy()->autorelease());  

  534.   

  535.     CCActionInterval*  bezierTo2 = CCBezierTo::create(2, bezier2);  

  536.     //三位演员开始动画演示。  

  537.     m_grossini->runAction( rep);  

  538.     m_tamara->runAction(bezierTo1);  

  539.     m_kathia->runAction(bezierTo2);  

  540.   

  541. }  

  542. //显示副标题。  

  543. std::string ActionBezier::subtitle()  

  544. {  

  545.     return "BezierBy / BezierTo";  

  546. }  

  547.   

  548. //第九种动画演示表现的是演员们玩“我闪我闪乱你眼”  

  549. class ActionBlink : public ActionsDemo  

  550. {  

  551. public:  

  552.     virtual void onEnter();  

  553.     virtual std::string subtitle();  

  554. };  

  555. void ActionBlink::onEnter()  

  556. {  

  557.     //动画演示的初始化  

  558.     ActionsDemo::onEnter();  

  559.     //将二位女演员按居中对齐进行站位  

  560.     centerSprites(2);  

  561.     //这个CCBlink的create简单,就是指定几秒内共闪动几次。  

  562.     CCActionInterval*  action1 = CCBlink::create(2, 10);  

  563.     CCActionInterval*  action2 = CCBlink::create(2, 5);  

  564.     //两位演员开始表演“闪闪惹人爱”  

  565.     m_tamara->runAction( action1);  

  566.     m_kathia->runAction(action2);  

  567. }  

  568. //显示副标题。  

  569. std::string  ActionBlink::subtitle()  

  570. {  

  571.     return "Blink";  

  572. }  

  573.   

  574.   

  575. //第十种动画演示表现的是演员们淡入淡出  

  576. class ActionFade : public ActionsDemo  

  577. {  

  578. public:  

  579.     virtual void onEnter();  

  580.     virtual std::string subtitle();  

  581. };  

  582. void ActionFade::onEnter()  

  583. {  

  584.     //动画演示的初始化  

  585.     ActionsDemo::onEnter();  

  586.     //将二位女演员按居中对齐进行站位  

  587.     centerSprites(2);  

  588.     //设置女一号的透明度为0  

  589.     m_tamara->setOpacity( 0 );  

  590.     //CCFadeIn是一个淡入动画,参数为秒数。代表需要多久显示。  

  591.     CCActionInterval*  action1 = CCFadeIn::create(1.0f);  

  592.     //淡入的反向播放,其时是从算法上实现了淡出。  

  593.     CCActionInterval*  action1Back = action1->reverse();  

  594.     //CCFadeOut是一个淡出动画。参数为秒数。代表需要多久消融。  

  595.     CCActionInterval*  action2 = CCFadeOut::create(1.0f);  

  596.     //淡入的反向播放,其时是从算法上实现了淡入。  

  597.     CCActionInterval*  action2Back = action2->reverse();  

  598.     //两位女演员各自演员一个动画序列。  

  599.     m_tamara->runAction( CCSequence::create( action1, action1Back, NULL));  

  600.     m_kathia->runAction( CCSequence::create( action2, action2Back, NULL));  

  601. }  

  602. //显示副标题。  

  603. std::string  ActionFade::subtitle()  

  604. {  

  605.     return "FadeIn / FadeOut";  

  606. }  

  607.   

  608. //第十一种动画演示表现的是演员们如何进行色彩渐变。  

  609. class ActionTint : public ActionsDemo  

  610. {  

  611. public:  

  612.     virtual void onEnter();  

  613.     virtual std::string subtitle();  

  614. };  

  615. void ActionTint::onEnter()  

  616. {  

  617.     //动画演示的初始化  

  618.     ActionsDemo::onEnter();  

  619.     //将二位女演员按居中对齐进行站位  

  620.     centerSprites(2);  

  621.     //创建三个变色动画,第一个是2秒时间变化到指定的色值。第二个是2秒时间从当前色彩状态变化多少色值,第三个是第二个动画的反向动画。  

  622.     CCActionInterval*  action1 = CCTintTo::create(2, 255, 0, 255);  

  623.     CCActionInterval*  action2 = CCTintBy::create(2, -127, -255, -127);  

  624.     CCActionInterval*  action2Back = action2->reverse();  

  625.     //女一号运行动画1。  

  626.     m_tamara->runAction( action1);  

  627.     //女二号运行一个动画序列,这个动画序列先运行动画2,然后运行动画3。  

  628.     m_kathia->runAction( CCSequence::create( action2, action2Back, NULL));  

  629. }  

  630.   

  631. std::string  ActionTint::subtitle()  

  632. {  

  633.     return "TintTo / TintBy";  

  634. }  

  635.   

  636.   

  637. //第十二种动画演示表现的是演员的逐帧动作动画。  

  638. class ActionAnimate : public ActionsDemo  

  639. {  

  640. public:  

  641.     virtual void onEnter();  

  642.     virtual void onExit();  

  643.     virtual std::string title();  

  644.     virtual std::string subtitle();  

  645. };  

  646. void ActionAnimate::onEnter()  

  647. {  

  648.     //动画演示的初始化  

  649.     ActionsDemo::onEnter();  

  650.     //将三位演员按居中对齐进行站位  

  651.     centerSprites(3);  

  652.     //创建一个序列帧动画。  

  653.     CCAnimation* animation = CCAnimation::create();  

  654.     //载入15张图片做为每帧显示的精灵图片。  

  655.     forint i=1;i<15;i++)  

  656.     {  

  657.         char szName[100] = {0};  

  658.         sprintf(szName, "Images/grossini_dance_%02d.png", i);  

  659.         animation->addSpriteFrameWithFileName(szName);  

  660.     }  

  661.     //设置帧间隔时间。  

  662.     animation->setDelayPerUnit(2.8f / 14.0f);  

  663.     //设置动画结束后保持初始帧数据不进行释放。  

  664.     animation->setRestoreOriginalFrame(true);  

  665.     //创建序列帧动画。  

  666.     CCAnimate* action = CCAnimate::create(animation);  

  667.     //男一号动行一个动画序列,这个动画序列先播放一遍序列帧动画,然后再反向播放一遍序列帧动画。  

  668.     m_grossini->runAction(CCSequence::create(action, action->reverse(), NULL));  

  669.       

  670.     //下面演示了通过一个plist文件来播放一个序列帧动画。  

  671.     //先取得序列帧动画管理器。  

  672.     CCAnimationCache *cache = CCAnimationCache::sharedAnimationCache();  

  673.     //加载一个plist文件  

  674.     cache->addAnimationsWithFile("animations/animations-2.plist");  

  675.     //取得plist文件中的对应序列帧动画信息  

  676.     CCAnimation *animation2 = cache->animationByName("dance_1");  

  677.     //以此信息创建一个序列帧动画。  

  678.     CCAnimate* action2 = CCAnimate::create(animation2);  

  679.     //女一号运行一个动画序列,这个动画序列先播放一遍序列帧动画,然后再反向播放一遍序列帧动画。  

  680.     m_tamara->runAction(CCSequence::create(action2, action2->reverse(), NULL));  

  681.   

  682.     //产生一个plist文件中的对应序列帧动画信息的拷贝  

  683.     CCAnimation *animation3 = (CCAnimation *)animation2->copy()->autorelease();  

  684.     //设置动画信息中的动画循环次数  

  685.     animation3->setLoops(4);  

  686.     //以此信息创建一个序列帧动画。  

  687.     CCAnimate* action3 = CCAnimate::create(animation3);  

  688.     //女二号运行此动画。  

  689.     m_kathia->runAction(action3);  

  690. }  

  691.   

  692. void ActionAnimate::onExit()  

  693. {  

  694.     ActionsDemo::onExit();  

  695.     //TODO:[[NSNotificationCenter defaultCenter] removeObserver:observer_];  

  696. }  

  697.   

  698. std::string ActionAnimate::title()  

  699. {  

  700.     return "Animation";  

  701. }  

  702.   

  703. std::string ActionAnimate::subtitle()  

  704. {  

  705.     return "Center: Manual animation. Border: using file format animation";  

  706. }  

  707.   

  708. //第十三种动画演示的是多种动画如何组成动画序列。  

  709. class ActionSequence : public ActionsDemo  

  710. {  

  711. public:  

  712.     virtual void onEnter();  

  713.     virtual std::string subtitle();  

  714. };  

  715.   

  716. void ActionSequence::onEnter()  

  717. {  

  718.     //动画演示的初始化  

  719.     ActionsDemo::onEnter();  

  720.     //只需要男一号上场  

  721.     alignSpritesLeft(1);  

  722.     //创建一个动画序列,先运行一个移动动画,再运行一个旋转动画。  

  723.     CCFiniteTimeAction*  action = CCSequence::create(  

  724.         CCMoveBy::create( 2, CCPointMake(240,0)),  

  725.         CCRotateBy::create( 2,  540),  

  726.         NULL);  

  727.     //男一号演示此动画。  

  728.     m_grossini->runAction(action);  

  729. }  

  730.   

  731. std::string ActionSequence::subtitle()  

  732. {  

  733.     return "Sequence: Move + Rotate";  

  734. }  

  735.   

  736. //第十四种动画演示表现的是如何使多种动画在组成动画序列中能够进行响应控制。  

  737. class ActionSequence2 : public ActionsDemo  

  738. {  

  739. public:  

  740.     virtual void onEnter();  

  741.     virtual std::string subtitle();  

  742.   

  743.     void callback1();  

  744.     void callback2(CCNode* sender);  

  745.     void callback3(CCNode* sender, void* data);  

  746. };  

  747. void ActionSequence2::onEnter()  

  748. {  

  749.     //动画演示的初始化  

  750.     ActionsDemo::onEnter();  

  751.     //只需要男一号上场  

  752.     alignSpritesLeft(1);  

  753.     //男一号设置不显示  

  754.     m_grossini->setVisible(false);  

  755.     //创建一个序列动画。这个序列动画包含了一些动画和回调函数, CCCallFunc为不带参数的回调函数,CCCallFuncN为以演示当前动画的演员为参数的回调函数,CCCallFuncND为以演示当前动画的演员和一个用户输入值为参数的回调函数。  

  756.     CCFiniteTimeAction*  action = CCSequence::create(  

  757.         CCPlace::create(CCPointMake(200,200)),  

  758.         CCShow::create(),  

  759.         CCMoveBy::create(1, CCPointMake(100,0)),  

  760.         CCCallFunc::create(this, callfunc_selector(ActionSequence2::callback1)),  

  761.         CCCallFuncN::create(this, callfuncN_selector(ActionSequence2::callback2)),  

  762.         CCCallFuncND::create(this, callfuncND_selector(ActionSequence2::callback3), (void*)0xbebabeba),  

  763.         NULL);  

  764.     //男一号运行此动画序列。  

  765.     m_grossini->runAction(action);  

  766. }  

  767. //不带参数的回调函数  

  768. void ActionSequence2::callback1()  

  769. {  

  770.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  771.     CCLabelTTF *label = CCLabelTTF::create("callback 1 called""Marker Felt", 16);  

  772.     label->setPosition(CCPointMake( s.width/4*1,s.height/2));  

  773.   

  774.     addChild(label);  

  775. }  

  776. //以演示当前动画的演员为参数的回调函数  

  777. void ActionSequence2::callback2(CCNode* sender)  

  778. {  

  779.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  780.     CCLabelTTF *label = CCLabelTTF::create("callback 2 called""Marker Felt", 16);  

  781.     label->setPosition(CCPointMake( s.width/4*2,s.height/2));  

  782.   

  783.     addChild(label);  

  784. }  

  785. //以演示当前动画的演员和一个用户输入值为参数的回调函数  

  786. void ActionSequence2::callback3(CCNode* sender, void* data)  

  787. {  

  788.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  789.     CCLabelTTF *label = CCLabelTTF::create("callback 3 called""Marker Felt", 16);  

  790.     label->setPosition(CCPointMake( s.width/4*3,s.height/2));  

  791.   

  792.     addChild(label);  

  793. }  

  794.   

  795. std::string ActionSequence2::subtitle()  

  796. {  

  797.     return "Sequence of InstantActions";  

  798. }  

  799.   

  800. //第十五种动画演示表现的是几种动画的并行,即如何同时进行多种动画。  

  801. class ActionSpawn : public ActionsDemo  

  802. {  

  803. public:  

  804.     virtual void onEnter();  

  805.     virtual std::string subtitle();  

  806. };  

  807. void ActionSpawn::onEnter()  

  808. {  

  809.     //动画演示的初始化  

  810.     ActionsDemo::onEnter();  

  811.     //只需要男一号上场  

  812.     alignSpritesLeft(1);  

  813.     //创建一个动画组合,使用方法与动画序列类似了,这里同时播放了跳跃和旋转的动画。  

  814.     CCAction*  action = CCSpawn::create(  

  815.         CCJumpBy::create(2, CCPointMake(300,0), 50, 4),  

  816.         CCRotateBy::create( 2,  720),  

  817.         NULL);  

  818.     //让男一行运行此动画组合。  

  819.     m_grossini->runAction(action);  

  820. }  

  821.   

  822. std::string ActionSpawn::subtitle()  

  823. {  

  824.     return "Spawn: Jump + Rotate";  

  825. }  

  826.   

  827. //第十六种动画演示表现的是动画的倒退重播,就像你看DVD按着后退键。  

  828. class ActionReverse : public ActionsDemo  

  829. {  

  830. public:  

  831.     virtual void onEnter();  

  832.     virtual std::string subtitle();  

  833. };  

  834. void ActionReverse::onEnter()  

  835. {  

  836.     //动画演示的初始化  

  837.     ActionsDemo::onEnter();  

  838.     //只需要男一号上场  

  839.     alignSpritesLeft(1);  

  840.     //创建一个跳跃动画。  

  841.     CCActionInterval*  jump = CCJumpBy::create(2, CCPointMake(300,0), 50, 4);  

  842.     //创建一个动画序列,先运行上面的跳跃动画,再运其反向动画。  

  843.     CCFiniteTimeAction*  action = CCSequence::create( jump, jump->reverse(), NULL);  

  844.     //男一号运行动画。  

  845.     m_grossini->runAction(action);  

  846. }  

  847.   

  848. std::string ActionReverse::subtitle()  

  849. {  

  850.     return "Reverse an action";  

  851. }  

  852.   

  853. //第十七种动画演示表现的是动画的暂停与继续播放。  

  854. class ActionDelayTime : public ActionsDemo  

  855. {  

  856. public:  

  857.     virtual void onEnter();  

  858.     virtual std::string subtitle();  

  859. };  

  860. void ActionDelayTime::onEnter()  

  861. {  

  862.     //动画演示的初始化  

  863.     ActionsDemo::onEnter();  

  864.     //只需要男一号上场  

  865.     alignSpritesLeft(1);  

  866.     //创建一个移动动画。  

  867.     CCActionInterval*  move = CCMoveBy::create(1, CCPointMake(150,0));  

  868.     //创建一个动画序列,先播放移动动画,再暂停2秒,然后再播放移动动画。  

  869.     CCFiniteTimeAction*  action = CCSequence::create( move, CCDelayTime::create(2), move, NULL);  

  870.     //男一行运行此动画序列。  

  871.     m_grossini->runAction(action);  

  872. }  

  873.   

  874. std::string ActionDelayTime::subtitle()  

  875. {  

  876.     return "DelayTime: m + delay + m";  

  877. }  

  878.   

  879.   

  880. //第十八种动画演示表现的是动画的重复播放。  

  881. class ActionRepeat : public ActionsDemo  

  882. {  

  883. public:  

  884.     virtual void onEnter();  

  885.     virtual std::string subtitle();  

  886. };  

  887. void ActionRepeat::onEnter()  

  888. {   //动画演示的初始化  

  889.     ActionsDemo::onEnter();  

  890.     //两位演员上场  

  891.     alignSpritesLeft(2);  

  892.     //创建一个移动动画。  

  893.     CCActionInterval*  a1 = CCMoveBy::create(1, CCPointMake(150,0));  

  894.     //创建一个循环3次的序列动画。序列动画先设置精灵位置在60,60,然后播放上面的移动动画。  

  895.     CCActionInterval*  action1 = CCRepeat::create(  

  896.         CCSequence::create( CCPlace::create(CCPointMake(60,60)), a1, NULL) ,   

  897.         3);   

  898.     //创建一个无限循环动画。这个无限循环的动画是一个动画序列,先播放第一个移动动画,再播放其反向动画。  

  899.     CCAction*  action2 = CCRepeatForever::create(  

  900.         (CCActionInterval*)(CCSequence::create((CCActionInterval*)(a1->copy()->autorelease()), a1->reverse(), NULL))  

  901.         );  

  902.     //女二号播放循环3次的序列动画  

  903.     m_kathia->runAction(action1);  

  904.     //女一号播放无限循环动画。  

  905.     m_tamara->runAction(action2);  

  906. }  

  907.   

  908. std::string ActionRepeat::subtitle()  

  909. {  

  910.     return "Repeat / RepeatForever actions";  

  911. }  

  912.   

  913. //第十九种动画演示表现的是动画的无限循环旋转。  

  914. class ActionRepeatForever : public ActionsDemo  

  915. {  

  916. public:  

  917.     virtual void onEnter();  

  918.     virtual std::string subtitle();  

  919.   

  920.     void repeatForever(CCNode* pTarget);  

  921. };  

  922. void ActionRepeatForever::onEnter()  

  923. {   //动画演示的初始化  

  924.     ActionsDemo::onEnter();  

  925.     //只需要男一号上场  

  926.     centerSprites(1);  

  927.     //创建一个动画序列,先暂停1秒,然后调用  

  928.     CCFiniteTimeAction*  action = CCSequence::create(  

  929.         CCDelayTime::create(1),  

  930.         CCCallFuncN::create( this, callfuncN_selector(ActionRepeatForever::repeatForever) ),   

  931.         NULL);  

  932.     //男一号运行此动画。  

  933.     m_grossini->runAction(action);  

  934. }  

  935. //回调函数。  

  936. void ActionRepeatForever::repeatForever(CCNode* pSender)  

  937. {  

  938.     //创建一个无限循环的旋转动画。  

  939.     CCRepeatForever *repeat = CCRepeatForever::create( CCRotateBy::create(1.0f, 360) );  

  940.     //让男一号运行此无限循环动画。  

  941.     pSender->runAction(repeat);  

  942. }  

  943.   

  944. std::string ActionRepeatForever::subtitle()  

  945. {  

  946.     return "CallFuncN + RepeatForever";  

  947. }  

  948.   

  949.   

  950. //第二十种动画演示表现的是动画的无限循环旋转到某个角度。  

  951. class ActionRotateToRepeat : public ActionsDemo  

  952. {  

  953. public:  

  954.     virtual void onEnter();  

  955.     virtual std::string subtitle();  

  956. };  

  957. void ActionRotateToRepeat::onEnter()  

  958. {   //动画演示的初始化  

  959.     ActionsDemo::onEnter();  

  960.     //需要两位演员  

  961.     centerSprites(2);  

  962.     //创建一个1秒内旋转到90度的动画  

  963.     CCActionInterval*  act1 = CCRotateTo::create(1, 90);  

  964.     //创建一个1秒内旋转到0度的动画  

  965.     CCActionInterval*  act2 = CCRotateTo::create(1, 0);  

  966.     //创建一个动画序列,先运行动动画1,再运行动画2  

  967.     CCActionInterval*  seq = (CCActionInterval*)(CCSequence::create(act1, act2, NULL));  

  968.     //创建一个无限循环播放动画序列的动画。  

  969.     CCAction*  rep1 = CCRepeatForever::create(seq);  

  970.     //创建一个循环10次播放动画序列的动画。  

  971.     CCActionInterval*  rep2 = CCRepeat::create((CCFiniteTimeAction*)(seq->copy()->autorelease()), 10);  

  972.     //两位演员分别播放相应的循环动画。  

  973.     m_tamara->runAction(rep1);  

  974.     m_kathia->runAction(rep2);  

  975. }  

  976.   

  977. std::string ActionRotateToRepeat ::subtitle()  

  978. {  

  979.     return "Repeat/RepeatForever + RotateTo";  

  980. }  

  981.   

  982. //第二十一种动画演示表现的是动画的旋转与反向旋转。  

  983. class ActionRotateJerk : public ActionsDemo  

  984. {  

  985. public:  

  986.     virtual void onEnter();  

  987.     virtual std::string subtitle();  

  988. };  

  989. void ActionRotateJerk::onEnter()  

  990. {   //动画演示的初始化  

  991.     ActionsDemo::onEnter();  

  992.     //需要两位演员  

  993.     centerSprites(2);  

  994.     //创建一个动画序列,先播放一个0.5秒旋转到-20度的动画,再播放一个0.5秒旋转到20度的动画。  

  995.     CCFiniteTimeAction*  seq = CCSequence::create(  

  996.         CCRotateTo::create(0.5f, -20),  

  997.         CCRotateTo::create(0.5f, 20),  

  998.         NULL);  

  999.     //创建一个循环播放10次上面的动画序列的循环动画。  

  1000.     CCActionInterval*  rep1 = CCRepeat::create(seq, 10);  

  1001.     //创建一个无限循环播放上面的动画序列的循环动画。  

  1002.     CCAction*  rep2 = CCRepeatForever::create( (CCActionInterval*)(seq->copy()->autorelease()) );  

  1003.     //两位演员分别播放各自的循环动画。  

  1004.     m_tamara->runAction(rep1);  

  1005.     m_kathia->runAction(rep2);  

  1006. }  

  1007.   

  1008. std::string ActionRotateJerk::subtitle()  

  1009. {  

  1010.     return "RepeatForever / Repeat + Rotate";  

  1011. }  

  1012.   

  1013. //第二十二种动画演示表现的是动画过程中的函数响应。  

  1014. class ActionCallFunc : public ActionsDemo  

  1015. {  

  1016. public:  

  1017.     virtual void onEnter();  

  1018.     virtual std::string subtitle();  

  1019.   

  1020.     void callback1();  

  1021.     void callback2(CCNode* pTarget);  

  1022.     void callback3(CCNode* pTarget, void* data);  

  1023. };  

  1024. void ActionCallFunc::onEnter()  

  1025. {   //动画演示的初始化  

  1026.     ActionsDemo::onEnter();  

  1027.     //需要三位演员  

  1028.     centerSprites(3);  

  1029.     //创建一个动画序列,先播放一个2秒横向移动200的动画,然后调用一个回调函数。  

  1030.     CCFiniteTimeAction*  action = CCSequence::create(  

  1031.         CCMoveBy::create(2, CCPointMake(200,0)),  

  1032.         CCCallFunc::create(this, callfunc_selector(ActionCallFunc::callback1)),   

  1033.         NULL);  

  1034.     //创建一个动画序列,先播放一个2秒放大2倍的动画,再播放一个2秒的淡出动画,之后调用一个回调函数。  

  1035.     CCFiniteTimeAction*  action2 = CCSequence::create(  

  1036.         CCScaleBy::create(2 ,  2),  

  1037.         CCFadeOut::create(2),  

  1038.         CCCallFuncN::create(this, callfuncN_selector(ActionSequence2::callback2)),   

  1039.         NULL);  

  1040.     //创建一个动画序列,先播放一个3秒内旋转360度的动画,然后是一个2秒内淡出的动画,之后调用一个回调函数。  

  1041.     CCFiniteTimeAction*  action3 = CCSequence::create(  

  1042.         CCRotateBy::create(3 , 360),  

  1043.         CCFadeOut::create(2),  

  1044.         CCCallFuncND::create(this, callfuncND_selector(ActionSequence2::callback3), (void*)0xbebabeba),   

  1045.         NULL);  

  1046.     //三位演员分别演示相应的动画。  

  1047.     m_grossini->runAction(action);  

  1048.     m_tamara->runAction(action2);  

  1049.     m_kathia->runAction(action3);  

  1050. }  

  1051.   

  1052. //第一个回调函数。  

  1053. void ActionCallFunc::callback1()  

  1054. {  

  1055.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  1056.     CCLabelTTF *label = CCLabelTTF::create("callback 1 called""Marker Felt", 16);  

  1057.     label->setPosition(CCPointMake( s.width/4*1,s.height/2));  

  1058.   

  1059.     addChild(label);  

  1060. }  

  1061. //第二个回调函数。  

  1062. void ActionCallFunc::callback2(CCNode* pSender)  

  1063. {  

  1064.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  1065.     CCLabelTTF *label = CCLabelTTF::create("callback 2 called""Marker Felt", 16);  

  1066.     label->setPosition(CCPointMake( s.width/4*2,s.height/2));  

  1067.   

  1068.     addChild(label);  

  1069. }  

  1070. //第三个回调函数。  

  1071. void ActionCallFunc::callback3(CCNode* pTarget, void* data)  

  1072. {  

  1073.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  1074.     CCLabelTTF *label = CCLabelTTF::create("callback 3 called""Marker Felt", 16);  

  1075.     label->setPosition(CCPointMake( s.width/4*3,s.height/2));  

  1076.     addChild(label);  

  1077. }  

  1078.   

  1079. std::string ActionCallFunc::subtitle()  

  1080. {  

  1081.     return "Callbacks: CallFunc and friends";  

  1082. }  

  1083.   

  1084. //第二十二种动画演示表现的是动画过程中的带参数的函数响应。  

  1085. class ActionCallFuncND : public ActionsDemo  

  1086. {  

  1087. public:  

  1088.     virtual void onEnter();  

  1089.     virtual std::string title();  

  1090.     virtual std::string subtitle();  

  1091.     void removeFromParentAndCleanup(CCNode* pSender, void* data);  

  1092. };  

  1093. void ActionCallFuncND::onEnter()  

  1094. {   //动画演示的初始化  

  1095.     ActionsDemo::onEnter();  

  1096.     //只需要男演员上场。  

  1097.     centerSprites(1);  

  1098.     //创建一个动画序列,首先播放一个2秒横向移动200的动画,然后调用一个回调函数,可带一个参数true。  

  1099.     CCFiniteTimeAction* action = CCSequence::create(CCMoveBy::create(2.0f, ccp(200,0)),  

  1100.         CCCallFuncND::create(this, callfuncND_selector(ActionCallFuncND::removeFromParentAndCleanup), (void*)true),  

  1101.         NULL);  

  1102.     //男演员演示动画  

  1103.     m_grossini->runAction(action);  

  1104. }  

  1105.   

  1106. std::string ActionCallFuncND::title()  

  1107. {  

  1108.     return "CallFuncND + auto remove";  

  1109. }  

  1110.   

  1111. std::string ActionCallFuncND::subtitle()  

  1112. {  

  1113.     return "CallFuncND + removeFromParentAndCleanup. Grossini dissapears in 2s";  

  1114. }  

  1115. //带参数的回调函数。data在这里为true。  

  1116. void ActionCallFuncND::removeFromParentAndCleanup(CCNode* pSender, void* data)  

  1117. {  

  1118.     bool bCleanUp = data != NULL;  

  1119.     m_grossini->removeFromParentAndCleanup(bCleanUp);  

  1120. }  

  1121.   

  1122. //第二十三种动画演示表现的是动画的序列播放与反向序列播放。  

  1123. class ActionReverseSequence : public ActionsDemo  

  1124. {  

  1125. public:  

  1126.     virtual void onEnter();  

  1127.     virtual std::string subtitle();  

  1128. };  

  1129. void ActionReverseSequence::onEnter()  

  1130. {  

  1131.     //动画演示的初始化  

  1132.     ActionsDemo::onEnter();  

  1133.     //只需要男演员上场。  

  1134.     alignSpritesLeft(1);  

  1135.     //创建一个移动动画。  

  1136.     CCActionInterval*  move1 = CCMoveBy::create(1, CCPointMake(250,0));  

  1137.     //创建第二个移动动画。  

  1138.     CCActionInterval*  move2 = CCMoveBy::create(1, CCPointMake(0,50));  

  1139.     //创建一个动画序列,首先播放第一个移动动画,再播放第二个移动动画,最后播放第一个移动动画的反向动画。  

  1140.     CCFiniteTimeAction*  seq = CCSequence::create( move1, move2, move1->reverse(), NULL);  

  1141.     //创建一个动画序列,先播放第一个动画序列,然后播放这个动画序列的反向动画序列。  

  1142.     CCFiniteTimeAction*  action = CCSequence::create( seq, seq->reverse(), NULL);  

  1143.     //男演员演示这个动画序列。  

  1144.     m_grossini->runAction(action);  

  1145. }  

  1146.   

  1147. std::string ActionReverseSequence::subtitle()  

  1148. {  

  1149.     return "Reverse a sequence";  

  1150. }  

  1151.   

  1152. //第二十四种动画演示表现的是动画的序列播放与反向序列播放。  

  1153. class ActionReverseSequence2 : public ActionsDemo  

  1154. {  

  1155. public:  

  1156.     virtual void onEnter();  

  1157.     virtual std::string subtitle();  

  1158. };  

  1159. void ActionReverseSequence2::onEnter()  

  1160. {   //动画演示的初始化  

  1161.     ActionsDemo::onEnter();  

  1162.     //需要两位演员。  

  1163.     alignSpritesLeft(2);  

  1164.     //创建一个移动动画。  

  1165.     CCActionInterval*  move1 = CCMoveBy::create(1, CCPointMake(250,0));  

  1166.     //创建第二个移动动画。  

  1167.     CCActionInterval*  move2 = CCMoveBy::create(1, CCPointMake(0,50));  

  1168.     //创建两个精灵显示隐藏切换动画。这个动画会判断精灵显示状态,如果显示则切换为隐藏,如果隐藏则切换为显示。  

  1169.     CCToggleVisibility*  tog1 = new CCToggleVisibility();  

  1170.     CCToggleVisibility*  tog2 = new CCToggleVisibility();  

  1171.     tog1->autorelease();  

  1172.     tog2->autorelease();  

  1173.     //创建动画序列,先播第一个移动动画,然后隐藏,然后播第二个移动动画,然后显示,再播第一个移动动画的反向动画。  

  1174.     CCFiniteTimeAction*  seq = CCSequence::create( move1, tog1, move2, tog2, move1->reverse(), NULL);  

  1175.     //创建第二个动画序列,先播放第一个动画序列,再播放它的反向动画序列。  

  1176.     CCActionInterval*  action = CCRepeat::create((CCActionInterval*)(CCSequence::create( seq, seq->reverse(), NULL)), 3);  

  1177.   

  1178.   

  1179.   

  1180.     //女二号播放第二个动画序列.  

  1181.     m_kathia->runAction(action);  

  1182.     //创建一个移动动画。  

  1183.     CCActionInterval*  move_tamara = CCMoveBy::create(1, CCPointMake(100,0));  

  1184.     //创建第二个移动动画。  

  1185.     CCActionInterval*  move_tamara2 = CCMoveBy::create(1, CCPointMake(50,0));  

  1186.     //创建一个隐藏动画,这个动画的过程中精灵是处于隐藏状态。  

  1187.     CCActionInstant*  hide = new CCHide();  

  1188.     hide->autorelease();  

  1189.     //创建一个动画序列,先运行第一个移动动画,然后隐动画,最后第二个移动动画。  

  1190.     CCFiniteTimeAction*  seq_tamara = CCSequence::create( move_tamara, hide, move_tamara2, NULL);  

  1191.     //创建动画序列的反向动画序列。  

  1192.     CCFiniteTimeAction*  seq_back = seq_tamara->reverse();  

  1193.     //女一号运行一个动画序列,这个动画序列会先运行第一个动画序列,然后再运行它的反向动画序列。  

  1194.     m_tamara->runAction( CCSequence::create( seq_tamara, seq_back, NULL));  

  1195. }  

  1196. std::string ActionReverseSequence2::subtitle()  

  1197. {  

  1198.     return "Reverse sequence 2";  

  1199. }  

  1200.   

  1201. //第二十五种动画演示表现的是旋转摄像机动画,这时会用到摄像机球型运动算法,摄像机会处在一个以目标物为球心的球体表面,其可以在球体表面上绕横向和纵向轴旋转。  

  1202. class ActionOrbit : public ActionsDemo  

  1203. {  

  1204. public:  

  1205.     virtual void onEnter();  

  1206.     virtual std::string subtitle();  

  1207. };  

  1208. void ActionOrbit::onEnter()  

  1209. {   //动画演示的初始化  

  1210.     ActionsDemo::onEnter();  

  1211.     //需要三位演员。  

  1212.     centerSprites(3);  

  1213.     //创建第一个旋转摄像机动画。  

  1214.     //创建的这个动画为2秒内在半径为1的球面上绕纵向轴转180度。  

  1215.     CCActionInterval*  orbit1 = CCOrbitCamera::create(2,1, 0, 0, 180, 0, 0);  

  1216.     //创建第一个动画序列,先运行摄像机动画,再运行它的反向动画。  

  1217.     CCFiniteTimeAction*  action1 = CCSequence::create(  

  1218.         orbit1,  

  1219.         orbit1->reverse(),  

  1220.         NULL);  

  1221.     //创建第二个旋转摄像机动画以及动画序列。  

  1222.     //创建的这个动画为2秒内在半径为1的球面上,位置点在横向轴旋转-45度,然后动画过程会沿以旋转后的坐标系在纵向轴转180度。  

  1223.     CCActionInterval*  orbit2 = CCOrbitCamera::create(2,1, 0, 0, 180, -45, 0);  

  1224.     CCFiniteTimeAction*  action2 = CCSequence::create(  

  1225.         orbit2,  

  1226.         orbit2->reverse(),  

  1227.         NULL);  

  1228.     //创建第三个旋转摄像机动画及动画序列。  

  1229.     //创建的这个动画为2秒内在半径为1的球面上,位置点在横向轴旋转90度,然后动画过程会沿以旋转后的坐标系在纵向轴转180度,注意,这时候在世界坐标系中看,其实是沿横向轴转180度~!  

  1230.     CCActionInterval*  orbit3 = CCOrbitCamera::create(2,1, 0, 0, 180, 90, 0);  

  1231.     CCFiniteTimeAction*  action3 = CCSequence::create(  

  1232.         orbit3,  

  1233.         orbit3->reverse(),  

  1234.         NULL);  

  1235.   

  1236.     //三位演员分别播放相应的无限循环动画。 m_kathia->runAction(CCRepeatForever::create((CCActionInterval*)action1));  

  1237.     m_tamara->runAction(CCRepeatForever::create((CCActionInterval*)action2));  

  1238.     m_grossini->runAction(CCRepeatForever::create((CCActionInterval*)action3));  

  1239.     //创建一个移动动画。  

  1240.     CCActionInterval*  move = CCMoveBy::create(3, CCPointMake(100,-100));  

  1241.     //创建这个移动动画的反向动画。  

  1242.     CCActionInterval*  move_back = move->reverse();  

  1243.     //将这两个动画放到一个动画序列中。  

  1244.     CCFiniteTimeAction*  seq = CCSequence::create(move, move_back, NULL);  

  1245.     //创建一个无限循环动画,播放这个动画序列。  

  1246.     CCAction*  rfe = CCRepeatForever::create((CCActionInterval*)seq);  

  1247.     //三位演员要同时播放这个无限循环动画。  

  1248.     m_kathia->runAction(rfe);  

  1249.     m_tamara->runAction((CCAction*)(rfe->copy()->autorelease()));  

  1250.     m_grossini->runAction((CCAction*)(rfe->copy()->autorelease()));  

  1251. }  

  1252.   

  1253. std::string ActionOrbit::subtitle()  

  1254. {  

  1255.     return "OrbitCamera action";  

  1256. }  

  1257.   

  1258.   

  1259. //第二十六种动画演示表现的是跟随动画。  

  1260. class ActionFollow : public ActionsDemo  

  1261. {  

  1262. public:  

  1263.     virtual void onEnter();  

  1264.     virtual std::string subtitle();  

  1265. };  

  1266. void ActionFollow::onEnter()  

  1267. {  

  1268.     //动画演示的初始化  

  1269.     ActionsDemo::onEnter();  

  1270.     //只需要一位演员上场  

  1271.     centerSprites(1);  

  1272.     //取得可视区域的大小  

  1273.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  1274.     //男一号设置位置。  

  1275.     m_grossini->setPosition(CCPointMake(-200, s.height / 2));  

  1276.     //创建一个移动动画。  

  1277.     CCActionInterval* move      = CCMoveBy::create(2, CCPointMake(s.width * 3, 0));  

  1278.     //创建这个移动动画的反向动画。  

  1279.     CCActionInterval* move_back = move->reverse();  

  1280.     //创建一个动画序列,先播放移动动画,再播放其反向动画。  

  1281.     CCFiniteTimeAction* seq       = CCSequence::create(move, move_back, NULL);  

  1282.     //创建一个无限循环动画,播放这个动画序列。  

  1283.     CCAction* rep               = CCRepeatForever::create((CCActionInterval*)seq);  

  1284.     //男一号演员这个无限循环动画。  

  1285.     m_grossini->runAction(rep);  

  1286.     //当前层运行一个跟随动画,跟随男一号,并设置其包围区域。  

  1287.     this->runAction(CCFollow::create(m_grossini, CCRectMake(0, 0, s.width * 2 - 100, s.height)));  

  1288. }  

  1289.   

  1290. std::string ActionFollow::subtitle()  

  1291. {  

  1292.     return "Follow action";  

  1293. }  

  1294.   

  1295. //第二十七种动画演示表现的是控制目标动画。  

  1296. class ActionTargeted : public ActionsDemo  

  1297. {  

  1298. public:  

  1299.     virtual void onEnter();  

  1300.     virtual std::string title();  

  1301.     virtual std::string subtitle();  

  1302. };  

  1303. void ActionTargeted::onEnter()  

  1304. {     

  1305.     //动画演示的初始化  

  1306.     ActionsDemo::onEnter();  

  1307.     //需要两位演员上场  

  1308.     centerSprites(2);  

  1309.     //先创建一个跳跃动画。  

  1310.     CCJumpBy* jump1 = CCJumpBy::create(2,CCPointZero,100,3);  

  1311.     //再创建一个相同的跳跃动画。  

  1312.     CCJumpBy* jump2 = (CCJumpBy*)jump1->copy()->autorelease();  

  1313.     //创建一个旋转动画。  

  1314.     CCRotateBy* rot1 =  CCRotateBy::create(1, 360);  

  1315.     //再创建一个相同的旋转动画。  

  1316.     CCRotateBy* rot2 = (CCRotateBy*)rot1->copy()->autorelease();  

  1317.     //创建第一个控制目标动画,让女二号播放第二个跳跃动画。  

  1318.     CCTargetedAction *t1 = CCTargetedAction::create(m_kathia, jump2);  

  1319.     //创建第二个控制目标动画,让女二号播放第二个旋转动画。  

  1320.     CCTargetedAction *t2 = CCTargetedAction::create(m_kathia, rot2);  

  1321.   

  1322.     //创建一个动画序列,先播放一个第一个跳跃动画,再播放第一个控制目标动画,再播放第一个旋转动画,再播放第二个控制目标动画。  

  1323.     CCSequence* seq = (CCSequence*)CCSequence::create(jump1, t1, rot1, t2, NULL);  

  1324.     //创建一个无限循环动画,播放上面的动画序列。  

  1325.     CCRepeatForever *always = CCRepeatForever::create(seq);  

  1326.     //女一号运行这个无限循环动画。  

  1327.     m_tamara->runAction(always);  

  1328. }  

  1329.   

  1330. std::string ActionTargeted::title()  

  1331. {  

  1332.     return "ActionTargeted";  

  1333. }  

  1334.   

  1335. std::string ActionTargeted::subtitle()  

  1336. {  

  1337.     return "Action that runs on another target. Useful for sequences";  

  1338. }  

  1339.   

  1340. //第二十八种动画演示表现的是1305号动画。  

  1341. class Issue1305 : public ActionsDemo  

  1342. {  

  1343. public:  

  1344.     virtual void onEnter();  

  1345.     virtual void onExit();  

  1346.     void log(CCNode* pSender);  

  1347.     void addSprite(float dt);  

  1348.     virtual std::string title();  

  1349.     virtual std::string subtitle();  

  1350. private:  

  1351.     CCSprite* m_pSpriteTmp;  

  1352. };  

  1353. void Issue1305::onEnter()  

  1354. {     

  1355.     //动画演示的初始化  

  1356.     ActionsDemo::onEnter();  

  1357.     //空无一人  

  1358.     centerSprites(0);  

  1359.     //创建一个精灵  

  1360.     m_pSpriteTmp = CCSprite::create("Images/grossini.png");  

  1361.     //让精灵运行一个回调函数打印一个日志。注意:在这里没有让精灵加入当前Layer,所以它不会真正的runAction,必须等它被挂在Layer下后才能被遍历更新。  

  1362.       

  1363.     m_pSpriteTmp->runAction(CCCallFuncN::create(this, callfuncN_selector(Issue1305::log)));  

  1364.     //占用精灵,故引用计数加一。  

  1365.     m_pSpriteTmp->retain();  

  1366.     //当前结点在2秒后调用回调函数增加一个精灵。  

  1367.     scheduleOnce(schedule_selector(Issue1305::addSprite), 2);  

  1368. }  

  1369. //精灵调用的回调函数。  

  1370. void Issue1305::log(CCNode* pSender)  

  1371. {  

  1372.     CCLog("This message SHALL ONLY appear when the sprite is added to the scene, NOT BEFORE");  

  1373. }  

  1374.   

  1375. void Issue1305::onExit()  

  1376. {  

  1377.     m_pSpriteTmp->release();  

  1378.     ActionsDemo::onExit();  

  1379. }  

  1380.   

  1381. void Issue1305::addSprite(float dt)  

  1382. {  

  1383.     //在这里设置精灵的位置并将其加入到当前的Layer下。  

  1384.     m_pSpriteTmp->setPosition(ccp(250,250));  

  1385.     addChild(m_pSpriteTmp);  

  1386. }  

  1387.   

  1388. 上面这个动画运行后,等2秒创建出精灵,然后动作管理器才能执行精灵运行的函数打印日志,输出到Output窗口。  


 

源码打印?

  1. std::string Issue1305::title()  

  2. {  

  3.     return "Issue 1305";  

  4. }  

  5.   

  6. std::string Issue1305::subtitle()  

  7. {  

  8.     return "In two seconds you should see a message on the console. NOT BEFORE.";  

  9. }  

  10. //第二十九种动画演示表现的是1305号动画二。  

  11. class Issue1305_2 : public ActionsDemo  

  12. {  

  13. public:  

  14.     virtual void onEnter();  

  15.     void log1();  

  16.     void log2();  

  17.     void log3();  

  18.     void log4();  

  19.     virtual std::string title();  

  20.     virtual std::string subtitle();  

  21. };  

  22. void Issue1305_2::onEnter()  

  23. {  

  24.     //动画演示的初始化  

  25.     ActionsDemo::onEnter();  

  26.     //不需要演员上场  

  27.     centerSprites(0);  

  28.     //创建一个精灵.加载一个图。  

  29.     CCSprite *spr = CCSprite::create("Images/grossini.png");  

  30.     //设置位置  

  31.     spr->setPosition(ccp(200,200));  

  32.     //加入当前Layer。  

  33.     addChild(spr);  

  34.     //创建一个移动动画。  

  35.     CCMoveBy* act1 = CCMoveBy::create(2 ,ccp(0, 100));  

  36.     //创建一个回调函数。  

  37.     CCCallFunc* act2 = CCCallFunc::create(this, callfunc_selector(Issue1305_2::log1)) ;  

  38.     //创建第二个移动动画。  

  39.     CCMoveBy* act3 = CCMoveBy::create(2, ccp(0, -100));  

  40.     //创建第二个回调函数。  

  41.     CCCallFunc* act4 = CCCallFunc::create(this, callfunc_selector(Issue1305_2::log2)) ;  

  42.     //创建第三个移动动画。  

  43.     CCMoveBy* act5 = CCMoveBy::create(2, ccp(100, -100));  

  44.     //创建第三个回调函数。  

  45.     CCCallFunc* act6 = CCCallFunc::create(this, callfunc_selector(Issue1305_2::log3)) ;  

  46.     //创建第四个移动动画。  

  47.     CCMoveBy* act7 = CCMoveBy::create(2, ccp(-100, 0));  

  48.     //创建第四个回调函数。  

  49.     CCCallFunc* act8 = CCCallFunc::create(this, callfunc_selector(Issue1305_2::log4)) ;  

  50.     //创建一个动画序列,将前面的动画都顺序包含进来。  

  51.     CCFiniteTimeAction* actF = CCSequence::create(act1, act2, act3, act4, act5, act6, act7, act8, NULL);  

  52.   

  53.    //通过动画管理器来指定精灵播放动画序列。    CCDirector::sharedDirector()->getActionManager()->addAction(actF ,spr, false);  

  54.   

  55. }  

  56.   

  57. void Issue1305_2::log1()  

  58. {  

  59.     CCLog("1st block");  

  60. }  

  61.   

  62. void Issue1305_2::log2()  

  63. {  

  64.     CCLog("2nd block");  

  65. }  

  66.   

  67. void Issue1305_2::log3()  

  68. {  

  69.     CCLog("3rd block");  

  70. }  

  71.   

  72. void Issue1305_2::log4()  

  73. {  

  74.     CCLog("4th block");  

  75. }  

  76.   

  77. std::string Issue1305_2::title()  

  78. {  

  79.     return "Issue 1305 #2";  

  80. }  

  81.   

  82. std::string Issue1305_2::subtitle()  

  83. {  

  84.     return "See console. You should only see one message for each block";  

  85. }  

  86. //第三十种动画演示表现的是1288号动画。  

  87. class Issue1288 : public ActionsDemo  

  88. {  

  89. public:  

  90.     virtual void onEnter();  

  91.     virtual std::string title();  

  92.     virtual std::string subtitle();  

  93. };  

  94. void Issue1288::onEnter()  

  95. {  

  96.     //动画演示的初始化  

  97.     ActionsDemo::onEnter();  

  98.     //不需要演员上场。  

  99.     centerSprites(0);  

  100.     //创建一个精灵,设置其位置并加入当前Layer。  

  101.     CCSprite *spr = CCSprite::create("Images/grossini.png");  

  102.     spr->setPosition(ccp(100, 100));  

  103.     addChild(spr);  

  104.     //创建两个移动动画。  

  105.     CCMoveBy* act1 = CCMoveBy::create(0.5, ccp(100, 0));  

  106.     CCMoveBy* act2 = (CCMoveBy*)act1->reverse();  

  107.     //将两个动画放入一个新创建的动画序列。  

  108.     CCFiniteTimeAction* act3 = CCSequence::create(act1, act2, NULL);  

  109.     //创建一个循环2次播放动画序列的动画。  

  110.     CCRepeat* act4 = CCRepeat::create(act3, 2);  

  111.     //让精灵播放这个循环2次播放动画序列的动画。  

  112.     spr->runAction(act4);  

  113. }  

  114.   

  115. std::string Issue1288::title()  

  116. {  

  117.     return "Issue 1288";  

  118. }  

  119.   

  120. std::string Issue1288::subtitle()  

  121. {  

  122.     return "Sprite should end at the position where it started.";  

  123. }  

  124. //第三十种动画演示表现的是1288号动画二。  

  125. class Issue1288_2 : public ActionsDemo  

  126. {  

  127. public:  

  128.     virtual void onEnter();  

  129.     virtual std::string title();  

  130.     virtual std::string subtitle();  

  131. };  

  132. void Issue1288_2::onEnter()  

  133. {  

  134.     //动画演示的初始化  

  135.     ActionsDemo::onEnter();  

  136.     //不需要演员上场。  

  137.     centerSprites(0);  

  138.     //创建一个精灵,设置其位置并加入当前Layer。  

  139.     CCSprite *spr = CCSprite::create("Images/grossini.png");  

  140.     spr->setPosition(ccp(100, 100));  

  141.     addChild(spr);  

  142.     //创建一个移动动画。  

  143.     CCMoveBy* act1 = CCMoveBy::create(0.5, ccp(100, 0));  

  144.     //创建一个循环播放1次上面的移动动画,并让精灵运行它。  

  145.     spr->runAction(CCRepeat::create(act1, 1));  

  146. }  

  147.   

  148. std::string Issue1288_2::title()  

  149. {  

  150.     return "Issue 1288 #2";  

  151. }  

  152.   

  153. std::string Issue1288_2::subtitle()  

  154. {  

  155.     return "Sprite should move 100 pixels, and stay there";  

  156. }  

  157. //第三十一种动画演示表现的是1327号动画。  

  158. class Issue1327 : public ActionsDemo  

  159. {  

  160. public:  

  161.     virtual void onEnter();  

  162.     virtual std::string subtitle();  

  163.     virtual std::string title();  

  164.     void logSprRotation(CCNode* pSender);  

  165. };  

  166. void Issue1327::onEnter()  

  167. {  

  168.     //动画演示的初始化  

  169.     ActionsDemo::onEnter();  

  170.     //不需要演员上场。  

  171.     centerSprites(0);  

  172.     //创建一个精灵,设置其位置并加入当前Layer。  

  173.     CCSprite *spr = CCSprite::create("Images/grossini.png");  

  174.     spr->setPosition(ccp(100, 100));  

  175.     addChild(spr);  

  176.     //又是一堆回调函数和旋转动画。  

  177.     CCCallFuncN* act1 = CCCallFuncN::create(this, callfuncN_selector(Issue1327::logSprRotation));  

  178.     CCRotateBy* act2 = CCRotateBy::create(0.25, 45);  

  179.     CCCallFuncN* act3 = CCCallFuncN::create(this, callfuncN_selector(Issue1327::logSprRotation));  

  180.     CCRotateBy* act4 = CCRotateBy::create(0.25, 45);  

  181.     CCCallFuncN* act5 = CCCallFuncN::create(this, callfuncN_selector(Issue1327::logSprRotation));  

  182.     CCRotateBy* act6 = CCRotateBy::create(0.25, 45);  

  183.     CCCallFuncN* act7 = CCCallFuncN::create(this, callfuncN_selector(Issue1327::logSprRotation));  

  184.     CCRotateBy* act8 = CCRotateBy::create(0.25, 45);  

  185.     CCCallFuncN* act9 = CCCallFuncN::create(this, callfuncN_selector(Issue1327::logSprRotation));  

  186.     //创建一个动画序列,将上面9个动画顺序放入。  

  187.     CCFiniteTimeAction* actF = CCSequence::create(act1, act2, act3, act4, act5, act6, act7, act8, act9, NULL);  

  188.     //精灵运行这个动画序列。  

  189.     spr->runAction(actF);  

  190. }  

  191.   

  192. std::string Issue1327::title()  

  193. {  

  194.     return "Issue 1327";  

  195. }  

  196.   

  197. std::string Issue1327::subtitle()  

  198. {  

  199.     return "See console: You should see: 0, 45, 90, 135, 180";  

  200. }  

  201.   

  202. void Issue1327::logSprRotation(CCNode* pSender)  

  203. {  

  204.     CCLog("%f", ((CCSprite*)pSender)->getRotation());  

  205. }  

  206. //第三十二种动画演示表现的是由点构成的曲线动画。  

  207. class ActionCatmullRom : public ActionsDemo  

  208. {  

  209. public:  

  210.     ~ActionCatmullRom();  

  211.       

  212.     virtual void onEnter();  

  213.     virtual void draw();  

  214.     virtual std::string subtitle();  

  215.     virtual std::string title();  

  216. private:  

  217.     CCPointArray *m_pArray1;  

  218.     CCPointArray *m_pArray2;  

  219. };  

  220. void ActionCatmullRom::onEnter()  

  221. {   //动画演示初始化  

  222.     ActionsDemo::onEnter();  

  223.     //2位演员上场  

  224.     this->centerSprites(2);  

  225.     //取得可视区域大小。  

  226.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  227.     //女一号设置位置。  

  228.     m_tamara->setPosition(ccp(50, 50));  

  229.     //创建一个位置点数组,初始化数组大小为20.  

  230.     CCPointArray *array = CCPointArray::create(20);  

  231.     //放入一堆位置点。  

  232.     array->addControlPoint(ccp(0, 0));  

  233.     array->addControlPoint(ccp(80, 80));  

  234.     array->addControlPoint(ccp(s.width - 80, 80));  

  235.     array->addControlPoint(ccp(s.width - 80, s.height - 80));  

  236.     array->addControlPoint(ccp(80, s.height - 80));  

  237.     array->addControlPoint(ccp(80, 80));  

  238.     array->addControlPoint(ccp(s.width / 2, s.height / 2));  

  239.     //创建一个3秒钟按点数组构成的曲线移动的动画,位置点为相对位置。  

  240.     CCCatmullRomBy *action = CCCatmullRomBy::create(3, array);  

  241.     //创建它的反向动画。  

  242.     CCFiniteTimeAction *reverse = action->reverse();  

  243.     //创建一个动画序列,将原动画和反向动画顺序放入。  

  244.     CCFiniteTimeAction *seq = CCSequence::create(action, reverse, NULL);  

  245.     //女一号运行这个动画序列。  

  246.     m_tamara->runAction(seq);  

  247.       

  248.       

  249.     //再创建一个位置点数组。  

  250.     CCPointArray *array2 = CCPointArray::create(20);  

  251.     //又放入一堆位置点。  

  252.     array2->addControlPoint(ccp(s.width / 2, 30));  

  253.     array2->addControlPoint(ccp(s.width  -80, 30));  

  254.     array2->addControlPoint(ccp(s.width - 80, s.height - 80));  

  255.     array2->addControlPoint(ccp(s.width / 2, s.height - 80));  

  256.     array2->addControlPoint(ccp(s.width / 2, 30));  

  257.    //创建一个3秒钟按点数组构成的曲线移动的动画,位置点为绝对位置。  

  258.     CCCatmullRomTo *action2 = CCCatmullRomTo::create(3, array2);  

  259.     //创建它的反向动画。  

  260.     CCFiniteTimeAction *reverse2 = action2->reverse();  

  261.     //创建一个动画序列,将原动画和反向动画顺序放入。  

  262.     CCFiniteTimeAction *seq2 = CCSequence::create(action2, reverse2, NULL);  

  263.       

  264.     //女二号运行这个动画序列。  

  265.     m_kathia->runAction(seq2);  

  266.     //将两个位置点数组的地址保存到成员指针变量,并对引用计数器加1防止被释放掉。  

  267.     m_pArray1 = array;  

  268.     m_pArray1->retain();  

  269.     m_pArray2 = array2;  

  270.     m_pArray2->retain();  

  271. }  

  272.   

  273. ActionCatmullRom::~ActionCatmullRom()  

  274. {  

  275.     //当前演示层释放时,一并释放点数组。  

  276.     m_pArray1->release();  

  277.     m_pArray2->release();  

  278. }  

  279.   

  280. void ActionCatmullRom::draw()  

  281. {  

  282.     ActionsDemo::draw();  

  283.       

  284.     //绘制相对位置曲线  

  285.     //先将当前OPENGL的矩阵状态压栈  

  286.     kmGLPushMatrix();  

  287.     //移动到50,50点的位置  

  288.     kmGLTranslatef(50, 50, 0);  

  289.     //以这个点为原点绘制相对路径  

  290.     ccDrawCatmullRom(m_pArray1, 50);  

  291.     //恢复矩阵状态  

  292.     kmGLPopMatrix();  

  293.   

  294.     //再绘制绝对位置的曲线  

  295.     ccDrawCatmullRom(m_pArray2,50);  

  296. }  

  297.   

  298. string ActionCatmullRom::title()  

  299. {  

  300.     return "CatmullRomBy / CatmullRomTo";  

  301. }  

  302.   

  303. string ActionCatmullRom::subtitle()  

  304. {  

  305.     return "Catmull Rom spline paths. Testing reverse too";  

  306. }  

  307. //第三十三种动画演示表现的是由点构成的贝塞尔曲线动画。  

  308. class ActionCardinalSpline : public ActionsDemo  

  309. {  

  310. public:  

  311.     ~ActionCardinalSpline();  

  312.       

  313.     virtual void onEnter();  

  314.     virtual void draw();  

  315.     virtual std::string subtitle();  

  316.     virtual std::string title();  

  317. private:  

  318.     CCPointArray *m_pArray;  

  319. };  

  320. void ActionCardinalSpline::onEnter()  

  321. {  

  322.     //动画演示初始化  

  323.     ActionsDemo::onEnter();  

  324.     //2位演员上场  

  325.     this->centerSprites(2);  

  326.     //取得可视区域大小。  

  327.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  328.     //创建一个位置点数组,初始化数组大小为20.  

  329.     CCPointArray *array = CCPointArray::create(20);  

  330.     //放入一堆位置点。  

  331.     array->addControlPoint(ccp(0, 0));  

  332.     array->addControlPoint(ccp(s.width/2-30, 0));  

  333.     array->addControlPoint(ccp(s.width/2-30, s.height-80));  

  334.     array->addControlPoint(ccp(0, s.height-80));  

  335.     array->addControlPoint(ccp(0, 0));  

  336.     //创建一个3秒钟按点数组构成的贝塞尔曲线移动的动画,位置点为相对位置。  

  337.     CCCardinalSplineBy *action = CCCardinalSplineBy::create(3, array, 0);  

  338.     //创建它的反向动画。  

  339.     CCActionInterval *reverse = action->reverse();  

  340.     //创建一个动画序列,将原动画和反向动画顺序放入。  

  341.     CCFiniteTimeAction *seq = CCSequence::create(action, reverse, NULL);  

  342.     //女一号设置位置并运行此曲线动画。  

  343.     m_tamara->setPosition(ccp(50, 50));  

  344.     m_tamara->runAction(seq);  

  345.       

  346. //创建一个3秒钟按点数组构成的贝塞尔曲线移动的动画,位置点为相对位置。        CCCardinalSplineBy *action2 = CCCardinalSplineBy::create(3, array, 1);  

  347.     //创建它的反向动画。  

  348.     CCActionInterval *reverse2 = action2->reverse();  

  349.     //创建一个动画序列,将原动画和反向动画顺序放入。  

  350.     CCFiniteTimeAction *seq2 = CCSequence::create(action2, reverse2, NULL);  

  351.     //女二号设置位置并运行此曲线动画。  

  352.     m_kathia->setPosition(ccp(s.width/2, 50));  

  353.     m_kathia->runAction(seq2);  

  354.     //将位置点数组的地址保存到成员指针变量,并对引用计数器加1防止被释放掉。  

  355.     m_pArray = array;  

  356.     array->retain();  

  357. }  

  358.   

  359. ActionCardinalSpline::~ActionCardinalSpline()  

  360. {  

  361.     m_pArray->release();  

  362. }  

  363.   

  364. void ActionCardinalSpline::draw()  

  365. {  

  366.     ActionsDemo::draw();  

  367.       

  368.     //绘制第一个相对位置曲线  

  369.     //先将当前OPENGL的矩阵状态压栈  

  370.     kmGLPushMatrix();  

  371.     //移动到50,50点的位置  

  372.     kmGLTranslatef(50, 50, 0);  

  373.     //以这个点为原点绘制相对路径  

  374.     ccDrawCardinalSpline(m_pArray, 0, 100);  

  375.     //恢复矩阵状态  

  376.     kmGLPopMatrix();  

  377.   

  378.     CCSize s = CCDirector::sharedDirector()->getWinSize();  

  379.     //绘制第二个相对位置曲线  

  380.     //先将当前OPENGL的矩阵状态压栈  

  381.     kmGLPushMatrix();  

  382.     //移动到s.width/2, 50的位置  

  383.     kmGLTranslatef(s.width/2, 50, 0);  

  384.     //以这个点为原点绘制相对路径  

  385.     ccDrawCardinalSpline(m_pArray, 1, 100);  

  386.     //恢复矩阵状态  

  387.     kmGLPopMatrix();  

  388. }  

  389.   

  390. string ActionCardinalSpline::title()  

  391. {  

  392.     return "CardinalSplineBy / CardinalSplineAt";  

  393. }  

  394.   

  395. string ActionCardinalSpline::subtitle()  

  396. {  

  397.     return "Cardinal Spline paths. Testing different tensions for one array";  

  398. }  

  399. //第三十四种动画演示表现的是控制暂停和恢复动画。  

  400. class PauseResumeActions : public ActionsDemo  

  401. {  

  402. public:  

  403.     PauseResumeActions();  

  404.     virtual ~PauseResumeActions();  

  405.     virtual void onEnter();  

  406.     virtual std::string subtitle();  

  407.     virtual std::string title();  

  408.       

  409.     void pause(float dt);  

  410.     void resume(float dt);  

  411. private:  

  412.     CCSet *m_pPausedTargets;  

  413. };  

  414. PauseResumeActions::PauseResumeActions()  

  415. : m_pPausedTargets(NULL)  

  416. {  

  417.   

  418. }  

  419.   

  420. PauseResumeActions::~PauseResumeActions()  

  421. {  

  422.     CC_SAFE_RELEASE(m_pPausedTargets);  

  423. }  

  424.   

  425. void PauseResumeActions::onEnter()  

  426. {   //动画演示初始化  

  427.     ActionsDemo::onEnter();  

  428.     //两位演员上场。  

  429.     this->centerSprites(2);  

  430.     //女一号运行一个无限循环的动画。  

  431.     m_tamara->runAction(CCRepeatForever::create(CCRotateBy::create(3, 360)));  

  432.     //男一行运行一个反方向无限循环的动画。   m_grossini->runAction(CCRepeatForever::create(CCRotateBy::create(3, -360)));  

  433.     //女二号的动画同女一号一样。  

  434.     m_kathia->runAction(CCRepeatForever::create(CCRotateBy::create(3, 360)));  

  435.     //当前层在3秒后调用回调函数暂停。  

  436.     this->schedule(schedule_selector(PauseResumeActions::pause), 3, false, 0);  

  437.     //当前层在5秒后调用回调函数恢复。  

  438.     this->schedule(schedule_selector(PauseResumeActions::resume), 5, false, 0);  

  439. }  

  440.   

  441. string PauseResumeActions::title()  

  442. {  

  443.     return "PauseResumeActions";  

  444. }  

  445.   

  446. string PauseResumeActions::subtitle()  

  447. {  

  448.     return "All actions pause at 3s and resume at 5s";  

  449. }  

  450. //暂停的回调函数,用于暂停动画。  

  451. void PauseResumeActions::pause(float dt)  

  452. {  

  453.     CCLog("Pausing");  

  454.     //取得显示设备  

  455.     CCDirector *director = CCDirector::sharedDirector();  

  456.     //如果原来有要暂停的目标容器,释放暂停的目标容器  

  457.     CC_SAFE_RELEASE(m_pPausedTargets);  

  458.     //调用显示设备的接口暂停所有的动画并将这些动画返回给容器  

  459.     m_pPausedTargets = director->getActionManager()->pauseAllRunningActions();  

  460.     //因为占用它,所以对此引用计数器加1  

  461.     CC_SAFE_RETAIN(m_pPausedTargets);  

  462. }  

  463. //恢复的回调函数,用于恢复暂停的动画。  

  464. void PauseResumeActions::resume(float dt)  

  465. {  

  466.     CCLog("Resuming");  

  467.     //取得显示设备  

  468.       

  469.     CCDirector *director = CCDirector::sharedDirector();  

  470.     //调用显示设备的接口恢复所有的暂停的动画  

  471.     director->getActionManager()->resumeTargets(m_pPausedTargets);  

  472. }  

  473. #endif  


每一个演示完毕!大家明白了么?当然CPP里还有一点东西还需要说一下。


源码打印?

  1. #include "ActionsTest.h"  

  2. #include "../testResource.h"  

  3. #include "cocos2d.h"  

  4.   

  5. //这里定义三个全局函数,用于动画演示控制  

  6. CCLayer* NextAction();//演示下一个动画  

  7. CCLayer* BackAction();//演示上一个动画  

  8. CCLayer* RestartAction();//重新演示当前动画  

  9. //要演示的动画索引  

  10. static int s_nActionIdx = -1;  

  11. //创建相应的动画  

  12. CCLayer* CreateLayer(int nIndex)  

  13. {  

  14.     //在头文件里我们看到大量的动画演示类,它们都是由CCLayer基类派生的。这里定义一个CCLayer类用于指向下面创建的相应动画演示实例。  

  15.     CCLayer * pLayer = NULL;  

  16.     //根据索引new出相应的动画演示实例。  

  17.     switch (nIndex)  

  18.     {  

  19.         case ACTION_MANUAL_LAYER:  

  20.             pLayer = new ActionManual(); break;  

  21.         case ACTION_MOVE_LAYER:  

  22.             pLayer = new ActionMove(); break;  

  23.         case ACTION_SCALE_LAYER:  

  24.             pLayer = new ActionScale(); break;  

  25.         case ACTION_ROTATE_LAYER:  

  26.             pLayer = new ActionRotate(); break;  

  27.         case ACTION_SKEW_LAYER:  

  28.             pLayer = new ActionSkew(); break;  

  29.         case ACTION_SKEWROTATE_LAYER:  

  30.             pLayer = new ActionSkewRotateScale(); break;  

  31.         case ACTION_JUMP_LAYER:  

  32.             pLayer = new ActionJump(); break;  

  33.         case ACTION_BEZIER_LAYER:  

  34.             pLayer = new ActionBezier(); break;  

  35.         case ACTION_BLINK_LAYER:  

  36.             pLayer = new ActionBlink(); break;  

  37.         case ACTION_FADE_LAYER:  

  38.             pLayer = new ActionFade(); break;  

  39.         case ACTION_TINT_LAYER:  

  40.             pLayer = new ActionTint(); break;  

  41.         case ACTION_ANIMATE_LAYER:  

  42.             pLayer = new ActionAnimate(); break;  

  43.         case ACTION_SEQUENCE_LAYER:  

  44.             pLayer = new ActionSequence(); break;  

  45.         case ACTION_SEQUENCE2_LAYER:  

  46.             pLayer = new ActionSequence2(); break;  

  47.         case ACTION_SPAWN_LAYER:  

  48.             pLayer = new ActionSpawn(); break;  

  49.         case ACTION_REVERSE:  

  50.             pLayer = new ActionReverse(); break;  

  51.         case ACTION_DELAYTIME_LAYER:  

  52.             pLayer = new ActionDelayTime(); break;  

  53.         case ACTION_REPEAT_LAYER:  

  54.             pLayer = new ActionRepeat(); break;  

  55.         case ACTION_REPEATEFOREVER_LAYER:  

  56.             pLayer = new ActionRepeatForever(); break;  

  57.         case ACTION_ROTATETOREPEATE_LAYER:  

  58.             pLayer = new ActionRotateToRepeat(); break;  

  59.         case ACTION_ROTATEJERK_LAYER:  

  60.             pLayer = new ActionRotateJerk(); break;      

  61.         case ACTION_CALLFUNC_LAYER:  

  62.             pLayer = new ActionCallFunc(); break;  

  63.         case ACTION_CALLFUNCND_LAYER:  

  64.             pLayer = new ActionCallFuncND(); break;  

  65.         case ACTION_REVERSESEQUENCE_LAYER:  

  66.             pLayer = new ActionReverseSequence(); break;  

  67.         case ACTION_REVERSESEQUENCE2_LAYER:  

  68.             pLayer = new ActionReverseSequence2(); break;  

  69.         case ACTION_ORBIT_LAYER:  

  70.             pLayer = new ActionOrbit(); break;  

  71.         case ACTION_FLLOW_LAYER:  

  72.             pLayer = new ActionFollow(); break;  

  73.         case ACTION_TARGETED_LAYER:  

  74.             pLayer = new ActionTargeted(); break;  

  75.         case ACTION_ISSUE1305_LAYER:  

  76.             pLayer = new Issue1305(); break;  

  77.         case ACTION_ISSUE1305_2_LAYER:  

  78.             pLayer = new Issue1305_2(); break;  

  79.         case ACTION_ISSUE1288_LAYER:  

  80.             pLayer = new Issue1288(); break;  

  81.         case ACTION_ISSUE1288_2_LAYER:  

  82.             pLayer = new Issue1288_2(); break;  

  83.         case ACTION_ISSUE1327_LAYER:  

  84.             pLayer = new Issue1327(); break;  

  85.         case ACTION_CARDINALSPLINE_LAYER:  

  86.             pLayer = new ActionCardinalSpline(); break;  

  87.         case ACTION_CATMULLROM_LAYER:  

  88.             pLayer = new ActionCatmullRom(); break;  

  89.         case PAUSERESUMEACTIONS_LAYER:  

  90.             pLayer = new PauseResumeActions(); break;  

  91.   

  92.     default:  

  93.         break;  

  94.     }  

  95.   

  96.     return pLayer;  

  97. }  

  98. //演示下一个动画的函数实现  

  99. CCLayer* NextAction()  

  100. {  

  101.     ++s_nActionIdx;  

  102.     s_nActionIdx = s_nActionIdx % ACTION_LAYER_COUNT;  

  103.   

  104.     CCLayer* pLayer = CreateLayer(s_nActionIdx);  

  105.     pLayer->autorelease();  

  106.   

  107.     return pLayer;  

  108. }  

  109. //演示上一个动画的函数实现  

  110. CCLayer* BackAction()  

  111. {  

  112.     --s_nActionIdx;  

  113.     if( s_nActionIdx < 0 )  

  114.         s_nActionIdx += ACTION_LAYER_COUNT;      

  115.   

  116.     CCLayer* pLayer = CreateLayer(s_nActionIdx);  

  117.     pLayer->autorelease();  

  118.   

  119.     return pLayer;  

  120. }  

  121. //重新演示当前动画的函数实现。  

  122. CCLayer* RestartAction()  

  123. {  

  124.     CCLayer* pLayer = CreateLayer(s_nActionIdx);  

  125.     pLayer->autorelease();  

  126.   

  127.     return pLayer;  

  128. }  


三板斧,威力十足,如果还有什么不懂的。那我真没得好说了。下课!




原文链接:http://blog.csdn.net/honghaier/article/details/8266454


你可能感兴趣的:(cocos2d-x动作详解)