在游戏和应用中常常要实现左右滑动展示游戏帮助、以列表显示内容的UI效果,就像android中的Gallery和ListView。

本文通过CCScrollView和CCTableView分别来实现这两个效果,基于cocos2d-x 2.0.4版本号。 

首先来简单了解一下这两个东东。CCScrollView本身是一个CCLayer,而CCTableView是CCScrollView的子类,这是引擎已经帮我们封装好了的,CCTableView能够设置成横向和纵向,用它能够实现类似于Gallery和ListView的效果。 

1. 首先实现游戏帮助界面 

(1) 创建头文件GalleryLayer.h

#ifndef GALLERY_LAYER_H
#define GALLERY_LAYER_H #include "cocos2d.h"
#include "SimpleAudioEngine.h"
#include "cocos-ext.h" USING_NS_CC;
USING_NS_CC_EXT; class GalleryLayer : public cocos2d::CCLayer ,public CCScrollViewDelegate
{
public:
virtual bool init(); void menuCloseCallback(CCObject* pSender); CREATE_FUNC(GalleryLayer); public:
//scrollview滚动的时候会调用
void scrollViewDidScroll(CCScrollView* view);
//scrollview缩放的时候会调用
void scrollViewDidZoom(CCScrollView* view); virtual void onEnter();
virtual 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); private:
//依据手势滑动的距离和方向滚动图层
void adjustScrollView(float offset);
CCScrollView *m_pScrollView;
CCPoint m_touchPoint;
int m_nCurPage;
}; #endif

类GalleryLayer继承了CCScrollViewDelegate,实现了它的两个纯虚函数,主要是为了当scrollview滚动和缩放时回调这两函数。这样我们就能够在这两函数中做相关操作了。

(2) 看源文件GalleryLayer.cpp

