Cocos2d-x 3.2 大富翁游戏项目开发-第二十四部分 彩票开奖(3)

来源:未知 责任编辑:责任编辑 发表时间:2015-09-17 09:43 点击:
(*it); //player->lottery_vector.push_back(8); for(int i=0;i < player->lottery_vector.size();i++) { if(player->lottery_vector.at(i) == lott) { player->setMoney(player->getMoney()+LOTTERY_WIN_MONEY); ParticleSystem* lotteryWinParticle = ParticleSystemQuad::create(images/lottery_win.plist); lotteryWinParticle->retain(); ParticleBatchNode *batch = ParticleBatchNode::createWithTexture(lotteryWinParticle->getTexture()); batch->addChild(lotteryWinParticle); addChild(batch); lotteryWinParticle->setPosition( center.width+20, (winSize.height/2+50)+j*50 ); lotteryWinParticle->release(); lotteryWinParticle->setAutoRemoveOnFinish(true); } } player->lottery_vector.clear(); j++; } } ),NULL)); }
//发送对话框消失消息,并设置为不可见

 

 

void PopupLayer::dismissFromParent(float dt)
{	
	NotificationCenter::getInstance()->postNotification(MSG_DIMISS_DIALOG,String::createWithFormat(%d,MSG_DIMISS_DIALOG_PUBLISH_LOTTERY_TAG));
	this->setVisible(false);
}

4、GameBaseScene收到该消息后,更新资金,并显示Go按钮

 

 

	case MSG_DIMISS_DIALOG_PUBLISH_LOTTERY_TAG:
		{
			//this->removeChildByTag(100);
			for(auto it=players_vector.begin();it!=players_vector.end();it++)
			{
				RicherPlayer* player = dynamic_cast(*it);
				refreshMoneyLabel(player,0);
			}
			showGoButton();
			break;
		}

\

 

 

 

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • cocos2d-x学习笔记(19)--label 、label atlas
  • cocos2d-x学习笔记(23)--地图的使用3--CCTMXLayer
  • Cocos2d-x 2.0 之 Actions “三板斧” 之一
  • Cocos2d-x学习(一):HelloWorld
  • cocos2d-x学习笔记(18)--游戏打包(windows平台)
  • cocos2d 设置屏幕默认方向
  • cocos2d-x学习笔记(16)--spritesheet(精灵表单)
  • cocos2d-x学习笔记(15)--地图的使用(TMX)
  • cocos2dx在xcode下开发,编译到android上(2)
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1