位置: 编程技术 - 正文

cocos2dx3.6 弹出对话框的实现(cocos2djs)

编辑:rootadmin

推荐整理分享cocos2dx3.6 弹出对话框的实现(cocos2djs),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:cocos2djs,cocos2dx schedule,cocos2dx接入广告,cocos loading,cocos2djs,cocos弹窗,cocos弹窗,cocos2dx接入广告,内容如对您有帮助,希望把文章链接给更多的朋友!

头文件:

//

// PopAlertDialog.h

// macstudycocos2dx

//

// Created by WangWei on /6/8.

//

//

#ifndef __macstudycocos2dx__PopAlertDialog__

#define __macstudycocos2dx__PopAlertDialog__

#pragma once

#include "cocos2d.h"

#include "cocos-ext.h"

USING_NS_CC;

USING_NS_CC_EXT;

class PopAlertDialog:public LayerColor{ //继承LayerColor类,方便更改layer的颜色和透明度

public:

PopAlertDialog();

~PopAlertDialog();

virtual bool init();

CREATE_FUNC(PopAlertDialog);

static PopAlertDialog* create(constchar* backgroudImage,Size dialogSize);

bool onTouchBegan(Touch* touch,Event* event);

void onTouchMoved(Touch* touch,Event* event);

void onTouchEnded(Touch* touch,Event* event);

void setTitle(constchar* title,int fontsize=);

void setContentText(constchar* text,int fontsize=,int padding=,int paddingTop=);

void setCallBackFunc(Ref* target,SEL_CallFuncN callfun);

bool addButton(constchar* normalImage,constchar* selectedImage,constchar* title,int tag=0);

virtual void onEnter();

virtual void onExit();

void backgroundFinish();

private:

void buttonCallBack(Ref* pSender);

int m_contentPadding;

int m_contentPaddingTop;

Size m_dialogContentSize; //对话框大小

Ref* m_callbackListener;

SEL_CallFuncN m_callback;

CC_SYNTHESIZE_RETAIN(Menu*,m__pMenu, MenuButton);

CC_SYNTHESIZE_RETAIN(Sprite*,m__sfBackGround, SpriteBackGround);

CC_SYNTHESIZE_RETAIN(Scale9Sprite*,m__s9BackGround, Sprite9BackGround);

CC_SYNTHESIZE_RETAIN(LabelTTF*,m__ltTitle, LabelTitle);

CC_SYNTHESIZE_RETAIN(LabelTTF*,m__ltContentText, LabelContentText);

};

#endif /* defined(__macstudycocos2dx__PopAlertDialog__) */

cpp文件:

//

// PopAlertDialog.cpp

// macstudycocos2dx

//

// Created by WangWei on /6/8.

//

//

#include "PopAlertDialog.h"

PopAlertDialog::PopAlertDialog()

:

m__pMenu(NULL)

,m_contentPadding(0)

,m_contentPaddingTop(0)

,m_callbackListener(NULL)

,m_callback(NULL)

,m__sfBackGround(NULL)

,m__s9BackGround(NULL)

,m__ltContentText(NULL)

,m__ltTitle(NULL)

{

}

PopAlertDialog::~PopAlertDialog(){

CC_SAFE_RELEASE(m__pMenu);

CC_SAFE_RELEASE(m__sfBackGround);

CC_SAFE_RELEASE(m__s9BackGround);

CC_SAFE_RELEASE(m__ltContentText);

CC_SAFE_RELEASE(m__ltTitle);

}

bool PopAlertDialog::init(){

if (!CCLayerColor::init()) {

return false;

}

Menu* menu=Menu::create();

menu->setPosition(CCPointZero);

setMenuButton(menu);

auto listener=EventListenerTouchOneByOne::create();

listener->setSwallowTouches(true);

listener->onTouchBegan=CC_CALLBACK_2(PopAlertDialog::onTouchBegan,this);

listener->onTouchMoved=CC_CALLBACK_2(PopAlertDialog::onTouchMoved,this);

listener->onTouchEnded=CC_CALLBACK_2(PopAlertDialog::onTouchEnded,this);

auto dispatcher=Director::getInstance()->getEventDispatcher();

dispatcher->addEventListenerWithSceneGraphPriority(listener,this);

//设置弹出层的颜色,指定为淡灰色

setColor(Color3B::GRAY);

setOpacity();

return true;

}

bool PopAlertDialog::onTouchBegan(Touch* touch,Event* event){

return true;

}

void PopAlertDialog::onTouchMoved(Touch* touch,Event* event){

}

void PopAlertDialog::onTouchEnded(Touch* touch,Event* event){

}

PopAlertDialog* PopAlertDialog::create(constchar* backgoundImage,Size dialogSize){

//创建弹出对话框,指定背景图和大小。

PopAlertDialog* layer=PopAlertDialog::create();

cocos2dx3.6  弹出对话框的实现(cocos2djs)

//layer->setSpriteBackGround(Sprite::create(backgoundImage));

layer->setSprite9BackGround(Scale9Sprite::create(backgoundImage));

layer->m_dialogContentSize=dialogSize;

return layer;

}

