metaforce/Runtime/Graphics/Shaders/CWorldShadowShader.cpp

71 lines
2.6 KiB
C++
Raw Normal View History

#include "CWorldShadowShader.hpp"
2018-10-07 02:59:17 +00:00
#include "hecl/Pipeline.hpp"
#include "Graphics/CGraphics.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
2018-10-07 02:59:17 +00:00
static boo::ObjToken<boo::IShaderPipeline> s_Pipeline;
static boo::ObjToken<boo::IShaderPipeline> s_ZPipeline;
2018-12-08 05:30:43 +00:00
void CWorldShadowShader::Initialize() {
s_Pipeline = hecl::conv->convert(Shader_CWorldShadowShader{});
s_ZPipeline = hecl::conv->convert(Shader_CWorldShadowShaderZ{});
2018-10-07 02:59:17 +00:00
}
2018-12-08 05:30:43 +00:00
void CWorldShadowShader::Shutdown() {
s_Pipeline.reset();
s_ZPipeline.reset();
2018-10-07 02:59:17 +00:00
}
2018-12-08 05:30:43 +00:00
CWorldShadowShader::CWorldShadowShader(u32 w, u32 h) : m_w(w), m_h(h) {
CGraphics::CommitResources([&](boo::IGraphicsDataFactory::Context& ctx) {
m_vbo = ctx.newDynamicBuffer(boo::BufferUse::Vertex, 16, 4);
m_uniBuf = ctx.newDynamicBuffer(boo::BufferUse::Uniform, sizeof(Uniform), 1);
boo::ObjToken<boo::IGraphicsBuffer> bufs[] = {m_uniBuf.get()};
boo::PipelineStage stages[] = {boo::PipelineStage::Vertex};
m_dataBind = ctx.newShaderDataBinding(s_Pipeline, m_vbo.get(), nullptr, nullptr, 1, bufs, stages, nullptr, nullptr,
0, nullptr, nullptr, nullptr);
m_zDataBind = ctx.newShaderDataBinding(s_ZPipeline, m_vbo.get(), nullptr, nullptr, 1, bufs, stages, nullptr,
nullptr, 0, nullptr, nullptr, nullptr);
m_tex = ctx.newRenderTexture(m_w, m_h, boo::TextureClampMode::ClampToWhite, 1, 0);
return true;
} BooTrace);
}
2018-12-08 05:30:43 +00:00
void CWorldShadowShader::bindRenderTarget() { CGraphics::g_BooMainCommandQueue->setRenderTarget(m_tex); }
2018-12-08 05:30:43 +00:00
void CWorldShadowShader::drawBase(float extent) {
zeus::CVector3f verts[] = {
{-extent, 0.f, extent}, {extent, 0.f, extent}, {-extent, 0.f, -extent}, {extent, 0.f, -extent}};
m_vbo->load(verts, sizeof(zeus::CVector3f) * 4);
2018-12-08 05:30:43 +00:00
m_uniform.m_matrix = CGraphics::GetPerspectiveProjectionMatrix(true) * CGraphics::g_GXModelView.toMatrix4f();
m_uniform.m_color = zeus::skWhite;
2018-12-08 05:30:43 +00:00
m_uniBuf->load(&m_uniform, sizeof(m_uniform));
2018-12-08 05:30:43 +00:00
CGraphics::SetShaderDataBinding(m_zDataBind);
CGraphics::DrawArray(0, 4);
}
2018-12-08 05:30:43 +00:00
void CWorldShadowShader::lightenShadow() {
m_uniform.m_color = zeus::CColor(1.f, 0.25f);
m_uniBuf->load(&m_uniform, sizeof(m_uniform));
2018-12-08 05:30:43 +00:00
CGraphics::SetShaderDataBinding(m_dataBind);
CGraphics::DrawArray(0, 4);
}
2018-12-08 05:30:43 +00:00
void CWorldShadowShader::blendPreviousShadow() {
if (!m_prevQuad)
m_prevQuad.emplace(EFilterType::Blend, m_tex.get());
zeus::CRectangle rect(0.f, 1.f, 1.f, -1.f);
m_prevQuad->draw({1.f, 0.85f}, 1.f, rect);
}
2018-12-08 05:30:43 +00:00
void CWorldShadowShader::resolveTexture() {
boo::SWindowRect rect = {0, 0, int(m_w), int(m_h)};
CGraphics::g_BooMainCommandQueue->resolveBindTexture(m_tex, rect, false, 0, true, false, true);
}
2018-12-08 05:30:43 +00:00
} // namespace urde