cocos2d-x中CCTableView的使用

2024-06-12 19:32
文章标签 使用 cocos2d cctableview

本文主要是介绍cocos2d-x中CCTableView的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处、作者信息和本声明。否则将追究法律责任。

http://blog.csdn.net/azhou_hui/article/details/8167498

 

CCTableView用来实现滑动列表的效果。本来想用CCScrollView,不过好像有bug,一直达不到效果。最后还是选用了CCTableView

 

------------------------------------------------------------------------------------相关代码----------------------------------------------------------------------------

(1)CustomTableViewCell.h

[cpp]  view plain copy
  1. #ifndef __CUSTOMTABELVIEWCELL_H__  
  2. #define __CUSTOMTABELVIEWCELL_H__  
  3.   
  4. #include "cocos2d.h"  
  5. #include "cocos-ext.h"  
  6.   
  7. class CustomTableViewCell : public cocos2d::extension::CCTableViewCell  
  8. {  
  9. public:  
  10.     virtual void draw();  
  11. };  
  12.   
  13. #endif /* __CUSTOMTABELVIEWCELL_H__ */  

 

(2)CustomTableViewCell.cpp

[html]  view plain copy
  1. #include "CustomTableViewCell.h"  
  2.   
  3. USING_NS_CC;  
  4.   
  5. void CustomTableViewCell::draw()  
  6. {  
  7.     CCTableViewCell::draw();  
  8.     // draw bounding box  
  9.     //  CCPoint pos = getPosition();  
  10.     //  CCSize size = CCSizeMake(178, 200);  
  11.     //  CCPoint vertices[4]={  
  12.     //      ccp(pos.x+1, pos.y+1),  
  13.     //      ccp(pos.x+size.width-1, pos.y+1),  
  14.     //      ccp(pos.x+size.width-1, pos.y+size.height-1),  
  15.     //      ccp(pos.x+1, pos.y+size.height-1),  
  16.     //  };  
  17.     //  ccDrawColor4B(0, 0, 255, 255);  
  18.     //  ccDrawPoly(vertices, 4, true);  
  19. }  


(3)TableViewMenuLayer.h

[cpp]  view plain copy
  1. #ifndef __TABLEVIEWMENULAYER_H__  
  2. #define __TABLEVIEWMENULAYER_H__  
  3.   
  4. //城市界面右边的滑动菜单项列表Layer,这个用的是CCTableView  
  5.   
  6. #include "cocos2d.h"  
  7. #include "cocos-ext.h"  
  8.   
  9. using namespace cocos2d;  
  10. using namespace cocos2d::extension;  
  11.   
  12. class TableViewMenuLayer : public cocos2d::CCLayer, public cocos2d::extension::CCTableViewDataSource, public cocos2d::extension::CCTableViewDelegate  
  13. {  
  14. public:  
  15.     static TableViewMenuLayer *instance;  
  16.   
  17. public:  
  18.     TableViewMenuLayer(void);  
  19.     ~TableViewMenuLayer(void);  
  20.   
  21. public:  
  22.     virtual bool init();    
  23.   
  24.     CREATE_FUNC(TableViewMenuLayer);  
  25.   
  26.     virtual void scrollViewDidScroll(cocos2d::extension::CCScrollView* view) {};  
  27.     virtual void scrollViewDidZoom(cocos2d::extension::CCScrollView* view) {}  
  28.     virtual void tableCellTouched(cocos2d::extension::CCTableView* table, cocos2d::extension::CCTableViewCell* cell);  
  29.     virtual cocos2d::CCSize cellSizeForTable(cocos2d::extension::CCTableView *table);  
  30.     virtual cocos2d::extension::CCTableViewCell* tableCellAtIndex(cocos2d::extension::CCTableView *table, unsigned int idx);  
  31.     virtual unsigned int numberOfCellsInTableView(cocos2d::extension::CCTableView *table);  
  32.   
  33. };  
  34.   
  35. #endif //__TABLEVIEWMENULAYER_H__  


 

(4)TableViewMenuLayer.cpp

