CCScale9Sprite和CCControlButton

在2dx下用到了android下的.9.png图片,下面是原图

  

查了一下2dx里有CCScale9Sprite,直接贴上背景图,毫无问题,

CCSize bgRect = CCSizeMake(size.width,size.height/3);
CCScale9Sprite *background   = CCScale9Sprite::create("dialog_bg.png");
background->setContentSize(bgRect);
background->setPosition(ccp(bgRect.width/2,-bgRect.height/2));
this->addChild(background,5);
然后按钮里也需要用到这个素材图,拉伸图片到我们需要的,用到了CCControlButton

CCLabelTTF *title1 = CCLabelTTF::create("拍照", "Marker Felt", 30);
CCControlButton* btn_takephoto = CCControlButton::create(title1,CCScale9Sprite::create("dialog_normal.png"));
 /* 设置按钮按下时的图片 */ 
btn_takephoto->setBackgroundSpriteForState(CCScale9Sprite::create("dialog_pressed.png"), CCControlStateSelected);
btn_takephoto->setPosition(ccp(bgRect.width/2,bgRect.height/5*4));
btn_takephoto->setPreferredSize(btnRect);
btn_takephoto->addTargetWithActionForControlEvents(this, cccontrol_selector(DialogPhoto::MenuItemCallback), CCControlEventTouchUpInside);
background->addChild(btn_takephoto);
当然也可以用CCMenuItemSprite

CCScale9Sprite* sp1 = CCScale9Sprite::create("dialog_normal.png");
sp1->setContentSize(btnRect);
CCScale9Sprite* sp2 = CCScale9Sprite::create("dialog_pressed.png");
sp2->setContentSize(btnRect);
CCMenuItemSprite* btn_takephoto = CCMenuItemSprite::create(sp1,sp2,this,menu_selector(DialogShare::MenuItemCallback));
btn_takephoto->setPosition(ccp(bgRect.width/2,bgRect.height/5*4));
btn_takephoto->setTag(DialogTakePhoto);
CCLabelTTF* pLabel1 = CCLabelTTF::create("拍照", "Arial", 20);
pLabel1->setColor(ccc3(0, 0, 0));
pLabel1->setPosition(ccp(btnRect.width/2,btnRect.height/2));
btn_takephoto->addChild(pLabel1);
m_pMenu = CCMenu::create(btn_takephoto,btn_photoalbum,btn_cancel, NULL);
m_pMenu->setPosition(CCPointZero);
background->addChild(m_pMenu);

下面就是我们所需的效果


这里用到了对话框的思想,点击按钮之后从底部弹出菜单,下面贴出全部代码

#pragma once

#include "cocos2d.h"
#include "HelloWorldScene.h"
#include "cocos-ext.h"
USING_NS_CC_EXT;
USING_NS_CC;

class DialogShare: public CCLayerColor
{
    // 模态对话框菜单
    CCMenu *m_pMenu;
    // 记录菜单点击
    bool m_bTouchedMenu;
public:
    DialogShare();
    ~DialogShare();
    static cocos2d::CCScene* scene();
    virtual bool init();
    // 初始化对话框内容
    void initDialog();
    
    CREATE_FUNC(DialogShare);
    
    void onEnter();
    void onExit();
	virtual bool ccTouchBegan(CCTouch *pTouch, CCEvent *pEvent);
	virtual void ccTouchMoved(CCTouch *pTouch, CCEvent *pEvent);
	virtual void ccTouchEnded(CCTouch *pTouch, CCEvent *pEvent);
	virtual void ccTouchCancelled(CCTouch *pTouch, CCEvent *pEvent);
    
    void MenuItemCallback(CCObject *pSender);
};

#include "DialogShare.h"
#include "HelloWorldScene.h"
enum {
	DialogTakePhoto,
	DialogPhotoAlbum,
	DialogCancel,
};
CCScene* DialogShare::scene()
{
	CCScene *scene = CCScene::create();
	DialogShare *layer = DialogShare::create();
	scene->addChild(layer);
	return scene;
}
DialogShare::DialogShare()
{
}

DialogShare::~DialogShare()
{
}

bool DialogShare::init()
{
	bool bRet = false;    
	do {
		CC_BREAK_IF(!CCLayerColor::initWithColor(ccc4(0, 0, 0, 125)));       
		this->initDialog();    
		bRet = true;
	} while (0);   
	return bRet;
}