void PopAlertDialog::setTitle(constchar* title,int fontsize/*=*/){

LabelTTF* label=LabelTTF::create(title,"", fontsize);

label->setColor(Color3B::RED);

setLabelTitle(label);

}

void PopAlertDialog::setContentText(constchar* text,int fontsize,int padding,int paddingTop){

LabelTTF* ltf=LabelTTF::create(text,"", fontsize);

ltf->setColor(Color3B::BLUE);

setLabelContentText(ltf);

m_contentPadding=padding;

m_contentPaddingTop=paddingTop;

}

void PopAlertDialog::setCallBackFunc(Ref*target, SEL_CallFuncN callfun){

m_callbackListener=target;

m_callback=callfun;

}

bool PopAlertDialog::addButton(constchar *normalImage, const char *selectedImage,constchar* title,int tag){

Size winSize=Director::getInstance()->getWinSize();

Point center_point=Point(winSize.width/2,winSize.height/2);

auto menuImage=MenuItemImage::create(

normalImage,

selectedImage,

CC_CALLBACK_1(PopAlertDialog::buttonCallBack,this) );

menuImage->setTag(tag);

menuImage->setPosition(center_point);

Size menuSize=menuImage->getContentSize();

Label* labelttf=Label::createWithTTF(title,"fonts/arial.ttf", );

labelttf->setColor(Color3B(Color3B::BLACK));

labelttf->setPosition(Point(menuSize.width/2,menuSize.height/2));

menuImage->addChild(labelttf);

getMenuButton()->addChild(menuImage);

return true;

}

void PopAlertDialog::buttonCallBack(Ref* pSender){

Node* node=dynamic_cast<Node*>(pSender);

//log("[========PopAlertDialog:buttonCallBack=======]touch tag:%d",node->getTag());

if (m_callback&&m_callbackListener) {

(m_callbackListener->*m_callback)(node);

}

this->removeFromParentAndCleanup(true);

}

void PopAlertDialog::onEnter(){

//log("PopAlertDialog::onEnter is loading");

LayerColor::onEnter();

Size winSize=Director::getInstance()->getWinSize();

Point center=Point(winSize.width/2,winSize.height/2);

//Sprite* background=getSpriteBackGround();

Scale9Sprite* background=getSprite9BackGround();

background->setContentSize(m_dialogContentSize);//指定对话框大小

background->setPosition(Point(winSize.width/2,winSize.height/2));

this->addChild(background,0,0);

Action* popupActions=Sequence::create( ScaleTo::create(0.0,0.0),

ScaleTo::create(0.,1.),

ScaleTo::create(0.,0.),

ScaleTo::create(0.,1.0),

CallFunc::create(CC_CALLBACK_0(PopAlertDialog::backgroundFinish,this))

,NULL);

background->runAction(popupActions);

}