[cpp]  view plain copy
  1. #include "TableViewMenuLayer.h"  
  2. #include "CustomTableViewCell.h"  
  3. #include "MenuInfoLayer.h"  
  4.   
  5.   
  6. using namespace cocos2d;  
  7. using namespace cocos2d::extension;  
  8.   
  9. TableViewMenuLayer::TableViewMenuLayer(void)  
  10. {  
  11. }  
  12.   
  13. TableViewMenuLayer::~TableViewMenuLayer(void)  
  14. {  
  15. }  
  16.   
  17. //初始化静态成员    
  18. TableViewMenuLayer* TableViewMenuLayer::instance=NULL;    
  19.   
  20. // on "init" you need to initialize your instance  
  21. bool TableViewMenuLayer::init()  
  22. {  
  23.     if ( !CCLayer::init() )  
  24.     {  
  25.         return false;  
  26.     }  
  27.   
  28.     CCSize winSize = CCDirector::sharedDirector()->getWinSize();  
  29.   
  30.     // Add the BG  
  31.     CCSprite* tableViewBG = CCSprite::create("right.png");  
  32.     tableViewBG->setPosition(ccp(winSize.width-45, winSize.height/2));  
  33.     this->addChild(tableViewBG);  
  34.     CCSprite* upBG = CCSprite::create("up.png");  
  35.     upBG->setPosition(ccp(winSize.width-45, winSize.height-30));  
  36.     this->addChild(upBG);  
  37.     CCSprite* downBG = CCSprite::create("down.png");  
  38.     downBG->setPosition(ccp(winSize.width-45, 10));  
  39.     this->addChild(downBG);  
  40.   
  41.     // Add the CCTableView  
  42.     CCTableView *tableView = CCTableView::create(this, CCSizeMake(80, 690));  
  43.     tableView->setDirection(kCCScrollViewDirectionVertical);  
  44.     tableView->setPosition(ccp(winSize.width-85,28));  
  45.     tableView->setDelegate(this);  
  46.     tableView->setVerticalFillOrder(kCCTableViewFillTopDown);  
  47.     this->addChild(tableView);  
  48.     tableView->reloadData();  
  49.   
  50.     return true;  
  51. }  
  52.   
  53. void TableViewMenuLayer::tableCellTouched(CCTableView* table, CCTableViewCell* cell)  
  54. {  
  55.     //打印相应cell的Idx  
  56.     CCLOG("cell touched at index: %i", cell->getIdx());  
  57.   
  58.     //调用相应的菜单功能  
  59.     CCSize size = CCDirector::sharedDirector()->getWinSize();  
  60.     // add the MenuInfoLayer  
  61.     if (this->getChildByTag(101))  
  62.     {  
  63.         this->removeChildByTag(101,true);  
  64.     }  
  65.     MenuInfoLayer *menuInfoLayer = MenuInfoLayer::create();  
  66.     this->addChild(menuInfoLayer,0,101);  
  67.     menuInfoLayer->runAction(CCMoveBy::create(0.3,ccp(-size.width,0)));  
  68. }  
  69.   
  70. CCSize TableViewMenuLayer::cellSizeForTable(CCTableView *table)  
  71. {  
  72.     return CCSizeMake(80, 115);  
  73. }  
  74.   
  75. CCTableViewCell* TableViewMenuLayer::tableCellAtIndex(CCTableView *table, unsigned int idx)  
  76. {  
  77.     CCString *string;  
  78.     switch(idx)  
  79.     {  
  80.         case 0: string = CCString::createWithFormat("%s""CITY"); break;  
  81.         case 1: string = CCString::createWithFormat("%s""WORLD"); break;  
  82.         case 2: string = CCString::createWithFormat("%s""BATTLE"); break;  
  83.         case 3: string = CCString::createWithFormat("%s""CityInfo"); break;  
  84.         case 4: string = CCString::createWithFormat("%s""Commander"); break;  
  85.         case 5: string = CCString::createWithFormat("%s""Equipment"); break;  
  86.         case 6: string = CCString::createWithFormat("%s""Quest"); break;  
  87.         case 7: string = CCString::createWithFormat("%s""Items"); break;  
  88.         case 8: string = CCString::createWithFormat("%s""Military"); break;  
  89.         case 9: string = CCString::createWithFormat("%s""Legion"); break;  
  90.         case 10: string = CCString::createWithFormat("%s""Rank"); break;  
  91.         case 11: string = CCString::createWithFormat("%s""Report"); break;  
  92.         case 12: string = CCString::createWithFormat("%s""News"); break;  
  93.         case 13: string = CCString::createWithFormat("%s""System"); break;  
  94.         case 14: string = CCString::createWithFormat("%s""Shop"); break;  
  95.         case 15: string = CCString::createWithFormat("%s""Friend"); break;  
  96.         default:string = CCString::createWithFormat("%s""Error");  
  97.     }  
  98.       
  99.     // the cell  
  100.     CCTableViewCell *cell = table->dequeueCell();  
  101.     if (!cell) {  
  102.         // the sprite  
  103.         cell = new CustomTableViewCell();  
  104.         cell->autorelease();  
  105.         CCSprite *sprite = CCSprite::create("CloseNormal.png");  
  106.         sprite->setAnchorPoint(ccp(0, 0));  
  107.         sprite->setPosition(ccp(0, 30));  
  108.         sprite->setTag(456);   
  109.         cell->addChild(sprite);  
  110.   
  111.         // the label  
  112.         CCLabelTTF *label = CCLabelTTF::create(string->getCString(), "Thonburi", 13);  
  113.         label->setPosition(ccp(40, 20));  
  114.         label->setTag(123);   
  115.         cell->addChild(label);  
  116.     }  
  117.     else  
  118.     {  
  119.         // the sprite  
  120.         cell->removeChildByTag(456,true);  
  121.         CCSprite *sprite ;  
  122.         switch(idx)  
  123.         {  
  124.             case 0: sprite = CCSprite::create("city.png");break;  
  125.             case 1: sprite = CCSprite::create("world.png");break;  
  126.             case 2: sprite = CCSprite::create("battle.png");break;  
  127.             case 3: sprite = CCSprite::create("cityInfo.png");break;  
  128.             case 4: sprite = CCSprite::create("hero.png");break;  
  129.             case 5: sprite = CCSprite::create("equipment.png");break;  
  130.             case 6: sprite = CCSprite::create("task.png");break;  
  131.             case 7: sprite = CCSprite::create("treasure.png");break;  
  132.             case 8: sprite = CCSprite::create("army.png");break;  
  133.             case 9: sprite = CCSprite::create("guild.png");break;  
  134.             case 10: sprite = CCSprite::create("rank.png");break;  
  135.             case 11: sprite = CCSprite::create("report.png");break;  
  136.             case 12: sprite = CCSprite::create("message.png");break;  
  137.             case 13: sprite = CCSprite::create("system.png");break;  
  138.             case 14: sprite = CCSprite::create("mall.png");break;  
  139.             case 15: sprite = CCSprite::create("friend.png");break;  
  140.             default:sprite = CCSprite::create("CloseNormal.png");  
  141.         }  
  142.         sprite->setAnchorPoint(ccp(0, 0));  
  143.         sprite->setPosition(ccp(0, 35));  
  144.         sprite->setTag(456);   
  145.         cell->addChild(sprite);  
  146.           
  147.         // the label  
  148.         CCLabelTTF *label = (CCLabelTTF*)cell->getChildByTag(123);  
  149.         label->setString(string->getCString());  
  150.     }  
  151.   
  152.     return cell;  
  153. }  
  154.   
  155. unsigned int TableViewMenuLayer::numberOfCellsInTableView(CCTableView *table)  
  156. {  
  157.     return 16;  
  158. }  
