axmol/core/renderer/backend/opengl/ProgramGL.cpp

469 lines
16 KiB
C++
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2018-2019 Xiamen Yaji Software Co., Ltd.
2022-04-25 19:15:46 +08:00
Copyright (c) 2020 C4games Ltd.
2019-11-23 20:27:39 +08:00
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.
****************************************************************************/
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
#include "ProgramGL.h"
#include "ShaderModuleGL.h"
#include "renderer/backend/Types.h"
#include "renderer/backend/opengl/MacrosGL.h"
#include "base/Director.h"
#include "base/EventDispatcher.h"
#include "base/EventType.h"
#include "base/axstd.h"
2023-08-13 22:09:02 +08:00
#include "yasio/byte_buffer.hpp"
2019-11-23 20:27:39 +08:00
#include "renderer/backend/opengl/UtilsGL.h"
2023-08-13 22:09:02 +08:00
#include "OpenGLState.h"
2019-11-23 20:27:39 +08:00
NS_AX_BACKEND_BEGIN
ProgramGL::ProgramGL(std::string_view vertexShader, std::string_view fragmentShader)
2021-12-25 10:04:45 +08:00
: Program(vertexShader, fragmentShader)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
_vertexShaderModule = static_cast<ShaderModuleGL*>(ShaderCache::newVertexShaderModule(_vertexShader));
2019-11-23 20:27:39 +08:00
_fragmentShaderModule = static_cast<ShaderModuleGL*>(ShaderCache::newFragmentShaderModule(_fragmentShader));
2022-07-16 10:43:05 +08:00
AX_SAFE_RETAIN(_vertexShaderModule);
AX_SAFE_RETAIN(_fragmentShaderModule);
2019-11-23 20:27:39 +08:00
compileProgram();
computeUniformInfos();
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2021-12-25 10:04:45 +08:00
for (const auto& uniform : _activeUniformInfos)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
auto location = uniform.second.location;
2019-11-23 20:27:39 +08:00
_originalUniformLocations[uniform.first] = location;
2021-12-25 10:04:45 +08:00
_mapToCurrentActiveLocation[location] = location;
_mapToOriginalLocation[location] = location;
2019-11-23 20:27:39 +08:00
}
2021-12-25 10:04:45 +08:00
_backToForegroundListener =
EventListenerCustom::create(EVENT_RENDERER_RECREATED, [this](EventCustom*) { this->reloadProgram(); });
2019-11-23 20:27:39 +08:00
Director::getInstance()->getEventDispatcher()->addEventListenerWithFixedPriority(_backToForegroundListener, -1);
#endif
2023-08-13 22:09:02 +08:00
setBuiltinLocations();
2019-11-23 20:27:39 +08:00
}
ProgramGL::~ProgramGL()
{
2023-08-13 22:09:02 +08:00
clearUniformBuffers();
2022-07-16 10:43:05 +08:00
AX_SAFE_RELEASE(_vertexShaderModule);
AX_SAFE_RELEASE(_fragmentShaderModule);
2019-11-23 20:27:39 +08:00
if (_program)
glDeleteProgram(_program);
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2019-11-23 20:27:39 +08:00
Director::getInstance()->getEventDispatcher()->removeEventListener(_backToForegroundListener);
#endif
}
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2019-11-23 20:27:39 +08:00
void ProgramGL::reloadProgram()
{
_activeUniformInfos.clear();
_mapToCurrentActiveLocation.clear();
_mapToOriginalLocation.clear();
2023-08-13 22:09:02 +08:00
static_cast<ShaderModuleGL*>(_vertexShaderModule)->compileShader(backend::ShaderStage::VERTEX, _vertexShader);
static_cast<ShaderModuleGL*>(_fragmentShaderModule)->compileShader(backend::ShaderStage::FRAGMENT, _fragmentShader);
2019-11-23 20:27:39 +08:00
compileProgram();
computeUniformInfos();
2021-12-25 10:04:45 +08:00
for (const auto& uniform : _activeUniformInfos)
2019-11-23 20:27:39 +08:00
{
2021-12-25 10:04:45 +08:00
auto location = _originalUniformLocations[uniform.first];
_mapToCurrentActiveLocation[location] = uniform.second.location;
2019-11-23 20:27:39 +08:00
_mapToOriginalLocation[uniform.second.location] = location;
}
}
#endif
void ProgramGL::compileProgram()
{
if (_vertexShaderModule == nullptr || _fragmentShaderModule == nullptr)
return;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
auto vertShader = _vertexShaderModule->getShader();
auto fragShader = _fragmentShaderModule->getShader();
2021-12-25 10:04:45 +08:00
assert(vertShader != 0 && fragShader != 0);
2019-11-23 20:27:39 +08:00
if (vertShader == 0 || fragShader == 0)
return;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
_program = glCreateProgram();
if (!_program)
return;
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
glAttachShader(_program, vertShader);
glAttachShader(_program, fragShader);
2019-11-23 20:27:39 +08:00
glLinkProgram(_program);
2019-11-23 20:27:39 +08:00
GLint status = 0;
glGetProgramiv(_program, GL_LINK_STATUS, &status);
if (GL_FALSE == status)
{
GLint errorInfoLen = 0;
glGetProgramiv(_program, GL_INFO_LOG_LENGTH, &errorInfoLen);
2022-07-07 09:30:48 +08:00
if (errorInfoLen > 1)
2021-12-25 10:04:45 +08:00
{
auto errorInfo = axstd::make_unique_for_overwrite<char[]>(static_cast<size_t>(errorInfoLen));
glGetProgramInfoLog(_program, errorInfoLen, NULL, errorInfo.get());
2023-08-13 22:09:02 +08:00
ax::log("axmol:ERROR: %s: failed to link program: %s ", __FUNCTION__, errorInfo.get());
}
else
2023-08-13 22:09:02 +08:00
ax::log("axmol:ERROR: %s: failed to link program ", __FUNCTION__);
2019-11-23 20:27:39 +08:00
glDeleteProgram(_program);
_program = 0;
}
}
2023-08-13 22:09:02 +08:00
void ProgramGL::setBuiltinLocations()
2019-11-23 20:27:39 +08:00
{
2023-08-13 22:09:02 +08:00
/*--- Builtin Attribs ---*/
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
/// a_position
2023-08-13 22:09:02 +08:00
_builtinAttributeLocation[Attribute::POSITION] = getAttributeLocation(ATTRIBUTE_NAME_POSITION);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
/// a_color
2023-08-13 22:09:02 +08:00
_builtinAttributeLocation[Attribute::COLOR] = getAttributeLocation(ATTRIBUTE_NAME_COLOR);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
/// a_texCoord
2023-08-13 22:09:02 +08:00
_builtinAttributeLocation[Attribute::TEXCOORD] = getAttributeLocation(ATTRIBUTE_NAME_TEXCOORD);
2019-11-23 20:27:39 +08:00
2022-09-23 22:41:30 +08:00
// a_normal
2023-08-13 22:09:02 +08:00
_builtinAttributeLocation[Attribute::NORMAL] = getAttributeLocation(ATTRIBUTE_NAME_NORMAL);
// a_instance
_builtinAttributeLocation[Attribute::INSTANCE] = getAttributeLocation(ATTRIBUTE_NAME_INSTANCE);
/*--- Builtin Uniforms ---*/
2022-09-23 22:41:30 +08:00
2021-12-25 10:04:45 +08:00
/// u_MVPMatrix
2023-08-13 22:09:02 +08:00
_builtinUniformLocation[Uniform::MVP_MATRIX] = getUniformLocation(UNIFORM_NAME_MVP_MATRIX);
/// u_tex0
_builtinUniformLocation[Uniform::TEXTURE] = getUniformLocation(UNIFORM_NAME_TEXTURE);
/// u_tex1
_builtinUniformLocation[Uniform::TEXTURE1] = getUniformLocation(UNIFORM_NAME_TEXTURE1);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
/// u_textColor
2023-08-13 22:09:02 +08:00
_builtinUniformLocation[Uniform::TEXT_COLOR] = getUniformLocation(UNIFORM_NAME_TEXT_COLOR);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
/// u_effectColor
2023-08-13 22:09:02 +08:00
_builtinUniformLocation[Uniform::EFFECT_COLOR] = getUniformLocation(UNIFORM_NAME_EFFECT_COLOR);
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
/// u_effectType
2023-08-13 22:09:02 +08:00
_builtinUniformLocation[Uniform::EFFECT_TYPE] = getUniformLocation(UNIFORM_NAME_EFFECT_TYPE);
2019-11-23 20:27:39 +08:00
}
bool ProgramGL::getAttributeLocation(std::string_view attributeName, unsigned int& location) const
2019-11-23 20:27:39 +08:00
{
GLint loc = glGetAttribLocation(_program, attributeName.data());
2019-11-23 20:27:39 +08:00
if (-1 == loc)
{
2022-10-01 16:24:52 +08:00
AXLOG("axmol: %s: can not find vertex attribute of %s", __FUNCTION__, attributeName.data());
2019-11-23 20:27:39 +08:00
return false;
}
2021-12-25 10:04:45 +08:00
2019-11-23 20:27:39 +08:00
location = GLuint(loc);
return true;
}
const hlookup::string_map<AttributeBindInfo>& ProgramGL::getActiveAttributes() const
2019-11-23 20:27:39 +08:00
{
if (!_program || !_activeAttribs.empty())
return _activeAttribs;
2019-11-23 20:27:39 +08:00
GLint numOfActiveAttributes = 0;
glGetProgramiv(_program, GL_ACTIVE_ATTRIBUTES, &numOfActiveAttributes);
if (numOfActiveAttributes <= 0)
return _activeAttribs;
2019-11-23 20:27:39 +08:00
_activeAttribs.reserve(numOfActiveAttributes);
2019-11-23 20:27:39 +08:00
int MAX_ATTRIBUTE_NAME_LENGTH = 255;
auto attrName = axstd::make_unique_for_overwrite<char[]>(MAX_ATTRIBUTE_NAME_LENGTH + 1);
2019-11-23 20:27:39 +08:00
GLint attrNameLen = 0;
GLenum attrType;
GLint attrSize;
backend::AttributeBindInfo info;
for (int i = 0; i < numOfActiveAttributes; i++)
{
glGetActiveAttrib(_program, i, MAX_ATTRIBUTE_NAME_LENGTH, &attrNameLen, &attrSize, &attrType, attrName.get());
2019-11-23 20:27:39 +08:00
CHECK_GL_ERROR_DEBUG();
info.attributeName = std::string(attrName.get(), attrName.get() + attrNameLen);
2021-12-25 10:04:45 +08:00
info.location = glGetAttribLocation(_program, info.attributeName.c_str());
info.type = attrType;
info.size = UtilsGL::getGLDataTypeSize(attrType) * attrSize;
2019-11-23 20:27:39 +08:00
CHECK_GL_ERROR_DEBUG();
_activeAttribs[info.attributeName] = info;
2019-11-23 20:27:39 +08:00
}
return _activeAttribs;
2019-11-23 20:27:39 +08:00
}
void ProgramGL::computeUniformInfos()
{
if (!_program)
2020-10-29 19:13:36 +08:00
return;
2021-12-25 10:04:45 +08:00
2023-07-19 19:18:17 +08:00
_totalBufferSize = 0;
2021-12-25 10:04:45 +08:00
_maxLocation = -1;
2019-11-23 20:27:39 +08:00
_activeUniformInfos.clear();
2023-08-13 22:09:02 +08:00
yasio::basic_byte_buffer<GLchar> buffer; // buffer for name
// OpenGL UBO: uloc[0]: block_index, uloc[1]: offset in block
axstd::pod_vector<GLint> uniformOffsets, uniformIndices;
std::map<GLuint, std::pair<int, int>> uniformIndexMap;
auto gpuDevice = Device::getInstance();
/* Query uniform blocks */
clearUniformBuffers();
// GLint numAttrs{0};
// glGetProgramiv(_program, GL_ACTIVE_ATTRIBUTES, &numAttrs); // works
GLint numblocks{0};
glGetProgramiv(_program, GL_ACTIVE_UNIFORM_BLOCKS, &numblocks);
for (int blockIndex = 0; blockIndex < numblocks; ++blockIndex)
2019-11-23 20:27:39 +08:00
{
2023-08-13 22:09:02 +08:00
GLint blockSize{0};
glGetActiveUniformBlockiv(_program, blockIndex, GL_UNIFORM_BLOCK_DATA_SIZE, &blockSize);
CHECK_GL_ERROR_DEBUG();
2023-08-13 22:09:02 +08:00
assert(blockSize > 0); // empty block not allow by GLSL/ESSL
GLint memberCount{0};
glGetActiveUniformBlockiv(_program, blockIndex, GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS, &memberCount);
assert(memberCount > 0);
// buffer.resize_fit(MAX_UNIFORM_NAME_LENGTH + 1);
// GLsizei length{0};
// glGetActiveUniformBlockName(_program, blockIndex, buffer.size(), &length, buffer.data());
//
// ax::print("### ub: %s", buffer.data());
uniformIndices.resize(memberCount);
glGetActiveUniformBlockiv(_program, blockIndex, GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES, uniformIndices.data());
uniformOffsets.resize(memberCount);
glGetActiveUniformsiv(_program, memberCount, reinterpret_cast<const GLuint*>(uniformIndices.data()),
GL_UNIFORM_OFFSET, uniformOffsets.data());
// set bindingIndex at CPU
glUniformBlockBinding(_program, blockIndex, blockIndex);
// create uniform buffer object
auto& desc = _uniformBuffers.emplace_back(
static_cast<BufferGL*>(gpuDevice->newBuffer(blockSize, BufferType::UNIFORM, BufferUsage::DYNAMIC)),
static_cast<int>(_totalBufferSize), blockSize);
desc._ubo->updateData(nullptr, blockSize); // ubo data can be nullptr
CHECK_GL_ERROR_DEBUG();
for (GLint i = 0; i < memberCount; ++i)
uniformIndexMap.emplace(uniformIndices[i], std::make_pair(static_cast<int>(desc._location),
static_cast<int>(uniformOffsets[i])));
// increase _totalBufferSize
_totalBufferSize += blockSize;
}
/*
* construct _activeUniformInfos: uniformName-->UniformInfo
*/
UniformInfo uniform;
GLint nameLen = 0;
GLint numOfUniforms = 0;
glGetProgramiv(_program, GL_ACTIVE_UNIFORMS, &numOfUniforms);
for (GLint i = 0; i < numOfUniforms; ++i)
{
buffer.resize_fit(MAX_UNIFORM_NAME_LENGTH + 1);
glGetActiveUniform(_program, i, static_cast<GLint>(buffer.size()), &nameLen, &uniform.count, &uniform.type,
buffer.data());
std::string_view uniformName{buffer.data(), static_cast<size_t>(nameLen)};
// ax::print("--------- uniform fullName: %s", uniformName.data());
auto it = uniformIndexMap.find(i);
if (it != uniformIndexMap.end())
{ // member of uniform block
// trim name vs_ub.xxx[0] --> xxx
auto bracket = uniformName.find_last_of('[');
if (bracket != std::string_view::npos)
2019-11-23 20:27:39 +08:00
{
2023-08-13 22:09:02 +08:00
buffer[bracket] = '\0';
uniformName = uniformName.substr(0, bracket);
2019-11-23 20:27:39 +08:00
}
2023-08-13 22:09:02 +08:00
auto dot = uniformName.find_last_of('.');
if (dot != std::string::npos)
uniformName.remove_prefix(dot + 1); // trim uniformName
uniform.location = it->second.first;
uniform.bufferOffset = it->second.second;
}
else
{ // must be samper: sampler2D or samplerCube
assert(uniform.type == GL_SAMPLER_2D || uniform.type == GL_SAMPLER_CUBE);
uniform.location = glGetUniformLocation(_program, uniformName.data());
uniform.bufferOffset = -1;
}
2023-08-13 22:09:02 +08:00
2023-07-28 10:37:27 +08:00
uniform.size = UtilsGL::getGLDataTypeSize(uniform.type);
2023-07-19 19:18:17 +08:00
_activeUniformInfos[uniformName] = uniform;
2023-08-13 22:09:02 +08:00
2019-11-23 20:27:39 +08:00
_maxLocation = _maxLocation <= uniform.location ? (uniform.location + 1) : _maxLocation;
}
}
2023-08-13 22:09:02 +08:00
void ProgramGL::bindUniformBuffers(const char* buffer, size_t bufferSize)
{
for (GLuint blockIdx = 0; blockIdx < static_cast<GLuint>(_uniformBuffers.size()); ++blockIdx)
{
auto& desc = _uniformBuffers[blockIdx];
desc._ubo->updateData(buffer + desc._location, desc._size);
__gl->bindUniformBufferBase(blockIdx, desc._ubo->getHandler());
}
CHECK_GL_ERROR_DEBUG();
}
void ProgramGL::clearUniformBuffers()
{
if (_uniformBuffers.empty())
return;
for (auto& desc : _uniformBuffers)
delete desc._ubo;
_uniformBuffers.clear();
}
2019-11-23 20:27:39 +08:00
int ProgramGL::getAttributeLocation(Attribute name) const
{
return _builtinAttributeLocation[name];
}
int ProgramGL::getAttributeLocation(std::string_view name) const
2019-11-23 20:27:39 +08:00
{
return glGetAttribLocation(_program, name.data());
2019-11-23 20:27:39 +08:00
}
2023-08-13 22:09:02 +08:00
inline std::string_view mapLocationEnumToUBO(backend::Uniform name)
{
switch (name)
{
case Uniform::MVP_MATRIX:
return UNIFORM_NAME_MVP_MATRIX;
break;
case Uniform::TEXTURE:
return UNIFORM_NAME_TEXTURE;
break;
case Uniform::TEXTURE1:
return UNIFORM_NAME_TEXTURE1;
break;
case Uniform::TEXTURE2:
return UNIFORM_NAME_TEXTURE2;
break;
case Uniform::TEXTURE3:
return UNIFORM_NAME_TEXTURE3;
break;
case Uniform::TEXT_COLOR:
return UNIFORM_NAME_TEXT_COLOR;
break;
case Uniform::EFFECT_COLOR:
return UNIFORM_NAME_EFFECT_COLOR;
break;
case Uniform::EFFECT_TYPE:
return UNIFORM_NAME_EFFECT_TYPE;
break;
}
return ""sv;
}
2019-11-23 20:27:39 +08:00
UniformLocation ProgramGL::getUniformLocation(backend::Uniform name) const
{
2023-07-19 19:18:17 +08:00
return _builtinUniformLocation[name];
2019-11-23 20:27:39 +08:00
}
UniformLocation ProgramGL::getUniformLocation(std::string_view uniform) const
2019-11-23 20:27:39 +08:00
{
UniformLocation uniformLocation;
2023-08-13 22:09:02 +08:00
auto iter = _activeUniformInfos.find(uniform);
if (iter != _activeUniformInfos.end())
2019-11-23 20:27:39 +08:00
{
2023-08-13 22:09:02 +08:00
uniformLocation.shaderStage = ShaderStage::VERTEX;
const auto& uniformInfo = iter->second;
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2019-11-23 20:27:39 +08:00
uniformLocation.location[0] = _mapToOriginalLocation.at(uniformInfo.location);
#else
uniformLocation.location[0] = uniformInfo.location;
#endif
uniformLocation.location[1] = uniformInfo.bufferOffset;
}
2023-08-13 22:09:02 +08:00
2019-11-23 20:27:39 +08:00
return uniformLocation;
}
int ProgramGL::getMaxVertexLocation() const
{
return _maxLocation;
}
int ProgramGL::getMaxFragmentLocation() const
{
return _maxLocation;
}
2022-07-16 10:43:05 +08:00
#if AX_ENABLE_CACHE_TEXTURE_DATA
2019-11-23 20:27:39 +08:00
int ProgramGL::getMappedLocation(int location) const
{
2021-12-25 10:04:45 +08:00
if (_mapToCurrentActiveLocation.find(location) != _mapToCurrentActiveLocation.end())
2019-11-23 20:27:39 +08:00
return _mapToCurrentActiveLocation.at(location);
else
return -1;
}
int ProgramGL::getOriginalLocation(int location) const
{
if (_mapToOriginalLocation.find(location) != _mapToOriginalLocation.end())
return _mapToOriginalLocation.at(location);
else
return -1;
}
#endif
const hlookup::string_map<UniformInfo>& ProgramGL::getAllActiveUniformInfo(ShaderStage stage) const
2019-11-23 20:27:39 +08:00
{
return _activeUniformInfos;
}
std::size_t ProgramGL::getUniformBufferSize(ShaderStage stage) const
{
2023-07-19 19:18:17 +08:00
return _totalBufferSize;
2019-11-23 20:27:39 +08:00
}
NS_AX_BACKEND_END