Cocos2d-x 3.2 大富翁游戏项目开发-第八部分 角色的散步路径
获得所述路径之后。我们将能够使根据的步行路径的作用,当您点击gobutton什么时候。我们呼吁player的startGo()办法。传入的参数是保存路径2一维数组
void GameBaseScene::goButtonCallback(cocos2d::CCObject *pSender)
{
RouteNavigation::getInstance()->getPath(player1,3,canPassGrid,tiledRowsCount,tiledColsCount);
std::vector<int> colVector = RouteNavigation::getInstance()->getPathCols_vector();
std::vector<int> rowVector = RouteNavigation::getInstance()->getPathRow_vector();
for(int i=0;i<rowVector.size();i++)
{
log(" rowVector row is %d --- colVector col is %d",rowVector[i],colVector[i]);
}
//调用RicherPlayer类的startGo方法
player1->startGo(rowVector,colVector);
}
给类RicherPlayer加入对应的startGo方法
void RicherPlayer::startGo(std::vector<int> rowVector,std::vector<int> colVector)
{
//获取游戏控制器RicherGameController。调用当中的startRealGo()方法。開始真正的角色行走
RicherGameController* rgController = RicherGameController::create();
addChild(rgController);
rgController->startRealGo(rowVector,colVector,this);
}
void RicherGameController::startRealGo(std::vector<int> rowVector,std::vector<int> colVector,RicherPlayer* richerPlayer)
{
currentRow = rowVector[0]; currentCol = colVector[0]; //获取第一个位置的行列值
nextRow =0; nextCol =0; //下一步的行列值
//创建上下左右的动作,并放入缓存
if(!AnimationCache::getInstance()->animationByName("left_animation"))
{
AnimationCache::getInstance()->addAnimation(Animation::createWithSpriteFrames(richerPlayer->getAnim_left_vector(),playerGoPerFrameTime),"left_animation");
}
if(!AnimationCache::getInstance()->animationByName("right_animation"))
{
AnimationCache::getInstance()->addAnimation(Animation::createWithSpriteFrames(richerPlayer->getAnim_right_vector(),playerGoPerFrameTime),"right_animation");
}
if(!AnimationCache::getInstance()->animationByName("down_animation"))
{
AnimationCache::getInstance()->addAnimation(Animation::createWithSpriteFrames(richerPlayer->getAnim_down_vector(),playerGoPerFrameTime),"down_animation");
}
if(!AnimationCache::getInstance()->animationByName("up_animation"))
{
AnimationCache::getInstance()->addAnimation(Animation::createWithSpriteFrames(richerPlayer->getAnim_up_vector(),playerGoPerFrameTime),"up_animation");
}
//从缓存中取得上下左右的动作。创建对应的动画
left = Animate::create(AnimationCache::getInstance()->animationByName("left_animation"));
right =Animate::create( AnimationCache::getInstance()->animationByName("right_animation"));
down =Animate::create(AnimationCache::getInstance()->animationByName("down_animation"));
up = Animate::create(AnimationCache::getInstance()->animationByName("up_animation"));
//retain 一下,引用计数加一,防止动画被清除
left->retain();
right ->retain();
down->retain();
up->retain();
//依据參数给对应变量赋值
_rowVector=rowVector;
_colVector=colVector;
_richerPlayer =richerPlayer;
stepHasGone = 0;//角色已经走了几步
stepsCount = _rowVector.size()-1;//取得路径须要走的步数,由于第一个是当前位置的行列。所以不计入步数
moveOneStep();//開始行走。先走一步,走完一步后,再走下一步
}
void RicherGameController::moveOneStep()
{
//获取下一步行列,计算同当前行列的差值
nextRow = _rowVector[stepHasGone+1];
nextCol = _colVector[stepHasGone+1];
int distanceRow = nextRow - currentRow;
int distanceCol = nextCol - currentCol; MoveBy* moveBy; Repeat* repeate; Action* spawnAction;
//依据行列的差值,创建上下左右对应的动作,包含移动和行走的动画 if(distanceRow >0)//up
{
moveBy = MoveBy::create(playerGoTotalTime,ccp(0,tiledHeight));
repeate = Repeat::create(up,1);
}
if(distanceRow <0)//down
{
moveBy = MoveBy::create(playerGoTotalTime,ccp(0,-tiledHeight));
repeate = Repeat::create(down,1);
}
if(distanceCol >0)//right
{
moveBy = MoveBy::create(playerGoTotalTime,ccp(tiledWidth,0));
repeate = Repeat::create(right,1);
}
if(distanceCol <0)//left
{
moveBy = MoveBy::create(playerGoTotalTime,ccp(-tiledWidth,0));
repeate = Repeat::create(left,1);
}
//创建同步动画,当移动完成,运行callEndGoFunc方法,进而调用endGo()方法
spawnAction = Sequence::create(Spawn::create(moveBy,repeate,NULL),callEndGoFunc,NULL);
_richerPlayer->runAction(spawnAction);
}
void RicherGameController::endGo()
{
stepHasGone++;//走完一步后,已走步数加1
if(stepHasGone >= stepsCount) //假设已走步数大于等于总步数,返回
{
return;
}
currentRow = nextRow;
currentCol = nextCol;//当前行列赋值为下一行列
moveOneStep();//開始下一步的移动
log("go end");
}
经过測试发现,角色会来回走动。走过去了还走回来。所以我们须要给角色类Player加入 表示角色从哪个位置过来的属性
改动RouteNavigation类的getPath()方法
void RouteNavigation::getPath(RicherPlayer* player,int stepsCount,bool** canPassGrid,int gridRowsCount,int gridColsCount)
{…………………………..
int rowtemp = player->getComeFromeRow();
int coltemp = player->getComeFromCol();
if(rowtemp <=-1 || coltemp <= -1)
{
player->setComeFromCol(currentCol);
player->setComeFromeRow(currentRow);
}
//设置角色从哪里来的位置为false ,以表示不可通过
canPassGrid_copy[player->getComeFromeRow()][player->getComeFromCol()] = false;
………………………..
//获取完路径后,设置角色的来自的位置
player->setComeFromCol(pathCols_vector[pathCols_vector.size()-2]);
player->setComeFromeRow(pathRow_vector[pathRow_vector.size()-2]);
}
測试发现角色最终能够正常走动了
流程图例如以下
眼下为止,代码写的相对较多了,有必要又一次整理一下,下部分。我们进行一下代码优化。便于后期的继续开发。
点击下载代码 http://download.csdn.net/detail/lideguo1979/8292407
未完待续........................
版权声明:本文博主原创文章,博客,未经同意不得转载。
Cocos2d-x 3.2 大富翁游戏项目开发-第八部分 角色的散步路径的更多相关文章
- Cocos2d-x 3.2 大富翁游戏项目开发-第七部分 获取角色路径_3
点击下载代码 http://download.csdn.net/detail/lideguo1979/8291803 新建一个类RouteNavigation,定义getPath()方法.用来获取 ...
- Cocos2d-x 3.2 大富翁游戏项目开发-第七部分 获取角色路径_1
以下是一些设计略显繁琐,有必要清除思维. 下一个主要的成就,当我们点击Gobutton后,得到一个随机数骰子,是走了几步,它是基于以下步骤行走路径的数目,然后移动位置的基于角色的路径. 流程如图普遍认 ...
- Cocos2d-x 3.2 大富翁游戏项目开发-第五部分 单机游戏-级别选择ScrollView
于MenuScene.cpp 点击单机游戏后会调用 Director::getInstance()->pushScene(MapChooseScene::createScene()); 进入到关 ...
- Cocos2d-x 3.2 大富翁游戏项目开发-第七部分 获取角色路径_2
在编写获取路径方法前,我们先把角色须要的动画文件载入进来,角色的文件为png 和 plist格式. player1_anim.png.plist player1_anim.pn ...
- iOS开发UI篇—Quartz2D使用(绘图路径)
iOS开发UI篇—Quartz2D使用(绘图路径) 一.绘图路径 A.简单说明 在画线的时候,方法的内部默认创建一个path.它把路径都放到了path里面去. 1.创建路径 cgmutablepat ...
- 使用Jquery+EasyUI 进行框架项目开发案例讲解之三---角色管理源码分享
使用Jquery+EasyUI 进行框架项目开发案例讲解之三 角色管理源码分享 在上两篇文章 <使用Jquery+EasyUI进行框架项目开发案例讲解之一---员工管理源码分享> ...
- 网站开发进阶(四十三)html中,路径前加“/” 与不加“/”的区别
网站开发进阶(四十三)html中,路径前加"/" 与不加"/"的区别 前言 <script src="js/downloadify.js&quo ...
- Qt移动应用开发(八):实现跨平台的QML和OpenGL混合渲染
Qt移动应用开发(八):实现跨平台的QML和OpenGL混合渲染 上一篇文章讲到了利用C++这个桥梁,我们实现了QML和Java的交互.Qt 5大力推崇的QML/JS开发,让轻量.高速开发的QML/J ...
- Solon 开发,八、注入依赖与初始化
Solon 开发 一.注入或手动获取配置 二.注入或手动获取Bean 三.构建一个Bean的三种方式 四.Bean 扫描的三种方式 五.切面与环绕拦截 六.提取Bean的函数进行定制开发 七.自定义注 ...
随机推荐
- 初识Mongodb之[CURD]-PHP版
行动 在了实践之前,希望大家看一下上面的学习资源,了解一下基本操作. 数据连接初始账号password 账号:admin password:admin 首先我们建立一个文件:mongodb.php,设 ...
- 浅析JAVA设计模式之工厂模式(一)
1 工厂模式简单介绍 工厂模式的定义:简单地说,用来实例化对象,取代new操作. 工厂模式专门负责将大量有共同接口的类实例化.工作模式能够动态决定将哪一个类实例化.不用先知道每次要实例化哪一个类. 工 ...
- 基于.net开发chrome核心浏览器【二】
原文:基于.net开发chrome核心浏览器[二] 一: 上一篇的链接: 基于.net开发chrome核心浏览器[一] 二: 相关资源介绍: chrome Frame: 让IE有一颗chrome的心, ...
- js 自定义方法 实现停留几秒 sleep
function sleep(numberMillis) { var now = new Date(); var exitTime = now.getTime() + numberMillis; wh ...
- 在centos上部署java WEB环境
题语:偷得浮生半日闲,趁着十一期间,好好的写写随笔来记录自己所学.所践和所得,不足之处,欢迎各位拍砖~~~ 工具:Xftp 5.Xshell 5 一.安装jdk 1. 使用Xftp 5把jdk-8u ...
- Apache Phoenix JDBC 驱动和Spring JDBCTemplate的集成
介绍:Phoenix查询引擎会将SQL查询转换为一个或多个HBase scan,并编排运行以生成标准的JDBC结果集. 直接使用HBase API.协同处理器与自己定义过滤器.对于简单查询来说,其性能 ...
- 染色法判断是否是二分图 hdu2444
用染色法判断二分图是这样进行的,随便选择一个点, 1.把它染成黑色,然后将它相邻的点染成白色,然后入队列 2.出队列,与这个点相邻的点染成相反的颜色 根据二分图的特性,相同集合内的点颜色是相同的,即 ...
- hash表、hash算法
概念: 散列表(Hash table.也叫哈希表),是依据关键码值(Key value)而直接进行訪问的数据结构. 也就是说,它通过把关键码值映射到表中一个位置来訪问记录,以加快查找的速度.这个映射函 ...
- c++学习笔记4,调用派生类的顺序构造和析构函数(一个)
测试源代码: //測试派生类的构造函数的调用顺序何时调用 //Fedora20 gcc version=4.8.2 #include <iostream> using namespace ...
- Git使用总结-so easy
一.Git的特性 Speed 速度(git是用c语言写的.一般都是提交到本地) Simple design Strong support for non-linear development (tho ...