Danbias/Code/OysterGraphics/Render/Rendering/BasicRender.cpp

100 lines
2.9 KiB
C++
Raw Normal View History

#include "Render.h"
#include "../Resources/Deffered.h"
2013-11-21 18:31:16 +01:00
#include "../../Definitions/GraphicalDefinition.h"
#include "../../Model/ModelInfo.h"
#include <map>
#include <vector>
namespace Oyster
{
namespace Graphics
{
namespace Render
{
namespace Rendering
{
Definitions::Pointlight pl;
void Basic::NewFrame(Oyster::Math::Float4x4 View, Oyster::Math::Float4x4 Projection, Definitions::Pointlight* Lights, int numLights)
{
Preparations::Basic::ClearBackBuffer(Oyster::Math::Float4(1,0,0,1));
Preparations::Basic::ClearRTV(Resources::Deffered::GBufferRTV,Resources::Deffered::GBufferSize,Math::Float4(1,0,0,1));
Core::PipelineManager::SetRenderPass(Graphics::Render::Resources::Deffered::GeometryPass);
2013-11-21 18:31:16 +01:00
Definitions::VP vp;
vp.V = View;
vp.P = Projection;
void* data = Resources::Deffered::VPData.Map();
2013-11-21 18:31:16 +01:00
memcpy(data, &vp, sizeof(Definitions::VP));
Resources::Deffered::VPData.Unmap();
2013-11-21 18:31:16 +01:00
Definitions::LightConstants lc;
lc.InvProj = Projection.GetInverse();
lc.Pixels = Core::resolution;
lc.Lights = numLights;
lc.View = View;
2014-01-08 07:01:59 +01:00
lc.Proj = Projection;
lc.SSAORadius = 3;
data = Resources::Deffered::LightConstantsData.Map();
memcpy(data, &lc, sizeof(Definitions::LightConstants));
Resources::Deffered::LightConstantsData.Unmap();
data = Resources::Deffered::PointLightsData.Map();
memcpy(data, Lights, sizeof(Definitions::Pointlight) * numLights);
Resources::Deffered::PointLightsData.Unmap();
}
2013-11-21 18:31:16 +01:00
2014-01-08 07:01:59 +01:00
void Basic::RenderScene(Model::Model* models, int count, Math::Matrix View, Math::Matrix Projection)
{
2013-11-21 13:50:43 +01:00
for(int i = 0; i < count; ++i)
{
if(models[i].Visible)
{
2014-01-08 07:01:59 +01:00
Definitions::PerModel pm;
pm.WV = View * models[i].WorldMatrix;
pm.WVP = Projection * pm.WV;
void* data = Resources::Deffered::ModelData.Map();
2014-01-08 07:01:59 +01:00
memcpy(data,&(pm),sizeof(pm));
Resources::Deffered::ModelData.Unmap();
2013-11-21 13:50:43 +01:00
Model::ModelInfo* info = (Model::ModelInfo*)models[i].info;
if(info->Material.size())
{
Core::deviceContext->PSSetShaderResources(0,info->Material.size(),&(info->Material[0]));
}
2013-11-21 13:50:43 +01:00
info->Vertices->Apply();
if(info->Indexed)
2013-11-21 13:50:43 +01:00
{
info->Indecies->Apply();
Oyster::Graphics::Core::deviceContext->DrawIndexed(info->VertexCount,0,0);
2013-11-21 13:50:43 +01:00
}
else
{
Oyster::Graphics::Core::deviceContext->Draw(info->VertexCount,0);
2013-11-21 13:50:43 +01:00
}
}
}
}
void Basic::EndFrame()
{
Core::PipelineManager::SetRenderPass(Resources::Deffered::LightPass);
Core::deviceContext->Dispatch((Core::resolution.x + 15U) / 16U,(Core::resolution.y + 15U) / 16U,1);
2014-01-08 07:01:59 +01:00
Core::PipelineManager::SetRenderPass(Resources::Deffered::PostPass);
Core::deviceContext->Dispatch((Core::resolution.x + 15U) / 16U,(Core::resolution.y + 15U) / 16U,1);
Core::swapChain->Present(0,0);
}
}
}
}
}