2017-09-03 05:53:38 +00:00
|
|
|
#include "CAABoxShader.hpp"
|
|
|
|
#include "Graphics/CBooRenderer.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
static const char* VS =
|
|
|
|
"struct VertData\n"
|
|
|
|
"{\n"
|
|
|
|
" float4 posIn : POSITION;\n"
|
|
|
|
"};\n"
|
|
|
|
"\n"
|
|
|
|
"cbuffer CAABoxUniform : register(b0)\n"
|
|
|
|
"{\n"
|
|
|
|
" float4x4 xf;\n"
|
|
|
|
" float4 color;\n"
|
|
|
|
"};\n"
|
|
|
|
"\n"
|
|
|
|
"struct VertToFrag\n"
|
|
|
|
"{\n"
|
|
|
|
" float4 pos : SV_Position;\n"
|
|
|
|
" float4 color : COLOR;\n"
|
|
|
|
"};\n"
|
|
|
|
"\n"
|
|
|
|
"VertToFrag main(in VertData v)\n"
|
|
|
|
"{\n"
|
|
|
|
" VertToFrag vtf;\n"
|
2017-10-24 03:12:10 +00:00
|
|
|
" vtf.color = color;\n"
|
|
|
|
" vtf.pos = mul(xf, float4(v.posIn.xyz, 1.0));\n"
|
2017-09-03 05:53:38 +00:00
|
|
|
" return vtf;\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
static const char* FS =
|
|
|
|
"struct VertToFrag\n"
|
|
|
|
"{\n"
|
|
|
|
" float4 pos : SV_Position;\n"
|
|
|
|
" float4 color : COLOR;\n"
|
|
|
|
"};\n"
|
|
|
|
"\n"
|
|
|
|
"float4 main(in VertToFrag vtf) : SV_Target0\n"
|
|
|
|
"{\n"
|
|
|
|
" return vtf.color;\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CAABoxShader)
|
|
|
|
|
2017-11-06 06:58:04 +00:00
|
|
|
static boo::ObjToken<boo::IVertexFormat> s_VtxFmt;
|
|
|
|
static boo::ObjToken<boo::IShaderPipeline> s_Pipeline;
|
|
|
|
static boo::ObjToken<boo::IShaderPipeline> s_zOnlyPipeline;
|
2017-09-03 05:53:38 +00:00
|
|
|
|
|
|
|
struct CAABoxShaderD3DDataBindingFactory : TShader<CAABoxShader>::IDataBindingFactory
|
|
|
|
{
|
2017-11-06 06:58:04 +00:00
|
|
|
boo::ObjToken<boo::IShaderDataBinding>
|
|
|
|
BuildShaderDataBinding(boo::IGraphicsDataFactory::Context& ctx,
|
|
|
|
CAABoxShader& filter)
|
2017-09-03 05:53:38 +00:00
|
|
|
{
|
|
|
|
boo::ID3DDataFactory::Context& cctx = static_cast<boo::ID3DDataFactory::Context&>(ctx);
|
|
|
|
|
2017-11-06 06:58:04 +00:00
|
|
|
boo::ObjToken<boo::IGraphicsBuffer> bufs[] = {filter.m_uniBuf.get()};
|
2017-09-03 05:53:38 +00:00
|
|
|
return cctx.newShaderDataBinding(filter.m_zOnly ? s_zOnlyPipeline : s_Pipeline, s_VtxFmt,
|
2017-11-06 06:58:04 +00:00
|
|
|
filter.m_vbo.get(), nullptr, nullptr, 1, bufs,
|
2017-09-03 05:53:38 +00:00
|
|
|
nullptr, nullptr, nullptr, 0, nullptr, nullptr, nullptr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TShader<CAABoxShader>::IDataBindingFactory* CAABoxShader::Initialize(boo::ID3DDataFactory::Context& ctx)
|
|
|
|
{
|
|
|
|
const boo::VertexElementDescriptor VtxVmt[] =
|
|
|
|
{
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::Position4},
|
|
|
|
};
|
|
|
|
s_VtxFmt = ctx.newVertexFormat(1, VtxVmt);
|
|
|
|
s_Pipeline = ctx.newShaderPipeline(VS, FS, nullptr, nullptr, nullptr, s_VtxFmt, boo::BlendFactor::SrcAlpha,
|
|
|
|
boo::BlendFactor::InvSrcAlpha, boo::Primitive::TriStrips,
|
|
|
|
boo::ZTest::LEqual, true, true, false, boo::CullMode::None);
|
|
|
|
s_zOnlyPipeline = ctx.newShaderPipeline(VS, FS, nullptr, nullptr, nullptr, s_VtxFmt, boo::BlendFactor::SrcAlpha,
|
|
|
|
boo::BlendFactor::InvSrcAlpha, boo::Primitive::TriStrips,
|
|
|
|
boo::ZTest::LEqual, true, false, false, boo::CullMode::None);
|
|
|
|
return new CAABoxShaderD3DDataBindingFactory;
|
|
|
|
}
|
|
|
|
|
2017-11-06 06:58:04 +00:00
|
|
|
template <>
|
|
|
|
void CAABoxShader::Shutdown<boo::ID3DDataFactory>()
|
|
|
|
{
|
|
|
|
s_VtxFmt.reset();
|
|
|
|
s_Pipeline.reset();
|
|
|
|
s_zOnlyPipeline.reset();
|
|
|
|
}
|
|
|
|
|
2017-09-03 05:53:38 +00:00
|
|
|
}
|