资源简介
利用cocos2dx写的A星自动寻路算法,为了大家能很好的理解,我画了程序流程图辅助大家理解算法。vs2012+cocos2dx 3.3 编写。
如果对于原理不太懂,可以到我的博客看原理,地址如下。
http://blog.csdn.net/u010946556/article/details/49027301
代码片段和文件信息
#include “AppDelegate.h“
#include “HelloWorldScene.h“
USING_NS_CC;
AppDelegate::AppDelegate()
{
}
AppDelegate::~AppDelegate()
{
}
bool AppDelegate::applicationDidFinishLaunching() {
// initialize director
auto director = Director::getInstance();
auto glview = director->getOpenGLView();
if(!glview) {
glview = GLViewImpl::createWithRect(“My Game“ Rect(0 0 640 480) 1);
//glview->setframeSize(320 320);
director->setOpenGLView(glview);
}
glview->setDesignResolutionSize(640 480 ResolutionPolicy::FIXED_WIDTH);
// turn on display FPS
director->setDisplayStats(false);
// set FPS. the default value is 1.0/60 if you don‘t call this
director->setAnimationInterval(1.0 / 60);
// create a scene. it‘s an autorelease object
auto scene = HelloWorld::createScene();
// run
director->runWithScene(scene);
return true;
}
// This function will be called when the app is inactive. When comes a phone callit‘s be invoked too
void AppDelegate::applicationDidEnterBackground() {
Director::getInstance()->stopAnimation();
// if you use SimpleAudioEngine it must be pause
}
// this function will be called when the app is active again
void AppDelegate::applicationWillEnterForeground() {
Director::getInstance()->startAnimation();
// if you use SimpleAudioEngine it must resume here
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1405 2015-09-30 20:49 Classes\AppDelegate.cpp
文件 1284 2014-11-26 10:28 Classes\AppDelegate.h
文件 4593 2015-09-30 20:37 Classes\HelloWorldScene.cpp
文件 1324 2015-09-30 18:28 Classes\HelloWorldScene.h
文件 5442 2015-09-30 20:45 Classes\NinJa.cpp
文件 1790 2015-09-30 18:24 Classes\NinJa.h
文件 15925 2011-06-07 21:34 Resources\CatMaze.plist
文件 37328 2011-06-07 21:34 Resources\CatMaze.png
文件 707 2015-09-30 20:49 Resources\map\bgmap.tmx
文件 136166 2014-11-26 10:30 Resources\map\dg_grounds32.jpg
文件 1192 2015-09-21 21:02 Resources\map\NinJa.plist
文件 5947 2015-09-21 21:02 Resources\map\ninja.png
目录 0 2015-09-30 20:49 Resources\map
目录 0 2015-09-21 14:12 Classes
目录 0 2015-10-16 22:10 Resources
文件 241392 2015-10-16 22:04 a.jpg
----------- --------- ---------- ----- ----
454495 16
- 上一篇:2018 年成都人工智能前沿论坛总结
- 下一篇:AS3.0画板涂鸦板
相关资源
- DNF自动寻路径源码
- 虚幻4简单AI的实现:自动寻路,场景
- lua搓牌效果,已实现了四边
- cocos2dx实现自定义2D地形
- cocos2dx-3.0功能强大的richText控件源码
- 我所理解的Cocos2dx pdf 地址
- 17种cocos2d-x小游戏源码+素材,从2.x到
- Flash转cocos2dx骨骼动画
- 3dA*自动寻路算法
- 仿Flappy游戏cocos2dx3.0beta源码BY懒骨头
- CocosCreator小球发射线
- 将.pvr.ccz和plist文件还原为多个原图
- cocos引擎老版本集合cocos2d-x-2.2.1 - 3
- 微软雅黑字体
- spine-runtimes-3.8.rar
- A星寻路算法 MFC写的动态演示程序
- A星寻路画图功能
- 17种游戏源码+素材
- 半透明屏蔽罩和弹出框的实现
- cocos2dx 3.x宝石消除小游戏demo
- Cocos2dx游戏开发系列笔记18:《跑酷》
评论
共有 条评论