#include "GalleryLayer.h"
#include "ListViewLayer.h" using namespace cocos2d;
using namespace cocos2d::extension; bool GalleryLayer::init()
{
bool bRet = false;
do
{
CC_BREAK_IF( !CCLayer::init() ); m_nCurPage = 1;
CCSize visibleSize = CCDirector::sharedDirector()->getVisibleSize();
CCPoint origin = CCDirector::sharedDirector()->getVisibleOrigin(); CCLayer *pLayer = CCLayer::create();
char helpstr[30] = {0};
for (int i = 1; i <= 3; ++ i)
{
memset(helpstr, 0, sizeof(helpstr));
sprintf(helpstr,"bg_%02d.png",i);
CCSprite *pSprite = CCSprite::create(helpstr);
pSprite->setPosition(ccp(visibleSize.width * (i-0.5f), visibleSize.height / 2));
pLayer->addChild(pSprite);
} m_pScrollView = CCScrollView::create(CCSizeMake(960, 640), pLayer);
m_pScrollView->setContentOffset(CCPointZero);
m_pScrollView->setTouchEnabled(false);
m_pScrollView->setDelegate(this);
m_pScrollView->setDirection(kCCScrollViewDirectionHorizontal);
pLayer->setContentSize(CCSizeMake(960*3, 640)); this->addChild(m_pScrollView); CCSpriteFrameCache *pCache = CCSpriteFrameCache::sharedSpriteFrameCache(); pCache->addSpriteFrame(CCSpriteFrame::create("button_normal.png",CCRectMake(0, 0, 64, 64)),"button_normal.png");
pCache->addSpriteFrame(CCSpriteFrame::create("button_selected.png",CCRectMake(0, 0, 64, 64)),"button_selected.png");
for (int i = 1; i <= 3; ++ i)
{
CCSprite *pPoint = CCSprite::createWithSpriteFrameName("button_normal.png");
pPoint->setTag(i);
pPoint->setPosition(ccp( origin.x + (visibleSize.width - 3 * pPoint->getContentSize().width)/2 + pPoint->getContentSize().width * (i-1), origin.y + 30));
this->addChild(pPoint);
}
CCSprite *pPoint = (CCSprite *)this->getChildByTag(1);
pPoint->setDisplayFrame(pCache->spriteFrameByName("button_selected.png")); bRet = true;
}while(0); return bRet; } void GalleryLayer::menuCloseCallback(CCObject* pSender)
{ } void GalleryLayer::scrollViewDidScroll(cocos2d::extension::CCScrollView *view)
{
CCLOG("scroll");
} void GalleryLayer::scrollViewDidZoom(cocos2d::extension::CCScrollView *view)
{
CCLOG("zoom");
} void GalleryLayer::onEnter()
{
CCLayer::onEnter();
CCDirector::sharedDirector()->getTouchDispatcher()->addTargetedDelegate(this, 1, false);
} void GalleryLayer::onExit()
{
CCDirector::sharedDirector()->getTouchDispatcher()->removeDelegate(this);
CCLayer::onExit();
CCSpriteFrameCache::sharedSpriteFrameCache()->removeUnusedSpriteFrames();
} bool GalleryLayer::ccTouchBegan(CCTouch *pTouch, CCEvent *pEvent)
{
m_touchPoint = CCDirector::sharedDirector()->convertToGL(pTouch->getLocationInView());
return true;
} void GalleryLayer::ccTouchMoved(CCTouch *pTouch, CCEvent *pEvent)
{ } void GalleryLayer::ccTouchEnded(CCTouch *pTouch, CCEvent *pEvent)
{
CCPoint endPoint = CCDirector::sharedDirector()->convertToGL(pTouch->getLocationInView());
float distance = endPoint.x - m_touchPoint.x;
if(fabs(distance) > 50)
{
adjustScrollView(distance);
}
} void GalleryLayer::ccTouchCancelled(cocos2d::CCTouch *pTouch, cocos2d::CCEvent *pEvent)
{
CCPoint endPoint = CCDirector::sharedDirector()->convertToGL(pTouch->getLocationInView());
float distance = endPoint.x - m_touchPoint.x;
if(fabs(distance) > 50)
{
adjustScrollView(distance);
}
} void GalleryLayer::adjustScrollView(float offset)
{
CCSize visibleSize = CCDirector::sharedDirector()->getVisibleSize();
CCPoint origin = CCDirector::sharedDirector()->getVisibleOrigin();
CCSpriteFrameCache *pCache = CCSpriteFrameCache::sharedSpriteFrameCache();
CCSprite *pPoint = (CCSprite *)this->getChildByTag(m_nCurPage);
pPoint->setDisplayFrame(pCache->spriteFrameByName("button_normal.png"));
if (offset<0)
{
m_nCurPage ++;
}else
{
m_nCurPage --;
} if (m_nCurPage <1)
{
m_nCurPage = 1;
} if(m_nCurPage > 3)
{
CCLayer *pLayer = ListViewLayer::create();
CCScene *pScene = CCScene::create();
pScene->addChild(pLayer);
CCDirector::sharedDirector()->replaceScene(pScene);
}
else
{
pPoint = (CCSprite *)this->getChildByTag(m_nCurPage);
pPoint->setDisplayFrame(pCache->spriteFrameByName("button_selected.png"));
CCPoint adjustPos = ccp(origin.x - visibleSize.width * (m_nCurPage-1), 0);
m_pScrollView->setContentOffset(adjustPos, true);
}
}

这里一共同拥有三张图,是从捕鱼达人中拿出来的背景图,当滚完三张图时就跳转到ListViewLayer场景去,上面的代码比較easy懂。 

首先创建一个CCLayer。包括三张背景图。设置CCLayer的ContentSize。并设置三张图片的位置 

然后设置CCLayer为CCScrollview的内容,并设置CCScrollView的显示区域。 

最后依据用户滑动的方向和距离,通过设置scrollview的setContentOffset,滚动视图。 

CCScrollview.h文件里封装了一个枚举类型,一共同拥有四个方向。经常使用横向和纵向,这里使用了横向。

typedef enum {
kCCScrollViewDirectionNone = -1,
kCCScrollViewDirectionHorizontal = 0,
kCCScrollViewDirectionVertical,
kCCScrollViewDirectionBoth
} CCScrollViewDirection;

以下来看看这部分的效果: 



2. 如今来实现列表展示(ListView)的效果 

(1)创建ListViewLayer.h