[cpp]  view plain copy
  1.    
[cpp]  view plain copy
  1. (5)CityScene.cpp 调用界面,调用时直接在scene里调用该layer(包含包含的头文件)  
  2. <pre class="cpp" name="code">#include "TableViewMenuLayer.h"  
  3.           
  4. // add TableViewMenuLayer  
  5. TableViewMenuLayer *tableViewMenuLayer = TableViewMenuLayer::create();  
  6. TableViewMenuLayer::instance=tableViewMenuLayer;  
  7. this->addChild(tableViewMenuLayer,10);</pre>  
  8. <pre></pre>  
  9. <pre></pre> 

这篇关于cocos2d-x中CCTableView的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1055130

相关文章

使用Python实现高效的端口扫描器

《使用Python实现高效的端口扫描器》在网络安全领域,端口扫描是一项基本而重要的技能,通过端口扫描,可以发现目标主机上开放的服务和端口,这对于安全评估、渗透测试等有着不可忽视的作用,本文将介绍如何使... 目录1. 端口扫描的基本原理2. 使用python实现端口扫描2.1 安装必要的库2.2 编写端口扫

使用Python实现操作mongodb详解

《使用Python实现操作mongodb详解》这篇文章主要为大家详细介绍了使用Python实现操作mongodb的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、示例二、常用指令三、遇到的问题一、示例from pymongo import MongoClientf

SQL Server使用SELECT INTO实现表备份的代码示例

《SQLServer使用SELECTINTO实现表备份的代码示例》在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误,在SQLServer中,可以使用SELECTINT... 在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误。在 SQL Server 中,可以使用 SE

使用Python合并 Excel单元格指定行列或单元格范围

《使用Python合并Excel单元格指定行列或单元格范围》合并Excel单元格是Excel数据处理和表格设计中的一项常用操作,本文将介绍如何通过Python合并Excel中的指定行列或单... 目录python Excel库安装Python合并Excel 中的指定行Python合并Excel 中的指定列P

浅析Rust多线程中如何安全的使用变量

《浅析Rust多线程中如何安全的使用变量》这篇文章主要为大家详细介绍了Rust如何在线程的闭包中安全的使用变量,包括共享变量和修改变量,文中的示例代码讲解详细,有需要的小伙伴可以参考下... 目录1. 向线程传递变量2. 多线程共享变量引用3. 多线程中修改变量4. 总结在Rust语言中,一个既引人入胜又可

golang1.23版本之前 Timer Reset方法无法正确使用

《golang1.23版本之前TimerReset方法无法正确使用》在Go1.23之前,使用`time.Reset`函数时需要先调用`Stop`并明确从timer的channel中抽取出东西,以避... 目录golang1.23 之前 Reset ​到底有什么问题golang1.23 之前到底应该如何正确的

详解Vue如何使用xlsx库导出Excel文件

《详解Vue如何使用xlsx库导出Excel文件》第三方库xlsx提供了强大的功能来处理Excel文件,它可以简化导出Excel文件这个过程,本文将为大家详细介绍一下它的具体使用,需要的小伙伴可以了解... 目录1. 安装依赖2. 创建vue组件3. 解释代码在Vue.js项目中导出Excel文件,使用第三

Linux alias的三种使用场景方式

《Linuxalias的三种使用场景方式》文章介绍了Linux中`alias`命令的三种使用场景:临时别名、用户级别别名和系统级别别名,临时别名仅在当前终端有效,用户级别别名在当前用户下所有终端有效... 目录linux alias三种使用场景一次性适用于当前用户全局生效,所有用户都可调用删除总结Linux

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3