2007-05-20 11:03:49 -07:00
|
|
|
// Copyright (C) 2002-2007 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#include "CD3D8ShaderMaterialRenderer.h"
|
|
|
|
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
#ifdef _IRR_COMPILE_WITH_DIRECT3D_8_
|
|
|
|
#include <d3d8.h>
|
|
|
|
#include <d3dx8core.h>
|
|
|
|
#pragma comment (lib, "d3dx8.lib")
|
|
|
|
|
|
|
|
#include "IShaderConstantSetCallBack.h"
|
|
|
|
#include "IMaterialRendererServices.h"
|
|
|
|
#include "IVideoDriver.h"
|
|
|
|
#include "os.h"
|
|
|
|
|
|
|
|
#ifndef _IRR_D3D_NO_SHADER_DEBUGGING
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
2007-11-18 05:03:57 -08:00
|
|
|
namespace video
|
2007-05-20 11:03:49 -07:00
|
|
|
{
|
|
|
|
|
|
|
|
//! Public constructor
|
2007-11-18 05:03:57 -08:00
|
|
|
CD3D8ShaderMaterialRenderer::CD3D8ShaderMaterialRenderer(IDirect3DDevice8* d3ddev, video::IVideoDriver* driver,
|
2007-05-20 11:03:49 -07:00
|
|
|
s32& outMaterialTypeNr, const c8* vertexShaderProgram, const c8* pixelShaderProgram,
|
|
|
|
IShaderConstantSetCallBack* callback, IMaterialRenderer* baseMaterial, s32 userData)
|
|
|
|
: pID3DDevice(d3ddev), Driver(driver), CallBack(callback), BaseMaterial(baseMaterial),
|
|
|
|
VertexShader(0), OldVertexShader(0), PixelShader(0), UserData(userData)
|
|
|
|
{
|
|
|
|
if (BaseMaterial)
|
|
|
|
BaseMaterial->grab();
|
|
|
|
|
|
|
|
if (CallBack)
|
|
|
|
CallBack->grab();
|
|
|
|
|
|
|
|
init(outMaterialTypeNr, vertexShaderProgram, pixelShaderProgram, EVT_STANDARD);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! constructor only for use by derived classes who want to
|
|
|
|
//! create a fall back material for example.
|
|
|
|
CD3D8ShaderMaterialRenderer::CD3D8ShaderMaterialRenderer(IDirect3DDevice8* d3ddev,
|
2007-11-18 05:03:57 -08:00
|
|
|
video::IVideoDriver* driver,
|
2007-05-20 11:03:49 -07:00
|
|
|
IShaderConstantSetCallBack* callback,
|
|
|
|
IMaterialRenderer* baseMaterial,
|
|
|
|
s32 userData)
|
|
|
|
: pID3DDevice(d3ddev), Driver(driver), BaseMaterial(baseMaterial), CallBack(callback),
|
|
|
|
VertexShader(0), PixelShader(0), UserData(userData)
|
|
|
|
{
|
|
|
|
if (BaseMaterial)
|
|
|
|
BaseMaterial->grab();
|
|
|
|
|
|
|
|
if (CallBack)
|
|
|
|
CallBack->grab();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//! Destructor
|
|
|
|
CD3D8ShaderMaterialRenderer::~CD3D8ShaderMaterialRenderer()
|
|
|
|
{
|
|
|
|
if (CallBack)
|
|
|
|
CallBack->drop();
|
|
|
|
|
|
|
|
if (VertexShader)
|
|
|
|
pID3DDevice->DeleteVertexShader(VertexShader);
|
|
|
|
|
|
|
|
if (PixelShader)
|
|
|
|
pID3DDevice->DeletePixelShader(PixelShader);
|
|
|
|
|
|
|
|
if (BaseMaterial)
|
|
|
|
BaseMaterial->drop ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CD3D8ShaderMaterialRenderer::init(s32& outMaterialTypeNr, const c8* vertexShaderProgram,
|
|
|
|
const c8* pixelShaderProgram, E_VERTEX_TYPE type)
|
|
|
|
{
|
|
|
|
outMaterialTypeNr = -1;
|
|
|
|
|
|
|
|
// create vertex shader
|
|
|
|
if (!createVertexShader(vertexShaderProgram, type))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// create pixel shader
|
|
|
|
if (!createPixelShader(pixelShaderProgram))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// register myself as new material
|
|
|
|
outMaterialTypeNr = Driver->addMaterialRenderer(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CD3D8ShaderMaterialRenderer::OnRender(IMaterialRendererServices* service, E_VERTEX_TYPE vtxtype)
|
|
|
|
{
|
|
|
|
// call callback to set shader constants
|
|
|
|
if (CallBack && (VertexShader || PixelShader))
|
|
|
|
CallBack->OnSetConstants(service, UserData);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-18 05:11:10 -07:00
|
|
|
void CD3D8ShaderMaterialRenderer::OnSetMaterial(const video::SMaterial& material, const video::SMaterial& lastMaterial,
|
2007-11-18 05:03:57 -08:00
|
|
|
bool resetAllRenderstates, video::IMaterialRendererServices* services)
|
2007-05-20 11:03:49 -07:00
|
|
|
{
|
|
|
|
if (material.MaterialType != lastMaterial.MaterialType || resetAllRenderstates)
|
|
|
|
{
|
|
|
|
if (VertexShader)
|
|
|
|
{
|
2007-11-18 05:03:57 -08:00
|
|
|
// We do not need to save and reset the old vertex shader, because
|
2007-05-20 11:03:49 -07:00
|
|
|
// in D3D8, this is mixed up with the fvf, and this is set by the driver
|
|
|
|
// every time.
|
|
|
|
//pID3DDevice->GetVertexShader(&OldVertexShader);
|
2007-11-18 05:03:57 -08:00
|
|
|
|
2007-05-20 11:03:49 -07:00
|
|
|
// set new vertex shader
|
|
|
|
if (FAILED(pID3DDevice->SetVertexShader(VertexShader)))
|
|
|
|
os::Printer::log("Could not set vertex shader.");
|
|
|
|
}
|
|
|
|
|
|
|
|
// set new pixel shader
|
|
|
|
if (PixelShader)
|
|
|
|
{
|
|
|
|
if (FAILED(pID3DDevice->SetPixelShader(PixelShader)))
|
|
|
|
os::Printer::log("Could not set pixel shader.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (BaseMaterial)
|
|
|
|
BaseMaterial->OnSetMaterial(material, material, true, services);
|
|
|
|
}
|
|
|
|
|
2007-11-18 05:03:57 -08:00
|
|
|
//let callback know used material
|
|
|
|
if (CallBack)
|
|
|
|
CallBack->OnSetMaterial(material);
|
|
|
|
|
2007-05-20 11:03:49 -07:00
|
|
|
services->setBasicRenderStates(material, lastMaterial, resetAllRenderstates);
|
|
|
|
}
|
|
|
|
|
2007-11-18 05:03:57 -08:00
|
|
|
void CD3D8ShaderMaterialRenderer::OnUnsetMaterial()
|
2007-05-20 11:03:49 -07:00
|
|
|
{
|
2007-11-18 05:03:57 -08:00
|
|
|
// We do not need to save and reset the old vertex shader, because
|
2007-05-20 11:03:49 -07:00
|
|
|
// in D3D8, this is mixed up with the fvf, and this is set by the driver
|
|
|
|
// every time.
|
|
|
|
// if (VertexShader)
|
|
|
|
// pID3DDevice->SetVertexShader(OldVertexShader);
|
|
|
|
|
|
|
|
if (PixelShader)
|
|
|
|
pID3DDevice->SetPixelShader(0);
|
|
|
|
|
|
|
|
if (BaseMaterial)
|
|
|
|
BaseMaterial->OnUnsetMaterial();
|
|
|
|
}
|
|
|
|
|
2007-11-18 05:03:57 -08:00
|
|
|
|
2007-05-20 11:03:49 -07:00
|
|
|
//! Returns if the material is transparent. The scene managment needs to know this
|
|
|
|
//! for being able to sort the materials by opaque and transparent.
|
2007-09-16 16:41:55 -07:00
|
|
|
bool CD3D8ShaderMaterialRenderer::isTransparent() const
|
2007-05-20 11:03:49 -07:00
|
|
|
{
|
2007-11-18 05:03:57 -08:00
|
|
|
return BaseMaterial ? BaseMaterial->isTransparent() : false;
|
2007-05-20 11:03:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CD3D8ShaderMaterialRenderer::createPixelShader(const c8* pxsh)
|
|
|
|
{
|
|
|
|
if (!pxsh)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// compile shader
|
|
|
|
|
|
|
|
LPD3DXBUFFER code = 0;
|
|
|
|
LPD3DXBUFFER errors = 0;
|
|
|
|
|
|
|
|
#ifdef _IRR_D3D_NO_SHADER_DEBUGGING
|
|
|
|
|
|
|
|
// compile shader without debug info
|
|
|
|
D3DXAssembleShader(pxsh, strlen(pxsh), 0, 0, &code, &errors);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
// compile shader and emitt some debug informations to
|
|
|
|
// make it possible to debug the shader in visual studio
|
|
|
|
|
2007-11-18 05:03:57 -08:00
|
|
|
static int irr_dbg_file_nr = 0;
|
2007-05-20 11:03:49 -07:00
|
|
|
++irr_dbg_file_nr;
|
|
|
|
char tmp[32];
|
|
|
|
sprintf(tmp, "irr_d3d8_dbg_shader_%d.psh", irr_dbg_file_nr);
|
|
|
|
|
|
|
|
FILE* f = fopen(tmp, "wb");
|
|
|
|
fwrite(pxsh, strlen(pxsh), 1, f);
|
|
|
|
fflush(f);
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
D3DXAssembleShaderFromFile(tmp, D3DXASM_DEBUG, 0, &code, &errors);
|
2007-11-18 05:03:57 -08:00
|
|
|
|
2007-05-20 11:03:49 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (errors)
|
|
|
|
{
|
|
|
|
// print out compilation errors.
|
|
|
|
os::Printer::log("Pixel shader compilation failed:");
|
|
|
|
os::Printer::log((c8*)errors->GetBufferPointer());
|
|
|
|
|
|
|
|
if (code)
|
|
|
|
code->Release();
|
|
|
|
|
|
|
|
errors->Release();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (FAILED(pID3DDevice->CreatePixelShader((DWORD*)code->GetBufferPointer(), &PixelShader)))
|
|
|
|
{
|
|
|
|
os::Printer::log("Could not create pixel shader.");
|
|
|
|
code->Release();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
code->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool CD3D8ShaderMaterialRenderer::createVertexShader(const char* vtxsh, E_VERTEX_TYPE type)
|
|
|
|
{
|
|
|
|
if (!vtxsh)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// compile shader
|
|
|
|
|
|
|
|
LPD3DXBUFFER code = 0;
|
|
|
|
LPD3DXBUFFER errors = 0;
|
|
|
|
|
|
|
|
#ifdef _IRR_D3D_NO_SHADER_DEBUGGING
|
|
|
|
|
|
|
|
// compile shader without debug info
|
|
|
|
D3DXAssembleShader(vtxsh, strlen(vtxsh), 0, 0, &code, &errors);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
// compile shader and emitt some debug informations to
|
|
|
|
// make it possible to debug the shader in visual studio
|
2007-11-18 05:03:57 -08:00
|
|
|
static int irr_dbg_file_nr = 0;
|
2007-05-20 11:03:49 -07:00
|
|
|
++irr_dbg_file_nr;
|
|
|
|
char tmp[32];
|
|
|
|
sprintf(tmp, "irr_d3d8_dbg_shader_%d.vsh", irr_dbg_file_nr);
|
|
|
|
|
|
|
|
FILE* f = fopen(tmp, "wb");
|
|
|
|
fwrite(vtxsh, strlen(vtxsh), 1, f);
|
|
|
|
fflush(f);
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
D3DXAssembleShaderFromFile(tmp, D3DXASM_DEBUG, 0, &code, &errors);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
if (errors)
|
|
|
|
{
|
|
|
|
// print out compilation errors.
|
|
|
|
os::Printer::log("Vertex shader compilation failed:");
|
|
|
|
os::Printer::log((c8*)errors->GetBufferPointer());
|
|
|
|
|
|
|
|
if (code)
|
|
|
|
code->Release();
|
|
|
|
|
|
|
|
errors->Release();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD* decl = 0;
|
|
|
|
|
|
|
|
DWORD dwStdDecl[] =
|
|
|
|
{
|
|
|
|
D3DVSD_STREAM(0),
|
|
|
|
D3DVSD_REG(0, D3DVSDT_FLOAT3), // position 0
|
|
|
|
D3DVSD_REG(1, D3DVSDT_FLOAT3), // normal 1
|
|
|
|
D3DVSD_REG(2, D3DVSDT_D3DCOLOR ),// color 2
|
|
|
|
D3DVSD_REG(3, D3DVSDT_FLOAT2 ), // tex1 3
|
|
|
|
D3DVSD_REG(4, D3DVSDT_FLOAT2 ), // tex2 4
|
|
|
|
D3DVSD_END()
|
|
|
|
};
|
|
|
|
|
|
|
|
DWORD dwTngtDecl[] =
|
|
|
|
{
|
|
|
|
D3DVSD_STREAM(0),
|
|
|
|
D3DVSD_REG(0 , D3DVSDT_FLOAT3), // position 0
|
|
|
|
D3DVSD_REG(1 , D3DVSDT_FLOAT3), // normal 1
|
|
|
|
D3DVSD_REG(2 , D3DVSDT_D3DCOLOR ),// color 2
|
|
|
|
D3DVSD_REG(3 , D3DVSDT_FLOAT2 ), // tex1 3
|
|
|
|
D3DVSD_REG(4, D3DVSDT_FLOAT3 ), // tangent 4
|
|
|
|
D3DVSD_REG(5, D3DVSDT_FLOAT3 ), // binormal 5
|
|
|
|
D3DVSD_END()
|
|
|
|
};
|
|
|
|
|
|
|
|
if (type == EVT_TANGENTS)
|
|
|
|
decl = dwTngtDecl;
|
|
|
|
else
|
2007-11-18 05:03:57 -08:00
|
|
|
decl = dwStdDecl;
|
2007-05-20 11:03:49 -07:00
|
|
|
|
|
|
|
if (FAILED(pID3DDevice->CreateVertexShader(decl,
|
|
|
|
(DWORD*)code->GetBufferPointer(), &VertexShader, 0)))
|
|
|
|
{
|
|
|
|
os::Printer::log("Could not create vertex shader.");
|
|
|
|
code->Release();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
code->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace video
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif // _IRR_COMPILE_WITH_DIRECT3D_8_
|
|
|
|
|