#ifndef LISTVIEW_LAYER_H
#define LISTVIEW_LAYER_H #include "cocos2d.h"
#include "cocos-ext.h" class ListViewLayer : public cocos2d::CCLayer, public cocos2d::extension::CCTableViewDataSource, public cocos2d::extension::CCTableViewDelegate
{
public:
virtual bool init(); virtual void scrollViewDidScroll(cocos2d::extension::CCScrollView* view); virtual void scrollViewDidZoom(cocos2d::extension::CCScrollView* view); //处理触摸事件,能够计算点击的是哪一个子项
virtual void tableCellTouched(cocos2d::extension::CCTableView* table, cocos2d::extension::CCTableViewCell* cell);
//每一项的宽度和高度
virtual cocos2d::CCSize cellSizeForTable(cocos2d::extension::CCTableView *table);
//生成列表每一项的内容
virtual cocos2d::extension::CCTableViewCell* tableCellAtIndex(cocos2d::extension::CCTableView *table, unsigned int idx);
//一共多少项
virtual unsigned int numberOfCellsInTableView(cocos2d::extension::CCTableView *table); CREATE_FUNC(ListViewLayer);
}; #endif

ListViewLayer继承了CCTableViewDataSource和CCTableViewDelegate。

这两个抽象类封装了几个实用的函数,我们在以下的源代码中将实现它们。

(2)源文件 ListViewLayer.cpp

#include "ListViewLayer.h"

USING_NS_CC;
USING_NS_CC_EXT; bool ListViewLayer::init()
{
bool bRet = false;
do
{
CC_BREAK_IF( !CCLayer::init() ); CCTableView* pTableView = CCTableView::create(this, CCSizeMake(960, 640));
pTableView->setDirection(kCCScrollViewDirectionVertical);
pTableView->setPosition(CCPointZero);
pTableView->setDelegate(this);
pTableView->setVerticalFillOrder(kCCTableViewFillTopDown);
this->addChild(pTableView);
pTableView->reloadData(); bRet = true;
}while(0); return bRet;
} void ListViewLayer::tableCellTouched(CCTableView* table, CCTableViewCell* cell)
{
CCLog("cell touched at index: %i", cell->getIdx());
} CCSize ListViewLayer::cellSizeForTable(CCTableView *table)
{
return CCSizeMake(960, 120);
} CCTableViewCell* ListViewLayer::tableCellAtIndex(CCTableView *table, unsigned int idx)
{
CCString *pString = CCString::createWithFormat("%d", idx);
CCTableViewCell *pCell = table->dequeueCell();
if (!pCell) {
pCell = new CCTableViewCell();
pCell->autorelease();
CCSprite *pSprite = CCSprite::create("listitem.png");
pSprite->setAnchorPoint(CCPointZero);
pSprite->setPosition(CCPointZero);
pCell->addChild(pSprite); CCLabelTTF *pLabel = CCLabelTTF::create(pString->getCString(), "Arial", 20.0);
pLabel->setPosition(CCPointZero);
pLabel->setAnchorPoint(CCPointZero);
pLabel->setTag(123);
pCell->addChild(pLabel);
}
else
{
CCLabelTTF *pLabel = (CCLabelTTF*)pCell->getChildByTag(123);
pLabel->setString(pString->getCString());
} return pCell;
} unsigned int ListViewLayer::numberOfCellsInTableView(CCTableView *table)
{
return 20;
} void ListViewLayer::scrollViewDidScroll(CCScrollView *view)
{
} void ListViewLayer::scrollViewDidZoom(CCScrollView *view)
{
}

首先须要创建CCTableView,设置它的显示区域和显示方向。这里使用了纵向。设置每一个子项的宽度和高度,子项的数量以及每一个子项相应的内容。每一个子项是一个CCTableViewCell。这里进行了优化,复用了子项对象。

以下是效果图:

源代码下载地址: http://download.csdn.net/detail/zhoujianghai/4975604

