-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDeferredShadingDemo.cpp
501 lines (432 loc) · 17.4 KB
/
DeferredShadingDemo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
/**
Demo of Deferred Shading in OGRE using Multiple Render Targets and HLSL/GLSL high level
language shaders.
// W.J. :wumpus: van der Laan 2005 //
Deferred shading renders the scene to a 'fat' texture format, using a shader that outputs colour,
normal, depth, and possible other attributes per fragment. Multi Render Target is required as we
are dealing with many outputs which get written into multiple render textures in the same pass.
After rendering the scene in this format, the shading (lighting) can be done as a post process.
This means that lighting is done in screen space. Adding them requires nothing more than rendering
a screenful quad; thus the method allows for an enormous amount of lights without noticeable
performance loss.
Little lights affecting small area ("Minilights") can be even further optimised by rendering
their convex bounding geometry. This is also shown in this demo by 6 swarming lights.
The paper for GDC2004 on Deferred Shading can be found here:
http://www.talula.demon.co.uk/DeferredShading.pdf
This demo source file is in the public domain.
*/
#include "Ogre.h"
/*-----------------------------------------------------------------------------
| Disable rt shader system on this demo
-----------------------------------------------------------------------------*/
#ifdef USE_RTSHADER_SYSTEM
#undef USE_RTSHADER_SYSTEM
#endif
#include "SamplePlugin.h"
#include "SdkSample.h"
#if OGRE_PLATFORM == OGRE_PLATFORM_WIN32
#define WIN32_LEAN_AND_MEAN
#include "windows.h"
#endif
#include "DeferredShading.h"
#include "GeomUtils.h"
#include "SharedData.h"
using namespace Ogre;
using namespace OgreBites;
template<> SharedData* Singleton<SharedData>::ms_Singleton = 0;
const ColourValue SAMPLE_COLORS[] =
{ ColourValue::Red, ColourValue::Green, ColourValue::Blue,
ColourValue::White, ColourValue(1,1,0,1), ColourValue(1,0,1,1) };
class _OgreSampleClassExport Sample_DeferredShading : public SdkSample, public RenderTargetListener
{
protected:
DeferredShadingSystem *mSystem;
SelectMenu* mDisplayModeMenu;
public:
Sample_DeferredShading()
{
mInfo["Title"] = "Deferred Shading";
mInfo["Description"] = "A sample implementation of a deferred renderer using the compositor framework.";
mInfo["Thumbnail"] = "thumb_deferred.png";
mInfo["Category"] = "Lighting";
mInfo["Help"] = "See http://www.ogre3d.org/wiki/index.php/Deferred_Shading for more info";
}
~Sample_DeferredShading()
{
}
protected:
void cleanupContent(void)
{
delete ( SharedData::getSingletonPtr() );
delete mSystem;
}
bool frameRenderingQueued(const FrameEvent& evt)
{
if( SdkSample::frameRenderingQueued(evt) == false )
return false;
SharedData::getSingleton().iLastFrameTime = evt.timeSinceLastFrame;
if (SharedData::getSingleton().mMLAnimState)
SharedData::getSingleton().mMLAnimState->addTime(evt.timeSinceLastFrame);
return true;
}
void setupControls()
{
mTrayMgr->showCursor();
// create checkboxs to toggle ssao and shadows
mTrayMgr->createCheckBox(TL_TOPLEFT, "DeferredShading", "Deferred Shading", 220)->setChecked(true, false);
mTrayMgr->createCheckBox(TL_TOPLEFT, "SSAO", "Ambient Occlusion", 220)->setChecked(false, false);
mTrayMgr->createCheckBox(TL_TOPLEFT, "GlobalLight", "Global Light", 220)->setChecked(true, false);
mTrayMgr->createCheckBox(TL_TOPLEFT, "Shadows", "Shadows", 220)->setChecked(true, false);
// create a menu to choose the model displayed
mDisplayModeMenu = mTrayMgr->createThickSelectMenu(TL_TOPLEFT, "DisplayMode", "Display Mode", 220, 4);
mDisplayModeMenu->addItem("Regular view");
mDisplayModeMenu->addItem("Debug colours");
mDisplayModeMenu->addItem("Debug normals");
mDisplayModeMenu->addItem("Debug depth / specular");
}
void itemSelected(SelectMenu* menu)
{
//Options are aligned with the mode enum
SharedData::getSingleton().iSystem->setMode(
(DeferredShadingSystem::DSMode)menu->getSelectionIndex());
}
void checkBoxToggled(CheckBox* box)
{
if (box->getName() == "SSAO")
{
SharedData::getSingleton().iSystem->setSSAO(box->isChecked());
}
else if (box->getName() == "GlobalLight")
{
SharedData::getSingleton().iGlobalActivate = box->isChecked();
SharedData::getSingleton().iMainLight->setVisible(box->isChecked());
}
else if (box->getName() == "Shadows")
{
mSceneMgr->setShadowTechnique(box->isChecked() ?
SHADOWTYPE_TEXTURE_ADDITIVE :
SHADOWTYPE_NONE);
}
else if (box->getName() == "DeferredShading")
{
SharedData::getSingleton().iSystem->setActive(box->isChecked());
}
}
//Utility function to help set scene up
void setEntityHeight(Entity* ent, Real newHeight)
{
Real curHeight = ent->getMesh()->getBounds().getSize().y;
Real scaleFactor = newHeight / curHeight;
SceneNode* parentNode = ent->getParentSceneNode();
parentNode->setScale(scaleFactor, scaleFactor, scaleFactor);
}
void createAtheneScene(SceneNode* rootNode)
{
// Prepare athene mesh for normalmapping
MeshPtr pAthene = MeshManager::getSingleton().load("athene.mesh",
ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME);
unsigned short src, dest;
if (!pAthene->suggestTangentVectorBuildParams(VES_TANGENT, src, dest))
pAthene->buildTangentVectors(VES_TANGENT, src, dest);
//Create an athena statue
Entity* athena = mSceneMgr->createEntity("Athena", "athene.mesh");
athena->setMaterialName("DeferredDemo/DeferredAthena");
SceneNode *aNode = rootNode->createChildSceneNode();
aNode->attachObject( athena );
aNode->setPosition(-8.5, 4.5, 0);
setEntityHeight(athena, 4.0);
aNode->yaw(Ogre::Degree(90));
// Create some happy little lights to decorate the athena statue
createSampleLights();
}
void createKnotScene(SceneNode* rootNode)
{
// Prepare knot mesh for normal mapping
MeshPtr pKnot = MeshManager::getSingleton().load("knot.mesh",
ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME);
unsigned short src, dest;
if (!pKnot->suggestTangentVectorBuildParams(VES_TANGENT, src, dest))
pKnot->buildTangentVectors(VES_TANGENT, src, dest);
// Create a bunch of knots with spotlights hanging from above
Entity* knotEnt = mSceneMgr->createEntity("Knot", "knot.mesh");
knotEnt->setMaterialName("DeferredDemo/RockWall");
//knotEnt->setMeshLodBias(0.25f);
Vector3 knotStartPos(25.5, 2, 5.5);
Vector3 knotDiff(-3.7, 0, 0);
for (int i=0; i < 5; i++)
{
char cloneName[16];
sprintf(cloneName, "Knot%d", i);
Entity* cloneKnot = knotEnt->clone(cloneName);
Vector3 clonePos = knotStartPos + knotDiff*i;
SceneNode* cloneNode = rootNode->createChildSceneNode(clonePos);
cloneNode->attachObject(cloneKnot);
setEntityHeight(cloneKnot, 3);
cloneNode->yaw(Degree(i*17));
cloneNode->roll(Degree(i*31));
sprintf(cloneName, "KnotLight%d", i);
Light* knotLight = mSceneMgr->createLight(cloneName);
knotLight->setType(Light::LT_SPOTLIGHT);
knotLight->setDiffuseColour(SAMPLE_COLORS[i]);
knotLight->setSpecularColour(ColourValue::White);
knotLight->setPosition(clonePos + Vector3(0,3,0));
knotLight->setDirection(Vector3::NEGATIVE_UNIT_Y);
knotLight->setSpotlightRange(Degree(25), Degree(45), 1);
knotLight->setAttenuation(6, 1, 0.2, 0);
}
}
void createObjects(SceneNode* rootNode)
{
// Create ogre heads to decorate the wall
Entity* ogreHead = mSceneMgr->createEntity("Head", "ogrehead.mesh");
//rootNode->createChildSceneNode( "Head" )->attachObject( ogreHead );
Vector3 headStartPos[2] = { Vector3(25.25,11,3), Vector3(25.25,11,-3) };
Vector3 headDiff(-3.7,0,0);
for (int i=0; i < 12; i++)
{
char cloneName[16];
sprintf(cloneName, "OgreHead%d", i);
Entity* cloneHead = ogreHead->clone(cloneName);
Vector3 clonePos = headStartPos[i%2] + headDiff*(i/2);
if ((i/2) >= 4) clonePos.x -= 0.75;
SceneNode* cloneNode = rootNode->createChildSceneNode(clonePos);
cloneNode->attachObject(cloneHead);
setEntityHeight(cloneHead, 1.5);
if (i % 2 == 0)
{
cloneNode->yaw(Degree(180));
}
}
// Create a pile of wood pallets
Entity* woodPallet = mSceneMgr->createEntity("Pallet", "WoodPallet.mesh");
Vector3 woodStartPos(10, 0.5, -5.5);
Vector3 woodDiff(0, 0.3, 0);
for (int i=0; i < 5; i++)
{
char cloneName[16];
sprintf(cloneName, "WoodPallet%d", i);
Entity* clonePallet = woodPallet->clone(cloneName);
Vector3 clonePos = woodStartPos + woodDiff*i;
SceneNode* cloneNode = rootNode->createChildSceneNode(clonePos);
cloneNode->attachObject(clonePallet);
setEntityHeight(clonePallet, 0.3);
cloneNode->yaw(Degree(i*20));
}
}
// Just override the mandatory create scene method
void setupContent(void)
{
mCameraMan->setTopSpeed(20.0);
new SharedData();
mSystem = 0;
RenderSystem *rs = Root::getSingleton().getRenderSystem();
const RenderSystemCapabilities* caps = rs->getCapabilities();
if (!caps->hasCapability(RSC_VERTEX_PROGRAM) || !(caps->hasCapability(RSC_FRAGMENT_PROGRAM)))
{
OGRE_EXCEPT(Exception::ERR_NOT_IMPLEMENTED, "Your card does not support vertex and fragment programs, so cannot "
"run this demo. Sorry!",
"DeferredShading::createScene");
}
if (caps->getNumMultiRenderTargets()<2)
{
OGRE_EXCEPT(Exception::ERR_NOT_IMPLEMENTED, "Your card does not support at least two simultaneous render targets, so cannot "
"run this demo. Sorry!",
"DeferredShading::createScene");
}
// Set ambient light
mSceneMgr->setAmbientLight(ColourValue(0.15, 0.00, 0.00));
// Skybox
mSceneMgr->setSkyBox(true, "DeferredDemo/SkyBox", 500);
// Create main, static light
Light* l1 = mSceneMgr->createLight();
l1->setType(Light::LT_DIRECTIONAL);
l1->setDiffuseColour(0.5f, 0.45f, 0.1f);
l1->setDirection(1, -0.5, -0.2);
l1->setShadowFarClipDistance(250);
l1->setShadowFarDistance(75);
//Turn this on to have the directional light cast shadows
l1->setCastShadows(false);
mCamera->setPosition(25, 5, 0);
mCamera->lookAt(0,0,0);
mCamera->setFarClipDistance(1000.0);
mCamera->setNearClipDistance(0.5);
setDragLook(true);
mSystem = new DeferredShadingSystem(mWindow->getViewport(0), mSceneMgr, mCamera);
SharedData::getSingleton().iSystem = mSystem;
mSystem->initialize();
// safely setup application's (not postfilter!) shared data
SharedData::getSingleton().iCamera = mCamera;
SharedData::getSingleton().iRoot = mRoot;
SharedData::getSingleton().iWindow = mWindow;
SharedData::getSingleton().iActivate = true;
SharedData::getSingleton().iGlobalActivate = true;
SharedData::getSingleton().iMainLight = l1;
//Create the scene
// Create "root" node
SceneNode* rootNode = mSceneMgr->getRootSceneNode()->createChildSceneNode();
// Create the cathedral - this will be the static scene
Entity* cathedralEnt = mSceneMgr->createEntity("Cathedral", "sibenik.mesh");
SceneNode* cathedralNode = rootNode->createChildSceneNode();
cathedralNode->attachObject(cathedralEnt);
createAtheneScene(rootNode);
createKnotScene(rootNode);
createObjects(rootNode);
setupControls();
}
void createSampleLights()
{
// Create some lights
vector<Light*>::type lights;
SceneNode *parentNode = mSceneMgr->getRootSceneNode()->createChildSceneNode("LightsParent");
// Create light nodes
vector<Node*>::type nodes;
Vector4 attParams = Vector4(4,1,0,7);
Real lightRadius = 25;
Light *a = mSceneMgr->createLight();
SceneNode *an = parentNode->createChildSceneNode();
an->attachObject(a);
a->setAttenuation(attParams.x, attParams.y, attParams.z, attParams.w);
//a->setAttenuation(1.0f, 0.000f, 0.000f);
an->setPosition(0,0,lightRadius);
a->setDiffuseColour(1,0,0);
//a->setSpecularColour(0.5,0,0);
lights.push_back(a);
nodes.push_back(an);
Light *b = mSceneMgr->createLight();
SceneNode *bn = parentNode->createChildSceneNode();
bn->attachObject(b);
b->setAttenuation(attParams.x, attParams.y, attParams.z, attParams.w);
bn->setPosition(lightRadius,0,0);
b->setDiffuseColour(1,1,0);
//b->setSpecularColour(0.5,0.5,0);
lights.push_back(b);
nodes.push_back(bn);
Light *c = mSceneMgr->createLight();
SceneNode *cn = parentNode->createChildSceneNode();
cn->attachObject(c);
c->setAttenuation(attParams.x, attParams.y, attParams.z, attParams.w);
cn->setPosition(0,0,-lightRadius);
c->setDiffuseColour(0,1,1);
c->setSpecularColour(0.25,1.0,1.0); // Cyan light has specular component
lights.push_back(c);
nodes.push_back(cn);
Light *d = mSceneMgr->createLight();
SceneNode *dn = parentNode->createChildSceneNode();
dn->attachObject(d);
d->setAttenuation(attParams.x, attParams.y, attParams.z, attParams.w);
dn->setPosition(-lightRadius,0,0);
d->setDiffuseColour(1,0,1);
d->setSpecularColour(0.0,0,0.0);
lights.push_back(d);
nodes.push_back(dn);
Light *e = mSceneMgr->createLight();
SceneNode *en = parentNode->createChildSceneNode();
en->attachObject(e);
e->setAttenuation(attParams.x, attParams.y, attParams.z, attParams.w);
en->setPosition(lightRadius,0,lightRadius);
e->setDiffuseColour(0,0,1);
e->setSpecularColour(0,0,0);
lights.push_back(e);
nodes.push_back(en);
Light *f = mSceneMgr->createLight();
SceneNode *fn = parentNode->createChildSceneNode();
fn->attachObject(f);
f->setAttenuation(attParams.x, attParams.y, attParams.z, attParams.w);
fn->setPosition(-lightRadius,0,-lightRadius);
f->setDiffuseColour(0,1,0);
f->setSpecularColour(0,0.0,0.0);
lights.push_back(f);
nodes.push_back(fn);
// Create marker meshes to show user where the lights are
Entity *ent;
GeomUtils::createSphere("PointLightMesh", 0.05f, 5, 5, true, true);
for(vector<Light*>::type::iterator i=lights.begin(); i!=lights.end(); ++i)
{
Light* light = *i;
ent = mSceneMgr->createEntity(light->getName()+"v", "PointLightMesh");
String matname = light->getName()+"m";
// Create coloured material
MaterialPtr mat = MaterialManager::getSingleton().create(matname,
ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME);
Pass* pass = mat->getTechnique(0)->getPass(0);
pass->setDiffuse(0.0f,0.0f,0.0f,1.0f);
pass->setAmbient(0.0f,0.0f,0.0f);
pass->setSelfIllumination(light->getDiffuseColour());
ent->setMaterialName(matname);
//ent->setRenderQueueGroup(light->getRenderQueueGroup());
ent->setRenderQueueGroup(DeferredShadingSystem::POST_GBUFFER_RENDER_QUEUE);
static_cast<SceneNode*>(light->getParentNode())->attachObject(ent);
ent->setVisible(true);
}
// Store nodes for hiding/showing
SharedData::getSingleton().mLightNodes = nodes;
// Do some animation for node a-f
// Generate helix structure
float seconds_per_station = 1.0f;
float r = 1.0;
//Vector3 base(0,-30,0);
Vector3 base(-8.75, 3.5, 0);
float h=3;
const size_t s_to_top = 16;
const size_t stations = s_to_top*2-1;
float ascend = h/((float)s_to_top);
float stations_per_revolution = 3.5f;
size_t skip = 2; // stations between lights
Vector3 station_pos[stations];
for(size_t x=0; x<s_to_top; ++x)
{
float theta = ((float)x/stations_per_revolution)*2.0f*Math::PI;
station_pos[x] = base+Vector3(Math::Sin(theta)*r, ascend*x, Math::Cos(theta)*r);
}
for(size_t x=s_to_top; x<stations; ++x)
{
float theta = ((float)x/stations_per_revolution)*2.0f*Math::PI;
station_pos[x] = base+Vector3(Math::Sin(theta)*r, h-ascend*(x-s_to_top), Math::Cos(theta)*r);
}
// Create a track for the light swarm
Animation* anim = mSceneMgr->createAnimation("LightSwarmTrack", stations*seconds_per_station);
// Spline it for nice curves
anim->setInterpolationMode(Animation::IM_SPLINE);
for(unsigned int x=0; x<nodes.size(); ++x)
{
// Create a track to animate the camera's node
NodeAnimationTrack* track = anim->createNodeTrack(x, nodes[x]);
for(size_t y=0; y<=stations; ++y)
{
// Setup keyframes
TransformKeyFrame* key = track->createNodeKeyFrame(y*seconds_per_station); // A start position
key->setTranslate(station_pos[(x*skip+y)%stations]);
// Make sure size of light doesn't change
key->setScale(nodes[x]->getScale());
}
}
// Create a new animation state to track this
SharedData::getSingleton().mMLAnimState = mSceneMgr->createAnimationState("LightSwarmTrack");
SharedData::getSingleton().mMLAnimState->setEnabled(true);
/*Light* spotLight = mSceneMgr->createLight("Spotlight1");
spotLight->setType(Light::LT_SPOTLIGHT);
spotLight->setAttenuation(200, 1.0f, 0, 0);
spotLight->setSpotlightRange(Degree(30.0), Degree(45.0), 0.8);
spotLight->setPosition(0,120,0);
spotLight->setDirection(0, -1, 0);
spotLight->setDiffuseColour(1,1,1);
spotLight->setSpecularColour(1,1,1);*/
}
};
#ifndef OGRE_STATIC_LIB
SamplePlugin* sp;
Sample* s;
extern "C" _OgreSampleExport void dllStartPlugin()
{
s = new Sample_DeferredShading;
sp = OGRE_NEW SamplePlugin(s->getInfo()["Title"] + " Sample");
sp->addSample(s);
Root::getSingleton().installPlugin(sp);
}
extern "C" _OgreSampleExport void dllStopPlugin()
{
Root::getSingleton().uninstallPlugin(sp);
OGRE_DELETE sp;
delete s;
}
#endif