void PopAlertDialog::backgroundFinish(){

Size winSize=Director::getInstance()->getWinSize();

Point pCenter=Point(winSize.width/2,winSize.height/2);

this->addChild(getMenuButton());

float btnWidth=m_dialogContentSize.width/(getMenuButton()->getChildrenCount()&#;1);

Vector<Node*> vector=getMenuButton()->getChildren();

Ref* pObj=NULL;

int i=0;

for (Node*pObj:vector){

Node* node=dynamic_cast<Node*>(pObj);

node->setPosition(Point(winSize.width/2-m_dialogContentSize.width/2&#;btnWidth*(i&#;1),winSize.height/2-m_dialogContentSize.height/3));

i&#;&#;;

}

if (getLabelTitle()) {

getLabelTitle()->setPosition(ccpAdd(pCenter, ccp(0,m_dialogContentSize.height/2-.0f)));

this->addChild(getLabelTitle());

}

if (getLabelContentText()) {

CCLabelTTF* ltf=getLabelContentText();

ltf->setPosition(ccp(winSize.width/2,winSize.height/2));

ltf->setDimensions(CCSizeMake(m_dialogContentSize.width-m_contentPadding*2, m_dialogContentSize.height-m_contentPaddingTop));

ltf->setHorizontalAlignment(kCCTextAlignmentLeft);

this->addChild(ltf);

}

}

void PopAlertDialog::onExit(){

log("PopAlertDialog onExit");

CCLayerColor::onExit();

}

调用:

MenuItemSprite* item1=MenuItemSprite::create(btn_normal_sprite, btn_select_sprite,nullptr,CC_CALLBACK_1(MenuItemSpritTest::select_learn,this));

select_learn方法:

voidMenuItemSpritTest::select_learn(Object* pSender){

log("you had select this button");

PopAlertDialog* popup=PopAlertDialog::create("background.png",Size(,));

popup->setTitle("Message");

popup->setContentText("This is a test message!",,,);

popup->setCallBackFunc(this,callfuncN_selector(MenuItemSpritTest::popButtonCallback));

popup->addButton("btnreturn.png","btnreturn.png", "OK",0);

popup->addButton("btnreturn.png","btnreturn.png", "Cancel",1);

this->addChild(popup);

}

void MenuItemSpritTest::popButtonCallback(Node* pNode){

log("[==========]button call back.tag %d",pNode->getTag());

if (pNode->getTag()==0) {

Director::getInstance()->end();

}

if (pNode->getTag()==1) {

//pNode->getParent()->removeFromParent();

pNode->removeFromParent();

}

}

效果图:

设置glblendfunc出现黑框 发现用粒子编辑器设置粒子效果的混合模式,放到程序里会出现偏差,比如黑框等。搜了下,发现原因是:DestBlendFunc只接受以下8个参数:GL_ZEROGL_ONEGL_SR

cocos2dx多个精灵调用runAction()方法执行组合动作,只有最后一个精灵有效的问题 问题代码如下//将MoveTo和RotateTo两个动作转换成FiniteTimeAction类型FiniteTimeAction*MVto=(FiniteTimeAction*)(MoveTo::create(2.0,Vec2(,)));FiniteTimeAction*ROto=(FiniteTimeAction*

.6.开始写博客记录cocos2dx学习历程 今天起,写博客记录自己的cocos2dx学习过程。早在4.就到手的macbookpro,一直没抽出太多的时间去学习,拖拉两个月,才初步学会了搭建环境、创建工程

标签: cocos2djs

本文链接地址:https://www.jiuchutong.com/biancheng/368366.html 转载请保留说明!

上一篇:在cocos2dx中实现水波滤镜(cocos2dx schedule)

下一篇:cocos2dx多个精灵调用runAction()方法执行组合动作,只有最后一个精灵有效的问题(cocos2d-x教程)

  • 什么叫简易税
  • 纯外贸出口企业出售固定
  • 应交税费和应交增值税
  • 预交增值税附税税率
  • 个人所得税可以不交税吗
  • 年终奖计入工伤赔偿
  • 本年收益的会计处理
  • 跨期两年的发票怎么处理
  • 收购公司财务怎么交接
  • 不动产出租需要缴纳哪些税
  • 停业的纳税人还交税吗
  • 收益法评估的基本思路
  • 临时营业执照有效期多久
  • 金融行业打包是什么意思
  • 增值税普通发票查询真伪
  • 外贸业务收境外人民币
  • 委外加工半成品入库的会计分录
  • 没有抵扣怎么办
  • 印花税是不是不用计提
  • 一般纳税人按简易计税办法计算增值税,是否能节税?
  • 营改增后工业企业税率是多少?
  • 旅游业适用差额征税政策时如何开具发票?
  • 按季申报是什么意思
  • 公司自用房屋怎样交税
  • 电子普通发票进什么科目
  • 定额发票存根联丢失如何处罚
  • 以旧换新增值税税率是多少
  • 资金筹集业务核算实训心得体会
  • 汽车修理费抵扣怎么做账
  • 实发工资需扣除所得税吗
  • 流动资产周转率计算公式
  • 银行承兑汇票的转让一般通过什么渠道
  • 反结账是什么意思怎么取消
  • 外观专利的价值
  • Win11 Build 22449.1000 预览版发布(附更新修复已知问题汇总)
  • 固定资产减值准备可以税前扣除吗
  • 补缴上年度未开票收入增值税,怎么做账
  • 待处理流动资产净损失在资产负债表中
  • 银行历年账单怎么查
  • flink从入门到实战
  • 固定资金是什么科目
  • 小规模纳税人劳保用品可以抵扣吗
  • 融资租赁业务需要什么条件
  • 资产负债表坏账准备计入哪里科目
  • sql server 数据库技术
  • sql2005使用
  • 本年利润借方余额是什么意思呢
  • 赠送给客户的礼品税法
  • 原材料 半成品
  • 进项税额增值税专用发票
  • 税务局收款收据
  • 税控盘费用进什么科目
  • 疫情期间减免的六大行业
  • 基本户转到一般户用途写什么
  • 查账补缴的税的账怎么做
  • 现值指数与净现值的关系
  • 进项税的发票
  • ubuntu14.04安装vim
  • 鼠标系统怎么安装
  • win10预览版和正式版区别
  • unix操作系统有何特点?
  • ubuntu获取当前路径
  • win8怎么提高网速
  • Win10预览版怎么变回正式版
  • ssgrate.exe - ssgrate是什么进程
  • win8系统运行慢怎么办
  • iis的安全性设置主要包括
  • 如何在linux shell关闭443端口
  • linux中的vi编辑器一般有哪三个模式
  • 简单强悍是哪首歌
  • mongoose怎么用
  • iframe的使用和例子
  • android Lollipop(5.0)--touch feedback(触摸反馈)
  • nginx与php
  • python jose
  • jquery怎么写
  • android菜鸟教程
  • 个体工商户 浙江
  • 车辆购置税怎么买
  • 税收通知
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设