2019-09-29 00:30:53 +00:00
|
|
|
#include "Runtime/Graphics/Shaders/CDecalShaders.hpp"
|
|
|
|
|
2019-09-29 02:22:12 +00:00
|
|
|
#include <array>
|
|
|
|
|
2019-09-29 00:30:53 +00:00
|
|
|
#include "Runtime/Particle/CDecal.hpp"
|
|
|
|
|
|
|
|
#include <hecl/Pipeline.hpp>
|
2018-03-17 03:41:01 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2018-03-17 03:41:01 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CDecalShaders::Initialize() {
|
|
|
|
m_texZTestNoZWrite = hecl::conv->convert(Shader_CDecalShaderTexZTest{});
|
|
|
|
m_texAdditiveZTest = hecl::conv->convert(Shader_CDecalShaderTexAdditiveZTest{});
|
|
|
|
m_texRedToAlphaZTest = hecl::conv->convert(Shader_CDecalShaderTexRedToAlphaZTest{});
|
|
|
|
m_noTexZTestNoZWrite = hecl::conv->convert(Shader_CDecalShaderNoTexZTest{});
|
|
|
|
m_noTexAdditiveZTest = hecl::conv->convert(Shader_CDecalShaderNoTexAdditiveZTest{});
|
2018-10-07 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CDecalShaders::Shutdown() {
|
|
|
|
m_texZTestNoZWrite.reset();
|
|
|
|
m_texAdditiveZTest.reset();
|
|
|
|
m_texRedToAlphaZTest.reset();
|
|
|
|
m_noTexZTestNoZWrite.reset();
|
|
|
|
m_noTexAdditiveZTest.reset();
|
2018-10-07 02:59:17 +00:00
|
|
|
}
|
2018-03-17 03:41:01 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void CDecalShaders::BuildShaderDataBinding(boo::IGraphicsDataFactory::Context& ctx, CQuadDecal& decal) {
|
|
|
|
boo::ObjToken<boo::IShaderPipeline> regPipeline;
|
|
|
|
boo::ObjToken<boo::IShaderPipeline> redToAlphaPipeline;
|
2018-03-17 03:41:01 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
if (decal.m_desc->x14_TEX) {
|
|
|
|
if (decal.m_desc->x18_ADD)
|
|
|
|
regPipeline = m_texAdditiveZTest;
|
2018-03-17 03:41:01 +00:00
|
|
|
else
|
2018-12-08 05:30:43 +00:00
|
|
|
regPipeline = m_texZTestNoZWrite;
|
|
|
|
redToAlphaPipeline = m_texRedToAlphaZTest;
|
|
|
|
} else {
|
|
|
|
if (decal.m_desc->x18_ADD)
|
|
|
|
regPipeline = m_noTexAdditiveZTest;
|
|
|
|
else
|
|
|
|
regPipeline = m_noTexZTestNoZWrite;
|
|
|
|
}
|
2018-03-17 03:41:01 +00:00
|
|
|
|
2019-09-29 02:22:12 +00:00
|
|
|
const SQuadDescr* const desc = decal.m_desc;
|
|
|
|
const CUVElement* const texr = desc->x14_TEX.get();
|
|
|
|
size_t texCount = 0;
|
|
|
|
std::array<boo::ObjToken<boo::ITexture>, 1> textures;
|
2018-03-17 03:41:01 +00:00
|
|
|
|
2019-09-29 02:22:12 +00:00
|
|
|
if (texr != nullptr) {
|
2018-12-08 05:30:43 +00:00
|
|
|
textures[0] = texr->GetValueTexture(0).GetObj()->GetBooTexture();
|
|
|
|
texCount = 1;
|
|
|
|
}
|
2018-10-07 02:59:17 +00:00
|
|
|
|
2019-09-29 02:22:12 +00:00
|
|
|
if (!decal.m_instBuf) {
|
|
|
|
return;
|
|
|
|
}
|
2018-10-07 02:59:17 +00:00
|
|
|
|
2019-09-29 02:22:12 +00:00
|
|
|
std::array<boo::ObjToken<boo::IGraphicsBuffer>, 1> uniforms{decal.m_uniformBuf.get()};
|
|
|
|
|
|
|
|
if (regPipeline) {
|
|
|
|
decal.m_normalDataBind =
|
|
|
|
ctx.newShaderDataBinding(regPipeline, nullptr, decal.m_instBuf.get(), nullptr, uniforms.size(), uniforms.data(),
|
|
|
|
nullptr, texCount, textures.data(), nullptr, nullptr);
|
|
|
|
}
|
|
|
|
if (redToAlphaPipeline) {
|
|
|
|
decal.m_redToAlphaDataBind =
|
|
|
|
ctx.newShaderDataBinding(redToAlphaPipeline, nullptr, decal.m_instBuf.get(), nullptr, uniforms.size(),
|
|
|
|
uniforms.data(), nullptr, texCount, textures.data(), nullptr, nullptr);
|
2018-12-08 05:30:43 +00:00
|
|
|
}
|
2018-10-07 02:59:17 +00:00
|
|
|
}
|
2018-03-17 03:41:01 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|