2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2024-06-10 02:25:43 +08:00
|
|
|
https://axmol.dev/
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
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:
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2023-06-11 13:08:08 +08:00
|
|
|
#include "2d/ClippingRectangleNode.h"
|
|
|
|
#include "base/Director.h"
|
|
|
|
#include "renderer/Renderer.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#include "math/Vec2.h"
|
2023-06-11 13:08:08 +08:00
|
|
|
#include "platform/GLView.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2024-08-26 00:25:33 +08:00
|
|
|
namespace ax
|
|
|
|
{
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
ClippingRectangleNode* ClippingRectangleNode::create(const Rect& clippingRegion)
|
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
ClippingRectangleNode* node = new ClippingRectangleNode();
|
|
|
|
if (node->init())
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
node->setClippingRegion(clippingRegion);
|
|
|
|
node->autorelease();
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else
|
2022-07-16 10:43:05 +08:00
|
|
|
AX_SAFE_DELETE(node);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
ClippingRectangleNode* ClippingRectangleNode::create()
|
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
ClippingRectangleNode* node = new ClippingRectangleNode();
|
|
|
|
if (node->init())
|
2019-11-23 20:27:39 +08:00
|
|
|
node->autorelease();
|
|
|
|
else
|
2022-07-16 10:43:05 +08:00
|
|
|
AX_SAFE_DELETE(node);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void ClippingRectangleNode::setClippingRegion(const Rect& clippingRegion)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
_clippingRegion = clippingRegion;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClippingRectangleNode::onBeforeVisitScissor()
|
|
|
|
{
|
|
|
|
if (_clippingEnabled)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
auto renderer = _director->getRenderer();
|
2019-11-23 20:27:39 +08:00
|
|
|
_oldScissorTest = renderer->getScissorTest();
|
|
|
|
renderer->setScissorTest(true);
|
|
|
|
|
|
|
|
float scaleX = _scaleX;
|
|
|
|
float scaleY = _scaleY;
|
2021-12-25 10:04:45 +08:00
|
|
|
Node* parent = this->getParent();
|
|
|
|
while (parent)
|
|
|
|
{
|
2019-11-23 20:27:39 +08:00
|
|
|
scaleX *= parent->getScaleX();
|
|
|
|
scaleY *= parent->getScaleY();
|
|
|
|
parent = parent->getParent();
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
const Point pos = convertToWorldSpace(Point(_clippingRegion.origin.x, _clippingRegion.origin.y));
|
2023-12-01 09:04:51 +08:00
|
|
|
GLView* glView = _director->getGLView();
|
2021-12-25 10:04:45 +08:00
|
|
|
glView->setScissorInPoints(pos.x, pos.y, _clippingRegion.size.width * scaleX,
|
2019-11-23 20:27:39 +08:00
|
|
|
_clippingRegion.size.height * scaleY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClippingRectangleNode::onAfterVisitScissor()
|
|
|
|
{
|
|
|
|
if (_clippingEnabled)
|
2021-04-22 22:01:47 +08:00
|
|
|
_director->getRenderer()->setScissorTest(_oldScissorTest);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void ClippingRectangleNode::visit(Renderer* renderer, const Mat4& parentTransform, uint32_t parentFlags)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2022-06-24 14:18:48 +08:00
|
|
|
auto beforeVisitCmdScissor = renderer->nextCallbackCommand();
|
|
|
|
beforeVisitCmdScissor->init(_globalZOrder);
|
2022-07-16 10:43:05 +08:00
|
|
|
beforeVisitCmdScissor->func = AX_CALLBACK_0(ClippingRectangleNode::onBeforeVisitScissor, this);
|
2022-06-24 14:18:48 +08:00
|
|
|
renderer->addCommand(beforeVisitCmdScissor);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
Node::visit(renderer, parentTransform, parentFlags);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-06-24 14:18:48 +08:00
|
|
|
auto afterVisitCmdScissor = renderer->nextCallbackCommand();
|
|
|
|
afterVisitCmdScissor->init(_globalZOrder);
|
2022-07-16 10:43:05 +08:00
|
|
|
afterVisitCmdScissor->func = AX_CALLBACK_0(ClippingRectangleNode::onAfterVisitScissor, this);
|
2022-06-24 14:18:48 +08:00
|
|
|
renderer->addCommand(afterVisitCmdScissor);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2024-08-26 00:25:33 +08:00
|
|
|
}
|