axmol/core/renderer/CustomCommand.cpp

217 lines
6.7 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
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:
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 "renderer/CustomCommand.h"
#include "renderer/TextureAtlas.h"
2019-11-23 20:27:39 +08:00
#include "renderer/backend/Buffer.h"
#include "renderer/backend/Device.h"
#include "base/Utils.h"
#include <stddef.h>
2019-11-23 20:27:39 +08:00
NS_AX_BEGIN
2019-11-23 20:27:39 +08:00
CustomCommand::CustomCommand()
{
_type = RenderCommand::Type::CUSTOM_COMMAND;
}
CustomCommand::~CustomCommand()
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_vertexBuffer);
AX_SAFE_RELEASE(_indexBuffer);
2019-11-23 20:27:39 +08:00
}
2020-10-06 16:46:38 +08:00
CustomCommand::CustomCommand(const CustomCommand& rhs)
{
this->assign(rhs);
2020-10-06 16:46:38 +08:00
}
CustomCommand::CustomCommand(CustomCommand&& rhs)
{
this->assign(std::move(rhs));
}
2020-10-06 16:46:38 +08:00
CustomCommand& CustomCommand::operator=(const CustomCommand& rhs)
{
this->assign(rhs);
return *this;
}
CustomCommand& CustomCommand::operator=(CustomCommand&& rhs)
{
this->assign(std::move(rhs));
return *this;
}
// Note: The use of offsetof below is technically undefined until C++17
// because State is not a standard layout type. However, all compilers
// currently provide well-defined behavior as an extension (which is
// demonstrated since constexpr evaluation must diagnose all undefined
// behavior). However, GCC and Clang also warn about this use of offsetof,
// which must be suppressed.
// see also: https://github.com/google/benchmark/pull/629
#if defined(__INTEL_COMPILER)
2021-12-25 10:04:45 +08:00
# pragma warning push
# pragma warning(disable : 1875)
#elif defined(__GNUC__)
2021-12-25 10:04:45 +08:00
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Winvalid-offsetof"
#endif
void CustomCommand::assign(const CustomCommand& rhs)
{
2021-12-25 10:04:45 +08:00
if (this != &rhs)
{
2020-09-16 21:22:37 +08:00
auto podOffset = offsetof(CustomCommand, _type);
2021-12-25 10:04:45 +08:00
auto podSize = offsetof(CustomCommand, _beforeCallback) - podOffset;
2020-09-16 21:22:37 +08:00
memcpy((uint8_t*)this + podOffset, (const uint8_t*)&rhs + podOffset, podSize);
2020-09-17 12:10:08 +08:00
2022-07-16 10:43:05 +08:00
AX_SAFE_RETAIN(_vertexBuffer);
AX_SAFE_RETAIN(_indexBuffer);
2020-09-16 21:22:37 +08:00
_beforeCallback = rhs._beforeCallback;
2021-12-25 10:04:45 +08:00
_afterCallback = rhs._afterCallback;
}
}
void CustomCommand::assign(CustomCommand&& rhs)
{
2021-12-25 10:04:45 +08:00
if (this != &rhs)
{
2020-09-16 21:22:37 +08:00
auto podOffset = offsetof(CustomCommand, _type);
2021-12-25 10:04:45 +08:00
auto podSize = offsetof(CustomCommand, _beforeCallback) - podOffset;
2020-09-16 21:22:37 +08:00
memcpy((uint8_t*)this + podOffset, (const uint8_t*)&rhs + podOffset, podSize);
_beforeCallback = std::move(rhs._beforeCallback);
2021-12-25 10:04:45 +08:00
_afterCallback = std::move(rhs._afterCallback);
2020-09-16 21:22:37 +08:00
rhs._vertexBuffer = rhs._indexBuffer = nullptr;
2020-09-17 12:10:08 +08:00
rhs._pipelineDescriptor.programState = nullptr;
}
}
#if defined(__INTEL_COMPILER)
2021-12-25 10:04:45 +08:00
# pragma warning pop
#elif defined(__GNUC__)
2021-12-25 10:04:45 +08:00
# pragma GCC diagnostic pop
#endif
2022-08-08 18:02:17 +08:00
void CustomCommand::init(float depth, const ax::Mat4& modelViewTransform, unsigned int flags)
2019-11-23 20:27:39 +08:00
{
RenderCommand::init(depth, modelViewTransform, flags);
}
void CustomCommand::init(float globalZOrder)
{
_globalOrder = globalZOrder;
}
void CustomCommand::init(float globalZOrder, const BlendFunc& blendFunc)
{
_globalOrder = globalZOrder;
2021-12-25 10:04:45 +08:00
auto& blendDescriptor = _pipelineDescriptor.blendDescriptor;
blendDescriptor.blendEnabled = true;
2019-11-23 20:27:39 +08:00
blendDescriptor.sourceRGBBlendFactor = blendDescriptor.sourceAlphaBlendFactor = blendFunc.src;
blendDescriptor.destinationRGBBlendFactor = blendDescriptor.destinationAlphaBlendFactor = blendFunc.dst;
}
void CustomCommand::createVertexBuffer(std::size_t vertexSize, std::size_t capacity, BufferUsage usage)
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_vertexBuffer);
2021-12-25 10:04:45 +08:00
_vertexCapacity = capacity;
2019-11-23 20:27:39 +08:00
_vertexDrawCount = capacity;
2021-12-25 10:04:45 +08:00
auto device = backend::Device::getInstance();
2019-11-23 20:27:39 +08:00
_vertexBuffer = device->newBuffer(vertexSize * capacity, backend::BufferType::VERTEX, usage);
}
void CustomCommand::createIndexBuffer(IndexFormat format, std::size_t capacity, BufferUsage usage)
{
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_indexBuffer);
2021-12-25 10:04:45 +08:00
_indexFormat = format;
_indexSize = computeIndexSize();
_indexCapacity = capacity;
2019-11-23 20:27:39 +08:00
_indexDrawCount = capacity;
2021-12-25 10:04:45 +08:00
auto device = backend::Device::getInstance();
2019-11-23 20:27:39 +08:00
_indexBuffer = device->newBuffer(_indexSize * capacity, backend::BufferType::INDEX, usage);
}
void CustomCommand::updateVertexBuffer(void* data, std::size_t offset, std::size_t length)
2021-12-25 10:04:45 +08:00
{
2019-11-23 20:27:39 +08:00
assert(_vertexBuffer);
_vertexBuffer->updateSubData(data, offset, length);
}
void CustomCommand::updateIndexBuffer(void* data, std::size_t offset, std::size_t length)
{
assert(_indexBuffer);
_indexBuffer->updateSubData(data, offset, length);
}
2021-12-25 10:04:45 +08:00
void CustomCommand::setVertexBuffer(backend::Buffer* vertexBuffer)
2019-11-23 20:27:39 +08:00
{
if (_vertexBuffer == vertexBuffer)
return;
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_vertexBuffer);
2019-11-23 20:27:39 +08:00
_vertexBuffer = vertexBuffer;
2022-07-16 10:43:05 +08:00
AX_SAFE_RETAIN(_vertexBuffer);
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
void CustomCommand::setIndexBuffer(backend::Buffer* indexBuffer, IndexFormat format)
2019-11-23 20:27:39 +08:00
{
if (_indexBuffer == indexBuffer && _indexFormat == format)
return;
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_indexBuffer);
2019-11-23 20:27:39 +08:00
_indexBuffer = indexBuffer;
2022-07-16 10:43:05 +08:00
AX_SAFE_RETAIN(_indexBuffer);
2019-11-23 20:27:39 +08:00
_indexFormat = format;
2021-12-25 10:04:45 +08:00
_indexSize = computeIndexSize();
2019-11-23 20:27:39 +08:00
}
void CustomCommand::updateVertexBuffer(void* data, std::size_t length)
{
assert(_vertexBuffer);
_vertexBuffer->updateData(data, length);
}
void CustomCommand::updateIndexBuffer(void* data, std::size_t length)
{
assert(_indexBuffer);
_indexBuffer->updateData(data, length);
}
std::size_t CustomCommand::computeIndexSize() const
{
2020-09-17 12:10:08 +08:00
if (IndexFormat::U_SHORT == _indexFormat)
return sizeof(unsigned short);
else
return sizeof(unsigned int);
2019-11-23 20:27:39 +08:00
}
NS_AX_END