cocos2dx吸蓝效果实现opengl绘制

前端之家收集整理的这篇文章主要介绍了cocos2dx吸蓝效果实现opengl绘制前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

cocos2dx 想做一些比较炫的效果,单纯依靠引擎封装提供的一些东西毕竟有限,最近项目是用opengl绘制一些效果出来,代码如下:

封装类效果

GoodDropEffects.h文件

  1. #ifndef __GOODBLOOD_H__
  2. #define __GOODBLOOD_H__
  3. #include "cocos2d.h"
  4. #include "global.h"
  5. USING_NS_CC;
  6.  
  7.  
  8. class GoodsTail:public CCNode
  9. {
  10. public:
  11. ~GoodsTail();
  12. GoodsTail(){};
  13. void draw();
  14. CREATE_FUNC(GoodsTail)
  15. bool init();
  16. void onDraw();
  17. void setOrigin(CCPoint pos);
  18. void tempfunc(float x1,float y1,float x2,float y2,float d,float &x3,float &y3,float &x4,float &y4);
  19.  
  20. Vertex trackpt[101];
  21. std::vector<GLushort> tiarr;
  22. Vec3 color;
  23. GLuint vertexBuffer;
  24. GLuint indexBuffer;
  25. std::vector<Vertex> varray;
  26. CCNode *target;
  27. void setTarget(CCNode* nd);
  28. };
  29.  
  30. class GoodDropEffects:public CCNode
  31. {
  32. public:
  33. ~GoodDropEffects();
  34. GoodDropEffects();
  35. static GoodDropEffects* create(CCNode* parent,int kinds,int droptype,int color,int side,CCPoint pos) //side 0 左边 1右边
  36. {
  37. GoodDropEffects *pRet = new GoodDropEffects();
  38. if (pRet && pRet->init(parent,kinds,droptype,color,side,pos))
  39. {
  40. pRet->autorelease();
  41. parent->addChild(pRet,100);
  42. return pRet;
  43. }
  44. else
  45. {
  46. delete pRet;
  47. pRet = NULL;
  48. return NULL;
  49. }
  50. }
  51. bool init(CCNode* parent,CCPoint pos);
  52. void PlayEffect(CCPoint src,CCPoint dst);
  53. void AbsorbEffect(float dt);
  54.  
  55. CCSprite *m_GoodsSp;
  56. long m_sides;
  57.  
  58. CCPoint m_pos;
  59.  
  60. GoodsTail *tail[8];
  61. CCParticleSystemQuad* ps[4];
  62. CCSprite *lspr[4];
  63.  
  64. void callback3(CCNode* sender,void* data);
  65.  
  66. void InitTail(float r,float g,float b);
  67. CCNode* m_parent;
  68. char goodsnamestr[100];
  69. };
  70.  
  71.  
  72. #endif

