mirror of https://github.com/AxioDL/metaforce.git
367 lines
11 KiB
C++
367 lines
11 KiB
C++
#include "Specter/View.hpp"
|
|
#include "Specter/ViewResources.hpp"
|
|
#include "Specter/RootView.hpp"
|
|
|
|
namespace Specter
|
|
{
|
|
static LogVisor::LogModule Log("Specter::View");
|
|
|
|
void View::Resources::init(boo::GLDataFactory* factory, const ThemeData& theme)
|
|
{
|
|
static const char* SolidVS =
|
|
"#version 330\n"
|
|
"layout(location=0) in vec3 posIn;\n"
|
|
"layout(location=1) in vec4 colorIn;\n"
|
|
SPECTER_VIEW_VERT_BLOCK_GLSL
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" vec4 color;\n"
|
|
"};\n"
|
|
"out VertToFrag vtf;\n"
|
|
"void main()\n"
|
|
"{\n"
|
|
" vtf.color = colorIn * mulColor;\n"
|
|
" gl_Position = mv * vec4(posIn, 1.0);\n"
|
|
"}\n";
|
|
|
|
static const char* SolidFS =
|
|
"#version 330\n"
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" vec4 color;\n"
|
|
"};\n"
|
|
"in VertToFrag vtf;\n"
|
|
"layout(location=0) out vec4 colorOut;\n"
|
|
"void main()\n"
|
|
"{\n"
|
|
" colorOut = vtf.color;\n"
|
|
"}\n";
|
|
|
|
static const char* TexVS =
|
|
"#version 330\n"
|
|
"layout(location=0) in vec3 posIn;\n"
|
|
"layout(location=1) in vec2 uvIn;\n"
|
|
SPECTER_VIEW_VERT_BLOCK_GLSL
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" vec4 color;\n"
|
|
" vec2 uv;\n"
|
|
"};\n"
|
|
"out VertToFrag vtf;\n"
|
|
"void main()\n"
|
|
"{\n"
|
|
" vtf.uv = uvIn;\n"
|
|
" vtf.color = mulColor;\n"
|
|
" gl_Position = mv * vec4(posIn, 1.0);\n"
|
|
"}\n";
|
|
|
|
static const char* TexFS =
|
|
"#version 330\n"
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" vec4 color;\n"
|
|
" vec2 uv;\n"
|
|
"};\n"
|
|
"in VertToFrag vtf;\n"
|
|
"uniform sampler2D tex;\n"
|
|
"layout(location=0) out vec4 colorOut;\n"
|
|
"void main()\n"
|
|
"{\n"
|
|
" colorOut = texture(tex, vtf.uv) * vtf.color;\n"
|
|
"}\n";
|
|
|
|
static const char* BlockNames[] = {"SpecterViewBlock"};
|
|
|
|
m_solidShader = factory->newShaderPipeline(SolidVS, SolidFS, 0, nullptr, 1, BlockNames,
|
|
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
|
false, false, false);
|
|
|
|
m_texShader = factory->newShaderPipeline(TexVS, TexFS, 1, "tex", 1, BlockNames,
|
|
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
|
false, false, false);
|
|
}
|
|
|
|
#if _WIN32
|
|
|
|
void View::Resources::init(boo::ID3DDataFactory* factory, const ThemeData& theme)
|
|
{
|
|
static const char* SolidVS =
|
|
"struct VertData\n"
|
|
"{\n"
|
|
" float3 posIn : POSITION;\n"
|
|
" float4 colorIn : COLOR;\n"
|
|
"};\n"
|
|
SPECTER_VIEW_VERT_BLOCK_HLSL
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" float4 position : SV_Position;\n"
|
|
" float4 color : COLOR;\n"
|
|
"};\n"
|
|
"VertToFrag main(in VertData v)\n"
|
|
"{\n"
|
|
" VertToFrag vtf;\n"
|
|
" vtf.color = v.colorIn * mulColor;\n"
|
|
" vtf.position = mul(mv, float4(v.posIn, 1.0));\n"
|
|
" return vtf;\n"
|
|
"}\n";
|
|
|
|
static const char* SolidFS =
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" float4 position : SV_Position;\n"
|
|
" float4 color : COLOR;\n"
|
|
"};\n"
|
|
"float4 main(in VertToFrag vtf) : SV_Target0\n"
|
|
"{\n"
|
|
" return vtf.color;\n"
|
|
"}\n";
|
|
|
|
static const char* TexVS =
|
|
"struct VertData\n"
|
|
"{\n"
|
|
" float3 posIn : POSITION;\n"
|
|
" float2 uvIn : UV;\n"
|
|
"};\n"
|
|
SPECTER_VIEW_VERT_BLOCK_HLSL
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" float4 position : SV_Position;\n"
|
|
" float4 color : COLOR;\n"
|
|
" float2 uv : UV;\n"
|
|
"};\n"
|
|
"VertToFrag main(in VertData v)\n"
|
|
"{\n"
|
|
" VertToFrag vtf;\n"
|
|
" vtf.uv = v.uvIn;\n"
|
|
" vtf.color = mulColor;\n"
|
|
" vtf.position = mul(mv, float4(v.posIn, 1.0));\n"
|
|
" return vtf;\n"
|
|
"}\n";
|
|
|
|
static const char* TexFS =
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" float4 position : SV_Position;\n"
|
|
" float4 color : COLOR;\n"
|
|
" float2 uv : UV;\n"
|
|
"};\n"
|
|
"Texture2D tex : register(t0);\n"
|
|
"SamplerState samp : register(s0);\n"
|
|
"float4 main(in VertToFrag vtf) : SV_Target0\n"
|
|
"{\n"
|
|
" return tex.Sample(samp, vtf.uv) * vtf.color;\n"
|
|
"}\n";
|
|
|
|
boo::VertexElementDescriptor solidvdescs[] =
|
|
{
|
|
{nullptr, nullptr, boo::VertexSemantic::Position4},
|
|
{nullptr, nullptr, boo::VertexSemantic::Color}
|
|
};
|
|
m_solidVtxFmt = factory->newVertexFormat(2, solidvdescs);
|
|
|
|
ComPtr<ID3DBlob> vertBlob;
|
|
ComPtr<ID3DBlob> fragBlob;
|
|
ComPtr<ID3DBlob> pipeBlob;
|
|
m_solidShader = factory->newShaderPipeline(SolidVS, SolidFS, vertBlob, fragBlob, pipeBlob, m_solidVtxFmt,
|
|
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
|
false, false, false);
|
|
|
|
boo::VertexElementDescriptor texvdescs[] =
|
|
{
|
|
{nullptr, nullptr, boo::VertexSemantic::Position4},
|
|
{nullptr, nullptr, boo::VertexSemantic::UV4}
|
|
};
|
|
m_texVtxFmt = factory->newVertexFormat(2, texvdescs);
|
|
|
|
vertBlob.Reset();
|
|
fragBlob.Reset();
|
|
pipeBlob.Reset();
|
|
m_texShader = factory->newShaderPipeline(TexVS, TexFS, vertBlob, fragBlob, pipeBlob, m_texVtxFmt,
|
|
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
|
false, false, false);
|
|
}
|
|
|
|
#elif BOO_HAS_METAL
|
|
|
|
void View::Resources::init(boo::MetalDataFactory* factory, const ThemeData& theme)
|
|
{
|
|
static const char* SolidVS =
|
|
"#include <metal_stdlib>\n"
|
|
"using namespace metal;\n"
|
|
"struct VertData\n"
|
|
"{\n"
|
|
" float3 posIn [[ attribute(0) ]];\n"
|
|
" float4 colorIn [[ attribute(1) ]];\n"
|
|
"};\n"
|
|
SPECTER_VIEW_VERT_BLOCK_METAL
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" float4 position [[ position ]];\n"
|
|
" float4 color;\n"
|
|
"};\n"
|
|
"vertex VertToFrag vmain(VertData v [[ stage_in ]], constant SpecterViewBlock& view [[ buffer(2) ]])\n"
|
|
"{\n"
|
|
" VertToFrag vtf;\n"
|
|
" vtf.color = v.colorIn * view.mulColor;\n"
|
|
" vtf.position = view.mv * float4(v.posIn, 1.0);\n"
|
|
" return vtf;\n"
|
|
"}\n";
|
|
|
|
static const char* SolidFS =
|
|
"#include <metal_stdlib>\n"
|
|
"using namespace metal;\n"
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" float4 position [[ position ]];\n"
|
|
" float4 color;\n"
|
|
"};\n"
|
|
"fragment float4 fmain(VertToFrag vtf [[ stage_in ]])\n"
|
|
"{\n"
|
|
" return vtf.color;\n"
|
|
"}\n";
|
|
|
|
static const char* TexVS =
|
|
"#include <metal_stdlib>\n"
|
|
"using namespace metal;\n"
|
|
"struct VertData\n"
|
|
"{\n"
|
|
" float3 posIn [[ attribute(0) ]];\n"
|
|
" float2 uvIn [[ attribute(1) ]];\n"
|
|
"};\n"
|
|
SPECTER_VIEW_VERT_BLOCK_METAL
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" float4 position [[ position ]];\n"
|
|
" float4 color;\n"
|
|
" float2 uv;\n"
|
|
"};\n"
|
|
"vertex VertToFrag vmain(VertData v [[ stage_in ]], constant SpecterViewBlock& view [[ buffer(2) ]])\n"
|
|
"{\n"
|
|
" VertToFrag vtf;\n"
|
|
" vtf.uv = v.uvIn;\n"
|
|
" vtf.color = view.mulColor;\n"
|
|
" vtf.position = view.mv * float4(v.posIn, 1.0);\n"
|
|
" return vtf;\n"
|
|
"}\n";
|
|
|
|
static const char* TexFS =
|
|
"#include <metal_stdlib>\n"
|
|
"using namespace metal;\n"
|
|
"constexpr sampler samp(address::repeat);\n"
|
|
"struct VertToFrag\n"
|
|
"{\n"
|
|
" float4 position [[ position ]];\n"
|
|
" float4 color;\n"
|
|
" float2 uv;\n"
|
|
"};\n"
|
|
"fragment float4 fmain(VertToFrag vtf [[ stage_in ]], texture2d<float> tex [[ texture(0) ]])\n"
|
|
"{\n"
|
|
" return tex.sample(samp, vtf.uv) * vtf.color;\n"
|
|
"}\n";
|
|
|
|
boo::VertexElementDescriptor solidvdescs[] =
|
|
{
|
|
{nullptr, nullptr, boo::VertexSemantic::Position4},
|
|
{nullptr, nullptr, boo::VertexSemantic::Color}
|
|
};
|
|
m_solidVtxFmt = factory->newVertexFormat(2, solidvdescs);
|
|
|
|
m_solidShader = factory->newShaderPipeline(SolidVS, SolidFS, m_solidVtxFmt, 1,
|
|
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
|
false, false, false);
|
|
|
|
boo::VertexElementDescriptor texvdescs[] =
|
|
{
|
|
{nullptr, nullptr, boo::VertexSemantic::Position4},
|
|
{nullptr, nullptr, boo::VertexSemantic::UV4}
|
|
};
|
|
m_texVtxFmt = factory->newVertexFormat(2, texvdescs);
|
|
|
|
m_texShader = factory->newShaderPipeline(TexVS, TexFS, m_texVtxFmt, 1,
|
|
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
|
|
false, false, false);
|
|
}
|
|
|
|
#endif
|
|
|
|
void View::buildResources(ViewResources& res)
|
|
{
|
|
m_bgVertBuf =
|
|
res.m_factory->newDynamicBuffer(boo::BufferUse::Vertex,
|
|
sizeof(SolidShaderVert), 4);
|
|
|
|
m_viewVertBlockBuf =
|
|
res.m_factory->newDynamicBuffer(boo::BufferUse::Uniform,
|
|
sizeof(ViewBlock), 1);
|
|
|
|
if (!res.m_viewRes.m_solidVtxFmt)
|
|
{
|
|
boo::VertexElementDescriptor vdescs[] =
|
|
{
|
|
{m_bgVertBuf, nullptr, boo::VertexSemantic::Position4},
|
|
{m_bgVertBuf, nullptr, boo::VertexSemantic::Color}
|
|
};
|
|
m_bgVtxFmt = res.m_factory->newVertexFormat(2, vdescs);
|
|
m_bgShaderBinding =
|
|
res.m_factory->newShaderDataBinding(res.m_viewRes.m_solidShader, m_bgVtxFmt,
|
|
m_bgVertBuf, nullptr, nullptr, 1,
|
|
(boo::IGraphicsBuffer**)&m_viewVertBlockBuf,
|
|
0, nullptr);
|
|
}
|
|
else
|
|
{
|
|
m_bgShaderBinding =
|
|
res.m_factory->newShaderDataBinding(res.m_viewRes.m_solidShader, res.m_viewRes.m_solidVtxFmt,
|
|
m_bgVertBuf, nullptr, nullptr, 1,
|
|
(boo::IGraphicsBuffer**)&m_viewVertBlockBuf,
|
|
0, nullptr);
|
|
}
|
|
}
|
|
|
|
View::View(ViewResources& res)
|
|
: m_rootView(*static_cast<RootView*>(this)),
|
|
m_parentView(*static_cast<RootView*>(this))
|
|
{
|
|
buildResources(res);
|
|
}
|
|
|
|
View::View(ViewResources& res, View& parentView)
|
|
: m_rootView(parentView.rootView()),
|
|
m_parentView(parentView)
|
|
{
|
|
buildResources(res);
|
|
}
|
|
|
|
void View::updateSize()
|
|
{
|
|
resized(m_rootView.rootRect(), m_subRect);
|
|
}
|
|
|
|
void View::resized(const boo::SWindowRect& root, const boo::SWindowRect& sub)
|
|
{
|
|
m_subRect = sub;
|
|
m_viewVertBlock.setViewRect(root, sub);
|
|
m_bgRect[0].m_pos.assign(0.f, sub.size[1], 0.f);
|
|
m_bgRect[1].m_pos.assign(0.f, 0.f, 0.f);
|
|
m_bgRect[2].m_pos.assign(sub.size[0], sub.size[1], 0.f);
|
|
m_bgRect[3].m_pos.assign(sub.size[0], 0.f, 0.f);
|
|
m_viewVertBlockBuf->load(&m_viewVertBlock, sizeof(ViewBlock));
|
|
m_bgVertBuf->load(m_bgRect, sizeof(SolidShaderVert) * 4);
|
|
}
|
|
|
|
void View::draw(boo::IGraphicsCommandQueue* gfxQ)
|
|
{
|
|
gfxQ->setShaderDataBinding(m_bgShaderBinding);
|
|
gfxQ->setDrawPrimitive(boo::Primitive::TriStrips);
|
|
gfxQ->draw(0, 4);
|
|
}
|
|
|
|
void View::commitResources(ViewResources& res)
|
|
{
|
|
if (m_gfxData)
|
|
Log.report(LogVisor::FatalError, "multiple resource commits not allowed");
|
|
m_gfxData = res.m_factory->commit();
|
|
}
|
|
|
|
}
|