cocos2d-x CCScrollView和CCTableView的使用的更多相关文章

  1. cocos2d-x CCScrollView和CCTableView的使用(转载)

    转载请注明来自:Alex Zhou的程序世界,本文链接:http://codingnow.cn/cocos2d-x/1024.html //============================== ...

  2. cocos2d在CCScrollView中嵌套CCMenu列表

    在cocos2d中,CCMenuItem经常被当做按钮使用.在有许多条目需要逐行显示,并且点击每个条目都触发对应的事件的需求下,最容易想到的是用CCScrollView嵌套CCMenu. 但默认情况下 ...

  3. CCScrollView/CCTableView(CCTableViewDelegate CCTableViewDataSource CCTableView-滑动列表-游戏中大量使用 非常重要的一个类)

    tableview scrollViewDidScroll函数中有一段   ----  即---滑动tableview时触发的函数 : 会将全部显示的cell又一次刷新(刷新函数中调用了自己定义的ta ...

  4. 【Cocos2d-x for WP8 学习整理】(4)CCTableView 实现《天天爱消除》中的得分榜

    接上回 CCScrollView 继续,在GUI 里还有个 CCScrollView 的子类---CCTableView . 这个名字应该是从 IOS 里的 UITableView来的,其实是跟WP8 ...

  5. cocos2d-x CCTableView

    转自:http://www.cnblogs.com/dcxing/archive/2013/01/16/2862068.html CCTableView在游戏中一般用在背包这样场景或层中,当然也不止这 ...

  6. Cocos2d-x滚动列表具体解释(CCScrollView的使用)

    今天要写一个滚动列表功能,类似以下这样.(图片资源都是自己从天天酷跑里面抠的,仅用于学习方便) 首先,这样一个列表就和iOS里面的UITableView没什么两样,当然,Android中肯定也存在类似 ...

  7. CCTableView 简单样例

    非常像android中的listview #pragma once; #include "cocos2d.h" using namespace cocos2d; //使用CCTab ...

  8. Cocos2d-x CCTableView实现列表

    在ios程序设计中,会大量使用到tableview视图(UITableView),那么在cocos2d-x中,如果需要类似的列表,该如何实现呢?在引擎中参照ios中的UITableView实现了一个叫 ...

  9. CCTableView(一)

    #ifndef __TABLEVIEWTESTSCENE_H__ #define __TABLEVIEWTESTSCENE_H__ #include "cocos2d.h" #in ...

随机推荐

  1. iOS---UICollectionView详解和常用API翻译

    UICollectionView 1.必须要设置布局参数 2.注册cell 用法类似于UITableView 类.自动实现重用,必须注册初始化. 使用UICollectionView必须实现UICol ...

  2. C语言基础-运算符

    sizeof()运算符 •sizeof可以用来计算一个变量或者一个常量.一种数据类型所占的内存字节数 •sizeof一共有3种形式   1.sizeof( 变量\常量 )      sizeof(10 ...

  3. jboss中JVM监控

    1)打开 http://server-name-or-ip/jmx-console/HtmlAdaptor2)在 jboss.system 节点找到 type=ServerInfo ,点击进入3)找到 ...

  4. pythno学习小结-替换python字典中的key值

    源: d={'a':1,'b':2,'c':3} 目标:key:'b'替换为'e' d={'a':1,'e':2,'c':3} 方法: d['e']=d.pop('b')

  5. 迅为7寸Android嵌入式安卓触摸屏,工业一体机方案

    嵌入式安卓触摸屏板卡介绍-工业级核心板: 嵌入式安卓触摸屏功能接口介绍: 品质保障: 核心板连接器:进口连接器,牢固耐用,国产连接器无法比拟(为保证用户自行设计的产品品质,购买核心板用户可免费赠送底板 ...

  6. leetcode_1015. Numbers With Repeated Digits

    https://leetcode.com/problems/numbers-with-repeated-digits/ 与leetcode_357. Count Numbers with Unique ...

  7. python爬虫学习:分布式抓取

    前面的文章都是基于在单机操作,正常情况下,一台机器无论配置多么高,线程开得再多,也总会有一个上限,或者说成本过于巨大.因此,本文将提及分布式的爬虫,让爬虫的效率提高得更快. 构建分布式爬虫首先需要有多 ...

  8. Day3 CSS 引入及基本选择器

    一 .CSS 层叠样式表,为了使网页元素的样式更加丰富,内容与样式拆分开来.HTML负责结构与内容,表现形式交给CSS. CSS注释/**/ 来注释 二.CSS基本语法与引用 CSS的语法结构 选择器 ...

  9. CAD绘制标记(网页版)

    主要用到函数说明: MxDraw::GetCursorPickRect 返回拾取矩形框的宽度,默认值为6.详细说明如下: 参数 说明 IN MXDRAWOCXHANDLE hOcx 控件窗口句柄 OU ...

  10. 基于js插件的文件上传

    <?php /** * Created by PhpStorm. * User: GyCCo. * Date: 05/02/2018 * Time: 4:46 PM */ session_sta ...