cocos3.x 扫雷04 菜单项的添加

前端之家收集整理的这篇文章主要介绍了cocos3.x 扫雷04 菜单项的添加前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

扫雷04 菜单项的添加

添加菜单并放置在 _bgMenu上,这里是为了方便在以后添加计分或者计时label的时候可以直接加在_bgmenu上或者直接移位。

四个菜单添加与回调函数代码

  1. 1: ////////////////////////////////////////////////////////////////////////
  1. 2: // 添加菜单
  1. 3:
  1. 4: void GameScene::addMenu()
  1. 5: {
  1. 6: //创建四个菜单
  1. 7: _dig = CCMenuItemImage::create("dig_button.png",
  1. 8: "digs_button.png",monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 9: "dign_button.png",monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: #f4f4f4"> 10: this,monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 11: menu_selector(GameScene::MenuCallDig));
  1. 12: _flag = CCMenuItemImage::create("flag_button.png",monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 13: "flags_button.png",monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: #f4f4f4"> 14: "flagn_button.png",monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 15: this,monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: #f4f4f4"> 16: menu_selector(GameScene::MenuCallFlag));
  1. 17: _exitGame = CCMenuItemImage::create("mainmenu2.png",monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: #f4f4f4"> 18: "mainmenu2_s.png",monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 19: this,monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: #f4f4f4"> 20: menu_selector(GameScene::MenuCallExit));
  1. 21: _restart = CCMenuItemImage::create("restart.png",monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: #f4f4f4"> 22: "restarts.png",monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 23: this,monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: #f4f4f4"> 24: menu_selector(GameScene::MenuCallRestart));
  1. 25: //用四个菜单项初始化四个菜单
  1. 26: Menu *menu = Menu::create(_dig,_flag,_exitGame,_restart,NULL);
  1. 27: //菜单添加到_bgmenu上去会比较好还是直接添加到当前对象上,这个问题以后再说
  1. 28: _bgmenu->addChild(menu);
  1. 29: menu->setPosition(Vec2::ZERO);
  1. 30:
  1. 31: float lowWidth = _bgmenu->getContentSize().width;
  1. 32: float lowHeight = _bgmenu->getContentSize().height;
  1. 33: //设置菜单项的大小,宽度适应为窗口宽度的1/3
  1. 34: _dig->setScale(lowWidth / 3.0f / _dig->getContentSize().width);
  1. 35: _flag->setScale(lowWidth / 3.0f / _dig->getContentSize().width);
  1. 36: _exitGame->setScale(lowWidth / 3.0f / _dig->getContentSize().width);
  1. 37: _restart->setScale(lowWidth / 3.0f / _dig->getContentSize().width);
  1. 38: //设置锚点,中心点
  1. 39: _dig->setAnchorPoint(Vec2(.5f,.5f));
  1. 40: _flag->setAnchorPoint(Vec2(.5f,monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 41: _exitGame->setAnchorPoint(Vec2(.5f,monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: #f4f4f4"> 42: _restart->setAnchorPoint(Vec2(.5f,monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 43: //设置放置的位置
  1. 44:
  1. 45: _dig->setPosition(Vec2(lowWidth * 0.25f,(lowHeight)* 0.75f));
  1. 46: _flag->setPosition(Vec2(lowWidth * 0.75f,monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 47: _exitGame->setPosition(Vec2(lowWidth * 0.75f,(lowHeight)* 0.25f));
  1. 48: _restart->setPosition(Vec2(lowWidth * 0.25f,monospace; width: 100%; border-bottom-style: none; color: black; padding-bottom: 0px; direction: ltr; text-align: left; padding-top: 0px; border-right-style: none; padding-left: 0px; margin: 0em; border-left-style: none; line-height: 16pt; padding-right: 0px; background-color: white"> 49: _dig->setEnabled(false);
  1. 50:
  1. 51: }
  1. 52:
  1. 53: //////////////////////////////////////////////////////////////////////////
  1. 54: // Menu Call Back
  1. 55: void GameScene::MenuCallDig(Ref*)
  1. 56: {
  1. 57: _dig->setEnabled(false);
  1. 58: _flag->setEnabled(true);
  1. 59: _toFlag = false;
  1. 60: }
  1. 61:
  1. 62: void GameScene::MenuCallFlag(Ref*)
  1. 63: {
  1. 64: _dig->setEnabled(true);
  1. 65: _flag->setEnabled(false);
  1. 66: _toFlag = true;
  1. 67: }
  1. 68:
  1. 69: void GameScene::MenuCallRestart(Ref*)
  1. @H_909_404@ 70: {
  1. 71: Director::getInstance()->replaceScene(GameScene::scene(_customs));
  1. 72: }
  1. 73:
  1. 74: void GameScene::MenuCallExit(Ref*)
  1. 75: {
  1. 76: //Director::getInstance()->replaceScene(SelectCustoms::scene());
  1. 77: //CCDirector::sharedDirector()->end();
  1. 78: }

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