GoodDropEffects.ccp文件
  1. #include "GoodDropEffects.h"
  2. #include "SimpleAudioEngine.h"
  3. #include "Characters/Robot.h"
  4. #include "Equipment/crystal.h"
  5. #include "Equipment/EquipBase.h"
  6. #include "Common/EnterStageDataExchange.h"
  7. using namespace CocosDenshion;
  8.  
  9. void GoodsTail::draw()
  10. {
  11. onDraw();
  12. //CCNode::draw();
  13. }
  14. void GoodsTail::tempfunc(float x1,float &y4)
  15. {
  16. if(y1-y2==0)
  17. {
  18. x3=x4=x2;
  19. if(x2==x1)
  20. {
  21. y3=y2;
  22. y4=y2;
  23. return ;
  24. }
  25. else if(x2>x1)
  26. {
  27. d=-fabsf(d);
  28. }
  29. else d=fabsf(d);
  30. y3=y2-d;
  31. y4=y2+d;
  32. return ;
  33. }
  34. float k=0;
  35. if(x1-x2==0)
  36. {
  37. k=0;
  38. }
  39. else
  40. {
  41. k=-(x1-x2)/(y1-y2);
  42. }
  43.  
  44. if(y2>y1)
  45. {
  46. d=fabsf(d);
  47. }
  48. else d=-fabsf(d);
  49.  
  50. {
  51. x3=-d/sqrt(k*k+1)+x2;
  52. y3=-k*d/sqrt(k*k+1)+y2;
  53.  
  54. x4=d/sqrt(k*k+1)+x2;
  55. y4=k*d/sqrt(k*k+1)+y2;
  56. }
  57. }
  58. void GoodsTail::onDraw()
  59. {
  60. float d=0;
  61. for(int i=0;i<20;++i)
  62. {
  63. trackpt[i].Position[0]=trackpt[i+1].Position[0];
  64. trackpt[i].Position[1]=trackpt[i+1].Position[1];
  65. }
  66. CCPoint pos;
  67. if(target==0)
  68. pos=getPosition();
  69. else
  70. pos=target->getPosition();
  71. trackpt[20].Position[0]=pos.x; trackpt[20].Position[1]=pos.y;
  72. float maxdis=ccpDistance(CCPoint(trackpt[0].Position[0],trackpt[0].Position[1]),CCPoint(trackpt[20].Position[0],trackpt[20].Position[1]));
  73. maxdis=20;
  74. std::vector<Vertex> ttt;
  75. tiarr.clear();
  76. for(int i=0;i<=20;++i)
  77. {
  78. if(d==0)
  79. {
  80. ttt.push_back(trackpt[i]);
  81. }
  82. else
  83. {
  84. float x3,y3,x4,y4;
  85. if(trackpt[i].Position[0]==trackpt[20].Position[0])
  86. {
  87. d=0;
  88. }
  89. tempfunc(trackpt[i-1].Position[0],trackpt[i-1].Position[1],trackpt[i].Position[0],trackpt[i].Position[1],d,x3,y4);
  90. Vertex vt1={{x3,0},{color.x,color.y,color.z,{1,0}};
  91. Vertex vt2={{x4,y4,0}};
  92. if(trackpt[i].Position[0]==trackpt[20].Position[0])
  93. {
  94. vt1.Color[3]=0;
  95. vt2.Color[3]=0;
  96. }
  97. trackpt[i].Color[0]=color.x;
  98. trackpt[i].Color[1]=color.y;
  99. trackpt[i].Color[2]=color.z;
  100. ttt.push_back(vt1); ttt.push_back(trackpt[i]); ttt.push_back(vt2);
  101. if(i-1==0)
  102. {
  103. tiarr.push_back(0);
  104. tiarr.push_back(1);
  105. tiarr.push_back(2);
  106. tiarr.push_back(0);
  107. tiarr.push_back(2);
  108. tiarr.push_back(3);
  109. }
  110. else
  111. {
  112. int imax=3*i;
  113. tiarr.push_back(imax-4); tiarr.push_back(imax-3); tiarr.push_back(imax-1);
  114. tiarr.push_back(imax-3); tiarr.push_back(imax-1); tiarr.push_back(imax);
  115. tiarr.push_back(imax-4); tiarr.push_back(imax-5); tiarr.push_back(imax-2);
  116. tiarr.push_back(imax-4); tiarr.push_back(imax-2); tiarr.push_back(imax-1);
  117. }
  118. }
  119. /*if(i>13)
  120. d-=((float)i-13+1)*maxdis*0.001;
  121. else*/
  122. d+=((float)i+1)*maxdis*0.001;
  123. }
  124. glEnable(GL_BLEND);
  125. glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
  126. glEnable(GL_DEPTH_TEST);
  127. glDepthFunc(GL_LEQUAL);
  128. CCGLProgram* pg=CCShaderCache::sharedShaderCache()->programForKey(kCCShader_PositionColor);
  129. pg->use();
  130. pg->setUniformsForBuiltins();
  131. glBindBuffer(GL_ARRAY_BUFFER,vertexBuffer);
  132. glBufferData(GL_ARRAY_BUFFER,sizeof(Vertex)*ttt.size(),ttt.data(),GL_STATIC_DRAW);
  133. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER,indexBuffer);
  134. glBufferData(GL_ELEMENT_ARRAY_BUFFER,sizeof(GLushort)*tiarr.size(),tiarr.data(),GL_STATIC_DRAW);
  135. GLint _positionLocation = glGetAttribLocation(pg->getProgram(),"a_position");
  136. GLint _colorLocation = glGetAttribLocation(pg->getProgram(),"a_color");
  137. glEnableVertexAttribArray(_positionLocation);
  138. glEnableVertexAttribArray(_colorLocation);
  139. glVertexAttribPointer(_positionLocation,3,GL_FLOAT,GL_FALSE,sizeof(Vertex),(GLvoid*)offsetof(Vertex,Position));
  140. glVertexAttribPointer(_colorLocation,4,Color));
  141. glDrawElements(GL_TRIANGLES,tiarr.size(),GL_UNSIGNED_SHORT,0);
  142. glBindBuffer(GL_ARRAY_BUFFER,0);
  143. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER,0);
  144. glDisable(GL_DEPTH_TEST);
  145. }
  146. void GoodsTail::setOrigin(CCPoint pos)
  147. {
  148. for(int i=0;i<=20;++i){
  149. trackpt[i].Position[0]=pos.x;
  150. trackpt[i].Position[1]=pos.y;
  151. }
  152. //setPosition(pos);
  153. }
  154. void GoodsTail::setTarget(CCNode* nd)
  155. {
  156. target=nd;
  157. CCPoint pos=target->getPosition();
  158. setOrigin(pos);
  159. //nd->addChild(this,-1);
  160. }
  161. GoodsTail::~GoodsTail()
  162. {
  163. glDeleteBuffers(1,&vertexBuffer);
  164. glDeleteBuffers(1,&indexBuffer);
  165. }
  166. bool GoodsTail::init()
  167. {
  168. glGenBuffers( 1,&vertexBuffer );
  169. glGenBuffers( 1,&indexBuffer );
  170. for(int i=0;i<=20;++i){
  171. trackpt[i].Position[0]=0;
  172. trackpt[i].Position[1]=0;
  173. trackpt[i].Position[2]=0;
  174. trackpt[i].Color[0]=0;
  175. trackpt[i].Color[1]=0;
  176. trackpt[i].Color[2]=1;
  177. trackpt[i].Color[3]=(float)i/30.0;
  178. //if(i==20) trackpt[i].Color[3]=0;
  179. trackpt[i].TexCoord[0]=0;
  180. trackpt[i].TexCoord[1]=0;
  181. }
  182. color=Vec3(0,1,1);
  183. target=0;
  184. return true;
  185. }
  186. GoodDropEffects::GoodDropEffects()
  187. {
  188. m_GoodsSp=NULL;
  189. }
  190. GoodDropEffects::~GoodDropEffects()
  191. {
  192.  
  193. if(m_GoodsSp)
  194. m_GoodsSp->removeAllChildrenWithCleanup(true);
  195.  
  196. for(int i=0;i<4;++i)
  197. {
  198. if(tail[i])
  199. tail[i]->removeFromParentAndCleanup(true);
  200. }
  201. for(int j=0;j<4;j++)
  202. {
  203. if(lspr[j])
  204. {
  205. lspr[j]->setVisible(false);
  206. //lspr[j]->removeFromParentAndCleanup(true);
  207. }
  208. }
  209. ps[0]->removeFromParentAndCleanup(true);
  210. }
  211. void GoodDropEffects::PlayEffect(CCPoint src,CCPoint dst)
  212. {
  213. CCSize s = CCDirector::sharedDirector()->getWinSize();
  214.  
  215.  
  216.  
  217. if(m_sides==1)
  218. {
  219. //CCSprite *m_GoodsDrop_R=(CCSprite*)getTag()
  220. // CCMenu *menu=(CCMenu*)this->getChildByTag(111);
  221. m_GoodsSp->setVisible(true);
  222. //m_GoodsDrop_R->setScaleX(0.6);
  223.  
  224. float sx=m_GoodsSp->getPositionX();
  225. float sy=m_GoodsSp->getPositionY();
  226. m_GoodsSp->setAnchorPoint(ccp(0.5,0.5));
  227. sx=m_pos.x,sy=m_pos.y;
  228. long rand_dir=random_range(1,2);
  229. rand_dir=1;
  230. if(rand_dir==1)
  231. {
  232. long posxmax=random_range(200,280);
  233.  
  234. //抛物线轨迹
  235. ccBezierConfig bezier1;
  236. bezier1.controlPoint_1 = ccp(sx+50,sy+100);
  237. bezier1.controlPoint_2 = ccp(sx+150,sy+250);
  238. bezier1.endPosition = ccp(sx+posxmax,sy+30);
  239.  
  240.  
  241. CCActionInterval* bezierTo1 = CCBezierTo::create(0.5f,bezier1);
  242. CCActionInterval* bezierTo1_ease_in1 = CCEaseIn::create(bezierTo1,6.5);
  243. CCRotateBy *rotate1=CCRotateBy::create(0.4f,720);
  244. CCFiniteTimeAction* seq_action=CCSequence::create(CCSpawn::create(bezierTo1,rotate1,NULL),CCDelayTime::create(0.3),//CCCallFunc::create(this,callfunc_selector(GameLogic::Weapons_DropGuangxiao_R)),NULL);
  245. m_GoodsSp->runAction(seq_action);
  246.  
  247. }
  248.  
  249.  
  250.  
  251.  
  252. }
  253.  
  254. if(m_sides==0)
  255. {
  256.  
  257.  
  258.  
  259. m_GoodsSp->setVisible(true);
  260.  
  261. float sx=m_GoodsSp->getPositionX();
  262. float sy=m_GoodsSp->getPositionY();
  263. m_GoodsSp->setAnchorPoint(ccp(0.5,0.5));
  264. sx=480-60,sy=250;
  265. sx=m_pos.x,2);
  266. rand_dir=2;
  267.  
  268.  
  269. if(rand_dir==2)
  270. {
  271.  
  272. long posxmax=random_range(200,280);
  273.  
  274. ccBezierConfig bezier2;
  275. bezier2.controlPoint_1 = ccp(sx-50,sy+100);
  276. bezier2.controlPoint_2 = ccp(sx-150,sy+250);
  277. bezier2.endPosition = ccp(sx-posxmax,sy+30);
  278.  
  279. CCActionInterval* bezierTo2 = CCBezierTo::create(0.5f,bezier2);
  280. CCActionInterval* bezierTo1_ease_in2 = CCEaseIn::create(bezierTo2,3.5);
  281. CCRotateBy *rotate2=CCRotateBy::create(0.4f,-720);
  282. CCFiniteTimeAction* seq_action2=CCSequence::create(CCSpawn::create(bezierTo2,rotate2,callfunc_selector(GameLogic::Weapons_DropGuangxiao_L)),NULL);
  283. m_GoodsSp->runAction(seq_action2);
  284. m_GoodsSp->setRotation(-90);
  285.  
  286.  
  287.  
  288.  
  289. }
  290.  
  291. }
  292. scheduleOnce(schedule_selector(GoodDropEffects::AbsorbEffect),1.5);
  293.  
  294. }
  295.  
  296.  
  297. void GoodDropEffects::AbsorbEffect(float dt)
  298. {
  299. if(m_sides==1)
  300. {
  301.  
  302.  
  303.  
  304. if(m_GoodsSp)
  305. m_GoodsSp->setVisible(true);
  306. // m_GoodsDrop_R->setScaleX(0.6);
  307.  
  308. float sx=m_GoodsSp->getPositionX();
  309. float sy=m_GoodsSp->getPositionY();
  310. m_GoodsSp->setAnchorPoint(ccp(0.5,0.5));
  311.  
  312.  
  313. long rand_dir=random_range(1,2);
  314. rand_dir=1;
  315. if(rand_dir==1)
  316. {
  317.  
  318. //sx=480+60;
  319. // sy=270;
  320.  
  321. //抛物线轨迹
  322. ccBezierConfig bezier1;
  323. bezier1.controlPoint_1 = ccp(sx,sy);
  324. bezier1.controlPoint_2 = ccp(sx-130,sy+80);
  325. bezier1.endPosition = ccp(480,250);
  326.  
  327.  
  328. CCActionInterval* bezierTo1 = CCBezierTo::create(0.4f,6.5);
  329. CCRotateBy *rotate1=CCRotateBy::create(0.26f,-1440);
  330. CCFiniteTimeAction* seq_action=CCSequence::create(CCSpawn::create(bezierTo1,CCScaleTo::create(0.4,0.1),CCHide::create(),NULL);
  331. m_GoodsSp->setScale(0);
  332. m_GoodsSp->runAction(seq_action);
  333.  
  334. }
  335.  
  336. }
  337. if(m_sides==0)
  338. {
  339.  
  340. //CCSprite *GoodsDrop_L=(CCSprite*)pLayer->getChildByTag(100);
  341. //GoodsDrop_L->setVisible(true);
  342.  
  343. float sx=m_GoodsSp->getPositionX();
  344. float sy=m_GoodsSp->getPositionY();
  345. m_GoodsSp->setAnchorPoint(ccp(0.5,0.5));
  346.  
  347. long rand_dir=random_range(1,2);
  348. rand_dir=2;
  349.  
  350.  
  351. if(rand_dir==2)
  352. {
  353.  
  354. // sx=480-60;
  355. // sy=270;
  356.  
  357.  
  358. ccBezierConfig bezier2;
  359. bezier2.controlPoint_1 = ccp(sx,sy);
  360. bezier2.controlPoint_2 = ccp(sx+130,sy+80);
  361. bezier2.endPosition = ccp(480,250);
  362.  
  363. CCActionInterval* bezierTo2 = CCBezierTo::create(0.4f,3.5);
  364. CCRotateBy *rotate2=CCRotateBy::create(0.26f,-1440);
  365. CCFiniteTimeAction* seq_action2=CCSequence::create(CCSpawn::create(bezierTo2,NULL);
  366. m_GoodsSp->setScale(0);
  367. m_GoodsSp->runAction(seq_action2);
  368. m_GoodsSp->setRotation(-90);
  369.  
  370.  
  371.  
  372.  
  373. }
  374.  
  375.  
  376. }
  377.  
  378.  
  379.  
  380. //return ;
  381. CCPoint src=m_GoodsSp->getPosition();
  382. CCPoint dst=ccp(480,230);
  383.  
  384. SimpleAudioEngine::sharedEngine()->playEffect("SuckBlood1.ogg");
  385. struct timeval now;
  386. gettimeofday(&now,NULL);
  387. srand(now.tv_usec+now.tv_sec*1000000);
  388.  
  389. ccBezierConfig bezier;
  390. CCPoint pt;
  391. bezier.controlPoint_1 = ccp(src.x+20-rand()%200,src.y-rand()%500);
  392. bezier.controlPoint_2 = ccp(dst.x-100-rand()%200,dst.y-rand()%150);
  393. bezier.endPosition = ccp(dst.x,dst.y);
  394. pt=ccp(src.x+rand()%50,src.y+rand()%50);
  395. tail[0]->setOrigin(pt);
  396. tail[0]->stopAllActions();
  397. //tail[0]->runAction(CCSequence::create(CCDelayTime::create(0.01),CCBezierTo::create(0.4,bezier),CCCallFuncND::create(this,callfuncND_selector(SuckBlood::callback3),(void*)0),0));
  398. lspr[0]->setPosition(pt);
  399. lspr[0]->stopAllActions();
  400. lspr[0]->setScale(0.01);
  401. lspr[0]->runAction(CCSequence::create(CCDelayTime::create(0.035),CCSpawn::create(CCBezierTo::create(0.65,CCScaleTo::create(0.3,0),0));
  402. tail[0]->setTarget(lspr[0]);
  403. bezier.controlPoint_1 = ccp(src.x+40,src.y-rand()%450);
  404. bezier.controlPoint_2 = ccp(dst.x,dst.y);
  405. pt=ccp(src.x-rand()%50,src.y-rand()%50);
  406. tail[1]->setOrigin(pt);
  407. tail[1]->stopAllActions();
  408. //tail[1]->runAction(CCSequence::create(CCDelayTime::create(0.055),CCBezierTo::create(0.6,0));
  409.  
  410. lspr[1]->setPosition(pt);
  411. lspr[1]->stopAllActions();
  412. lspr[1]->setScale(0.01);
  413. lspr[1]->runAction(CCSequence::create(CCDelayTime::create(0.055),0));
  414. tail[1]->setTarget(lspr[1]);
  415. bezier.controlPoint_1 = ccp(src.x+50,src.y+rand()%650);
  416. bezier.controlPoint_2 = ccp(dst.x-rand()%100,dst.y+rand()%150);
  417. bezier.endPosition = ccp(dst.x,dst.y);
  418. pt=ccp(src.x+50,src.y-rand()%40);
  419. tail[2]->setOrigin(pt);
  420. tail[2]->stopAllActions();
  421. //tail[2]->runAction(CCSequence::create(CCDelayTime::create(0.02),CCBezierTo::create(0.5,0));
  422.  
  423. lspr[2]->setPosition(pt);
  424. lspr[2]->stopAllActions();
  425. lspr[2]->setScale(0.01);
  426. lspr[2]->runAction(CCSequence::create(CCDelayTime::create(0.025),0));
  427. tail[2]->setTarget(lspr[2]);
  428.  
  429.  
  430.  
  431. bezier.controlPoint_1 = ccp(src.x,src.y+rand()%590);
  432. bezier.controlPoint_2 = ccp(dst.x,src.y+rand()%40);
  433. tail[3]->setOrigin(pt);
  434. tail[3]->stopAllActions();
  435. //tail[3]->runAction(CCSequence::create(CCBezierTo::create(0.3,0));
  436.  
  437. lspr[3]->setPosition(pt);
  438. //lspr[3]->stopAllActions();
  439. lspr[3]->setScale(1);
  440. CCRotateBy *rotate1=NULL;
  441. if(m_sides==0)
  442. rotate1=CCRotateBy::create(0.5f,720);
  443. if(m_sides==1)
  444. rotate1=CCRotateBy::create(0.5f,-720);
  445.  
  446. lspr[3]->runAction(CCSequence::create(CCSpawn::create(CCBezierTo::create(0.55,0.7),callfuncND_selector(GoodDropEffects::callback3),0));
  447. tail[3]->setTarget(lspr[3]);
  448.  
  449. /*
  450. //////////////////////////////
  451. bezier.controlPoint_1 = ccp(src.x+30,src.y+rand()%800);
  452. bezier.controlPoint_2 = ccp(dst.x-5-rand()%100,dst.y-100-rand()%170);
  453. bezier.endPosition = ccp(dst.x,dst.y);
  454. pt=ccp(src.x-rand()%80,src.y+rand()%70);
  455. tail[4]->setOrigin(pt);
  456. tail[4]->stopAllActions();
  457. //tail[3]->runAction(CCSequence::create(CCBezierTo::create(0.3,0));
  458.  
  459. lspr[4]->setPosition(pt);
  460. //lspr[3]->stopAllActions();
  461. lspr[4]->setScale(0);
  462. //lspr[4]->runAction(CCSequence::create(CCSpawn::create(CCBezierTo::create(0.3,0));
  463. lspr[4]->runAction(CCSequence::create(CCDelayTime::create(0.03),CCSpawn::create(CCBezierTo::create(0.55,0));
  464. tail[4]->setTarget(lspr[4]);
  465. lspr[4]->setScale(0.01f);
  466.  
  467. bezier.controlPoint_1 = ccp(src.x+60,src.y+rand()%600);
  468. bezier.controlPoint_2 = ccp(dst.x-rand()%300,dst.y-200-rand()%230);
  469. bezier.endPosition = ccp(dst.x,src.y+rand()%30);
  470. tail[5]->setOrigin(pt);
  471. tail[5]->stopAllActions();
  472. //tail[3]->runAction(CCSequence::create(CCBezierTo::create(0.3,0));
  473.  
  474. lspr[5]->setPosition(pt);
  475. //lspr[3]->stopAllActions();
  476. lspr[5]->setScale(0.01);
  477. //lspr[5]->runAction(CCSequence::create(CCSpawn::create(CCBezierTo::create(0.3,0));
  478. lspr[5]->runAction(CCSequence::create(CCDelayTime::create(0.04),CCScaleTo::create(0.35,0));
  479. tail[5]->setTarget(lspr[5]);
  480. */
  481.  
  482. }
  483.  
  484. void GoodDropEffects::callback3(CCNode* sender,void* data)
  485. {
  486. int param=(int)data;
  487. ps[0]->resetSystem();
  488. ps[0]->setPosition(ccp(480,240));
  489. }
  490. bool GoodDropEffects::init(CCNode* parent,CCPoint pos)
  491. {
  492.  
  493. m_parent=parent;
  494. float rgb_tail=255.0;
  495. m_sides=side;
  496. m_pos=pos;
  497. long type=droptype;
  498. long goods_color=2;
  499. sprintf(goodsnamestr,"Image/gem/red/red_yuan.png");
  500. if(kinds==0)//宝石
  501. {
  502. if(color==0) //红宝石
  503. {
  504. if(droptype==CRYSTAL_LEVEL_ROUGH)
  505. {
  506. sprintf(goodsnamestr,"Image/gem/red/red_yuan.png");
  507. }
  508. if(droptype==CRYSTAL_LEVEL_STAINLESS)
  509. {
  510. sprintf(goodsnamestr,"Image/gem/red/red_wuxia.png");
  511. }
  512. if(droptype==CRYSTAL_LEVEL_PERFECT)
  513. {
  514. sprintf(goodsnamestr,"Image/gem/red/red_perfect.png");
  515. }
  516. InitTail(255/rgb_tail,20/rgb_tail,30/rgb_tail);
  517.  
  518. }
  519. if(color==1) //绿色
  520. {
  521. if(droptype==CRYSTAL_LEVEL_ROUGH)
  522. {
  523. sprintf(goodsnamestr,"Image/gem/green/green_yuan.png");
  524. }
  525. if(droptype==CRYSTAL_LEVEL_STAINLESS)
  526. {
  527. sprintf(goodsnamestr,"Image/gem/green/green_wuxia.png");
  528. }
  529. if(droptype==CRYSTAL_LEVEL_PERFECT)
  530. {
  531. sprintf(goodsnamestr,"Image/gem/green/green_perfect.png");
  532. }
  533.  
  534. InitTail(20/rgb_tail,200/rgb_tail,30/rgb_tail);
  535.  
  536. }
  537. if(color==2)//紫色
  538. {
  539. if(droptype==CRYSTAL_LEVEL_ROUGH)
  540. {
  541. sprintf(goodsnamestr,"Image/gem/purple/purple_yuan.png");
  542. }
  543. if(droptype==CRYSTAL_LEVEL_STAINLESS)
  544. {
  545. sprintf(goodsnamestr,"Image/gem/purple/purple_wuxia.png");
  546. }
  547. if(droptype==CRYSTAL_LEVEL_PERFECT)
  548. {
  549. sprintf(goodsnamestr,"Image/gem/purple/purple_perfect.png");
  550. }
  551. InitTail(200/rgb_tail,112/rgb_tail,214/rgb_tail);
  552. }
  553. if(color==3)//黄色
  554. {
  555. if(droptype==CRYSTAL_LEVEL_ROUGH)
  556. {
  557. sprintf(goodsnamestr,"Image/gem/yellow/yellow_yuan.png");
  558. }
  559. if(droptype==CRYSTAL_LEVEL_STAINLESS)
  560. {
  561. sprintf(goodsnamestr,"Image/gem/yellow/yellow_wuxia.png");
  562. }
  563. if(droptype==CRYSTAL_LEVEL_PERFECT)
  564. {
  565. sprintf(goodsnamestr,"Image/gem/yellow/yellow_perfect.png");
  566. }
  567.  
  568. }
  569.  
  570. InitTail(250/rgb_tail,250/rgb_tail,10/rgb_tail);
  571.  
  572.  
  573. }
  574.  
  575. if(kinds==1)//装备
  576. {
  577. char chastr[64];
  578. if(EnterStageDataExchange::getInstance()->m_chaID==1)//苏文
  579. {
  580.  
  581. sprintf(chastr,"Image/goodsdropui/suwen");
  582. }
  583. if(EnterStageDataExchange::getInstance()->m_chaID==2)//卡卡西
  584. {
  585.  
  586. sprintf(chastr,"Image/goodsdropui/kaka");
  587. }
  588.  
  589. if(EnterStageDataExchange::getInstance()->m_chaID==3)//女忍者
  590. {
  591.  
  592. sprintf(chastr,"Image/goodsdropui/nvrenzhe");
  593. }
  594.  
  595. if(EnterStageDataExchange::getInstance()->m_chaID==4)//李小龙
  596. {
  597.  
  598. sprintf(chastr,"Image/goodsdropui/bluce_lee");
  599. }
  600.  
  601. if(droptype==kGoodsArmor)
  602. {
  603. if(color==1) //灰白色
  604. // sprintf(goodsnamestr,%s"Image/Goods/armor/white_armor.png");
  605. sprintf(goodsnamestr,"%s/armor/white_armor.png",chastr);
  606. if(color==2) //蓝色
  607. // sprintf(goodsnamestr,"Image/Goods/armor/blue_armor.png");
  608. sprintf(goodsnamestr,"%s/armor/blue_armor.png",chastr);
  609. if(color==3) //金色
  610. // sprintf(goodsnamestr,"Image/Goods/armor/gold_armor.png");
  611. sprintf(goodsnamestr,"%s/armor/gold_armor.png",chastr);
  612. if(color==4) //橙色
  613. //sprintf(goodsnamestr,"Image/Goods/armor/orange_armor.png");
  614. sprintf(goodsnamestr,"%s/armor/orange_armor.png",chastr);
  615. if(color==5) //红色
  616. //sprintf(goodsnamestr,"Image/Goods/armor/red_armor.png");
  617. sprintf(goodsnamestr,"%s/armor/red_armor.png",chastr);
  618.  
  619. }
  620. if(droptype==kGoodsWeapon) //装备
  621. {
  622. if(color==1) //灰白色
  623. // sprintf(goodsnamestr,"Image/Goods/equip/white_equip.png");
  624. sprintf(goodsnamestr,"%s/equip/white_equip.png","Image/Goods/equip/blue_equip.png");
  625. sprintf(goodsnamestr,"%s/equip/blue_equip.png",chastr);
  626. if(color==3) //金色
  627. //sprintf(goodsnamestr,"Image/Goods/equip/gold_equip.png");
  628. sprintf(goodsnamestr,"%s/equip/gold_equip.png","Image/Goods/equip/orange_equip.png");
  629. sprintf(goodsnamestr,"Image/Goods/equip/red_equip.png");
  630. sprintf(goodsnamestr,chastr);
  631.  
  632. }
  633. if(droptype==kGoodsJewelry)
  634. {
  635. if(color==1) //灰白色
  636. // sprintf(goodsnamestr,"Image/Goods/jewelry/white_jewelry.png");
  637. sprintf(goodsnamestr,"%s/jewelry/white_jewelry.png",chastr);
  638. if(color==2) //蓝色
  639. //sprintf(goodsnamestr,"Image/Goods/jewelry/blue_jewelry.png");
  640. sprintf(goodsnamestr,"%s/jewelry/blue_jewelry.png","Image/Goods/jewelry/gold_jewelry.png");
  641. sprintf(goodsnamestr,"%s/jewelry/gold_jewelry.png","Image/Goods/jewelry/orange_jewelry.png");
  642. sprintf(goodsnamestr,"%s/jewelry/orange_jewelry.png",chastr);
  643. if(color==5) //红色
  644. // sprintf(goodsnamestr,"Image/Goods/jewelry/red_jewelry.png");
  645. sprintf(goodsnamestr,"%s/jewelry/red_jewelry.png",chastr);
  646. }
  647. switch(color)
  648. {
  649. case 1: //灰白色
  650. InitTail(192/rgb_tail,192/rgb_tail,192/rgb_tail);
  651. break;
  652. case 2://蓝色
  653. InitTail(25/rgb_tail,25/rgb_tail,112/rgb_tail);
  654. break;
  655. case 3://金色
  656. InitTail(38/rgb_tail,180/rgb_tail,20/rgb_tail);
  657. break;
  658. case 4: //橙色
  659. InitTail(227/rgb_tail,207/rgb_tail,87/rgb_tail);
  660. break;
  661. case 5://红色
  662. InitTail(259/rgb_tail,99/rgb_tail,71/rgb_tail);
  663. break;
  664. default:
  665. break;
  666.  
  667. }
  668. }
  669.  
  670.  
  671. //if(droptype==kGoodsArmor)
  672. if(1)
  673. {
  674.  
  675.  
  676.  
  677. if(side==1)
  678. {
  679.  
  680.  
  681. m_GoodsSp=CCSprite::create(goodsnamestr);
  682. m_GoodsSp->setPosition(pos);
  683. // m_weapon_R->setRotation(-110);
  684. parent->addChild(m_GoodsSp,100);
  685. m_GoodsSp->setScaleX(1.0);
  686.  
  687. }
  688.  
  689. if(side==0)
  690. {
  691.  
  692. m_GoodsSp=CCSprite::create(goodsnamestr);
  693. m_GoodsSp->setPosition(pos);
  694. // m_weapon_L->setRotation(-110);
  695. parent->addChild(m_GoodsSp,101);
  696. // m_weapon_L->setScaleX(0.6);
  697. m_GoodsSp->setScaleX(-1.0);
  698.  
  699. }
  700.  
  701.  
  702. }
  703. return true;
  704. }
  705.  
  706. void GoodDropEffects::InitTail(float r,float b)
  707. {
  708. for(int i=0;i<4;++i)
  709. {
  710. float rgb_tail=255.0;
  711. tail[i]=GoodsTail::create();
  712. tail[i]->color=Vec3(r,g,b);
  713. m_parent->addChild(tail[i],100);
  714.  
  715. lspr[i]=CCSprite::create(goodsnamestr);
  716. lspr[i]->setPosition(ccp(-1000,-1000));
  717. m_parent->addChild(lspr[i],100);
  718. }
  719. ps[0]=CCParticleSystemQuad::create("k17.plist");
  720. ps[0]->setPosition(-1000,-1000);
  721. m_parent->addChild(ps[0],100);
  722. }

猜你在找的Cocos2d-x相关文章