Cocos2d-x源代码解析(1)——地图模块(1)
cocos通过加载tiled 生成的tmx文件来生成游戏地图。本文主要分析cocos加载地图模块的源代码。
如图所看到的,地图加载模块由以上几个类组成。
对外的入口是类CCTMXTiledMap,在使用该类时。程序猿不须要知道其底层的其它类便可解析tmx文件生成地图。
那么。我们首先分析类CCTMXTiledMap是怎样调用其它类进行解析,该类的声明例如以下:
class CC_DLL CCTMXTiledMap :public CCNode
{
/** the map's size property measured intiles */
CC_SYNTHESIZE_PASS_BY_REF(CCSize,m_tMapSize, MapSize);
/** the tiles's size property measured inpixels */
CC_SYNTHESIZE_PASS_BY_REF(CCSize,m_tTileSize, TileSize);
/** map orientation */
CC_SYNTHESIZE(int, m_nMapOrientation,MapOrientation);
/** object groups */
CC_PROPERTY(CCArray*, m_pObjectGroups,ObjectGroups);
/** properties */
CC_PROPERTY(CCDictionary*, m_pProperties,Properties);
public:
/**
* @js ctor
*/
CCTMXTiledMap();
/**
* @js NA
* @lua NA
*/
virtual ~CCTMXTiledMap(); /** creates a TMX Tiled Map with a TMXfile.*/
static CCTMXTiledMap* create(const char*tmxFile); /** initializes a TMX Tiled Map with a TMXformatted XML string and a path to TMX resources */
static CCTMXTiledMap* createWithXML(constchar* tmxString, const char* resourcePath); /** initializes a TMX Tiled Map with a TMXfile */
bool initWithTMXFile(const char *tmxFile); /** initializes a TMX Tiled Map with a TMXformatted XML string and a path to TMX resources */
bool initWithXML(const char* tmxString,const char* resourcePath); /** return the TMXLayer for the specificlayer
* @js getLayer
*/
CCTMXLayer* layerNamed(const char*layerName); /** return the TMXObjectGroup for thespecific group
* @js getObjectGroup
*/
CCTMXObjectGroup* objectGroupNamed(constchar *groupName); /** return the value for the specificproperty name
* @js getProperty
*/
CCString *propertyNamed(const char*propertyName); /** return properties dictionary for tileGID */
CCDictionary* propertiesForGID(int GID); private:
CCTMXLayer *parseLayer(CCTMXLayerInfo *layerInfo, CCTMXMapInfo *mapInfo);
CCTMXTilesetInfo *tilesetForLayer(CCTMXLayerInfo *layerInfo, CCTMXMapInfo *mapInfo);
void buildWithMapInfo(CCTMXMapInfo*mapInfo);
protected:
//! tile properties
CCDictionary* m_pTileProperties; };
通过查看函数实现,我们发现函数
/** creates a TMX Tiled Map with a TMX file.*/
static CCTMXTiledMap* create(const char*tmxFile);
通过调用函数
/** initializes a TMX Tiled Mapwith a TMX file */
bool initWithTMXFile(const char *tmxFile);
来实现文件的解析。并创建一个CCTMXTiledMap对象返回给使用者。
boolCCTMXTiledMap::initWithTMXFile(const char *tmxFile)
{
CCAssert(tmxFile != NULL &&strlen(tmxFile)>0, "TMXTiledMap: tmx file should not bi NULL"); setContentSize(CCSizeZero); CCTMXMapInfo *mapInfo =CCTMXMapInfo::formatWithTMXFile(tmxFile); if (! mapInfo)
{
return false;
}
CCAssert(mapInfo->getTilesets()->count() != 0, "TMXTiledMap: Map not found.Please check the filename.");
buildWithMapInfo(mapInfo); return true;
}
通过看源代码。我们发现有2个重要的函数 CCTMXMapInfo::formatWithTMXFile(tmxFile)和buildWithMapInfo(mapInfo),看名字应该能知道formatWithTMXFile是解析XML文件将其结构化。buildWithMapInfo是将结构化的数据变成CCNode从而显示在游戏界面上。
接下来,我们查看CCTMXMapInfo是怎样组织数据以及怎样解析XML文件的,首先我们还是查看CCTMXMapInfo的声明
class CC_DLL CCTMXMapInfo :public CCObject, public CCSAXDelegator
{
public:
/// map orientation
CC_SYNTHESIZE(int, m_nOrientation, Orientation);
/// map width & height
CC_SYNTHESIZE_PASS_BY_REF(CCSize,m_tMapSize, MapSize);
/// tiles width & height
CC_SYNTHESIZE_PASS_BY_REF(CCSize,m_tTileSize, TileSize);
/// Layers
CC_PROPERTY(CCArray*, m_pLayers, Layers);
/// tilesets
CC_PROPERTY(CCArray*, m_pTilesets,Tilesets);
/// ObjectGroups
CC_PROPERTY(CCArray*, m_pObjectGroups,ObjectGroups);
/// parent element
CC_SYNTHESIZE(int, m_nParentElement,ParentElement);
/// parent GID
CC_SYNTHESIZE(unsigned int, m_uParentGID,ParentGID);
/// layer attribs
CC_SYNTHESIZE(int, m_nLayerAttribs,LayerAttribs);
/// is storing characters?
CC_SYNTHESIZE(bool, m_bStoringCharacters,StoringCharacters);
/// properties
CC_PROPERTY(CCDictionary*, m_pProperties,Properties);
public:
/**
* @js ctor
* @lua NA
*/
CCTMXMapInfo();
/**
* @js NA
* @lua NA
*/
virtual ~CCTMXMapInfo();
/** creates a TMX Format with a tmx file */
static CCTMXMapInfo *formatWithTMXFile(const char *tmxFile);
/** creates a TMX Format with an XML stringand a TMX resource path */
static CCTMXMapInfo * formatWithXML(constchar* tmxString, const char* resourcePath);
/** initializes a TMX format with a tmx file
* @lua NA
*/
bool initWithTMXFile(const char *tmxFile);
/** initializes a TMX format with an XMLstring and a TMX resource path
* @lua NA
*/
bool initWithXML(const char* tmxString,const char* resourcePath);
/** initializes parsing of an XML file,either a tmx (Map) file or tsx (Tileset) file */
bool parseXMLFile(const char *xmlFilename);
/* initializes parsing of an XML string,either a tmx (Map) string or tsx (Tileset) string */
bool parseXMLString(const char *xmlString); CCDictionary* getTileProperties();
void setTileProperties(CCDictionary*tileProperties); /** implement pure virtual methods ofCCSAXDelegator
* @js NA
*/
void startElement(void *ctx, const char*name, const char **atts);
/**
* @js NA
*/
void endElement(void *ctx, const char*name);
/**
* @js NA
*/
void textHandler(void *ctx, const char *ch,int len); inline const char* getCurrentString(){return m_sCurrentString.c_str(); }
inline void setCurrentString(const char*currentString){ m_sCurrentString = currentString; }
inline const char* getTMXFileName(){ returnm_sTMXFileName.c_str(); }
inline void setTMXFileName(const char*fileName){ m_sTMXFileName = fileName; }
private:
void internalInit(const char* tmxFileName,const char* resourcePath);
protected:
//! tmx filename
std::string m_sTMXFileName;
// tmx resource path
std::string m_sResources;
//! current string
std::string m_sCurrentString;
//! tile properties
CCDictionary* m_pTileProperties;
unsigned int m_uCurrentFirstGID;
};
通过查看声明 我们发现CCTMXMapInfo主要包含下面几个数据:
- TMXLayerInfo的数组,用来存放地图信息
- TMXTilesetInfo的数组,用来存放块信息
- ObjectGroups的数组
另外。CCTMXMapInfo中有几个重要的函数:
bool initWithXML(const char* tmxString, constchar* resourcePath);
/** initializes parsing of an XML file,either a tmx (Map) file or tsx (Tileset) file */
bool parseXMLFile(const char *xmlFilename);
/* initializes parsing of an XML string, eithera tmx (Map) string or tsx (Tileset) string */
bool parseXMLString(const char *xmlString);
这3个函数是libxml2中所须要解析xml的代理函数,分别表示标签的開始,标签的结束,标签的内容
解析xml的标签就在这几个函数中。
Cocos2d-x源代码解析(1)——地图模块(1)的更多相关文章
- Android xUtils3源代码解析之网络模块
本文已授权微信公众号<非著名程序猿>原创首发,转载请务必注明出处. xUtils3源代码解析系列 一. Android xUtils3源代码解析之网络模块 二. Android xUtil ...
- Cocos2d-x源代码解析(1)——地图模块(3)
接上一章<Cocos2d-x源代码解析(1)--地图模块(2)> 通过前面两章的分析,我们能够知道cocos将tmx的信息结构化到 CCTMXMapInfo.CCTMXTilesetInf ...
- thttpd源代码解析 定时器模块
thttpd源代码解析 定时器模块 thttpd是很轻量级的httpserver,可运行文件仅50kB.名称中的第一个t表示tiny, turbo, 或throttling 与lighttpd.mem ...
- 《nginx源代码解析》系列分享专栏
<nginx源代码解析>系列分享专栏 解析nginx源代码,从main函数开始,一步步解读nginx运行原理,同时进行nginx第三方模块的开发,努力做到知其然,知其所以然 <ngi ...
- linux device tree源代码解析--转
//Based on Linux v3.14 source code Linux设备树机制(Device Tree) 一.描述 ARM Device Tree起源于OpenFirmware (OF), ...
- Android源代码解析之(十三)-->apk安装流程
转载请标明出处:一片枫叶的专栏 上一篇文章中给大家分析了一下android系统启动之后调用PackageManagerService服务并解析系统特定文件夹.解析apk文件并安装的过程,这个安装过程实 ...
- Spark技术内幕:Client,Master和Worker 通信源代码解析
Spark的Cluster Manager能够有几种部署模式: Standlone Mesos YARN EC2 Local 在向集群提交计算任务后,系统的运算模型就是Driver Program定义 ...
- Spring源代码解析
Spring源代码解析(一):IOC容器:http://www.iteye.com/topic/86339 Spring源代码解析(二):IoC容器在Web容器中的启动:http://www.itey ...
- python 解析XML python模块xml.dom解析xml实例代码
分享下python中使用模块xml.dom解析xml文件的实例代码,学习下python解析xml文件的方法. 原文转自:http://www.jbxue.com/article/16587.html ...
随机推荐
- 初始Hibernate4
Hibernate是一个ORM的轻量级框架,解决持久化操作,使得程序员可以从编写繁复的jdbc的工作中解放出来,专注与业务,提高我们的开发效率.移植性. 1.持久化 a) 侠义概念:数据存储在物 ...
- Linux Shall命令入门
Linux Shall命令入门 ifconfig //查看ip信息 service network start ...
- android 同一个service启动之后 能不能被绑定bind
韩梦飞沙 韩亚飞 313134555@qq.com yue31313 han_meng_fei_sha 可以 startService 启动了一个服务,这个服务可以再调用 bindServic ...
- 51nod1515 明辨是非 并查集 + set
一开始想的时候,好像两个并查集就可以做......然后突然懂了什么.... 相同的并查集没有问题,不同的就不能并查集了,暴力的来个set就行了..... 合并的时候启发式合并即可做到$O(n \log ...
- luoguP3239 [HNOI2015]亚瑟王 概率期望DP
当初怎么想的来着.....又忘了...... 首先,总期望 = 每张卡片的期望之和 求期望,只要我们求出每张卡片被用掉的概率即可 如果直接上状态$f[i][j]$表示在第$i$轮中,第$j$张牌发动的 ...
- PHPredis长连接pconnect
1. 当使用pconnect时,连接会被重用,连接的生命周期是fpm进程的生命周期,而非一次php的执行. 疑惑1: fpm进程的生命周期是指 当前那个还是指所有: php-fpm通常是1个ma ...
- 《python学习手册》第35章 异常的设计
嵌套异常处理器 其实我们主要需要搞清楚的问题应该是这样的,当异常发生的时候,无论是简单的异常处理还是复杂的异常处理,我们都应该能够清楚的了解到异常运行到哪里,被谁捕获了,现在控制权到了哪里了,下面我们 ...
- Linux知识(6)----VIM
vi的第一版是由Bill Joy在1978年写成的,当时他是UC Berkeley的学生.后来他共同创建了神奇的Sun公司.vi来源于visual一词,目标是在终端上可视化地模拟文本的编辑,是的更人性 ...
- MySQL删除数据Delete与Truncate语句使用比较
在MySQL数据库中,DELETE语句和TRUNCATE TABLE语句都可以用来删除数据,但是这两种语句还是有着其区别的,下文就为您介绍这二者的差别所在 空mysqll表内容常见的有两种方法:一种d ...
- Linux系统中/dev/mtd与/dev/mtdblock的区别,即MTD字符设备和块设备的区别
转:http://www.crifan.com/linux_system_in__dev__mtd_and__dev__mtdblock_distinction_character_devices_a ...