2017-04-07 05:35:09 +00:00
|
|
|
#include "CRadarPaintShader.hpp"
|
|
|
|
#include "TShader.hpp"
|
|
|
|
#include "Graphics/CTexture.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
static const char* VS =
|
|
|
|
"#include <metal_stdlib>\n"
|
|
|
|
"using namespace metal;\n"
|
|
|
|
"struct VertData\n"
|
|
|
|
"{\n"
|
|
|
|
" float4 posIn[4];\n"
|
|
|
|
" float4 uvIn[4];\n"
|
|
|
|
" float4 colorIn;\n"
|
|
|
|
"};\n"
|
|
|
|
"\n"
|
|
|
|
"struct RadarPaintUniform\n"
|
|
|
|
"{\n"
|
|
|
|
" float4x4 xf;\n"
|
|
|
|
"};\n"
|
|
|
|
"\n"
|
|
|
|
"struct VertToFrag\n"
|
|
|
|
"{\n"
|
|
|
|
" float4 position [[ position ]];\n"
|
|
|
|
" float4 color;\n"
|
|
|
|
" float2 uv;\n"
|
|
|
|
"};\n"
|
|
|
|
"\n"
|
|
|
|
"vertex VertToFrag vmain(constant VertData* va [[ buffer(1) ]],\n"
|
|
|
|
" uint vertId [[ vertex_id ]], uint instId [[ instance_id ]],\n"
|
|
|
|
" constant RadarPaintUniform& rpu [[ buffer(2) ]])\n"
|
|
|
|
"{\n"
|
|
|
|
" VertToFrag vtf;\n"
|
|
|
|
" constant VertData& v = va[instId];\n"
|
|
|
|
" vtf.color = v.colorIn;\n"
|
|
|
|
" vtf.uv = v.uvIn[vertId].xy;\n"
|
2017-04-07 05:57:30 +00:00
|
|
|
" vtf.position = rpu.xf * float4(v.posIn[vertId].xyz, 1.0);\n"
|
2017-04-07 05:35:09 +00:00
|
|
|
" return vtf;\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
static const char* FS =
|
|
|
|
"#include <metal_stdlib>\n"
|
|
|
|
"using namespace metal;\n"
|
|
|
|
"struct VertToFrag\n"
|
|
|
|
"{\n"
|
|
|
|
" float4 position [[ position ]];\n"
|
|
|
|
" float4 color;\n"
|
|
|
|
" float2 uv;\n"
|
|
|
|
"};\n"
|
|
|
|
"\n"
|
|
|
|
"fragment float4 fmain(VertToFrag vtf [[ stage_in ]],\n"
|
2018-01-07 05:19:49 +00:00
|
|
|
" sampler samp [[ sampler(0) ]],\n"
|
2017-04-07 05:35:09 +00:00
|
|
|
" texture2d<float> tex [[ texture(0) ]])\n"
|
|
|
|
"{\n"
|
|
|
|
" return vtf.color * tex.sample(samp, vtf.uv);\n"
|
|
|
|
"}\n";
|
|
|
|
|
|
|
|
URDE_DECL_SPECIALIZE_SHADER(CRadarPaintShader)
|
|
|
|
|
2017-11-05 06:17:12 +00:00
|
|
|
static boo::ObjToken<boo::IVertexFormat> s_VtxFmt;
|
|
|
|
static boo::ObjToken<boo::IShaderPipeline> s_Pipeline;
|
2017-04-07 05:35:09 +00:00
|
|
|
|
|
|
|
struct CRadarPaintShaderMetalDataBindingFactory : TShader<CRadarPaintShader>::IDataBindingFactory
|
|
|
|
{
|
2017-11-05 06:17:12 +00:00
|
|
|
boo::ObjToken<boo::IShaderDataBinding> BuildShaderDataBinding(boo::IGraphicsDataFactory::Context& ctx,
|
|
|
|
CRadarPaintShader& filter)
|
2017-04-07 05:35:09 +00:00
|
|
|
{
|
|
|
|
boo::MetalDataFactory::Context& cctx = static_cast<boo::MetalDataFactory::Context&>(ctx);
|
|
|
|
|
2017-11-05 06:17:12 +00:00
|
|
|
boo::ObjToken<boo::IGraphicsBuffer> bufs[] = {filter.m_uniBuf.get()};
|
|
|
|
boo::ObjToken<boo::ITexture> texs[] = {filter.m_tex->GetBooTexture()};
|
2017-04-07 05:35:09 +00:00
|
|
|
return cctx.newShaderDataBinding(s_Pipeline, s_VtxFmt,
|
2017-11-05 06:17:12 +00:00
|
|
|
nullptr, filter.m_vbo.get(), nullptr, 1, bufs,
|
2017-04-07 05:35:09 +00:00
|
|
|
nullptr, nullptr, nullptr, 1, texs, nullptr, nullptr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TShader<CRadarPaintShader>::IDataBindingFactory*
|
|
|
|
CRadarPaintShader::Initialize(boo::MetalDataFactory::Context& ctx)
|
|
|
|
{
|
|
|
|
const boo::VertexElementDescriptor VtxVmt[] =
|
|
|
|
{
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::Position4, 0},
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::Position4, 1},
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::Position4, 2},
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::Position4, 3},
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::UV4, 0},
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::UV4, 1},
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::UV4, 2},
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::UV4, 3},
|
|
|
|
{nullptr, nullptr, boo::VertexSemantic::Color}
|
|
|
|
};
|
2017-05-11 19:14:38 +00:00
|
|
|
s_VtxFmt = ctx.newVertexFormat(9, VtxVmt);
|
2018-01-07 05:19:49 +00:00
|
|
|
s_Pipeline = ctx.newShaderPipeline(VS, FS, nullptr, nullptr, s_VtxFmt,
|
2017-04-07 05:35:09 +00:00
|
|
|
boo::BlendFactor::SrcAlpha,
|
|
|
|
boo::BlendFactor::One, boo::Primitive::TriStrips,
|
|
|
|
boo::ZTest::None, false, true, false, boo::CullMode::None);
|
|
|
|
return new CRadarPaintShaderMetalDataBindingFactory;
|
|
|
|
}
|
|
|
|
|
2017-11-05 06:17:12 +00:00
|
|
|
template <>
|
|
|
|
void CRadarPaintShader::Shutdown<boo::MetalDataFactory>()
|
|
|
|
{
|
|
|
|
s_VtxFmt.reset();
|
|
|
|
s_Pipeline.reset();
|
|
|
|
}
|
|
|
|
|
2017-04-07 05:35:09 +00:00
|
|
|
}
|