cocos2dx3.2 添加现成的VisibleRect使用更方便。

#ifndef __VISIBLERECT_H__

#define __VISIBLERECT_H__


#include "cocos2d.h"


class VisibleRect

{

public:

    static cocos2d::Rect getVisibleRect();


    static cocos2d::Vec2 left();

    static cocos2d::Vec2 right();

    static cocos2d::Vec2 top();

    static cocos2d::Vec2 bottom();

    static cocos2d::Vec2 center();

    static cocos2d::Vec2 leftTop();

    static cocos2d::Vec2 rightTop();

    static cocos2d::Vec2 leftBottom();

    static cocos2d::Vec2 rightBottom();

private:

    static void lazyInit();

    static cocos2d::Rect s_visibleRect;

};


#endif /* __VISIBLERECT_H__ */






/****************************************************************************

 Copyright (c) 2013-2014 Chukong Technologies Inc.


 http://www.cocos2d-x.org


 Permission is hereby granted, free of charge, to any person obtaining a copy

 of this software and associated documentation files (the "Software"), to deal

 in the Software without restriction, including without limitation the rights

 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

 copies of the Software, and to permit persons to whom the Software is

 furnished to do so, subject to the following conditions:


 The above copyright notice and this permission notice shall be included in

 all copies or substantial portions of the Software.


 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN

 THE SOFTWARE.

 ****************************************************************************/


#include "VisibleRect.h"


USING_NS_CC;


Rect VisibleRect::s_visibleRect;


void VisibleRect::lazyInit()

{

    // no lazy init

    // Useful if we change the resolution in runtime

    s_visibleRect = Director::getInstance()->getOpenGLView()->getVisibleRect();

}


Rect VisibleRect::getVisibleRect()

{

    lazyInit();

    return s_visibleRect;

}


Vec2 VisibleRect::left()

{

    lazyInit();

    return Vec2(s_visibleRect.origin.x, s_visibleRect.origin.y+s_visibleRect.size.height/2);

}


Vec2 VisibleRect::right()

{

    lazyInit();

    return Vec2(s_visibleRect.origin.x+s_visibleRect.size.width, s_visibleRect.origin.y+s_visibleRect.size.height/2);

}


Vec2 VisibleRect::top()

{

    lazyInit();

    return Vec2(s_visibleRect.origin.x+s_visibleRect.size.width/2, s_visibleRect.origin.y+s_visibleRect.size.height);

}


Vec2 VisibleRect::bottom()

{

    lazyInit();

    return Vec2(s_visibleRect.origin.x+s_visibleRect.size.width/2, s_visibleRect.origin.y);

}


Vec2 VisibleRect::center()

{

    lazyInit();

    return Vec2(s_visibleRect.origin.x+s_visibleRect.size.width/2, s_visibleRect.origin.y+s_visibleRect.size.height/2);

}


Vec2 VisibleRect::leftTop()

{

    lazyInit();

    return Vec2(s_visibleRect.origin.x, s_visibleRect.origin.y+s_visibleRect.size.height);

}


Vec2 VisibleRect::rightTop()

{

    lazyInit();

    return Vec2(s_visibleRect.origin.x+s_visibleRect.size.width, s_visibleRect.origin.y+s_visibleRect.size.height);

}


Vec2 VisibleRect::leftBottom()

{

    lazyInit();

    return s_visibleRect.origin;

}


Vec2 VisibleRect::rightBottom()

{

    lazyInit();

    return Vec2(s_visibleRect.origin.x+s_visibleRect.size.width, s_visibleRect.origin.y);

}


好啦,有了这个类,以后我们使用起来就更方便了,比如我要将精灵放在屏幕的中心可以这样:

    Sprite* background = Sprite::create("background.png");

    background->setPosition(VisibleRect::center());


原来的写法:

    

    Size visibleSize = Director::getInstance()->getVisibleSize();

    Vec2 origin = Director::getInstance()->getVisibleOrigin();    

    Sprite* background = Sprite::create("background.png");   

    background->setPosition(origin + visibleSize/2);

是不是变得更简单,更方便了呢?










  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值