void DialogShare::initDialog()
{
	CCSize size = CCDirector::sharedDirector()->getWinSize();

	CCSize bgRect = CCSizeMake(size.width,size.height/3);
	CCScale9Sprite *background   = CCScale9Sprite::create("dialog_bg.png");
	background->setContentSize(bgRect);
	background->setPosition(ccp(bgRect.width/2,-bgRect.height/2));
	this->addChild(background,5);

	CCSize btnRect = CCSizeMake(bgRect.width/2,bgRect.height/5);

	CCScale9Sprite* sp1 = CCScale9Sprite::create("dialog_normal.png");
	sp1->setContentSize(btnRect);
	CCScale9Sprite* sp2 = CCScale9Sprite::create("dialog_pressed.png");
	sp2->setContentSize(btnRect);
	CCMenuItemSprite* btn_takephoto = CCMenuItemSprite::create(sp1
		,sp2,this,menu_selector(DialogShare::MenuItemCallback));
	btn_takephoto->setPosition(ccp(bgRect.width/2,bgRect.height/5*4));
	btn_takephoto->setTag(DialogTakePhoto);
	CCLabelTTF* pLabel1 = CCLabelTTF::create("拍照", "Arial", 20);
	pLabel1->setColor(ccc3(0, 0, 0));
	pLabel1->setPosition(ccp(btnRect.width/2,btnRect.height/2));
	btn_takephoto->addChild(pLabel1);

	CCScale9Sprite* sp3 = CCScale9Sprite::create("dialog_normal.png");
	sp3->setContentSize(btnRect);
	CCScale9Sprite* sp4 = CCScale9Sprite::create("dialog_pressed.png");
	sp4->setContentSize(btnRect);
	CCMenuItemSprite* btn_photoalbum = CCMenuItemSprite::create(sp3
		,sp4,this,menu_selector(DialogShare::MenuItemCallback));
	btn_photoalbum->setPosition(ccp(bgRect.width/2,bgRect.height/5*5/2));
	btn_photoalbum->setTag(DialogPhotoAlbum);
	CCLabelTTF* pLabel2 = CCLabelTTF::create("相册中选取", "Arial", 18);
	pLabel2->setColor(ccc3(0, 0, 0));
	pLabel2->setPosition(ccp(btnRect.width/2,btnRect.height/2));
	btn_photoalbum->addChild(pLabel2);

	CCScale9Sprite* sp5 = CCScale9Sprite::create("dialog_cancel_normal.png");
	sp5->setContentSize(btnRect);
	CCScale9Sprite* sp6 = CCScale9Sprite::create("dialog_pressed.png");
	sp6->setContentSize(btnRect);
	CCMenuItemSprite* btn_cancel = CCMenuItemSprite::create(sp5
		,sp6,this,menu_selector(DialogShare::MenuItemCallback));
	btn_cancel->setPosition(ccp(bgRect.width/2,bgRect.height/5));
	btn_cancel->setTag(DialogCancel);
	CCLabelTTF* pLabel3 = CCLabelTTF::create("取消", "Arial", 16);
	pLabel3->setColor(ccc3(0, 0, 0));
	pLabel3->setPosition(ccp(btnRect.width/2,btnRect.height/2));
	btn_cancel->addChild(pLabel3);

	m_pMenu = CCMenu::create(btn_takephoto,btn_photoalbum,btn_cancel, NULL);
	m_pMenu->setPosition(CCPointZero);
	background->addChild(m_pMenu);

	background->runAction(CCEaseExponentialOut::create(CCMoveTo::create(0.5f,ccp(bgRect.width/2,bgRect.height/2))));
}

void DialogShare::onEnter()
{
	CCLayerColor::onEnter();
	CCDirector::sharedDirector()->getTouchDispatcher()->addTargetedDelegate(this,kCCMenuHandlerPriority-1, true);
}

void DialogShare::onExit()
{
	CCDirector::sharedDirector()->getTouchDispatcher()->removeDelegate(this);
	CCLayerColor::onExit();
}

bool DialogShare::ccTouchBegan(cocos2d::CCTouch *pTouch, cocos2d::CCEvent *pEvent)
{
	m_bTouchedMenu = m_pMenu->ccTouchBegan(pTouch, pEvent);   
	return true;
}

void DialogShare::ccTouchMoved(cocos2d::CCTouch *pTouch, cocos2d::CCEvent *pEvent)
{
	if (m_bTouchedMenu) {
		m_pMenu->ccTouchMoved(pTouch, pEvent);
	}
}

void DialogShare::ccTouchEnded(cocos2d::CCTouch *pTouch, cocos2d::CCEvent *pEvent)
{
	if (m_bTouchedMenu) {
		m_pMenu->ccTouchEnded(pTouch, pEvent);
		m_bTouchedMenu = false;
	}
}

void DialogShare::ccTouchCancelled(cocos2d::CCTouch *pTouch, cocos2d::CCEvent *pEvent)
{
	if (m_bTouchedMenu) {
		m_pMenu->ccTouchEnded(pTouch, pEvent);
		m_bTouchedMenu = false;
	}
}

void DialogShare::MenuItemCallback(cocos2d::CCObject *pSender)
{
	CCMenuItemImage* button=(CCMenuItemImage*)pSender;
	switch (button->getTag())
	{
	case DialogTakePhoto:
		CCLog("DialogTakePhoto++++++");
		break;
	case DialogPhotoAlbum:
		CCLog("DialogPhotoAlbum++++++");
		break;
	case DialogCancel:
		CCLog("DialogCancel++++++");
		this->removeFromParentAndCleanup(true);
		break;
	}
}







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值