博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cocos2d-x 2.x 升级为 3.x 常见变化纪录
阅读量:5315 次
发布时间:2019-06-14

本文共 3164 字,大约阅读时间需要 10 分钟。

1.去CC
之前2.0的CC**,把CC都去掉,主要的元素都是保留的
2.0
CCSprite  CCCallFunc CCNode ..
3.0
Sprite CallFunc Node ..

2.cc***结构体改变
2.0        
ccp(x,y)        
ccpAdd(p1,p2)
ccpSub
ccpMult
ccpLength(p)
ccpDot(p1,p2);
ccc3()
ccc4()
ccWHITE
CCPointZero
CCSizeZero
3.0
Point(x,y)
p1+p2;
p1-p2
p1*p2
p.getLength()
p1.dot(p2)
Color3B()
Color4B()
Color3B::WHITE
Point::ZERO
Size:ZERO
3.shared***改变
2.0
CCSize winSize = CCDirector::sharedDirector()->getWinSize();
SpriteFrameCache::sharedSpriteFrameCache()
AnimationCache::sharedAnimationCache()
NotificationCenter::sharedNotificationCenter()
3.0
Size size = Director::getInstance()->getWinSize();
SpriteFrameCache::getInstance()
AnimationCache::getInstance()
NotificationCenter::getInstance()

4.POD类别
使用const为Point。Size,Rect进行常量修饰
2.0
void setPoint(CCPoint p)
3.0
void setPoint(
const Point& p)

5.点触事件
此部分全面更新採用Event Listener
auto dispatcher = Director::getInstance()->getEventDispatcher();
auto touchListener = EventListenerTouchOneByOne::create();
touchListener->onTouchBegan = CC_CALLBACK_2(FBMainScene::onTouchBegan,
this);
touchListener->onTouchMoved = CC_CALLBACK_2(FBMainScene::onTouchMoved,
this);
touchListener->onTouchEnded = CC_CALLBACK_2(FBMainScene::onTouchEnded, 
this);
dispatcher->addEventListenerWithSceneGraphPriority(touchListener, 
this);
bool FBMainScene::onTouchBegan(Touch *touch,Event *pEvent){
    CCLOG("onTouchBegan");
    Point point = 
this->convertToWorldSpace(
this->convertTouchToNodeSpace(touch));
    
return 
true;
}
void FBMainScene::onTouchMoved(Touch *touch,Event *pEvent){
    CCLOG("onTouchMoved");
}
void FBMainScene::onTouchEnded(Touch *touch,Event *pEvent){
    CCLOG("onTouchEnded");
}
//获得触点的方法也发生了改变:
Point point = 
this->convertToWorldSpace(
this->convertTouchToNodeSpace(touch));
//dispatcher控制方法:
dispatcher->addEventListener…
dispatcher->removeEventListener(listener);
dispatcher->removeAllListeners();

6.CC_CALLBACK_*
CC_CALLBACK_0 CC_CALLBACK_1 CC_CALLBACK_2 CC_CALLBACK_3
回调函数。分别携带不同的參数。方便
2.0
CCMenuItemFont *item = CCMenuItemFont::create("返回上个场景", 
this, menu_selector(GameScene::backScene));
3.0
MenuItemFont *item = MenuItemLabel::create("返回上个场景", CC_CALLBACK_1(GameScene::backScene, 
this));
//
 new callbacks based on C++11
#define CC_CALLBACK_0(__selector__,__target__, 
) std::bind(&__selector__,__target__, ##__VA_ARGS__)
#define CC_CALLBACK_1(__selector__,__target__, 
) std::bind(&__selector__,__target__, std::placeholders::_1, ##__VA_ARGS__)
#define CC_CALLBACK_2(__selector__,__target__, 
) std::bind(&__selector__,__target__, std::placeholders::_1, std::placeholders::_2, ##__VA_ARGS__)
#define CC_CALLBACK_3(__selector__,__target__, 
) std::bind(&__selector__,__target__, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3 ##__VA_ARGS__)

7.使用"Function"对象
CallFunc::create([&](){
        Sprite *sprite = Sprite::create("s");
        
this->addChild(sprite);
});

8.使用clone取代copy
2.0
CCMoveBy *action = (CCMoveBy*) move->copy();
action->autorelease();
3.0
action = move->clone();
不须要autorelease,在clone已经实现。


9.Physics Integration 物理引擎
box2d 在 3.0中能够延续使用
在3.0的Physics中须要定义 PhysicsWorld, PhysicsBody, PhysicsShape, PhysicsJoint 等,于box2d相仿,使用前须要定义CC_USE_PHYSICS
……继续等待补充

转载于:https://www.cnblogs.com/cxchanpin/p/7338494.html

你可能感兴趣的文章
2019.02.15 bzoj5210: 最大连通子块和(链分治+ddp)
查看>>
redis cluster 集群资料
查看>>
Junit使用教程(一)
查看>>
Python接口测试-使用requests模块发送post请求
查看>>
混合模式程序集是针对“v2.0.50727”版的运行时生成的,在没有配置其他信息的情况下,无法在 4.0 运行时中加载该程序集。...
查看>>
jQuery总结或者锋利的jQuery笔记二
查看>>
前后端协作--服务器渲染与前后端分离
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
微软职位内部推荐-SOFTWARE ENGINEER II
查看>>
GDB调试
查看>>
centos系统python2.7更新到3.5
查看>>
一个通用的单元测试框架的思考和设计09-实现篇-视图操作
查看>>
【Quartz】常用方法的使用方式(三)
查看>>
MVVM模式下关闭窗口的实现
查看>>
背水一战 Windows 10 (11) - 资源: CustomResource, ResourceDictionary, 加载外部的 ResourceDictionary 文件...
查看>>
SqlServer 更改复制代理配置文件参数及两种冲突策略设置
查看>>
C#区域截图——调用API截图
查看>>
c#与java中byte字节的区别及转换方法
查看>>
A WebBrowser Toy
查看>>
用MyXls生成Excel报表(C#)
查看>>