metaforce/Runtime/Graphics/Shaders/CWorldShadowShader.cpp

91 lines
3.2 KiB
C++
Raw Normal View History

#include "Runtime/Graphics/Shaders/CWorldShadowShader.hpp"
#include <array>
#include "Runtime/Camera/CCameraFilter.hpp"
#include "Runtime/Graphics/CGraphics.hpp"
2022-01-31 16:06:54 -08:00
//#include <hecl/Pipeline.hpp>
#include <zeus/CVector3f.hpp>
2021-04-10 01:42:06 -07:00
namespace metaforce {
2022-01-31 16:06:54 -08:00
//static boo::ObjToken<boo::IShaderPipeline> s_Pipeline;
//static boo::ObjToken<boo::IShaderPipeline> s_ZPipeline;
2018-10-06 19:59:17 -07:00
2018-12-07 21:30:43 -08:00
void CWorldShadowShader::Initialize() {
2022-01-31 16:06:54 -08:00
// s_Pipeline = hecl::conv->convert(Shader_CWorldShadowShader{});
// s_ZPipeline = hecl::conv->convert(Shader_CWorldShadowShaderZ{});
2018-10-06 19:59:17 -07:00
}
2018-12-07 21:30:43 -08:00
void CWorldShadowShader::Shutdown() {
2022-01-31 16:06:54 -08:00
// s_Pipeline.reset();
// s_ZPipeline.reset();
2018-10-06 19:59:17 -07:00
}
2018-12-07 21:30:43 -08:00
CWorldShadowShader::CWorldShadowShader(u32 w, u32 h) : m_w(w), m_h(h) {
2022-01-31 16:06:54 -08:00
// 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);
//
// const std::array<boo::ObjToken<boo::IGraphicsBuffer>, 1> bufs{m_uniBuf.get()};
// constexpr std::array<boo::PipelineStage, 1> stages{boo::PipelineStage::Vertex};
// m_dataBind = ctx.newShaderDataBinding(s_Pipeline, m_vbo.get(), nullptr, nullptr, bufs.size(), bufs.data(),
// stages.data(), nullptr, nullptr, 0, nullptr, nullptr, nullptr);
// m_zDataBind = ctx.newShaderDataBinding(s_ZPipeline, m_vbo.get(), nullptr, nullptr, bufs.size(), bufs.data(),
// stages.data(), nullptr, nullptr, 0, nullptr, nullptr, nullptr);
//
// m_tex = ctx.newRenderTexture(m_w, m_h, boo::TextureClampMode::ClampToWhite, 1, 0);
// return true;
// } BooTrace);
}
2022-01-31 16:06:54 -08:00
void CWorldShadowShader::bindRenderTarget() {
// CGraphics::g_BooMainCommandQueue->setRenderTarget(m_tex);
}
2018-12-07 21:30:43 -08:00
void CWorldShadowShader::drawBase(float extent) {
2019-07-21 01:42:52 -07:00
SCOPED_GRAPHICS_DEBUG_GROUP("CWorldShadowShader::drawBase", zeus::skMagenta);
const std::array<zeus::CVector3f, 4> verts{{
{-extent, 0.f, extent},
{extent, 0.f, extent},
{-extent, 0.f, -extent},
{extent, 0.f, -extent},
}};
2022-01-31 16:06:54 -08:00
// m_vbo->load(verts.data(), sizeof(verts));
m_uniform.m_matrix = CGraphics::GetPerspectiveProjectionMatrix(/*true*/) * CGraphics::g_GXModelView.toMatrix4f();
m_uniform.m_color = zeus::skWhite;
2022-01-31 16:06:54 -08:00
// m_uniBuf->load(&m_uniform, sizeof(m_uniform));
//
// CGraphics::SetShaderDataBinding(m_zDataBind);
// CGraphics::DrawArray(0, 4);
}
2018-12-07 21:30:43 -08:00
void CWorldShadowShader::lightenShadow() {
2019-07-21 01:42:52 -07:00
SCOPED_GRAPHICS_DEBUG_GROUP("CWorldShadowShader::lightenShadow", zeus::skMagenta);
2018-12-07 21:30:43 -08:00
m_uniform.m_color = zeus::CColor(1.f, 0.25f);
2022-01-31 16:06:54 -08:00
// m_uniBuf->load(&m_uniform, sizeof(m_uniform));
//
// CGraphics::SetShaderDataBinding(m_dataBind);
// CGraphics::DrawArray(0, 4);
}
2018-12-07 21:30:43 -08:00
void CWorldShadowShader::blendPreviousShadow() {
2019-07-21 01:42:52 -07:00
SCOPED_GRAPHICS_DEBUG_GROUP("CWorldShadowShader::blendPreviousShadow", zeus::skMagenta);
// if (!m_prevQuad)
// m_prevQuad.emplace(EFilterType::Blend, m_tex);
// zeus::CRectangle rect(0.f, 1.f, 1.f, -1.f);
// m_prevQuad->draw({1.f, 0.85f}, 1.f, rect);
}
2018-12-07 21:30:43 -08:00
void CWorldShadowShader::resolveTexture() {
2022-01-31 16:06:54 -08:00
// boo::SWindowRect rect = {0, 0, int(m_w), int(m_h)};
// CGraphics::g_BooMainCommandQueue->resolveBindTexture(m_tex, rect, false, 0, true, false, true);
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce