metaforce/specter/lib/View.cpp

361 lines
11 KiB
C++
Raw Normal View History

2015-11-21 23:45:02 +00:00
#include "Specter/View.hpp"
#include "Specter/ViewResources.hpp"
2015-11-29 02:55:30 +00:00
#include "Specter/RootView.hpp"
2015-11-21 23:45:02 +00:00
namespace Specter
{
2015-12-04 01:35:01 +00:00
void View::Resources::init(boo::GLDataFactory* factory, const ThemeData& theme)
2015-11-26 00:24:01 +00:00
{
2015-11-30 00:21:42 +00:00
static const char* SolidVS =
2015-11-26 00:24:01 +00:00
"#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;\n"
2015-11-26 23:03:56 +00:00
" gl_Position = mv * vec4(posIn, 1.0);\n"
2015-11-26 00:24:01 +00:00
"}\n";
2015-11-30 00:21:42 +00:00
static const char* SolidFS =
2015-11-26 00:24:01 +00:00
"#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";
2015-11-30 00:21:42 +00:00
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"
" vec2 uv;\n"
"};\n"
"out VertToFrag vtf;\n"
"void main()\n"
"{\n"
" vtf.uv = uvIn;\n"
" gl_Position = mv * vec4(posIn, 1.0);\n"
"}\n";
static const char* TexFS =
"#version 330\n"
"struct VertToFrag\n"
"{\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);\n"
"}\n";
2015-11-26 00:24:01 +00:00
static const char* BlockNames[] = {"SpecterViewBlock"};
2015-11-30 00:21:42 +00:00
m_solidShader = factory->newShaderPipeline(SolidVS, SolidFS, 0, nullptr, 1, BlockNames,
2015-11-26 00:24:01 +00:00
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
false, false, false);
2015-11-30 00:21:42 +00:00
m_texShader = factory->newShaderPipeline(TexVS, TexFS, 1, "tex", 1, BlockNames,
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
false, false, false);
2015-11-26 00:24:01 +00:00
}
2015-11-28 04:05:27 +00:00
#if _WIN32
2015-11-26 00:24:01 +00:00
2015-12-04 01:53:55 +00:00
void View::Resources::init(boo::ID3DDataFactory* factory, const ThemeData& theme)
2015-11-27 22:20:22 +00:00
{
2015-11-30 00:21:42 +00:00
static const char* SolidVS =
2015-11-27 22:20:22 +00:00
"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;\n"
" vtf.position = mul(mv, float4(v.posIn, 1.0));\n"
" return vtf;\n"
"}\n";
2015-11-30 00:21:42 +00:00
static const char* SolidFS =
2015-11-27 22:20:22 +00:00
"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";
2015-11-30 00:21:42 +00:00
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"
" float2 uv : UV;\n"
"};\n"
"VertToFrag main(in VertData v)\n"
"{\n"
" VertToFrag vtf;\n"
" vtf.uv = v.uvIn;\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"
" 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);\n"
"}\n";
2015-11-30 03:41:53 +00:00
boo::VertexElementDescriptor solidvdescs[] =
2015-11-27 22:20:22 +00:00
{
{nullptr, nullptr, boo::VertexSemantic::Position4},
{nullptr, nullptr, boo::VertexSemantic::Color | boo::VertexSemantic::Instanced}
};
2015-11-30 03:41:53 +00:00
m_solidVtxFmt = factory->newVertexFormat(2, solidvdescs);
2015-11-27 22:20:22 +00:00
ComPtr<ID3DBlob> vertBlob;
ComPtr<ID3DBlob> fragBlob;
ComPtr<ID3DBlob> pipeBlob;
2015-11-30 00:21:42 +00:00
m_solidShader = factory->newShaderPipeline(SolidVS, SolidFS, vertBlob, fragBlob, pipeBlob, m_solidVtxFmt,
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
false, false, false);
2015-11-30 03:41:53 +00:00
boo::VertexElementDescriptor texvdescs[] =
2015-11-30 00:21:42 +00:00
{
{nullptr, nullptr, boo::VertexSemantic::Position4},
{nullptr, nullptr, boo::VertexSemantic::UV4}
};
2015-11-30 03:41:53 +00:00
m_texVtxFmt = factory->newVertexFormat(2, texvdescs);
2015-11-30 00:21:42 +00:00
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);
2015-11-27 22:20:22 +00:00
}
2015-11-28 04:05:27 +00:00
#elif BOO_HAS_METAL
2015-12-04 01:53:55 +00:00
void View::Resources::init(boo::MetalDataFactory* factory, const ThemeData& theme)
2015-11-28 04:05:27 +00:00
{
2015-11-30 00:21:42 +00:00
static const char* SolidVS =
2015-11-28 04:05:27 +00:00
"#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;\n"
" vtf.position = view.mv * float4(v.posIn, 1.0);\n"
" return vtf;\n"
"}\n";
2015-11-30 00:21:42 +00:00
static const char* SolidFS =
2015-11-28 04:05:27 +00:00
"#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";
2015-11-30 00:21:42 +00:00
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"
" 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.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"
" float2 uv;\n"
"};\n"
"fragment float4 fmain(VertToFrag vtf [[ stage_in ]], texture2d<float> tex [[ texture(0) ]])\n"
"{\n"
" return tex.sample(samp, vtf.uv);\n"
"}\n";
2015-11-28 04:05:27 +00:00
2015-11-30 03:41:53 +00:00
boo::VertexElementDescriptor solidvdescs[] =
2015-11-28 04:05:27 +00:00
{
{nullptr, nullptr, boo::VertexSemantic::Position4},
{nullptr, nullptr, boo::VertexSemantic::Color | boo::VertexSemantic::Instanced}
};
2015-11-30 03:41:53 +00:00
m_solidVtxFmt = factory->newVertexFormat(2, solidvdescs);
2015-11-28 04:05:27 +00:00
2015-11-30 00:21:42 +00:00
m_solidShader = factory->newShaderPipeline(SolidVS, SolidFS, m_solidVtxFmt, 1,
2015-11-28 04:05:27 +00:00
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
false, false, false);
2015-11-30 00:21:42 +00:00
2015-11-30 03:41:53 +00:00
boo::VertexElementDescriptor texvdescs[] =
2015-11-30 00:21:42 +00:00
{
{nullptr, nullptr, boo::VertexSemantic::Position4},
{nullptr, nullptr, boo::VertexSemantic::UV4}
};
2015-11-30 03:41:53 +00:00
m_texVtxFmt = factory->newVertexFormat(2, texvdescs);
2015-11-30 00:21:42 +00:00
m_texShader = factory->newShaderPipeline(TexVS, TexFS, m_texVtxFmt, 1,
boo::BlendFactor::SrcAlpha, boo::BlendFactor::InvSrcAlpha,
false, false, false);
2015-11-28 04:05:27 +00:00
}
#endif
2015-11-27 22:20:22 +00:00
void View::buildResources(ViewResources& system)
2015-11-26 00:24:01 +00:00
{
2015-11-29 02:55:30 +00:00
m_bgColor = Zeus::CColor::skClear;
2015-11-26 00:24:01 +00:00
m_bgVertBuf =
system.m_factory->newDynamicBuffer(boo::BufferUse::Vertex,
sizeof(Zeus::CVector3f), 4);
m_bgInstBuf =
system.m_factory->newDynamicBuffer(boo::BufferUse::Vertex,
sizeof(Zeus::CColor), 1);
2015-11-26 07:35:43 +00:00
m_viewVertBlockBuf =
2015-11-26 00:24:01 +00:00
system.m_factory->newDynamicBuffer(boo::BufferUse::Uniform,
sizeof(ViewBlock), 1);
2015-11-26 00:24:01 +00:00
if (!system.m_viewRes.m_solidVtxFmt)
2015-11-26 00:24:01 +00:00
{
boo::VertexElementDescriptor vdescs[] =
{
2015-11-27 22:20:22 +00:00
{m_bgVertBuf, nullptr, boo::VertexSemantic::Position4},
2015-11-26 00:24:01 +00:00
{m_bgInstBuf, nullptr, boo::VertexSemantic::Color | boo::VertexSemantic::Instanced}
};
m_bgVtxFmt = system.m_factory->newVertexFormat(2, vdescs);
m_bgShaderBinding =
system.m_factory->newShaderDataBinding(system.m_viewRes.m_solidShader, m_bgVtxFmt,
2015-11-26 00:24:01 +00:00
m_bgVertBuf, m_bgInstBuf, nullptr, 1,
2015-11-26 07:35:43 +00:00
(boo::IGraphicsBuffer**)&m_viewVertBlockBuf,
2015-11-27 22:20:22 +00:00
0, nullptr);
}
else
{
m_bgShaderBinding =
system.m_factory->newShaderDataBinding(system.m_viewRes.m_solidShader, system.m_viewRes.m_solidVtxFmt,
2015-11-27 22:20:22 +00:00
m_bgVertBuf, m_bgInstBuf, nullptr, 1,
(boo::IGraphicsBuffer**)&m_viewVertBlockBuf,
2015-11-26 00:24:01 +00:00
0, nullptr);
}
2015-11-29 02:55:30 +00:00
}
View::View(ViewResources& system)
: m_rootView(*static_cast<RootView*>(this)),
m_parentView(*static_cast<RootView*>(this))
2015-11-29 02:55:30 +00:00
{
buildResources(system);
}
2015-11-26 00:24:01 +00:00
View::View(ViewResources& system, View& parentView)
2015-11-29 02:55:30 +00:00
: m_rootView(parentView.root()),
m_parentView(parentView)
{
buildResources(system);
}
void View::updateSize()
{
resized(m_rootView.rootRect(), m_subRect);
2015-11-26 00:24:01 +00:00
}
2015-11-26 23:03:56 +00:00
void View::resized(const boo::SWindowRect& root, const boo::SWindowRect& sub)
2015-11-26 07:35:43 +00:00
{
2015-11-29 02:55:30 +00:00
m_subRect = sub;
2015-11-26 23:03:56 +00:00
m_viewVertBlock.setViewRect(root, sub);
m_bgRect[0].assign(0.f, sub.size[1], 0.f);
m_bgRect[1].assign(0.f, 0.f, 0.f);
m_bgRect[2].assign(sub.size[0], sub.size[1], 0.f);
m_bgRect[3].assign(sub.size[0], 0.f, 0.f);
m_viewVertBlockBuf->load(&m_viewVertBlock, sizeof(ViewBlock));
m_bgVertBuf->load(m_bgRect, sizeof(Zeus::CVector3f) * 4);
2015-11-26 07:35:43 +00:00
}
2015-11-26 00:24:01 +00:00
void View::draw(boo::IGraphicsCommandQueue* gfxQ)
{
2015-11-26 07:35:43 +00:00
gfxQ->setShaderDataBinding(m_bgShaderBinding);
2015-11-26 23:03:56 +00:00
gfxQ->setDrawPrimitive(boo::Primitive::TriStrips);
2015-11-26 00:24:01 +00:00
gfxQ->draw(0, 4);
}
void View::commitResources(ViewResources& system)
2015-11-30 00:21:42 +00:00
{
m_gfxData.reset(system.m_factory->commit());
}
2015-11-21 23:45:02 +00:00
}