openGL & UI坐标体系
OpenGL坐标系:该坐标原点在屏幕左下角,x轴向右,y轴向上。这也就是cocos2dx中用到的坐标系。
屏幕坐标系:该坐标系的原点在屏幕左上角,x轴向右,y轴向下,其实和OpenGL坐标系的差别也就是y轴的方向。假设游戏场景的分辨率为(500,500),其中一个点坐标为(200,200),那么它在OpenGL坐标系中的坐标还是(200,200),在屏幕坐标系中则倒过来,则为(200,500-200)。其实也就是6和9的差别。
图: UI坐标系 |
图: GL坐标系 |
2 转化函数
CCDirector::sharedDirector()->convertToUI(); |
CCDirector::sharedDirector()->convertToGL(); |
节点坐标系:又名相对坐标系,本地坐标,和OpenGL坐标系方向一致,不同的是原点的父节点左下角。
世界坐标系:又名绝对坐标系,世界即指游戏世界,我们只要知道世界坐标系和OpenGL坐标系方向一致,原点在屏幕左下角,x轴向右,y轴向上。
节点坐标与世界坐标转化
几乎所有的游戏引擎都会使用本地坐标系而非世界坐标系来指定元素
的位置,这样做的好处是当计算物体运动的时候使用同一本地坐标系的元素
可以作为一个子系统独立计算,最后再加上坐标系的运动即可,这是物理研
究中常用的思路。例如一个在行驶的车厢内上下跳动的人,我们只需要在每
帧绘制的时候计算他在车厢坐标系中的位置,然后加上车的位置就可以计算
出人在世界坐标系中的位置,如果使用单一的世界坐标系,人的运动轨迹就
变复杂了。
3 关于坐标体系的案例:
Coordinate.h |
#ifndef __COORDINATE_H__ #define __COORDINATE_H__
#include "cocos2d.h" USING_NS_CC;
//坐标体系 class Coordinate :public cclayer { public: static CCScene * scene(); CREATE_FUNC(Coordinate); bool init();
//触摸事件开始的一个事件,第二个参数只是为了做苹果的兼容才保留的 virtual bool cctouchBegan(CCtouch *ptouch,CCEvent *pEvent); };
#endif |
Coordinate.cpp |
#include "Coordinate.h" #include "AppMacros.h"
CCScene * Coordinate::scene() { scene = CCScene::create(); Coordinate * layer = create(); scene->addChild(layer); return scene; }
bool init() { cclayer::init(); //打开触摸开关 settouchEnabled(true);
//下面的kCCtouchesOneByOne是一个枚举: //typedef enum { // kCCtouchesAllAtOnce, // kCCtouchesOneByOne, //} cctouchesMode; settouchMode(kCCtouchesOneByOne);
//创建一个精灵 CCSprite *big = CCSprite::create(); big->setcolor(ccRED); //设置锚点 big->setAnchorPoint(ccp(0,0)); //表示的是一个矩形,CCRectMake是一个宏 big->setTextureRect(CCRectMake(0,150,150)); big->setposition(ccp(100,100)); addChild(big);
CCSprite *little = create(); little->setcolor(ccYELLOW); little-> little-> little-> //从下面可以知道一个精灵中可以添加另外一个精灵 big->addChild(little);
cclog("little x = %f,y = %f",little->getpositionX(),0); Font-family:新宋体; Font-size:9.5pt">getpositionY()); CCPoint toWorld = big->convertToWorldspace(little->getposition()); "toWorld x = %f,y=%f",toWorld.x,toWorld.y);
CCSprite *little2 = create(); little2->setcolor(ccGREEN); little2-> little2-> little2-> addChild(little2);
CCPoint toNode = big->convertToNodeSpace(little2->"little2 x = %f,little2->getpositionY()); "toNode x = %f,toNode.x,toNode.y);
CCMoveBy *by = CCMoveBy::create(2,ccp(200,0)); CCMoveBy *by2 = (CCMoveBy *)by->reverse(); //最后一个NulL是一个哨兵 CCSequence *seq = CCSequence::create(by,by2,138); Font-family:新宋体; Font-size:9.5pt">NulL); big->runAction(CCRepeatForever::create(seq));
//第一个参数是:duration //第二个参数是:移动位置.表示上下移动 CCMoveBy *lby = CCMoveBy *lby2 = (CCMoveBy *)lby->reverse(); CCSequence *lseq = create(lby,lby2,138); Font-family:新宋体; Font-size:9.5pt">NulL);
little->create(lseq));
return true; }
//触摸事件开始 bool CCEvent *pEvent) { "cctouchBegan"); //基于OpenGL的世界坐标 CCPoint pGl = ptouch->getLocation(); "GL:x = %f,pGl.x,pGl);
//基于UI屏幕的坐标 CCPoint pUi = ptouch->getLocationInVIEw(); "UI:x = %f,pUi.x,pUi.y);
//将基于GL的坐标转换成为UI的屏幕坐标 CCPoint toUi = CCDirector::sharedDirector()->convertToUI(pGl); "ToUix = %f,toUi.x,toUi.y);
//将屏幕坐标的转换成为本地坐标 CCPoint toGL = convertToGL(pUi); "ToGLx = %f,toGL.x,toGL.y);
//转换成节点坐标 CCPoint node = this->convertToNodeSpace(pGl); "Node:x = %f,node.x,node.y);
return false; } |
运行结果:
|
以上是内存溢出为你收集整理的2.cocos2d-x坐标体系(UI坐标系,GL坐标系,本地坐标,世界坐标,节点坐标)全部内容,希望文章能够帮你解决2.cocos2d-x坐标体系(UI坐标系,GL坐标系,本地坐标,世界坐标,节点坐标)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)