-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApplication.cpp
915 lines (728 loc) · 26.6 KB
/
Application.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
904
905
906
907
908
909
910
911
912
913
914
915
#include "Application.h"
#define NUMBEROFCUBES 2
#define NUMBEROFDONUTS 100
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
PAINTSTRUCT ps;
HDC hdc;
switch (message)
{
case WM_PAINT:
hdc = BeginPaint(hWnd, &ps);
EndPaint(hWnd, &ps);
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
return 0;
}
bool Application::HandleKeyboard(MSG msg)
{
XMFLOAT3 cameraPosition = _camera->GetPosition();
switch (msg.wParam)
{
case VK_UP:
_cameraOrbitRadius = max(_cameraOrbitRadiusMin, _cameraOrbitRadius - (_cameraSpeed * 0.2f));
return true;
break;
case VK_DOWN:
_cameraOrbitRadius = min(_cameraOrbitRadiusMax, _cameraOrbitRadius + (_cameraSpeed * 0.2f));
return true;
break;
case VK_RIGHT:
_cameraOrbitAngleXZ -= _cameraSpeed;
return true;
break;
case VK_LEFT:
_cameraOrbitAngleXZ += _cameraSpeed;
return true;
break;
}
return false;
}
Application::Application()
{
_hInst = nullptr;
_hWnd = nullptr;
_driverType = D3D_DRIVER_TYPE_NULL;
_featureLevel = D3D_FEATURE_LEVEL_11_0;
_pd3dDevice = nullptr;
_pImmediateContext = nullptr;
_pSwapChain = nullptr;
_pRenderTargetView = nullptr;
_pVertexShader = nullptr;
_pPixelShader = nullptr;
_pVertexLayout = nullptr;
_pVertexBuffer = nullptr;
_pIndexBuffer = nullptr;
_pConstantBuffer = nullptr;
CCWcullMode=nullptr;
CWcullMode= nullptr;
DSLessEqual = nullptr;
RSCullNone = nullptr;
_WindowHeight = 0;
_WindowWidth = 0;
_timer = new Timer();
}
Application::~Application()
{
Cleanup();
}
HRESULT Application::Initialise(HINSTANCE hInstance, int nCmdShow)
{
HRESULT hr = 0;
if (FAILED(InitWindow(hInstance, nCmdShow)))
{
return E_FAIL;
}
RECT rc;
if (!GetClientRect(_hWnd, &rc)) { return E_FAIL; }
_WindowWidth = rc.right - rc.left;
_WindowHeight = rc.bottom - rc.top;
if (FAILED(InitDevice()))
{
Cleanup();
return E_FAIL;
}
hr = CreateDDSTextureFromFile(_pd3dDevice, L"Assets\\Textures\\stone.dds", nullptr, &_pTextureRV);
hr = CreateDDSTextureFromFile(_pd3dDevice, L"Assets\\Textures\\floor.dds", nullptr, &_pGroundTextureRV);
if (FAILED(hr))
{
return E_FAIL;
}
// Setup Camera
XMFLOAT3 eye = XMFLOAT3(0.0f, 2.0f, -1.0f);
XMFLOAT3 at = XMFLOAT3(0.0f, 2.0f, 0.0f);
XMFLOAT3 up = XMFLOAT3(0.0f, 1.0f, 0.0f);
_camera = new Camera(eye, at, up, (float)_renderWidth, (float)_renderHeight, 0.01f, 200.0f);
// Setup the scene's light
basicLight.AmbientLight = XMFLOAT4(0.5f, 0.5f, 0.5f, 1.0f);
basicLight.DiffuseLight = XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f);
basicLight.SpecularLight = XMFLOAT4(0.8f, 0.8f, 0.8f, 1.0f);
basicLight.SpecularPower = 20.0f;
basicLight.LightVecW = XMFLOAT3(0.0f, 1.0f, -1.0f);
Geometry donutGeometry;
objMeshData = OBJLoader::Load("Assets/3DModels/donut.obj", _pd3dDevice);
donutGeometry.indexBuffer = objMeshData.IndexBuffer;
donutGeometry.numberOfIndices = objMeshData.IndexCount;
donutGeometry.vertexBuffer = objMeshData.VertexBuffer;
donutGeometry.vertexBufferOffset = objMeshData.VBOffset;
donutGeometry.vertexBufferStride = objMeshData.VBStride;
Geometry cubeGeometry;
cubeGeometry.indexBuffer = _pIndexBuffer;
cubeGeometry.vertexBuffer = _pVertexBuffer;
cubeGeometry.numberOfIndices = 36;
cubeGeometry.vertexBufferOffset = 0;
cubeGeometry.vertexBufferStride = sizeof(SimpleVertex);
Geometry planeGeometry;
planeGeometry.indexBuffer = _pPlaneIndexBuffer;
planeGeometry.vertexBuffer = _pPlaneVertexBuffer;
planeGeometry.numberOfIndices = 6;
planeGeometry.vertexBufferOffset = 0;
planeGeometry.vertexBufferStride = sizeof(SimpleVertex);
Material shinyMaterial;
shinyMaterial.ambient = XMFLOAT4(0.3f, 0.3f, 0.3f, 1.0f);
shinyMaterial.diffuse = XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f);
shinyMaterial.specular = XMFLOAT4(0.5f, 0.5f, 0.5f, 1.0f);
shinyMaterial.specularPower = 10.0f;
Material noSpecMaterial;
noSpecMaterial.ambient = XMFLOAT4(0.1f, 0.1f, 0.1f, 1.0f);
noSpecMaterial.diffuse = XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f);
noSpecMaterial.specular = XMFLOAT4(0.0f, 0.0f, 0.0f, 0.0f);
noSpecMaterial.specularPower = 0.0f;
//share these resources between multiple objects
std::shared_ptr<Geometry> donutModel = std::make_shared<Geometry>(donutGeometry);
std::shared_ptr<Geometry> cubeModel = std::make_shared<Geometry>(cubeGeometry);
std::shared_ptr<Geometry> planeModel = std::make_shared<Geometry>(planeGeometry);
std::shared_ptr<Material> shinyMatmap = std::make_shared<Material>(shinyMaterial);
std::shared_ptr<Material> noSpecMatMap = std::make_shared<Material>(noSpecMaterial);
//now construct the objects
//note that Transform(*gameObject->GetTransform()) means to get a copy of the data in there in that point in time.
//this is useful so the game object's final result transform does not change the origin transform.
//TODO: use this by construction of a new transform instead later on when XML is implemented.
//PLANE 1
GameObject* gameObject = new GameObject("Floor", planeModel, noSpecMatMap);
gameObject->SetTransform(new Transform(
Vector3(0.0f, 0.0f, 0.0f),
MakeQFromEulerAngles(90.0f, 0.0f, 0.0f),
Vector3(15.0f, 15.0f, 15.0f)
));
gameObject->GetAppearance()->SetTextureRV(_pGroundTextureRV);
gameObject->SetPhysicsModel(new RigidBodyModel(gameObject->GetTransform(),
PhysicsBodyConfig(0.0f, 2.0f, 25.0f, 25.0f, false, GRAVITY, 0.6f, true)));
gameObject->SetCollider(new PlaneCollider(gameObject->GetTransform(), Vector3(0, 1, 0)));
_gameObjects.push_back(gameObject);
//CUBES
for (auto i = 0; i < NUMBEROFCUBES; i++)
{
gameObject = new GameObject("Cube " + to_string(i), cubeModel, shinyMatmap);
gameObject->SetTransform(new Transform(
Vector3(-3.0f + (i * 2.5f), 10.0f, 10.0f),
Quaternion(),
Vector3(1.0f, 1.0f, 1.0f)
));
gameObject->GetAppearance()->SetTextureRV(_pTextureRV);
//this cannot be a shared pointer as each needs a unique instance
//NOTE! We are using sphere colliders instead of AABB. some code is there, but it is not implemented!
gameObject->SetPhysicsModel(new RigidBodyModel(gameObject->GetTransform(),
PhysicsBodyConfig(5.0f, 1.0f, 8.0f, 4.0f, true, GRAVITY, 0.6f, false)));
gameObject->SetCollider(new SphereCollider(gameObject->GetTransform(), 1.0f));
_gameObjects.push_back(gameObject);
}
//DONUTS
for (auto i = 0; i < NUMBEROFDONUTS; i++)
{
gameObject = new GameObject("Donut " + to_string(i), donutModel, shinyMatmap);
gameObject->SetTransform(new Transform(
Vector3(-15.0f + ((i % 10) * 2.5f), 20.0f, 0.0f + ((i / 10) * 2.5f)),
Quaternion(),
Vector3(1.0f, 1.0f, 1.0f)
));
gameObject->GetAppearance()->SetTextureRV(_pTextureRV);
//this cannot be a shared pointer as each needs a unique instance
gameObject->SetPhysicsModel(new RigidBodyModel(gameObject->GetTransform(),
PhysicsBodyConfig(2.0f, 0.585f, 1.51f, 0.375f, true, GRAVITY, 0.6f, false)));
gameObject->SetCollider(new SphereCollider(gameObject->GetTransform(), 1.0f));
_gameObjects.push_back(gameObject);
}
//PARTICLES
gameObject = new GameObject("Donut", donutModel, shinyMatmap);
gameObject->SetTransform(new Transform(
Vector3(-6.0f, 0.5f, 10.0f),
Quaternion(),
Vector3(0.5f, 0.5f, 0.5f)
));
gameObject->GetAppearance()->SetTextureRV(_pTextureRV);
//approximated volume and drag coefficient based on circle shape and torus calculator of 1 meter _radius torus with eyed up thickness
//TODO: more exact representations of all these game objects, probably after XML is implemented.
gameObject->SetPhysicsModel(new ParticleModel(gameObject->GetTransform(),
PhysicsBodyConfig(2.0f, 0.585f, 1.51f, 0.375f, true, -GRAVITY, 0.6f, false),
ParticleConfig(2.0f, Vector3(-6.0f, 0.5f, 10.0f), Vector3(), Vector3(0.0f, 0.0f, 0.0f))));
gameObject->SetCollider(new SphereCollider(gameObject->GetTransform(), 1.0f));
_gameObjects.push_back(gameObject);
//now create a physics world based on all the game object data.
_colliderSystem = new PhysColliderSys(_gameObjects);
return S_OK;
}
HRESULT Application::InitShadersAndInputLayout()
{
HRESULT hr;
// Compile the vertex shader
ID3DBlob* pVSBlob = nullptr;
hr = CompileShaderFromFile(L"DX11 Framework.hlsl", "VS", "vs_4_0", &pVSBlob);
if (FAILED(hr))
{
MessageBox(nullptr,
L"The HLSL file cannot be compiled. Error output to Visual Studio Console.", L"Error", MB_OK);
return hr;
}
// Create the vertex shader
hr = _pd3dDevice->CreateVertexShader(pVSBlob->GetBufferPointer(), pVSBlob->GetBufferSize(), nullptr, &_pVertexShader);
if (FAILED(hr))
{
pVSBlob->Release();
return hr;
}
// Compile the pixel shader
ID3DBlob* pPSBlob = nullptr;
hr = CompileShaderFromFile(L"DX11 Framework.hlsl", "PS", "ps_4_0", &pPSBlob);
if (FAILED(hr))
{
MessageBox(nullptr,
L"The HLSL file cannot be compiled. Error output to Visual Studio Console.", L"Error", MB_OK);
return hr;
}
// Create the pixel shader
hr = _pd3dDevice->CreatePixelShader(pPSBlob->GetBufferPointer(), pPSBlob->GetBufferSize(), nullptr, &_pPixelShader);
pPSBlob->Release();
if (FAILED(hr))
return hr;
// Define the input layout
D3D11_INPUT_ELEMENT_DESC layout[] =
{
{ "POSITION", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 0, D3D11_INPUT_PER_VERTEX_DATA, 0 },
{ "NORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, 12, D3D11_INPUT_PER_VERTEX_DATA, 0 },
{ "TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, 24, D3D11_INPUT_PER_VERTEX_DATA, 0 },
};
UINT numElements = ARRAYSIZE(layout);
// Create the input layout
hr = _pd3dDevice->CreateInputLayout(layout, numElements, pVSBlob->GetBufferPointer(),
pVSBlob->GetBufferSize(), &_pVertexLayout);
pVSBlob->Release();
if (FAILED(hr))
return hr;
// Set the input layout
_pImmediateContext->IASetInputLayout(_pVertexLayout);
D3D11_SAMPLER_DESC sampDesc;
ZeroMemory(&sampDesc, sizeof(sampDesc));
sampDesc.Filter = D3D11_FILTER_ANISOTROPIC;
sampDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP;
sampDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP;
sampDesc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP;
sampDesc.ComparisonFunc = D3D11_COMPARISON_NEVER;
sampDesc.MinLOD = 0;
sampDesc.MaxLOD = D3D11_FLOAT32_MAX;
hr = _pd3dDevice->CreateSamplerState(&sampDesc, &_pSamplerLinear);
return hr;
}
HRESULT Application::InitVertexBuffer()
{
HRESULT hr;
// Create vertex buffer
SimpleVertex vertices[] =
{
{ XMFLOAT3(-1.0f, 1.0f, -1.0f), XMFLOAT3(-1.0f, 1.0f, -1.0f), XMFLOAT2(1.0f, 0.0f) },
{ XMFLOAT3(1.0f, 1.0f, -1.0f), XMFLOAT3(1.0f, 1.0f, -1.0f), XMFLOAT2(0.0f, 0.0f) },
{ XMFLOAT3(1.0f, 1.0f, 1.0f), XMFLOAT3(1.0f, 1.0f, 1.0f), XMFLOAT2(0.0f, 1.0f) },
{ XMFLOAT3(-1.0f, 1.0f, 1.0f), XMFLOAT3(-1.0f, 1.0f, 1.0f), XMFLOAT2(1.0f, 1.0f) },
{ XMFLOAT3(-1.0f, -1.0f, -1.0f), XMFLOAT3(-1.0f, -1.0f, -1.0f), XMFLOAT2(0.0f, 0.0f) },
{ XMFLOAT3(1.0f, -1.0f, -1.0f), XMFLOAT3(1.0f, -1.0f, -1.0f), XMFLOAT2(1.0f, 0.0f) },
{ XMFLOAT3(1.0f, -1.0f, 1.0f), XMFLOAT3(1.0f, -1.0f, 1.0f), XMFLOAT2(1.0f, 1.0f) },
{ XMFLOAT3(-1.0f, -1.0f, 1.0f), XMFLOAT3(-1.0f, -1.0f, 1.0f), XMFLOAT2(0.0f, 1.0f) },
{ XMFLOAT3(-1.0f, -1.0f, 1.0f), XMFLOAT3(-1.0f, -1.0f, 1.0f), XMFLOAT2(0.0f, 1.0f) },
{ XMFLOAT3(-1.0f, -1.0f, -1.0f), XMFLOAT3(-1.0f, -1.0f, -1.0f), XMFLOAT2(1.0f, 1.0f) },
{ XMFLOAT3(-1.0f, 1.0f, -1.0f), XMFLOAT3(-1.0f, 1.0f, -1.0f), XMFLOAT2(1.0f, 0.0f) },
{ XMFLOAT3(-1.0f, 1.0f, 1.0f), XMFLOAT3(-1.0f, 1.0f, 1.0f), XMFLOAT2(0.0f, 0.0f) },
{ XMFLOAT3(1.0f, -1.0f, 1.0f), XMFLOAT3(1.0f, -1.0f, 1.0f), XMFLOAT2(1.0f, 1.0f) },
{ XMFLOAT3(1.0f, -1.0f, -1.0f), XMFLOAT3(1.0f, -1.0f, -1.0f), XMFLOAT2(0.0f, 1.0f) },
{ XMFLOAT3(1.0f, 1.0f, -1.0f), XMFLOAT3(1.0f, 1.0f, -1.0f), XMFLOAT2(0.0f, 0.0f) },
{ XMFLOAT3(1.0f, 1.0f, 1.0f), XMFLOAT3(1.0f, 1.0f, 1.0f), XMFLOAT2(1.0f, 0.0f) },
{ XMFLOAT3(-1.0f, -1.0f, -1.0f), XMFLOAT3(-1.0f, -1.0f, -1.0f), XMFLOAT2(0.0f, 1.0f) },
{ XMFLOAT3(1.0f, -1.0f, -1.0f), XMFLOAT3(1.0f, -1.0f, -1.0f), XMFLOAT2(1.0f, 1.0f) },
{ XMFLOAT3(1.0f, 1.0f, -1.0f), XMFLOAT3(1.0f, 1.0f, -1.0f), XMFLOAT2(1.0f, 0.0f) },
{ XMFLOAT3(-1.0f, 1.0f, -1.0f), XMFLOAT3(-1.0f, 1.0f, -1.0f), XMFLOAT2(0.0f, 0.0f) },
{ XMFLOAT3(-1.0f, -1.0f, 1.0f), XMFLOAT3(-1.0f, -1.0f, 1.0f), XMFLOAT2(1.0f, 1.0f) },
{ XMFLOAT3(1.0f, -1.0f, 1.0f), XMFLOAT3(1.0f, -1.0f, 1.0f), XMFLOAT2(0.0f, 1.0f) },
{ XMFLOAT3(1.0f, 1.0f, 1.0f), XMFLOAT3(1.0f, 1.0f, 1.0f), XMFLOAT2(0.0f, 0.0f) },
{ XMFLOAT3(-1.0f, 1.0f, 1.0f), XMFLOAT3(-1.0f, 1.0f, 1.0f), XMFLOAT2(1.0f, 0.0f) },
};
D3D11_BUFFER_DESC bd;
ZeroMemory(&bd, sizeof(bd));
bd.Usage = D3D11_USAGE_DEFAULT;
bd.ByteWidth = sizeof(SimpleVertex) * 24;
bd.BindFlags = D3D11_BIND_VERTEX_BUFFER;
bd.CPUAccessFlags = 0;
D3D11_SUBRESOURCE_DATA InitData;
ZeroMemory(&InitData, sizeof(InitData));
InitData.pSysMem = vertices;
hr = _pd3dDevice->CreateBuffer(&bd, &InitData, &_pVertexBuffer);
if (FAILED(hr))
return hr;
// Create vertex buffer
SimpleVertex planeVertices[] =
{
{ XMFLOAT3(-1.0f, -1.0f, 0.0f), XMFLOAT3(0.0f, 0.0f, -1.0f), XMFLOAT2(0.0f, 5.0f) },
{ XMFLOAT3(1.0f, -1.0f, 0.0f), XMFLOAT3(0.0f, 0.0f, -1.0f), XMFLOAT2(5.0f, 5.0f) },
{ XMFLOAT3(1.0f, 1.0f, 0.0f), XMFLOAT3(0.0f, 0.0f, -1.0f), XMFLOAT2(5.0f, 0.0f) },
{ XMFLOAT3(-1.0f, 1.0f, 0.0f), XMFLOAT3(0.0f, 0.0f, -1.0f), XMFLOAT2(0.0f, 0.0f) },
};
ZeroMemory(&bd, sizeof(bd));
bd.Usage = D3D11_USAGE_DEFAULT;
bd.ByteWidth = sizeof(SimpleVertex) * 4;
bd.BindFlags = D3D11_BIND_VERTEX_BUFFER;
bd.CPUAccessFlags = 0;
ZeroMemory(&InitData, sizeof(InitData));
InitData.pSysMem = planeVertices;
hr = _pd3dDevice->CreateBuffer(&bd, &InitData, &_pPlaneVertexBuffer);
if (FAILED(hr))
return hr;
return S_OK;
}
HRESULT Application::InitIndexBuffer()
{
HRESULT hr;
// Create index buffer
WORD indices[] =
{
3, 1, 0,
2, 1, 3,
6, 4, 5,
7, 4, 6,
11, 9, 8,
10, 9, 11,
14, 12, 13,
15, 12, 14,
19, 17, 16,
18, 17, 19,
22, 20, 21,
23, 20, 22
};
D3D11_BUFFER_DESC bd;
ZeroMemory(&bd, sizeof(bd));
bd.Usage = D3D11_USAGE_DEFAULT;
bd.ByteWidth = sizeof(WORD) * 36;
bd.BindFlags = D3D11_BIND_INDEX_BUFFER;
bd.CPUAccessFlags = 0;
D3D11_SUBRESOURCE_DATA InitData;
ZeroMemory(&InitData, sizeof(InitData));
InitData.pSysMem = indices;
hr = _pd3dDevice->CreateBuffer(&bd, &InitData, &_pIndexBuffer);
if (FAILED(hr))
return hr;
// Create plane index buffer
WORD planeIndices[] =
{
0, 3, 1,
3, 2, 1,
};
ZeroMemory(&bd, sizeof(bd));
bd.Usage = D3D11_USAGE_DEFAULT;
bd.ByteWidth = sizeof(WORD) * 6;
bd.BindFlags = D3D11_BIND_INDEX_BUFFER;
bd.CPUAccessFlags = 0;
ZeroMemory(&InitData, sizeof(InitData));
InitData.pSysMem = planeIndices;
hr = _pd3dDevice->CreateBuffer(&bd, &InitData, &_pPlaneIndexBuffer);
if (FAILED(hr))
return hr;
return S_OK;
}
HRESULT Application::InitWindow(HINSTANCE hInstance, int nCmdShow)
{
// Register class
WNDCLASSEX wcex;
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(hInstance, (LPCTSTR)IDI_TUTORIAL1);
wcex.hCursor = LoadCursor(NULL, IDC_ARROW );
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wcex.lpszMenuName = nullptr;
wcex.lpszClassName = L"TutorialWindowClass";
wcex.hIconSm = LoadIcon(wcex.hInstance, (LPCTSTR)IDI_TUTORIAL1);
if (!RegisterClassEx(&wcex))
return E_FAIL;
// Create window
_hInst = hInstance;
RECT rc = {0, 0, 960, 540};
AdjustWindowRect(&rc, WS_OVERLAPPEDWINDOW, FALSE);
_hWnd = CreateWindow(L"TutorialWindowClass", L"FGGC Semester 2 Framework", WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT, rc.right - rc.left, rc.bottom - rc.top, nullptr, nullptr, hInstance,
nullptr);
if (!_hWnd)
return E_FAIL;
ShowWindow(_hWnd, nCmdShow);
return S_OK;
}
HRESULT Application::CompileShaderFromFile(WCHAR* szFileName, LPCSTR szEntryPoint, LPCSTR szShaderModel, ID3DBlob** ppBlobOut)
{
HRESULT hr = S_OK;
DWORD dwShaderFlags = D3DCOMPILE_ENABLE_STRICTNESS;
#if defined(DEBUG) || defined(_DEBUG)
// Set the D3DCOMPILE_DEBUG flag to embed debug information in the shaders.
// Setting this flag improves the shader debugging experience, but still allows
// the shaders to be optimized and to run exactly the way they will run in
// the release configuration of this program.
dwShaderFlags |= D3DCOMPILE_DEBUG;
#endif
ID3DBlob* pErrorBlob;
hr = D3DCompileFromFile(szFileName, nullptr, nullptr, szEntryPoint, szShaderModel,
dwShaderFlags, 0, ppBlobOut, &pErrorBlob);
if (FAILED(hr))
{
if (pErrorBlob != nullptr)
OutputDebugStringA((char*)pErrorBlob->GetBufferPointer());
if (pErrorBlob) pErrorBlob->Release();
return hr;
}
if (pErrorBlob) pErrorBlob->Release();
return S_OK;
}
HRESULT Application::InitDevice()
{
HRESULT hr = S_OK;
UINT createDeviceFlags = 0;
#ifdef _DEBUG
createDeviceFlags |= D3D11_CREATE_DEVICE_DEBUG;
#endif
D3D_DRIVER_TYPE driverTypes[] =
{
D3D_DRIVER_TYPE_HARDWARE,
D3D_DRIVER_TYPE_WARP,
D3D_DRIVER_TYPE_REFERENCE,
};
UINT numDriverTypes = ARRAYSIZE(driverTypes);
D3D_FEATURE_LEVEL featureLevels[] =
{
D3D_FEATURE_LEVEL_11_0,
D3D_FEATURE_LEVEL_10_1,
D3D_FEATURE_LEVEL_10_0,
};
UINT numFeatureLevels = ARRAYSIZE(featureLevels);
UINT sampleCount = 4;
DXGI_SWAP_CHAIN_DESC sd;
ZeroMemory(&sd, sizeof(sd));
sd.BufferCount = 1;
sd.BufferDesc.Width = _renderWidth;
sd.BufferDesc.Height = _renderHeight;
sd.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
sd.BufferDesc.RefreshRate.Numerator = 60;
sd.BufferDesc.RefreshRate.Denominator = 1;
sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
sd.OutputWindow = _hWnd;
sd.SampleDesc.Count = sampleCount;
sd.SampleDesc.Quality = 0;
sd.Windowed = TRUE;
for (UINT driverTypeIndex = 0; driverTypeIndex < numDriverTypes; driverTypeIndex++)
{
_driverType = driverTypes[driverTypeIndex];
hr = D3D11CreateDeviceAndSwapChain(nullptr, _driverType, nullptr, createDeviceFlags, featureLevels, numFeatureLevels,
D3D11_SDK_VERSION, &sd, &_pSwapChain, &_pd3dDevice, &_featureLevel, &_pImmediateContext);
if (SUCCEEDED(hr))
break;
}
if (FAILED(hr))
return hr;
// Create a render target view
ID3D11Texture2D* pBackBuffer = nullptr;
hr = _pSwapChain->GetBuffer(0, __uuidof(ID3D11Texture2D), (LPVOID*)&pBackBuffer);
if (FAILED(hr))
return hr;
hr = _pd3dDevice->CreateRenderTargetView(pBackBuffer, nullptr, &_pRenderTargetView);
pBackBuffer->Release();
if (FAILED(hr))
return hr;
// Setup the viewport
D3D11_VIEWPORT vp;
vp.Width = (FLOAT)_renderWidth;
vp.Height = (FLOAT)_renderHeight;
vp.MinDepth = 0.0f;
vp.MaxDepth = 1.0f;
vp.TopLeftX = 0;
vp.TopLeftY = 0;
_pImmediateContext->RSSetViewports(1, &vp);
InitShadersAndInputLayout();
InitVertexBuffer();
InitIndexBuffer();
// Set primitive topology
_pImmediateContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
// Create the constant buffer
D3D11_BUFFER_DESC bd;
ZeroMemory(&bd, sizeof(bd));
bd.Usage = D3D11_USAGE_DEFAULT;
bd.ByteWidth = sizeof(ConstantBuffer);
bd.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
bd.CPUAccessFlags = 0;
hr = _pd3dDevice->CreateBuffer(&bd, nullptr, &_pConstantBuffer);
if (FAILED(hr))
return hr;
D3D11_TEXTURE2D_DESC depthStencilDesc;
depthStencilDesc.Width = _renderWidth;
depthStencilDesc.Height = _renderHeight;
depthStencilDesc.MipLevels = 1;
depthStencilDesc.ArraySize = 1;
depthStencilDesc.Format = DXGI_FORMAT_D24_UNORM_S8_UINT;
depthStencilDesc.SampleDesc.Count = sampleCount;
depthStencilDesc.SampleDesc.Quality = 0;
depthStencilDesc.Usage = D3D11_USAGE_DEFAULT;
depthStencilDesc.BindFlags = D3D11_BIND_DEPTH_STENCIL;
depthStencilDesc.CPUAccessFlags = 0;
depthStencilDesc.MiscFlags = 0;
_pd3dDevice->CreateTexture2D(&depthStencilDesc, nullptr, &_depthStencilBuffer);
_pd3dDevice->CreateDepthStencilView(_depthStencilBuffer, nullptr, &_depthStencilView);
_pImmediateContext->OMSetRenderTargets(1, &_pRenderTargetView, _depthStencilView);
// Rasterizer
D3D11_RASTERIZER_DESC cmdesc;
ZeroMemory(&cmdesc, sizeof(D3D11_RASTERIZER_DESC));
cmdesc.FillMode = D3D11_FILL_SOLID;
cmdesc.CullMode = D3D11_CULL_NONE;
hr = _pd3dDevice->CreateRasterizerState(&cmdesc, &RSCullNone);
D3D11_DEPTH_STENCIL_DESC dssDesc;
ZeroMemory(&dssDesc, sizeof(D3D11_DEPTH_STENCIL_DESC));
dssDesc.DepthEnable = true;
dssDesc.DepthWriteMask = D3D11_DEPTH_WRITE_MASK_ALL;
dssDesc.DepthFunc = D3D11_COMPARISON_LESS_EQUAL;
_pd3dDevice->CreateDepthStencilState(&dssDesc, &DSLessEqual);
ZeroMemory(&cmdesc, sizeof(D3D11_RASTERIZER_DESC));
cmdesc.FillMode = D3D11_FILL_SOLID;
cmdesc.CullMode = D3D11_CULL_BACK;
cmdesc.FrontCounterClockwise = true;
hr = _pd3dDevice->CreateRasterizerState(&cmdesc, &CCWcullMode);
cmdesc.FrontCounterClockwise = false;
hr = _pd3dDevice->CreateRasterizerState(&cmdesc, &CWcullMode);
return S_OK;
}
void Application::Cleanup()
{
if (_pImmediateContext) _pImmediateContext->ClearState();
if (_pSamplerLinear) _pSamplerLinear->Release();
if (_pTextureRV) _pTextureRV->Release();
if (_pGroundTextureRV) _pGroundTextureRV->Release();
if (_pConstantBuffer) _pConstantBuffer->Release();
if (_pVertexBuffer) _pVertexBuffer->Release();
if (_pIndexBuffer) _pIndexBuffer->Release();
if (_pPlaneVertexBuffer) _pPlaneVertexBuffer->Release();
if (_pPlaneIndexBuffer) _pPlaneIndexBuffer->Release();
if (_pVertexLayout) _pVertexLayout->Release();
if (_pVertexShader) _pVertexShader->Release();
if (_pPixelShader) _pPixelShader->Release();
if (_pRenderTargetView) _pRenderTargetView->Release();
if (_pSwapChain) _pSwapChain->Release();
if (_pImmediateContext) _pImmediateContext->Release();
if (_pd3dDevice) _pd3dDevice->Release();
if (_depthStencilView) _depthStencilView->Release();
if (_depthStencilBuffer) _depthStencilBuffer->Release();
if (DSLessEqual) DSLessEqual->Release();
if (RSCullNone) RSCullNone->Release();
if (CCWcullMode) CCWcullMode->Release();
if (CWcullMode) CWcullMode->Release();
if (_timer) delete(_timer);
if (_camera) delete _camera;
if (_colliderSystem) delete _colliderSystem;
for (auto gameObject : _gameObjects)
{
if (gameObject)
{
delete gameObject;
}
}
}
void Application::moveForward(int objectNumber) {
_gameObjects[objectNumber]->GetPhysicsModel()->AddForce(Vector3(0, 0, 200));
}
void Application::moveBackward(int objectNumber) {
_gameObjects[objectNumber]->GetPhysicsModel()->AddForce(Vector3(0, 0, -200));
}
void Application::moveLeft(int objectNumber) {
_gameObjects[objectNumber]->GetPhysicsModel()->AddForce(Vector3(-200, 0, 0));
}
void Application::moveRight(int objectNumber) {
_gameObjects[objectNumber]->GetPhysicsModel()->AddForce(Vector3(200, 0, 0));
}
void Application::Tick() {
//do not let the application proceed until the accumulator is completed.
//this framelocks the application.
//doing this here gives the application plenty of time to spend on update and draw.
_timer->Tick(); //get the new delta time since last frame.
while (_timer->IsAccumulatorCompleted()) {
Update();
PhysicsUpdate();
_timer->DetickAccumulator();
}
}
void Application::Update() {
// Move gameobject 1 (WASD keys)
// forward
if (GetAsyncKeyState('W'))
{
moveForward(1);
}
// backward
if (GetAsyncKeyState('S'))
{
moveBackward(1);
}
// left
if (GetAsyncKeyState('A'))
{
moveLeft(1);
}
// right
if (GetAsyncKeyState('D'))
{
moveRight(1);
}
// move gameobject 2 (IJKL keys)
// forward
if (GetAsyncKeyState('I'))
{
moveForward(2);
}
// backward
if (GetAsyncKeyState('K'))
{
moveBackward(2);
}
// left
if (GetAsyncKeyState('J'))
{
moveLeft(2);
}
// right
if (GetAsyncKeyState('L'))
{
moveRight(2);
}
// Update camera
float angleAroundZ = XMConvertToRadians(_cameraOrbitAngleXZ);
float x = _cameraOrbitRadius * cos(angleAroundZ);
float z = _cameraOrbitRadius * sin(angleAroundZ);
XMFLOAT3 cameraPos = _camera->GetPosition();
cameraPos.x = x;
cameraPos.z = z;
_camera->SetPosition(cameraPos);
_camera->Update();
// Update objects, this will also update any cache they have for next collision checks
for (auto gameObject : _gameObjects)
{
gameObject->Update(_timer->GetDeltaTime());
}
}
void Application::PhysicsUpdate() {
//we need to do collision tick before we move the objects
_colliderSystem->CollisionTick();
}
void Application::Draw()
{
//
// Clear buffers
//
float ClearColor[4] = { 0.5f, 0.5f, 0.5f, 1.0f }; // red,green,blue,alpha
_pImmediateContext->ClearRenderTargetView(_pRenderTargetView, ClearColor);
_pImmediateContext->ClearDepthStencilView(_depthStencilView, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
//
// Setup buffers and render scene
//
_pImmediateContext->IASetInputLayout(_pVertexLayout);
_pImmediateContext->VSSetShader(_pVertexShader, nullptr, 0);
_pImmediateContext->PSSetShader(_pPixelShader, nullptr, 0);
_pImmediateContext->VSSetConstantBuffers(0, 1, &_pConstantBuffer);
_pImmediateContext->PSSetConstantBuffers(0, 1, &_pConstantBuffer);
_pImmediateContext->PSSetSamplers(0, 1, &_pSamplerLinear);
ConstantBuffer cb;
XMFLOAT4X4 viewAsFloats = _camera->GetView();
XMFLOAT4X4 projectionAsFloats = _camera->GetProjection();
XMMATRIX view = XMLoadFloat4x4(&viewAsFloats);
XMMATRIX projection = XMLoadFloat4x4(&projectionAsFloats);
cb.View = XMMatrixTranspose(view);
cb.Projection = XMMatrixTranspose(projection);
cb.light = basicLight;
cb.EyePosW = _camera->GetPosition();
// Render all scene objects
for (auto gameObject : _gameObjects)
{
// Get render material
Material material = gameObject->GetAppearance()->GetMaterial();
// Copy material to shader
cb.surface.AmbientMtrl = material.ambient;
cb.surface.DiffuseMtrl = material.diffuse;
cb.surface.SpecularMtrl = material.specular;
// Set world matrix
cb.World = XMMatrixTranspose(gameObject->GetWorldMatrix());
// Set texture
if (gameObject->GetAppearance()->HasTexture())
{
ID3D11ShaderResourceView * textureRV = gameObject->GetAppearance()->GetTextureRV();
_pImmediateContext->PSSetShaderResources(0, 1, &textureRV);
cb.HasTexture = 1.0f;
}
else
{
cb.HasTexture = 0.0f;
}
// Update constant buffer
_pImmediateContext->UpdateSubresource(_pConstantBuffer, 0, nullptr, &cb, 0, 0);
// Draw object
gameObject->Draw(_pImmediateContext);
}
//
// Present our back buffer to our front buffer
//
_pSwapChain->Present(0, 0);
}