axmol/core/ui/LayoutHelper.h

838 lines
28 KiB
C
Raw Normal View History

2019-11-24 23:15:56 +08:00
//
2020-08-04 00:14:35 +08:00
// Copyright (c) 2014-2020 Simdsoft Limited - All Rights Reserved
// This module is used by x-studio UI Editor to layout UI elements
2019-11-24 23:15:56 +08:00
// It's very useful for programer to operate UI elements in runtime,
// so, we publish it to here.
// usage:
2020-08-04 00:14:35 +08:00
// #include "ui/LayoutHelper.h"
2020-08-26 12:46:41 +08:00
// LayoutHelper::centerNode(node); // the node should be already have parent.
// LayoutHelper::makeVerticalSpacingEqual(nodes); // all the nodes shoud be in the same parent.
2021-12-25 10:04:45 +08:00
//
2020-08-04 00:14:35 +08:00
#pragma once
#ifndef _LAYOUTHELPER_H_
2021-12-25 10:04:45 +08:00
# define _LAYOUTHELPER_H_
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
# include "cocos2d.h"
# include "base/ccMacros.h"
2019-11-24 23:15:56 +08:00
// f(x) = s * a + x
2021-12-25 10:04:45 +08:00
# define adjust_coord(__sz__, __achor__, __coord__) ((__sz__) * (__achor__) + (__coord__))
2019-11-24 23:15:56 +08:00
// f(y) = y - s * a
2021-12-25 10:04:45 +08:00
# define adjust_coord_r(__sz__, __achor__, __coord__) ((__coord__) - (__sz__) * (__achor__))
2019-11-24 23:15:56 +08:00
// f(x) = S - (s - s * a + x)
2021-12-25 10:04:45 +08:00
# define adjust_coord_neg(__SZ__, __sz__, __achor__, __coord__) \
((__SZ__) - ((__sz__) - (__sz__) * (__achor__) + (__coord__)))
2019-11-24 23:15:56 +08:00
// f(y) = S - (s - s * a + y)
2021-12-25 10:04:45 +08:00
# define adjust_coord_neg_r adjust_coord_neg
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
# define center_coord(__SZ__, __sz__, __achor__) (((__SZ__) - (__sz__) + 2 * (__sz__) * (__achor__)) * 0.5f)
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
USING_NS_CC;
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
// inline Vec2 operator*(const Vec2& left, const cocos2d::Vec2& right)
2021-10-23 23:27:14 +08:00
//{
2021-12-25 10:04:45 +08:00
// return Vec2(left.width * right.x, left.height * right.y);
// }
2021-10-23 23:27:14 +08:00
2021-12-25 10:04:45 +08:00
struct CC_DLL LayoutHelper
{
2020-08-26 12:46:41 +08:00
2021-10-23 23:27:14 +08:00
static Vec2 s_designSize;
2020-08-26 12:46:41 +08:00
static float s_adjustedScale;
/// <summary>
/// adatpe design size with fixed edge, normally, use this function for screen adatpe
/// </summary>
/// <param name="designSize"></param>
2021-10-23 23:27:14 +08:00
static void setDesignSizeFixedEdge(const Vec2& designSize);
2020-08-26 12:46:41 +08:00
/// <summary>
/// adapte design size with no border
/// </summary>
/// <param name="designSize"></param>
2021-10-23 23:27:14 +08:00
static void setDesignSizeNoBorder(const Vec2& designSize);
2020-08-26 12:46:41 +08:00
static cocos2d::Vec2 getVisibleOrigin(void);
2021-10-23 23:27:14 +08:00
static Vec2 getVisibleSize(void);
2020-08-26 12:46:41 +08:00
/// align type defination
2021-12-25 10:04:45 +08:00
enum AlignType
{
ALIGN_NONE = 1 >> 1,
2020-08-26 12:46:41 +08:00
ALIGN_XCENTER = 1,
ALIGN_YCENTER = 1 << 1,
2021-12-25 10:04:45 +08:00
ALIGN_LEFT = 1 << 2,
ALIGN_RIGHT = 1 << 3,
ALIGN_TOP = 1 << 4,
ALIGN_BOTTOM = 1 << 5,
2020-08-26 12:46:41 +08:00
ALIGN_CENTER = ALIGN_XCENTER | ALIGN_YCENTER,
2021-12-25 10:04:45 +08:00
ALIGN_CT = ALIGN_XCENTER | ALIGN_TOP, // center top
ALIGN_CB = ALIGN_XCENTER | ALIGN_BOTTOM, // center bottom
2020-08-26 12:46:41 +08:00
2021-12-25 10:04:45 +08:00
ALIGN_LC = ALIGN_LEFT | ALIGN_YCENTER, // left center
ALIGN_LT = ALIGN_LEFT | ALIGN_TOP, // left top
ALIGN_LB = ALIGN_LEFT | ALIGN_BOTTOM, // left bottom
2020-08-26 12:46:41 +08:00
ALIGN_RC = ALIGN_RIGHT | ALIGN_YCENTER, // right center
ALIGN_RT = ALIGN_RIGHT | ALIGN_TOP, // right top
ALIGN_RB = ALIGN_RIGHT | ALIGN_BOTTOM, // right bottom
2019-11-24 23:15:56 +08:00
};
2021-12-25 10:04:45 +08:00
# define isIgnoreX(align) (align != ALIGN_LEFT) && (align != ALIGN_RIGHT)
# define isIgnoreY(align) (align != ALIGN_TOP) && (align != ALIGN_BOTTOM)
# define isIgnoreXY(align) (align == ALIGN_CENTER)
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
static cocos2d::Vec2 getScale2D(cocos2d::Node* pNode)
{
return cocos2d::Vec2(pNode->getScaleX(), pNode->getScaleY());
}
2020-08-26 12:46:41 +08:00
2021-12-25 10:04:45 +08:00
static float getNodeLeftX(cocos2d::Node* pNode)
{
2020-08-26 12:46:41 +08:00
return pNode->getPositionX() - pNode->getAnchorPoint().x * pNode->getContentSize().width * pNode->getScaleX();
}
2021-12-25 10:04:45 +08:00
static float getNodeRightX(cocos2d::Node* pNode)
{
return pNode->getPositionX() +
(1 - pNode->getAnchorPoint().x) * pNode->getContentSize().width * pNode->getScaleX();
2020-08-26 12:46:41 +08:00
}
2021-12-25 10:04:45 +08:00
static float getNodeTopY(cocos2d::Node* pNode)
{
return pNode->getPositionY() +
(1 - pNode->getAnchorPoint().y) * pNode->getContentSize().height * pNode->getScaleY();
2020-08-26 12:46:41 +08:00
}
2021-12-25 10:04:45 +08:00
static float getNodeBottomY(cocos2d::Node* pNode)
{
2020-08-26 12:46:41 +08:00
return pNode->getPositionY() + pNode->getAnchorPoint().y * pNode->getContentSize().height * pNode->getScaleY();
}
/* @brief: nodes_layout set node position
**
*/
/*
** @brief: setNodePosition with achor point modified
** @params
** pNode: the node to be set
** align: align type, see enum AlighType
** x: specify coord x.so
** y: specify coord y.
*/
static void setNodePosition(cocos2d::Node* pNode, const int align, float x, float y)
{
const AlignType alignType = (const AlignType)align;
2021-12-25 10:04:45 +08:00
if (alignType == ALIGN_NONE)
{
2020-08-26 12:46:41 +08:00
pNode->setPosition(x, y);
return;
}
2021-12-25 10:04:45 +08:00
if (alignType & ALIGN_XCENTER)
{
2020-08-26 12:46:41 +08:00
centerNodeX(pNode);
}
2021-12-25 10:04:45 +08:00
if (alignType & ALIGN_YCENTER)
{
2020-08-26 12:46:41 +08:00
centerNodeY(pNode);
}
2021-12-25 10:04:45 +08:00
if (alignType & ALIGN_LEFT)
{
2020-08-26 12:46:41 +08:00
setNodeLeft(pNode, x);
}
2021-12-25 10:04:45 +08:00
if (alignType & ALIGN_RIGHT)
{
2020-08-26 12:46:41 +08:00
setNodeRight(pNode, x);
}
2021-12-25 10:04:45 +08:00
if (alignType & ALIGN_TOP)
{
2020-08-26 12:46:41 +08:00
setNodeTop(pNode, y);
}
2021-12-25 10:04:45 +08:00
if (alignType & ALIGN_BOTTOM)
{
2020-08-26 12:46:41 +08:00
setNodeBottom(pNode, y);
}
}
/*
** @brief: setNodePosition with achor point modified
** @params
** pNode: the node to be set
** achorPoint: specify new achor point for the node
** align: align type, see enum AlighType
** x: specify coord x.
** y: specify coord y.
**
*/
2021-12-25 10:04:45 +08:00
static void setNodePosition(cocos2d::Node* pNode,
const cocos2d::Point& anchorPoint,
const int align,
float x,
float y)
2020-08-26 12:46:41 +08:00
{
pNode->setAnchorPoint(anchorPoint);
setNodePosition(pNode, align, x, y);
}
static void setNodePosition(cocos2d::Node* pNode, const int align, float value = 0.0f)
2021-12-25 10:04:45 +08:00
{ // ignore x or y
2020-08-26 12:46:41 +08:00
setNodePosition(pNode, align, value, value);
}
2021-12-25 10:04:45 +08:00
static void setNodePosition(cocos2d::Node* pNode,
const cocos2d::Point& anchorPoint,
const int align,
float value = 0.0f)
{ // ignore x or y
2020-08-26 12:46:41 +08:00
setNodePosition(pNode, anchorPoint, align, value, value);
}
// @version 1
static void centerNodeX(cocos2d::Node* pNode)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if (pNodeParent)
{
centerNodeX(pNode, pNodeParent->getContentSize());
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void centerNodeY(cocos2d::Node* pNode)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
{
centerNodeY(pNode, pNodeParent->getContentSize());
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void centerNode(cocos2d::Node* pNode)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
{
centerNode(pNode, pNodeParent->getContentSize());
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
// @version 2
2021-10-23 23:27:14 +08:00
static void centerNodeX(cocos2d::Node* pNode, const Vec2& parentSize)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorX = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
{
achorX = pNode->getAnchorPoint().x;
2019-11-24 23:15:56 +08:00
}
2021-12-25 10:04:45 +08:00
pNode->setPositionX(center_coord(parentSize.width, size.width, achorX) /*parentSize.width * 0.5f*/);
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static void centerNodeY(cocos2d::Node* pNode, const Vec2& parentSize)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorY = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
achorY = pNode->getAnchorPoint().y;
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
pNode->setPositionY(center_coord(parentSize.height, size.height, achorY));
}
2021-10-23 23:27:14 +08:00
static void centerNode(cocos2d::Node* pNode, const Vec2& parentSize)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
cocos2d::Point achor = cocos2d::Vec2::ZERO;
if (!pNode->isIgnoreAnchorPointForPosition())
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
achor = pNode->getAnchorPoint();
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
pNode->setPosition(cocos2d::Vec2(center_coord(parentSize.width, size.width, achor.x),
2021-12-25 10:04:45 +08:00
center_coord(parentSize.height, size.height, achor.y)));
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
// @version 1
static void setNodeLeft(cocos2d::Node* pNode, float left, float anchor = 0.0f)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
{
setNodeLeft(pNode, pNodeParent->getContentSize(), left, anchor);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static float getNodeLeft(cocos2d::Node* pNode, float anchor = 0.0f)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
{
return getNodeLeft(pNode, pNodeParent->getContentSize(), anchor);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
return 0.0f;
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeTop(cocos2d::Node* pNode, float top, float anchor = 0.0f)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
setNodeTop(pNode, pNodeParent->getContentSize(), top, anchor);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static float getNodeTop(cocos2d::Node* pNode, float anchor = 0.0f)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
return getNodeTop(pNode, pNodeParent->getContentSize(), anchor);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
return 0.0f;
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeRight(cocos2d::Node* pNode, float right)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
setNodeRight(pNode, pNodeParent->getContentSize(), right);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
static float getNodeRight(cocos2d::Node* pNode, float anchor = 0.0f)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
return getNodeRight(pNode, pNodeParent->getContentSize(), anchor);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
return 0.0f;
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeBottom(cocos2d::Node* pNode, float bottom, float anchor = .0f)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
setNodeBottom(pNode, pNodeParent->getContentSize(), bottom, anchor);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static float getNodeBottom(cocos2d::Node* pNode, float anchor = 0.0f)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
return getNodeBottom(pNode, pNodeParent->getContentSize(), anchor);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
return 0.0f;
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeLB(cocos2d::Node* pNode, const cocos2d::Point& p)
2021-12-25 10:04:45 +08:00
{ // left bottom
2020-08-26 12:46:41 +08:00
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
setNodeLB(pNode, pNodeParent->getContentSize(), p);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeRB(cocos2d::Node* pNode, const cocos2d::Point& p)
2021-12-25 10:04:45 +08:00
{ // right bottom
2020-08-26 12:46:41 +08:00
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
setNodeRB(pNode, pNodeParent->getContentSize(), p);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeLT(cocos2d::Node* pNode, const cocos2d::Point& p)
2021-12-25 10:04:45 +08:00
{ // left top
2020-08-26 12:46:41 +08:00
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
setNodeLT(pNode, pNodeParent->getContentSize(), p);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeRT(cocos2d::Node* pNode, const cocos2d::Point& p)
2021-12-25 10:04:45 +08:00
{ // right top
2020-08-26 12:46:41 +08:00
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
setNodeRT(pNode, pNodeParent->getContentSize(), p);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
// @version 2 used as internal interfaces
2021-10-23 23:27:14 +08:00
static void setNodeLeft(cocos2d::Node* pNode, const Vec2& parentSize, float left, float anchor = 0.0f)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorX = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
achorX = pNode->getAnchorPoint().x;
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
pNode->setPositionX(adjust_coord(size.width, achorX, left) - size.width * anchor);
}
2021-10-23 23:27:14 +08:00
static float getNodeLeft(cocos2d::Node* pNode, const Vec2& parentSize, float anchor = 0.0f)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorX = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
achorX = pNode->getAnchorPoint().x;
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
return adjust_coord_r(size.width, achorX, pNode->getPositionX()) + anchor * size.width;
}
2021-10-23 23:27:14 +08:00
static void setNodeTop(cocos2d::Node* pNode, const Vec2& parentSize, float top, float anchor = 0.0f)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorY = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
achorY = pNode->getAnchorPoint().y;
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
pNode->setPositionY(adjust_coord_neg(parentSize.height, size.height, achorY, top) - size.height * anchor);
}
2021-10-23 23:27:14 +08:00
static float getNodeTop(cocos2d::Node* pNode, const Vec2& parentSize, float anchor = 0.0f)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorY = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
achorY = pNode->getAnchorPoint().y;
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
return adjust_coord_neg_r(parentSize.height, size.height, achorY, pNode->getPositionY()) + size.height * anchor;
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static void setNodeRight(cocos2d::Node* pNode, const Vec2& parentSize, float right)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorX = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
{
achorX = pNode->getAnchorPoint().x;
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
pNode->setPositionX(adjust_coord_neg(parentSize.width, size.width, achorX, right));
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static float getNodeRight(cocos2d::Node* pNode, const Vec2& parentSize, float anchor = 0.0f)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorX = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
{
achorX = pNode->getAnchorPoint().x;
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
return adjust_coord_neg_r(parentSize.width, size.width, achorX, pNode->getPositionX()) + anchor * size.width;
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static void setNodeBottom(cocos2d::Node* pNode, const Vec2& parentSize, float bottom, float anchor = 0.0f)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorY = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
achorY = pNode->getAnchorPoint().y;
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
pNode->setPositionY(adjust_coord(size.height, achorY, bottom) - anchor * size.height);
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static float getNodeBottom(cocos2d::Node* pNode, const Vec2& parentSize, float anchor = 0.f)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
float achorY = 0.0f;
if (!pNode->isIgnoreAnchorPointForPosition())
2019-11-24 23:15:56 +08:00
{
2020-08-26 12:46:41 +08:00
achorY = pNode->getAnchorPoint().y;
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
return adjust_coord_r(size.height, achorY, pNode->getPositionY()) + size.height * anchor;
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static void setNodeLB(cocos2d::Node* pNode, const Vec2& parentSize, const cocos2d::Point& p)
2021-12-25 10:04:45 +08:00
{ // left bottom
2020-08-26 12:46:41 +08:00
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
cocos2d::Point achorPoint = cocos2d::Vec2::ZERO;
if (!pNode->isIgnoreAnchorPointForPosition())
{
achorPoint = pNode->getAnchorPoint();
2019-11-24 23:15:56 +08:00
}
2021-12-25 10:04:45 +08:00
pNode->setPosition(
cocos2d::Vec2(adjust_coord(size.width, achorPoint.x, p.x), adjust_coord(size.height, achorPoint.y, p.y)));
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static void setNodeRB(cocos2d::Node* pNode, const Vec2& parentSize, const cocos2d::Point& p)
2021-12-25 10:04:45 +08:00
{ // right bottom
2020-08-26 12:46:41 +08:00
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
cocos2d::Point achorPoint = cocos2d::Vec2::ZERO;
if (!pNode->isIgnoreAnchorPointForPosition())
{
achorPoint = pNode->getAnchorPoint();
2019-11-24 23:15:56 +08:00
}
2021-12-25 10:04:45 +08:00
pNode->setPosition(cocos2d::Vec2(adjust_coord_neg(parentSize.width, size.width, achorPoint.x, p.x),
adjust_coord(size.height, achorPoint.y, p.y)));
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static void setNodeLT(cocos2d::Node* pNode, const Vec2& parentSize, const cocos2d::Point& p)
2021-12-25 10:04:45 +08:00
{ // left top
2020-08-26 12:46:41 +08:00
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
cocos2d::Point achorPoint = cocos2d::Vec2::ZERO;
if (!pNode->isIgnoreAnchorPointForPosition())
{
achorPoint = pNode->getAnchorPoint();
2019-11-24 23:15:56 +08:00
}
2021-12-25 10:04:45 +08:00
pNode->setPosition(cocos2d::Vec2(adjust_coord(size.width, achorPoint.x, p.x),
adjust_coord_neg(parentSize.height, size.height, achorPoint.y, p.y)));
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static void setNodeRT(cocos2d::Node* pNode, const Vec2& parentSize, const cocos2d::Point& p)
2021-12-25 10:04:45 +08:00
{ // right top
2020-08-26 12:46:41 +08:00
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
Vec2 size = pNode->getContentSize() * getScale2D(pNode);
2020-08-26 12:46:41 +08:00
cocos2d::Point achorPoint = cocos2d::Vec2::ZERO;
if (!pNode->isIgnoreAnchorPointForPosition())
{
achorPoint = pNode->getAnchorPoint();
2019-11-24 23:15:56 +08:00
}
2021-12-25 10:04:45 +08:00
pNode->setPosition(cocos2d::Vec2(adjust_coord_neg(parentSize.width, size.width, achorPoint.x, p.x),
adjust_coord_neg(parentSize.height, size.height, achorPoint.y, p.y)));
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
/* set node position as normalized: @version 1 */
static void setNodeNormalizedPositionX(cocos2d::Node* pNode, float ratio)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
{
setNodeNormalizedPositionX(pNode, pNodeParent->getContentSize(), ratio);
}
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeNormalizedPositionY(cocos2d::Node* pNode, float ratio)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
{
setNodeNormalizedPositionY(pNode, pNodeParent->getContentSize(), ratio);
}
}
static void setNodeNormalizedPosition(cocos2d::Node* pNode, const cocos2d::Point& ratio)
{
cocos2d::Node* pNodeParent = pNode->getParent();
if ((pNodeParent))
{
setNodeNormalizedPosition(pNode, pNodeParent->getContentSize(), ratio);
2019-11-24 23:15:56 +08:00
}
2020-08-26 12:46:41 +08:00
}
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
/* set node position as normalized: @version 2 */
2021-10-23 23:27:14 +08:00
static void setNodeNormalizedPositionX(cocos2d::Node* pNode, const Vec2& parentSize, float ratio)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
pNode->setPositionX(parentSize.width * ratio);
}
2019-11-24 23:15:56 +08:00
2021-10-23 23:27:14 +08:00
static void setNodeNormalizedPositionY(cocos2d::Node* pNode, const Vec2& parentSize, float ratio)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
pNode->setPositionY(parentSize.height * ratio);
}
2021-10-23 23:27:14 +08:00
static void setNodeNormalizedPosition(cocos2d::Node* pNode, const Vec2& parentSize, const cocos2d::Point& ratio)
2020-08-26 12:46:41 +08:00
{
CC_ASSERT(pNode);
pNode->setPosition(cocos2d::Point(parentSize.width * ratio.x, parentSize.height * ratio.y));
}
/// Get node group size
2021-10-23 23:27:14 +08:00
static Vec2 getNodeGroupSize(const std::vector<cocos2d::Node*>& nodes);
2020-08-26 12:46:41 +08:00
2021-10-23 23:27:14 +08:00
static Vec2 getNodeGroupScaledSize(const std::vector<cocos2d::Node*>& nodes);
2020-08-26 12:46:41 +08:00
/// Set nodes group size
2021-12-25 10:04:45 +08:00
static void setNodeGroupSize(const std::vector<cocos2d::Node*>& nodes, const Vec2& newSize);
2020-08-26 12:46:41 +08:00
/// Get Node group left
2021-12-25 10:04:45 +08:00
static float getNodeGroupLeft(const std::vector<cocos2d::Node*>& nodes);
2020-08-26 12:46:41 +08:00
/// Get node group top
2021-12-25 10:04:45 +08:00
static float getNodeGroupTop(const std::vector<cocos2d::Node*>& nodes);
2020-08-26 12:46:41 +08:00
/// Get node group right
2021-12-25 10:04:45 +08:00
static float getNodeGroupRight(const std::vector<cocos2d::Node*>& nodes);
2020-08-26 12:46:41 +08:00
/// Get node group bottom
2021-12-25 10:04:45 +08:00
static float getNodeGroupBottom(const std::vector<cocos2d::Node*>& nodes);
2020-08-26 12:46:41 +08:00
/*
** setNodeGroupLeft
**
*/
static void setNodeGroupLeft(const std::vector<cocos2d::Node*>& nodes, float left);
/*
** setNodeGroupLeft
**
*/
static void setNodeGroupTop(const std::vector<cocos2d::Node*>& nodes, float top);
static void setNodeGroupLT(const std::vector<cocos2d::Node*>& nodes, const cocos2d::Vec2& p);
/*
** setNodeGroupRight
**
*/
static void setNodeGroupRight(const std::vector<cocos2d::Node*>& nodes, float right);
/*
** setNodeGroupRight
**
*/
static void setNodeGroupBottom(const std::vector<cocos2d::Node*>& nodes, float bottom);
//// move node group, use UI direction
static void moveNodeGroupHorizontally(const std::vector<cocos2d::Node*>& nodes, float delta);
static void moveNodeGroupVertically(const std::vector<cocos2d::Node*>& nodes, float delta);
/* @brief: group layout and alignment
** @remark:
*/
/// <summary>
/// Center horiz to parent
/// </summary>
/// <param name="nodes"></param>
static void centerHorizontally(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Center vertical to parent
/// </summary>
/// <param name="nodes"></param>
static void centerVertically(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Center to parent
/// </summary>
/// <param name="nodes"></param>
static void centerToParent(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Align lefts
/// </summary>
/// <param name="nodes"></param>
static void alignLefts(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Align rights
/// </summary>
/// <param name="nodes"></param>
static void alignRights(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Align tops
/// </summary>
/// <param name="nodes"></param>
static void alignTops(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Align bottoms
/// </summary>
/// <param name="nodes"></param>
static void alignBottoms(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Align horiz
/// </summary>
/// <param name="nodes"></param>
static void alignHorizontals(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Align vertical
/// </summary>
/// <param name="nodes"></param>
static void alignVerticals(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Align centers
/// </summary>
/// <param name="nodes"></param>
static void alignCenters(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Make same width
/// </summary>
/// <param name="nodes"></param>
static void makeSameWidth(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Make same height
/// </summary>
/// <param name="nodes"></param>
static void makeSameHeight(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Make same size
/// </summary>
/// <param name="nodes"></param>
static void makeSameSize(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Make horiz spacing equal
/// </summary>
/// <param name="nodes"></param>
static void makeHorizontalSpacingEqual(std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Make vertical spacing equal
/// </summary>
/// <param name="nodes"></param>
static void makeVerticalSpacingEqual(std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Increease horiz spacing
/// </summary>
/// <param name="nodes"></param>
static void increaseHorizontalSpacing(std::vector<cocos2d::Node*>& nodes, float theSpacing);
/// <summary>
/// Increase vertical spacing
/// </summary>
/// <param name="nodes"></param>
static void increaseVerticalSpacing(std::vector<cocos2d::Node*>& nodes, float theSpacing);
/// <summary>
/// Decrease horiz spacing
/// </summary>
/// <param name="nodes"></param>
static void decreaseHorizontalSpacing(std::vector<cocos2d::Node*>& nodes, float theSpacing);
/// <summary>
/// Decrease vertical spacing
/// </summary>
/// <param name="nodes"></param>
static void decreaseVerticalSpacing(std::vector<cocos2d::Node*>& nodes, float theSpacing);
/// <summary>
/// Remove horiz spacing
/// </summary>
/// <param name="nodes"></param>
static void removeHorizontalSpacing(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// Remove Vertical spacing
/// </summary>
/// <param name="nodes"></param>
static void removeVerticalSpacing(const std::vector<cocos2d::Node*>& nodes);
/// <summary>
/// maybe for internal use
/// </summary>
/// <param name="nodes"></param>
static void makeHorizontalSpacingEqual(const std::vector<cocos2d::Node*>& nodes, float theSpacing);
/// <summary>
/// maybe for internal use
/// </summary>
/// <param name="nodes"></param>
static void makeVerticalSpacingEqual(const std::vector<cocos2d::Node*>& nodes, float theSpacing);
/// <summary>
/// CLASS VisibleRect
/// </summary>
class CC_DLL VisibleRect
{
public:
2021-12-25 10:04:45 +08:00
static void refresh(void);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static cocos2d::Rect getScreenVisibleRect();
2021-10-23 23:27:14 +08:00
static Vec2 size();
2020-08-26 12:46:41 +08:00
static cocos2d::Point left();
static cocos2d::Point right();
static cocos2d::Point top();
static cocos2d::Point bottom();
static cocos2d::Point center();
static cocos2d::Point leftTop();
static cocos2d::Point rightTop();
static cocos2d::Point leftBottom();
static cocos2d::Point rightBottom();
2019-11-24 23:15:56 +08:00
2021-12-25 10:04:45 +08:00
// ------- The APIs for set layout node in visible screen rect ------
2020-08-26 12:46:41 +08:00
static void setNodePosition(cocos2d::Node* pNode, const cocos2d::Point& p)
{
2021-12-25 10:04:45 +08:00
setNodeNormalizedPosition(pNode, cocos2d::Vec2(p.x / s_designSize.width * s_adjustedScale,
p.y / s_designSize.height * s_adjustedScale));
2019-11-24 23:15:56 +08:00
}
2021-12-25 10:04:45 +08:00
static void centerNode(cocos2d::Node* pNode) { setNodeNormalizedPosition(pNode, cocos2d::Vec2(.5f, .5f)); }
static void centerNodeX(cocos2d::Node* pNode) { setNodeNormalizedPositionX(pNode, .5f); }
static void centerNodeY(cocos2d::Node* pNode) { setNodeNormalizedPositionY(pNode, .5f); }
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeLeft(cocos2d::Node* pNode, float left);
static void setNodeTop(cocos2d::Node* pNode, float top);
static void setNodeRight(cocos2d::Node* pNode, float right);
static void setNodeBottom(cocos2d::Node* pNode, float bottom);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static float getNodeLeft(cocos2d::Node* pNode);
static float getNodeTop(cocos2d::Node* pNode);
static float getNodeRight(cocos2d::Node* pNode);
static float getNodeBottom(cocos2d::Node* pNode);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeLT(cocos2d::Node* pNode, const cocos2d::Point& p);
static void setNodeRT(cocos2d::Node* pNode, const cocos2d::Point& p);
static void setNodeLB(cocos2d::Node* pNode, const cocos2d::Point& p);
static void setNodeRB(cocos2d::Node* pNode, const cocos2d::Point& p);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
/// ratio position
static void setNodeNormalizedLT(cocos2d::Node* pNode, const cocos2d::Point& ratio);
static void setNodeNormalizedRT(cocos2d::Node* pNode, const cocos2d::Point& ratio);
static void setNodeNormalizedLB(cocos2d::Node* pNode, const cocos2d::Point& ratio);
static void setNodeNormalizedRB(cocos2d::Node* pNode, const cocos2d::Point& ratio);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeNormalizedTop(cocos2d::Node* pNode, const float ratioTop);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeNormalizedPositionX(cocos2d::Node* pNode, float ratio);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
static void setNodeNormalizedPositionY(cocos2d::Node* pNode, float ratio);
static void setNodeNormalizedPosition(cocos2d::Node* pNode, const cocos2d::Point& ratio);
2019-11-24 23:15:56 +08:00
2020-08-26 12:46:41 +08:00
private:
static void lazyInit();
static cocos2d::Rect s_ScreenVisibleRect;
};
};
2019-11-24 23:15:56 +08:00
#endif