-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathrt_particles.cpp
903 lines (739 loc) · 35.8 KB
/
rt_particles.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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
/*
* Copyright (c) 2014-2022, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include <donut/app/ApplicationBase.h>
#include <donut/app/Camera.h>
#include <donut/app/imgui_renderer.h>
#include <donut/engine/ShaderFactory.h>
#include <donut/engine/CommonRenderPasses.h>
#include <donut/engine/TextureCache.h>
#include <donut/engine/Scene.h>
#include <donut/engine/BindingCache.h>
#include <donut/engine/View.h>
#include <donut/app/DeviceManager.h>
#include <donut/core/log.h>
#include <donut/core/vfs/VFS.h>
#include <donut/core/math/math.h>
#include <nvrhi/utils.h>
using namespace donut;
using namespace donut::math;
#include "rt_particles_cb.h"
static const char* g_WindowTitle = "Donut Example: Ray Traced Particles";
constexpr uint32_t c_MaxParticles = 1024;
constexpr uint32_t c_IndicesPerQuad = 6;
constexpr uint32_t c_VerticesPerQuad = 4;
static float RandomFloat()
{
return float(std::rand()) / RAND_MAX;
}
static float3 RandomFloat3()
{
return float3(RandomFloat(), RandomFloat(), RandomFloat());
}
struct ParticleEntity
{
bool active = false;
float3 position = 0.f;
float3 velocity = 0.f;
float3 color = 1.f;
float radius = 0.f;
float age = 0.f;
float opacity = 1.f;
float rotation = 0.f;
void Emit(float3 emitterPosition)
{
active = true;
position = emitterPosition;
velocity = RandomFloat3() - 0.5f;
velocity.y = 1.f + velocity.y;
radius = RandomFloat() * 0.05f + 0.1f;
age = 0.f;
opacity = 1.f;
color = RandomFloat3() * 0.5f + 0.1f;
rotation = RandomFloat() * 6.28f;
}
void Animate(float time)
{
const float lifeTime = 2.f;
position += velocity * time;
velocity.y += 1.f * time;
velocity.x += 1.f * time;
age += time;
radius += 0.5f * time;
opacity = saturate((lifeTime - age) * 0.5f);
if (age > lifeTime)
active = false;
}
};
enum class ParticleTexture
{
Smoke = 0,
Logo
};
struct UIData
{
bool updatePipeline = true;
bool enableAnimations = true;
bool alwaysUpdateOrientation = true;
bool reorientParticlesInPrimaryRays = false;
bool reorientParticlesInSecondaryRays = true;
uint orientationMode = ORIENTATION_MODE_QUATERNION;
uint mlabFragments = 4;
ParticleTexture particleTexture = ParticleTexture::Smoke;
float3 emitterPosition = 0.f;
};
class RayTracedParticles : public app::ApplicationBase
{
private:
std::shared_ptr<vfs::RootFileSystem> m_RootFS;
nvrhi::ShaderHandle m_ComputeShader;
nvrhi::ComputePipelineHandle m_ComputePipeline;
nvrhi::CommandListHandle m_CommandList;
nvrhi::BindingLayoutHandle m_BindingLayout;
nvrhi::BindingSetHandle m_BindingSet;
nvrhi::BindingLayoutHandle m_BindlessLayout;
nvrhi::rt::AccelStructHandle m_TopLevelAS;
nvrhi::BufferHandle m_ConstantBuffer;
std::shared_ptr<engine::ShaderFactory> m_ShaderFactory;
std::shared_ptr<engine::DescriptorTableManager> m_DescriptorTable;
std::unique_ptr<engine::Scene> m_Scene;
nvrhi::TextureHandle m_ColorBuffer;
app::ThirdPersonCamera m_Camera;
engine::PlanarView m_View;
std::shared_ptr<engine::DirectionalLight> m_SunLight;
std::unique_ptr<engine::BindingCache> m_BindingCache;
std::shared_ptr<engine::BufferGroup> m_ParticleBuffers;
std::shared_ptr<engine::MeshGeometry> m_ParticleGeometry;
std::shared_ptr<engine::MeshInfo> m_ParticleMesh;
std::shared_ptr<engine::MeshInstance> m_ParticleInstance;
std::shared_ptr<engine::Material> m_ParticleMaterial;
nvrhi::BufferHandle m_ParticleInfoBuffer;
nvrhi::rt::AccelStructHandle m_ParticleIntersectionBLAS;
std::vector<ParticleEntity> m_Particles;
std::vector<ParticleInfo> m_ParticleInfoData;
std::shared_ptr<engine::LoadedTexture> m_EnvironmentMap;
std::shared_ptr<engine::LoadedTexture> m_SmokeTexture;
std::shared_ptr<engine::LoadedTexture> m_LogoTexture;
UIData* m_ui;
float m_WallclockTime = 0.f;
float m_LastEmitTime = 0.f;
public:
RayTracedParticles(app::DeviceManager* deviceManager, UIData* ui)
: ApplicationBase(deviceManager)
, m_ui(ui)
{ }
bool Init()
{
std::filesystem::path frameworkShaderPath = app::GetDirectoryWithExecutable() / "shaders/framework" / app::GetShaderTypeName(GetDevice()->getGraphicsAPI());
std::filesystem::path appShaderPath = app::GetDirectoryWithExecutable() / "shaders/rt_particles" / app::GetShaderTypeName(GetDevice()->getGraphicsAPI());
std::filesystem::path mediaPath = app::GetDirectoryWithExecutable().parent_path() / "media";
m_RootFS = std::make_shared<vfs::RootFileSystem>();
m_RootFS->mount("/shaders/donut", frameworkShaderPath);
m_RootFS->mount("/shaders/app", appShaderPath);
m_RootFS->mount("/media", mediaPath);
m_ShaderFactory = std::make_shared<engine::ShaderFactory>(GetDevice(), m_RootFS, "/shaders");
m_CommonPasses = std::make_shared<engine::CommonRenderPasses>(GetDevice(), m_ShaderFactory);
m_BindingCache = std::make_unique<engine::BindingCache>(GetDevice());
nvrhi::BindlessLayoutDesc bindlessLayoutDesc;
bindlessLayoutDesc.visibility = nvrhi::ShaderType::All;
bindlessLayoutDesc.firstSlot = 0;
bindlessLayoutDesc.maxCapacity = 1024;
bindlessLayoutDesc.registerSpaces = {
nvrhi::BindingLayoutItem::RawBuffer_SRV(1),
nvrhi::BindingLayoutItem::Texture_SRV(2)
};
m_BindlessLayout = GetDevice()->createBindlessLayout(bindlessLayoutDesc);
nvrhi::BindingLayoutDesc globalBindingLayoutDesc;
globalBindingLayoutDesc.visibility = nvrhi::ShaderType::All;
globalBindingLayoutDesc.bindings = {
nvrhi::BindingLayoutItem::VolatileConstantBuffer(0),
nvrhi::BindingLayoutItem::RayTracingAccelStruct(0),
nvrhi::BindingLayoutItem::StructuredBuffer_SRV(1),
nvrhi::BindingLayoutItem::StructuredBuffer_SRV(2),
nvrhi::BindingLayoutItem::StructuredBuffer_SRV(3),
nvrhi::BindingLayoutItem::StructuredBuffer_SRV(4),
nvrhi::BindingLayoutItem::Sampler(0),
nvrhi::BindingLayoutItem::Texture_UAV(0)
};
m_BindingLayout = GetDevice()->createBindingLayout(globalBindingLayoutDesc);
m_DescriptorTable = std::make_shared<engine::DescriptorTableManager>(GetDevice(), m_BindlessLayout);
m_TextureCache = std::make_shared<engine::TextureCache>(GetDevice(), m_RootFS, m_DescriptorTable);
m_CommandList = GetDevice()->createCommandList();
CreateParticleMesh();
m_Particles.resize(c_MaxParticles);
m_ParticleInfoData.resize(c_MaxParticles);
m_EnvironmentMap = m_TextureCache->LoadTextureFromFileDeferred("/media/rt_particles/environment-map.dds", false);
m_SmokeTexture = m_TextureCache->LoadTextureFromFileDeferred("/media/rt_particles/smoke-particle.png", true);
m_LogoTexture = m_TextureCache->LoadTextureFromFileDeferred("/media/nvidia-logo.png", true);
SetAsynchronousLoadingEnabled(false);
BeginLoadingScene(m_RootFS, "/media/rt_particles/ParticleScene.gltf");
m_Scene->GetSceneGraph()->AttachLeafNode(m_Scene->GetSceneGraph()->GetRootNode(), m_ParticleInstance);
m_Scene->RefreshSceneGraph(0);
auto emitterNode = m_Scene->GetSceneGraph()->FindNode("/Emitter");
if (emitterNode)
m_ui->emitterPosition = emitterNode->GetLocalToWorldTransformFloat().m_translation;
m_Scene->FinishedLoading(GetFrameIndex());
m_Camera.SetTargetPosition(m_ui->emitterPosition + float3(0.f, 2.f, 0.f));
m_Camera.SetDistance(6.f);
m_Camera.SetRotation(radians(225.f), radians(20.f));
m_Camera.SetMoveSpeed(3.f);
m_ConstantBuffer = GetDevice()->createBuffer(nvrhi::utils::CreateVolatileConstantBufferDesc(
sizeof(GlobalConstants), "LightingConstants", engine::c_MaxRenderPassConstantBufferVersions));
m_CommandList->open();
CreateAccelStructs(m_CommandList);
BuildParticleIntersectionBLAS(m_CommandList);
m_CommandList->close();
GetDevice()->executeCommandList(m_CommandList);
GetDevice()->waitForIdle();
return true;
}
// Creates the buffers and initializes engine structures to attach a procedural particle mesh to the scene
void CreateParticleMesh()
{
// BufferGroup
m_ParticleBuffers = std::make_shared<engine::BufferGroup>();
// Position and texcoord data ranges
auto& positionRange = m_ParticleBuffers->getVertexBufferRange(engine::VertexAttribute::Position);
auto& texcoordRange = m_ParticleBuffers->getVertexBufferRange(engine::VertexAttribute::TexCoord1);
positionRange.byteOffset = 0;
positionRange.byteSize = c_MaxParticles * c_VerticesPerQuad * sizeof(float3);
texcoordRange.byteOffset = positionRange.byteOffset + positionRange.byteSize;
texcoordRange.byteSize = c_MaxParticles * c_VerticesPerQuad * sizeof(float2);
// Index buffer
nvrhi::BufferDesc bufferDesc;
bufferDesc.byteSize = c_MaxParticles * c_IndicesPerQuad * sizeof(uint32_t);
bufferDesc.debugName = "ParticleIndices";
bufferDesc.canHaveRawViews = true;
bufferDesc.initialState = nvrhi::ResourceStates::ShaderResource | nvrhi::ResourceStates::AccelStructBuildInput;
bufferDesc.keepInitialState = true;
bufferDesc.isAccelStructBuildInput = true;
m_ParticleBuffers->indexBuffer = GetDevice()->createBuffer(bufferDesc);
// Vertex buffer
bufferDesc.byteSize = texcoordRange.byteOffset + texcoordRange.byteSize;
bufferDesc.debugName = "ParticleVertices";
m_ParticleBuffers->vertexBuffer = GetDevice()->createBuffer(bufferDesc);
// Index and vertex buffer bindless descriptors
m_ParticleBuffers->indexBufferDescriptor = std::make_shared<engine::DescriptorHandle>(
m_DescriptorTable->CreateDescriptorHandle(nvrhi::BindingSetItem::RawBuffer_SRV(0, m_ParticleBuffers->indexBuffer)));
m_ParticleBuffers->vertexBufferDescriptor = std::make_shared<engine::DescriptorHandle>(
m_DescriptorTable->CreateDescriptorHandle(nvrhi::BindingSetItem::RawBuffer_SRV(0, m_ParticleBuffers->vertexBuffer)));
// Material
m_ParticleMaterial = std::make_shared<engine::Material>();
m_ParticleMaterial->domain = engine::MaterialDomain::AlphaBlended;
// Geometry
m_ParticleGeometry = std::make_shared<engine::MeshGeometry>();
m_ParticleGeometry->material = m_ParticleMaterial;
// Set numVertices and numIndices to max possible to make sure that we create an appropriate BLAS before rendering
m_ParticleGeometry->numVertices = c_MaxParticles * c_VerticesPerQuad;
m_ParticleGeometry->numIndices = c_MaxParticles * c_IndicesPerQuad;
m_ParticleBuffers->indexData.resize(m_ParticleGeometry->numIndices);
m_ParticleBuffers->positionData.resize(m_ParticleGeometry->numVertices);
m_ParticleBuffers->texcoord1Data.resize(m_ParticleGeometry->numVertices);
// Mesh
m_ParticleMesh = std::make_shared<engine::MeshInfo>();
m_ParticleMesh->buffers = m_ParticleBuffers;
m_ParticleMesh->geometries = { m_ParticleGeometry };
m_ParticleMesh->name = "ParticleMesh";
// Instance
m_ParticleInstance = std::make_shared<engine::MeshInstance>(m_ParticleMesh);
// Particle info buffer
bufferDesc.byteSize = c_MaxParticles * sizeof(ParticleInfo);
bufferDesc.canHaveRawViews = false;
bufferDesc.structStride = sizeof(ParticleInfo);
bufferDesc.debugName = "ParticleInfoBuffer";
m_ParticleInfoBuffer = GetDevice()->createBuffer(bufferDesc);
}
// Updates particle geometry -- to be called before rendering every frame
void BuildParticleGeometry(nvrhi::ICommandList* commandList)
{
commandList->beginMarker("Update Particles");
// Get the camera plane vectors for particle orientation
float3 cameraForward = m_Camera.GetDir();
float3 cameraUp = m_Camera.GetUp();
// To demonstrate beam orientation, we create vertical sprites that are free to rotate
// around the world-space Y axis, simulating what old Doom-like games used.
if (m_ui->orientationMode == ORIENTATION_MODE_BEAM)
{
if (fabsf(cameraForward.y) > 0.999f)
cameraForward = cameraUp;
cameraForward.y = 0.f;
cameraForward = normalize(cameraForward);
cameraUp = float3(0.f, 1.f, 0.f);
}
const float3 cameraRight = cross(cameraForward, cameraUp);
// Generate the geometry for particles
uint32_t numParticles = 0;
for (uint32_t index = 0; index < m_Particles.size(); ++index)
{
const ParticleEntity* particle = &m_Particles[index];
if (!particle->active)
continue;
uint32_t baseIndex = numParticles * c_IndicesPerQuad;
uint32_t baseVertex = numParticles * c_VerticesPerQuad;
// Indices for a quad
m_ParticleBuffers->indexData[baseIndex + 0] = baseVertex + 0;
m_ParticleBuffers->indexData[baseIndex + 1] = baseVertex + 1;
m_ParticleBuffers->indexData[baseIndex + 2] = baseVertex + 2;
m_ParticleBuffers->indexData[baseIndex + 3] = baseVertex + 0;
m_ParticleBuffers->indexData[baseIndex + 4] = baseVertex + 2;
m_ParticleBuffers->indexData[baseIndex + 5] = baseVertex + 3;
// Compute the quad orientation in world space
const float rotation = m_ui->orientationMode == ORIENTATION_MODE_BEAM ? 0.f : particle->rotation;
const float2 localRight = float2(cosf(rotation), sinf(rotation));
const float2 localUp = float2(-localRight.y, localRight.x);
const float3 worldRight = localRight.x * cameraRight + localRight.y * cameraUp;
const float3 worldUp = localUp.x * cameraRight + localUp.y * cameraUp;
// Positions
m_ParticleBuffers->positionData[baseVertex + 0] = particle->position - worldRight * particle->radius + worldUp * particle->radius ;
m_ParticleBuffers->positionData[baseVertex + 1] = particle->position + worldRight * particle->radius + worldUp * particle->radius ;
m_ParticleBuffers->positionData[baseVertex + 2] = particle->position + worldRight * particle->radius - worldUp * particle->radius ;
m_ParticleBuffers->positionData[baseVertex + 3] = particle->position - worldRight * particle->radius - worldUp * particle->radius ;
// Texture coordinates
m_ParticleBuffers->texcoord1Data[baseVertex + 0] = float2(0.f, 0.f);
m_ParticleBuffers->texcoord1Data[baseVertex + 1] = float2(1.f, 0.f);
m_ParticleBuffers->texcoord1Data[baseVertex + 2] = float2(1.f, 1.f);
m_ParticleBuffers->texcoord1Data[baseVertex + 3] = float2(0.f, 1.f);
// Fill out the ParticleInfo structure for use in shaders, mostly in the intersection particle code path
ParticleInfo* particleInfo = &m_ParticleInfoData[numParticles];
particleInfo->center = particle->position;
particleInfo->rotation = particle->rotation;
particleInfo->colorFactor = particle->color;
particleInfo->opacityFactor = particle->opacity;
particleInfo->xAxis = worldRight;
particleInfo->yAxis = worldUp;
particleInfo->inverseRadius = 1.f / particle->radius;
particleInfo->textureIndex = m_ParticleMaterial->baseOrDiffuseTexture->bindlessDescriptor.Get();
++numParticles;
}
m_ParticleGeometry->numIndices = numParticles * c_IndicesPerQuad;
m_ParticleGeometry->numVertices = numParticles * c_VerticesPerQuad;
if (numParticles > 0)
{
// Copy the index and vertex data to the GPU
commandList->writeBuffer(m_ParticleBuffers->indexBuffer, m_ParticleBuffers->indexData.data(), m_ParticleGeometry->numIndices * sizeof(uint32_t));
commandList->writeBuffer(m_ParticleBuffers->vertexBuffer, m_ParticleBuffers->positionData.data(), m_ParticleGeometry->numVertices * sizeof(float3),
m_ParticleBuffers->getVertexBufferRange(engine::VertexAttribute::Position).byteOffset);
commandList->writeBuffer(m_ParticleBuffers->vertexBuffer, m_ParticleBuffers->texcoord1Data.data(), m_ParticleGeometry->numVertices * sizeof(float2),
m_ParticleBuffers->getVertexBufferRange(engine::VertexAttribute::TexCoord1).byteOffset);
// Copy the particle info data to the GPU
commandList->writeBuffer(m_ParticleInfoBuffer, m_ParticleInfoData.data(), numParticles * sizeof(ParticleInfo), 0);
}
// Build the BLAS
nvrhi::rt::AccelStructDesc blasDesc;
GetMeshBlasDesc(*m_ParticleMesh, blasDesc);
nvrhi::utils::BuildBottomLevelAccelStruct(commandList, m_ParticleMesh->accelStruct, blasDesc);
commandList->endMarker();
}
void BuildParticleIntersectionBLAS(nvrhi::ICommandList* commandList)
{
// Only need to create and build the BLAS once, it's immutable
if (m_ParticleIntersectionBLAS)
return;
// A small buffer to hold the AABB data
nvrhi::BufferDesc aabbBufferDesc;
aabbBufferDesc.byteSize = sizeof(nvrhi::rt::GeometryAABB);
aabbBufferDesc.initialState = nvrhi::ResourceStates::CopyDest;
aabbBufferDesc.keepInitialState = true;
aabbBufferDesc.isAccelStructBuildInput = true;
nvrhi::BufferHandle aabbBuffer = GetDevice()->createBuffer(aabbBufferDesc);
// Write the AABB into the buffer
nvrhi::rt::GeometryAABB aabb = { -1.f, -1.f, -1.f, 1.f, 1.f, 1.f };
commandList->writeBuffer(aabbBuffer, &aabb, sizeof(aabb));
// Create the BLAS with one AABB-type geometry
nvrhi::rt::AccelStructDesc blasDesc;
blasDesc.isTopLevel = false;
blasDesc.debugName = "ParticleIntersectionBLAS";
blasDesc.addBottomLevelGeometry(nvrhi::rt::GeometryDesc().setAABBs(
nvrhi::rt::GeometryAABBs()
.setBuffer(aabbBuffer)
.setCount(1)));
m_ParticleIntersectionBLAS = GetDevice()->createAccelStruct(blasDesc);
// Build the BLAS
nvrhi::utils::BuildBottomLevelAccelStruct(commandList, m_ParticleIntersectionBLAS, blasDesc);
}
bool LoadScene(std::shared_ptr<vfs::IFileSystem> fs, const std::filesystem::path& sceneFileName) override
{
std::unique_ptr<engine::Scene> scene = std::make_unique<engine::Scene>(GetDevice(),
*m_ShaderFactory, fs, m_TextureCache, m_DescriptorTable, nullptr);
if (scene->Load(sceneFileName))
{
m_Scene = std::move(scene);
return true;
}
return false;
}
bool KeyboardUpdate(int key, int scancode, int action, int mods) override
{
m_Camera.KeyboardUpdate(key, scancode, action, mods);
if (key == GLFW_KEY_SPACE && action == GLFW_PRESS)
{
m_ui->enableAnimations = !m_ui->enableAnimations;
return true;
}
return true;
}
bool MousePosUpdate(double xpos, double ypos) override
{
m_Camera.MousePosUpdate(xpos, ypos);
return true;
}
bool MouseButtonUpdate(int button, int action, int mods) override
{
m_Camera.MouseButtonUpdate(button, action, mods);
return true;
}
bool MouseScrollUpdate(double xoffset, double yoffset) override
{
m_Camera.MouseScrollUpdate(xoffset, yoffset);
return true;
}
std::shared_ptr<engine::ShaderFactory> GetShaderFactory() const
{
return m_ShaderFactory;
}
void Animate(float fElapsedTimeSeconds) override
{
m_Camera.Animate(fElapsedTimeSeconds);
if (IsSceneLoaded() && m_ui->enableAnimations)
{
m_WallclockTime += fElapsedTimeSeconds;
// Animate the live particles, also find the index of the first empty particle slot for spawning later.
int firstEmptyParticle = -1;
for (uint32_t i = 0; i < m_Particles.size(); ++i)
{
ParticleEntity* particle = &m_Particles[i];
if (particle->active)
{
particle->Animate(fElapsedTimeSeconds);
}
if (!particle->active)
{
if (firstEmptyParticle < 0)
firstEmptyParticle = i;
}
}
const float particlesPerSecond = 20.f;
const float particleEmissionPeriod = 1.f / particlesPerSecond;
// Emit a new particle if enough time has passed since the last emission.
if (m_WallclockTime - m_LastEmitTime > particleEmissionPeriod && firstEmptyParticle >= 0)
{
ParticleEntity* particle = &m_Particles[firstEmptyParticle];
particle->Emit(m_ui->emitterPosition);
m_LastEmitTime = m_WallclockTime;
}
}
GetDeviceManager()->SetInformativeWindowTitle(g_WindowTitle);
}
bool CreateComputePipeline(engine::ShaderFactory& shaderFactory)
{
char fragmentsText[4];
snprintf(fragmentsText, sizeof(fragmentsText), "%d", m_ui->mlabFragments);
std::vector<engine::ShaderMacro> defines = { { "MLAB_FRAGMENTS", fragmentsText } };
m_ComputeShader = shaderFactory.CreateShader("app/rt_particles.hlsl", "main", &defines, nvrhi::ShaderType::Compute);
if (!m_ComputeShader)
return false;
auto pipelineDesc = nvrhi::ComputePipelineDesc()
.setComputeShader(m_ComputeShader)
.addBindingLayout(m_BindingLayout)
.addBindingLayout(m_BindlessLayout);
m_ComputePipeline = GetDevice()->createComputePipeline(pipelineDesc);
if (!m_ComputePipeline)
return false;
return true;
}
void GetMeshBlasDesc(engine::MeshInfo& mesh, nvrhi::rt::AccelStructDesc& blasDesc) const
{
blasDesc.isTopLevel = false;
blasDesc.debugName = mesh.name;
for (const auto& geometry : mesh.geometries)
{
nvrhi::rt::GeometryDesc geometryDesc;
auto & triangles = geometryDesc.geometryData.triangles;
triangles.indexBuffer = mesh.buffers->indexBuffer;
triangles.indexOffset = (mesh.indexOffset + geometry->indexOffsetInMesh) * sizeof(uint32_t);
triangles.indexFormat = nvrhi::Format::R32_UINT;
triangles.indexCount = geometry->numIndices;
triangles.vertexBuffer = mesh.buffers->vertexBuffer;
triangles.vertexOffset = (mesh.vertexOffset + geometry->vertexOffsetInMesh) * sizeof(float3) + mesh.buffers->getVertexBufferRange(engine::VertexAttribute::Position).byteOffset;
triangles.vertexFormat = nvrhi::Format::RGB32_FLOAT;
triangles.vertexStride = sizeof(float3);
triangles.vertexCount = geometry->numVertices;
geometryDesc.geometryType = nvrhi::rt::GeometryType::Triangles;
geometryDesc.flags = (geometry->material->domain == engine::MaterialDomain::Opaque)
? nvrhi::rt::GeometryFlags::Opaque
: nvrhi::rt::GeometryFlags::None;
blasDesc.bottomLevelGeometries.push_back(geometryDesc);
}
blasDesc.buildFlags = nvrhi::rt::AccelStructBuildFlags::PreferFastTrace;
}
void CreateAccelStructs(nvrhi::ICommandList* commandList)
{
for (const auto& mesh : m_Scene->GetSceneGraph()->GetMeshes())
{
nvrhi::rt::AccelStructDesc blasDesc;
GetMeshBlasDesc(*mesh, blasDesc);
nvrhi::rt::AccelStructHandle as = GetDevice()->createAccelStruct(blasDesc);
// Build the BLAS if it's not the particle mesh - that one's dynamic
if (mesh != m_ParticleMesh)
nvrhi::utils::BuildBottomLevelAccelStruct(commandList, as, blasDesc);
mesh->accelStruct = as;
}
nvrhi::rt::AccelStructDesc tlasDesc;
tlasDesc.isTopLevel = true;
// Note: the TLAS will include the scene geometries (including the single instance for geometric particles)
// and many instances of the intersection BLAS, one instnace per particle.
const uint32_t numSceneInstances = uint32_t(m_Scene->GetSceneGraph()->GetMeshInstances().size());
tlasDesc.topLevelMaxInstances = numSceneInstances + c_MaxParticles;
m_TopLevelAS = GetDevice()->createAccelStruct(tlasDesc);
}
void BuildTLAS(nvrhi::ICommandList* commandList, uint32_t frameIndex)
{
std::vector<nvrhi::rt::InstanceDesc> instances;
// Generate regular instances for scene meshes
for (const auto& instance : m_Scene->GetSceneGraph()->GetMeshInstances())
{
nvrhi::rt::InstanceDesc instanceDesc;
instanceDesc.bottomLevelAS = instance->GetMesh()->accelStruct;
assert(instanceDesc.bottomLevelAS);
instanceDesc.instanceMask = (instance->GetMesh() == m_ParticleMesh)
? INSTANCE_MASK_PARTICLE_GEOMETRY
: INSTANCE_MASK_OPAQUE;
instanceDesc.instanceID = instance->GetInstanceIndex();
auto node = instance->GetNode();
assert(node);
affineToColumnMajor(node->GetLocalToWorldTransformFloat(), instanceDesc.transform);
instances.push_back(instanceDesc);
}
// Generate intersection instances for active particles
uint32_t particleIndex = 0;
for (const auto& particle : m_Particles)
{
// Skip inactive particles
if (!particle.active)
continue;
nvrhi::rt::InstanceDesc instanceDesc;
instanceDesc.bottomLevelAS = m_ParticleIntersectionBLAS;
instanceDesc.instanceMask = INSTANCE_MASK_INTERSECTION_PARTICLE;
instanceDesc.instanceID = particleIndex;
// Scale and translate the AABB to make it contain the particle billboard
const affine3 transform = scaling(float3(particle.radius)) * translation(particle.position);
affineToColumnMajor(transform, instanceDesc.transform);
instances.push_back(instanceDesc);
++particleIndex;
}
commandList->beginMarker("TLAS Update");
commandList->buildTopLevelAccelStruct(m_TopLevelAS, instances.data(), instances.size());
commandList->endMarker();
}
void BackBufferResizing() override
{
m_ColorBuffer = nullptr;
m_BindingCache->Clear();
}
void Render(nvrhi::IFramebuffer* framebuffer) override
{
const auto& fbinfo = framebuffer->getFramebufferInfo();
if (m_ui->updatePipeline)
{
if (!CreateComputePipeline(*m_ShaderFactory))
{
glfwSetWindowShouldClose(GetDeviceManager()->GetWindow(), 1);
return;
}
m_ui->updatePipeline = false;
}
if (!m_ColorBuffer)
{
nvrhi::TextureDesc desc;
desc.width = fbinfo.width;
desc.height = fbinfo.height;
desc.isUAV = true;
desc.keepInitialState = true;
desc.format = nvrhi::Format::RGBA16_FLOAT;
desc.initialState = nvrhi::ResourceStates::UnorderedAccess;
desc.debugName = "ColorBuffer";
m_ColorBuffer = GetDevice()->createTexture(desc);
nvrhi::BindingSetDesc bindingSetDesc;
bindingSetDesc.bindings = {
nvrhi::BindingSetItem::ConstantBuffer(0, m_ConstantBuffer),
nvrhi::BindingSetItem::RayTracingAccelStruct(0, m_TopLevelAS),
nvrhi::BindingSetItem::StructuredBuffer_SRV(1, m_Scene->GetInstanceBuffer()),
nvrhi::BindingSetItem::StructuredBuffer_SRV(2, m_Scene->GetGeometryBuffer()),
nvrhi::BindingSetItem::StructuredBuffer_SRV(3, m_Scene->GetMaterialBuffer()),
nvrhi::BindingSetItem::StructuredBuffer_SRV(4, m_ParticleInfoBuffer),
nvrhi::BindingSetItem::Sampler(0, m_CommonPasses->m_AnisotropicWrapSampler),
nvrhi::BindingSetItem::Texture_UAV(0, m_ColorBuffer)
};
m_BindingSet = GetDevice()->createBindingSet(bindingSetDesc, m_BindingLayout);
}
auto particleTexture = (m_ui->particleTexture == ParticleTexture::Smoke) ? m_SmokeTexture : m_LogoTexture;
if (m_ParticleMaterial->baseOrDiffuseTexture != particleTexture)
{
m_ParticleMaterial->baseOrDiffuseTexture = particleTexture;
m_ParticleMaterial->dirty = true;
}
nvrhi::Viewport windowViewport(float(fbinfo.width), float(fbinfo.height));
m_View.SetViewport(windowViewport);
const float verticalFovRadians = PI_f * 0.25f;
m_View.SetMatrices(m_Camera.GetWorldToViewMatrix(), perspProjD3DStyleReverse(
verticalFovRadians, windowViewport.width() / windowViewport.height(), 0.1f));
m_View.UpdateCache();
m_Camera.SetView(m_View);
m_CommandList->open();
if (m_ui->enableAnimations || m_ui->alwaysUpdateOrientation || m_ParticleMaterial->dirty)
{
m_Scene->Refresh(m_CommandList, GetFrameIndex());
BuildParticleGeometry(m_CommandList);
BuildTLAS(m_CommandList, GetFrameIndex());
}
GlobalConstants constants = {};
m_View.FillPlanarViewConstants(constants.view);
constants.primaryRayConeAngle = verticalFovRadians / float(windowViewport.height());
constants.reorientParticlesInPrimaryRays = m_ui->reorientParticlesInPrimaryRays;
constants.reorientParticlesInSecondaryRays = m_ui->reorientParticlesInSecondaryRays;
constants.orientationMode = m_ui->orientationMode;
constants.environmentMapTextureIndex = m_EnvironmentMap->bindlessDescriptor.Get();
m_CommandList->writeBuffer(m_ConstantBuffer, &constants, sizeof(constants));
nvrhi::ComputeState state;
state.pipeline = m_ComputePipeline;
state.bindings = { m_BindingSet, m_DescriptorTable->GetDescriptorTable() };
m_CommandList->setComputeState(state);
m_CommandList->dispatch(
div_ceil(fbinfo.width, 16),
div_ceil(fbinfo.height, 16));
m_CommonPasses->BlitTexture(m_CommandList, framebuffer, m_ColorBuffer, m_BindingCache.get());
m_CommandList->close();
GetDevice()->executeCommandList(m_CommandList);
}
};
class UserInterface : public app::ImGui_Renderer
{
private:
UIData* m_ui;
public:
UserInterface(app::DeviceManager* deviceManager, UIData* ui)
: ImGui_Renderer(deviceManager)
, m_ui(ui)
{
ImGui::GetIO().IniFilename = nullptr;
}
void buildUI() override
{
ImGui::SetNextWindowPos(ImVec2(10.f, 10.f), 0);
ImGui::Begin("Settings", nullptr, ImGuiWindowFlags_AlwaysAutoResize);
ImGui::Checkbox("Animate particles (Space)", &m_ui->enableAnimations);
ImGui::Checkbox("Update orientation when paused", &m_ui->alwaysUpdateOrientation);
ImGui::Separator();
ImGui::Text("Orientation mode:");
ImGui::Indent();
ImGui::Combo("##orientationMode", (int*)&m_ui->orientationMode,
"Accumulated Vector Transform\0"
"Quaternion Rotation\0"
"Beam or Vertical Sprite\0"
"Basis (RTG2)\0");
ImGui::Unindent();
ImGui::Separator();
ImGui::Text("Reorient particles:");
ImGui::Indent();
ImGui::Checkbox("In primary rays", &m_ui->reorientParticlesInPrimaryRays);
ImGui::Checkbox("In secondary rays", &m_ui->reorientParticlesInSecondaryRays);
ImGui::Unindent();
ImGui::Separator();
// MLAB fragment count combo-box
uint allowedMlabFragmentCounts[] = {1, 2, 4, 8};
char fragmentsText[4];
snprintf(fragmentsText, sizeof(fragmentsText), "%d", m_ui->mlabFragments);
ImGui::PushItemWidth(40.f);
uint newFragmentCount = m_ui->mlabFragments;
if (ImGui::BeginCombo("Blending fragments", fragmentsText))
{
for (uint fragmentCount : allowedMlabFragmentCounts)
{
snprintf(fragmentsText, sizeof(fragmentsText), "%d", fragmentCount);
if (ImGui::Selectable(fragmentsText, newFragmentCount == fragmentCount))
newFragmentCount = fragmentCount;
}
ImGui::EndCombo();
}
ImGui::PopItemWidth();
if (newFragmentCount != m_ui->mlabFragments)
{
m_ui->mlabFragments = newFragmentCount;
m_ui->updatePipeline = true;
}
ImGui::Separator();
ImGui::Text("Emitter position:");
ImGui::Indent();
ImGui::DragFloat3("##emitterPosition", &m_ui->emitterPosition.x, 0.01f);
ImGui::Unindent();
ImGui::Text("Particle texture:");
ImGui::Indent();
ImGui::Combo("##particleTexture", (int*)&m_ui->particleTexture, "Smoke\0Logo\0");
ImGui::Unindent();
// End of window
ImGui::End();
}
};
#ifdef WIN32
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
#else
int main(int __argc, const char** __argv)
#endif
{
nvrhi::GraphicsAPI api = app::GetGraphicsAPIFromCommandLine(__argc, __argv);
app::DeviceManager* deviceManager = app::DeviceManager::Create(api);
app::DeviceCreationParameters deviceParams;
deviceParams.enableRayTracingExtensions = true;
for (int i = 1; i < __argc; i++)
{
if (strcmp(__argv[i], "-debug") == 0)
{
deviceParams.enableDebugRuntime = true;
deviceParams.enableNvrhiValidationLayer = true;
}
}
if (!deviceManager->CreateWindowDeviceAndSwapChain(deviceParams, g_WindowTitle))
{
log::fatal("Cannot initialize a graphics device with the requested parameters");
return 1;
}
if (!deviceManager->GetDevice()->queryFeatureSupport(nvrhi::Feature::RayQuery))
{
log::fatal("The graphics device does not support Ray Queries");
return 1;
}
{
UIData uiData;
RayTracedParticles example(deviceManager, &uiData);
UserInterface gui(deviceManager, &uiData);
if (example.Init() && gui.Init(example.GetShaderFactory()))
{
deviceManager->AddRenderPassToBack(&example);
deviceManager->AddRenderPassToBack(&gui);
deviceManager->RunMessageLoop();
deviceManager->RemoveRenderPass(&gui);
deviceManager->RemoveRenderPass(&example);
}
}
deviceManager->Shutdown();
delete deviceManager;
return 0;
}