-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSITREPS.txt
5147 lines (4420 loc) · 246 KB
/
SITREPS.txt
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
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
SITREP 05/08/2019|19w19b1
- Added Precompiled Header files(PCH) to speed up compiling ~30 mins
- Optimized all vector accesses by replacing vector.at() with vector[] operators ~>50 mins
- Log.txt is now created by the Virtual File System(VFS) ~<1 min
- Replaced all uint8_t with std::byte less error prone because std::bytes has no operator overloads except bitwise operations ~10 mins
- Added macros for versioning TRAP Engine ~<5 mins
- Changed TRAP Engine version to 19w19b1(0.2.53) ~<1 min
- Changed Parameters of WriteFile(VFS), WriteFile(FileSystem) to use std::vector<std::byte>& instead of std::byte* ~<5 mins
- Added TP_RENDERER_ASSERT back to VKContext ~>10 mins
SITREP 05/09/2019|19w19b2
- Changed TRAP Engine version to 19w19b2(0.2.54)
- Started Adding TP_RENDERER_ASSERT back to VKRenderer ~10 mins
SITREP 05/10/2019|19w19b3a
- Changed TRAP Engine version to 19w19b3(0.2.55)
- Reported Bug #1 Destruction of Context before VkImageViews could be cleaned up by Renderer Destructor
- Added more TP_RENDERER_ASSERT back to VKRenderer ~10 mins
SITREP 05/14/2019|19w20a
- Updated Trello board https://trello.com/b/OFXQuscQ/trap-engine-redesign
- Updated Version Number
SITREP 05/15/2019|19w20a1
- Finished adding TP_RENDERER_ASSERT back to VKRenderer ~<10 mins
- Changed TRAP Engine version to 19w20a1(0.2.56)
SITREP 05/16/2019|19w20b2
- Fixed Bug #1 replaced VKContext* Get() with shared_ptr<VKContext> Get() ~15 mins
- Changed TRAP Engine version to 19w20b2(0.2.58)
- Renamed VK to Vulkan, GL to OpenGL, DX to D3D12 ~<15 mins
- Added a Config class(not using VFS for now) ~>20 mins
SITREP 05/18/2019|19w20c1
- Changed TRAP Engine version to 19w20c1(0.2.59)
- Added Config class(using VFS for reading and writing to files) ~>30 mins
- Added Loading & Saving of Window Width, Height, Mode, VSync and RenderAPI ~<10 mins
SITREP 05/19/2019|19w20c2
- Changed TRAP Engine version to 19w20c2(0.2.60)
- Changed Config class std::map to std::vector
SITREP 05/19/2019|19w20d2
- Changed TRAP Engine version to 19w20d2(0.2.62)
- Removed Warnings ~>40 mins
- Removed #defines ~>30 mins
- Removed potential memory leak in LayerStack ~>20 mins
SITREP 05/20/2019|19w21a2
- Changed TRAP Engine version to 19w21a2(0.2.66)
- Fixed Bug #4 replaced VFS::Get()->WriteTextFile() with ofstream ~<10 mins
- Config changed forEach loops to use std::find_if() ~>20 mins
- Changed enums to enum classes ~>30 mins
- Removed EVENT_CLASS_CATEGORY macro ~>10 mins
- Removed EVENT_CLASS_TYPE ~>20 mins
SITREP 05/21/2019|19w21b1
- Changed TRAP Engine version to 19w21b1(0.2.67)
- Updated ImGui ~>5 mins
- Replaced some function parameters and return types from string to string_view(Only Shader System is missing now) ~>30 mins
SITREP 05/22/2019|19w21b2
- Changed TRAP Engine version to 19w21b2(0.2.68)
- Started removing new & delete from Shader System ~>60 mins
SITREP 05/23/2019|19w21b3
- Changed TRAP Engine version to 19w21b3(0.2.69)
- Finished removing new & delete from Shader System(replaced by unique_ptr) ~>120 mins
- Added advanced debugging for OpenGL(DebugCallback) ~>20 mins
- Fixed Bug Shaders are now correctly destroyed before Context current == nullptr ~>15 mins
- Renamed Pixel Shader to Fragment Shader ~>15 mins
- Replaced some function parameters and return types from string to string_view(Shader System)
SITREP 05/24/2019|19w21c1
- Changed TRAP Engine version to 19w21c1(0.2.70)
- Windows Favors Nvidia or Amd GPU now ~<5 mins
- Fixed Bug #6 Added a check if shader == nullptr return ~1 mins
- Removed TryCompile & TryCompileFromFile ~<5 mins
- Replaced GetTimeStamp with __TIME__ macro ~5 mins
- Added Timer & TimeStamp classes ~>15 mins
- Added GetFrameTime & GetFPS in Application ~>20 mins
- Readded GetTimeStamp with new Format ~>15 mins
- Added some missing constructors ~>15 mins
- Replaced all shared_ptr with unique_ptr ~>30 mins
- Added Multi Monitor support ~>20 mins
- Added Shutdown in Application to use for Hotkeys ~<10 mins
- Added Monitor Resolution Check for Fullscreen see Bug #2 ~>20 mins
- Added Refresh Rate to Fullscreen ~>10 mins
SITREP 05/25/2019|19w21c2
- Changed TRAP Engine version to 19w21c2(0.2.71)
- Added Optional Shader Types to Shader System ~>100 mins
- Added Hot Shader Reloading Support with Hotkey(R+S) and On File Modified ~>150 mins
- Added Fallback Shader to Shader System for runtime Shader compile errors ~>60 mins
SITREP 05/26/2019|19w21c3
- Changed TRAP Engine version to 19w21c3(0.2.73)
- Splitted Dependencies into a seperate group ~>50 mins
- Added GLSLang library for runtime GLSL to SPIRV compiling ~>120 mins
SITREP 05/27/2019|19w22a1
- Changed TRAP Engine version to 19w22a1(0.2.74)
- Removed GLFW and ImGui ~<10 mins
- Re-Added GLFW and ImGui as submodules ~>45 mins
- Added GLSLang as Dependencie submodule ~>70 mins
- Reimplemented Hot Shader Reloading(FileWatcher) ~>120 mins
SITREP 05/28/2019|19w22a2
- Changed TRAP Engine version to 19w22a2(0.2.75)
- Uploaded Repository to GitHub Yay :D ~>20 mins
SITREP 05/29/2019|19w22a3
- Changed TRAP Engine version to 19w22a3(0.2.76)
- Big CodeStyle overhaul ~>180 mins
SITREP 05/30/2019|19w22a4
- Changed TRAP Engine version to 19w22a4(0.2.77)
- Changed checks if TRAP_PLATFORM_WINDOWS for D3D12 API ~>10 mins
- Changed calculation of FPS & set FPS and FrameTime at the end of the GameLoop ~>15 mins
- Added SetIcon inside Window and embedded TRAP logo as default icon ~>40 mins
SITREP 05/31/2019|19w22b1
- Changed TRAP Engine version to 19w22b1(0.2.78)
- Added Automatic selection of RenderAPI if there's no/an invalid provided in Engine.cfg ~>60 mins
SITREP 06/02/2019|19w22c1
- Changed TRAP Engine version to 19w22c1(0.3.0)
- Added Runtime switching between RenderAPIs ~>180 mins
- Added MsgBox API to create cross-platform Message Boxes ~>45 mins
- Fixed Bug #9 Crash if Engine.cfg was overwritten with an incompatible RenderAPI ~>30 mins
- Added RenderAPI auto correction for Bug #9 ~>20 mins
SITREP 06/03/2019|19w23a1
- Changed TRAP Engine version to 19w23a1(0.3.1)
- Added IsVulkanCapable() functionality inside VulkanContext ~>70 mins
- Added check if Vulkan 1.1 is supported by physical device inside VulkanContext ~<10 mins
SITREP 06/05/2019|19w23a2
- Changed TRAP Engine verison to 19w23b1(0.3.2)
- Worked on VulkanShader ~>70 mins
SITREP 06/10/2019|19w24a1
- Changed TRAP Engine version to 19w24a1(0.4.0)
- Added BufferLayout ~>40 mins
- Added Vertex Buffer ~>45 mins
- Added Index Buffer ~>30 mins
- Added Vertex Array ~>35 mins
- Changed where ShaderManager gets destroyed ~>10 mins
SITREP 06/14/2019|19w24a2
- Changed TRAP Engine version to 19w24a2(0.4.1)
- Added checks for Geometry and Tessellation Shader support inside Vulkan ~>30 mins
SITREP 06/15/2019|19w24a3
- Changed TRAP Engine version to 19w24a3(0.4.2)
- Added TGAImage and BMPImage class to load Images ~>120 mins
SITREP 06/16/2019|19w24a4
- Changed TRAP Engine version to 19w24a(0.4.3)
- Added abstract Image class ~>30 mins
- Added Texture(2D) class ~>60 mins
- Added TextureManager ~>45 mins
SITREP 06/17/2019|19w25a2
- Changed TRAP Engine version to 19w25a2(0.4.5)
- Added TextureManager Reload functionality ~>60 mins
- Added Conversion from BGR(A) to RGB(A) format ~>25 mins
SITREP 07/09/2019|19w28a1
- Changed TRAP Engine version to 19w28a1(0.4.6)
- Removed Texture stuff for now...
- Moved some Renderer abstractions ~>40 mins
- Renamed Renderer class to RendererAPI
- Added new Renderer class for abstractions
- Added RenderCommand class for Renderer settings
- Removed rectangle from Sandbox ~<5 mins
- Added automatic viewport change on WindowResizeEvent ~<10 mins
- Started evaluating the validity of my Maths API results(Vectors seem to work fine) ~>30 mins
- Added OrthographicCamera class ~>35 mins
- Changed Sandbox Color Shader to allow View and Projection Matrix ~< 10mins
SITREP 07/19/2019|19w29a1
- Changed TRAP Engine version to 19w29a1(0.4.7)
- Updated Submodules ~< 15mins
- Added UniformBuffer support ~>100 mins
- Changed Shader file format ~>20 mins
- Added support for comments(non range based) in Shaders ~>40 mins
- Shader parser now ignores UniformBufferBlock because they get handled by the UBOs ~>20 mins
SITREP 07/21/2019|19w29a2
- Changed TRAP Engine version to 19w29a2(0.4.8)
- Resolved Cyclic Dependency in tVec2,3,4 and Mat3,4(I know Math.h is ugly) ~>30 mins
SITREP 07/22/2019|19w30a1
- Changed TRAP Engine version to 19w30a1(0.4.9)
- Removed unused Exception class ~<5 mins
- Removed MsgBoxLinux(Will be re-added without the need of GTK)
SITREP 07/24/2019|19w30a2
- Changed TRAP Engine version to 19w30a2(0.4.10)
- Readded MsgBoxLinux ~>75 mins
- Fixed premake5.lua to successfully build on Linux and Windows
- Fixed all issues with Travis
SITREP 07/26/2019|19w30a3
- Changed TRAP Engine version to 19w30a3(0.5.0)
- Linux support now official
SITREP 07/27/2019|19w30a4
- Changed TRAP Engine version to 19w30a4(0.5.1)
- Added FPS and FrameTime overlay ~<20 mins
- Migrated UBO for Matrices to the abstract Renderer ~>20 mins
- Added Projection Matrix recalculation on resizing ~>15 mins
- Added support for Model(Transformation) Matrix ~>35 mins
- Added new FPS calculation method thx to Nilusss ~<10 mins
SITREP 07/28/2019|19w30a5
- Changed TRAP Engine version to 19w30a5(0.5.2)
- Added Projection/View/Model Matrix to the Passthrough Shader ~<10 mins
- Changed destruction order Renderer->ShaderManager->RendererAPI->Context->Window ~<10 mins
SITREP 07/29/2019|19w31a1
- Changed TRAP Engine version to 19w31a1(0.5.3)
- Added GetDrawCalls() ~<15 mins
- Added optional FPSLimiter ~<20 mins
- Added OnTick, SetTickRate, GetTickRate functions ~<30 mins
- Tested if Geometry Shaders are working ~>20 mins
- Added OpenGL Shader Linker Error detection ~>25 mins
- Added RendererPrimitive option ~>15 mins
SITREP 07/30/2019|19w31a2
- Changed TRAP Engine version to 19w31a2(0.5.4)
- Tested if Tessellation Control and Evaulation Shader are working ~>30 mins
- Added PATCHES to RendererPrimitive for Tessellation ~<5 mins
- Fixed bug with single comments ~>10 mins
- Removed OpenGLShader comment detection because its unecessary ~>20 mins
SITREP 07/31/2019|19w31a3
- Changed TRAP Engine version to 19w31a3(0.5.5)
- Added Image class ~>20 mins
- Added DefaultImage for errors ~>25 mins
- Added PPM Image Format ~>15 mins
- Added PNM Image Format ~>15 mins
- Added PGM Image Format ~>15 mins
- Added PAM Image Format ~>20 mins
- Added PFM Image Format ~>25 mins
SITREP 08/01/2019|19w31a4
- Changed TRAP Engine version to 19w31a4(0.5.6)
- Confirmed PPM, PNM, PGM, PAM and PFM Image Formats working ~>60 mins
- Added TextureManager ~>30 mins
- Added HotTextureReloading ~>25 mins
SITREP 08/02/2019|19w31a5
- Changed TRAP Engine version to 19w31a5(0.5.7)
- Allow FileWatcher to track sub directory files ~>40 mins
- Started working on TGA Image Format ~>30 mins
SITREP 08/03/2019|19w31a6
- Changed TRAP Engine version to 19w31a6(0.5.8)
- Added uniform location caching for OpenGL shaders ~>25 mins
SITREP 08/04/2019|19w31a7
- Changed TRAP Engine version to 19w31a7(0.5.9)
- Working on TGA Image Loader ~>120 mins
SITREP 08/05/2019|19w32a1
- Changed TRAP Engine version to 19w32a1(0.5.10)
- Finished TGA Image Loader ~>60 mins
SITREP 08/11/2019|19w32a2
- Changed TRAP Engine version to 19w32a2(0.5.11)
- Added Range to FPSLimiter(25-1000FPS) ~<15 mins
SITREP 08/13/2019|19w33a1
- Changed TRAP Engine version to 19w33a1(0.5.12)
- Working on BMP Image Loader ~>120 mins
- Added check if OpenGLTexture2D exceeds max size ~>30 mins
SITREP 08/14/2019|19w33a2
- Changed TRAP Engine version to 19w33a2(0.5.13)
- Got 32 BPP BMP Images working ~>60 mins
SITREP 08/19/2019|19w34a1
- Changed TRAP Engine version to 19w34a1(0.5.14)
- Got padding for 8 BPP BMP Images working ~>45 mins
- Fixed Linux compiling ~<10 mins
- Added support for NPOT Textures ~>35 mins
SITREP 08/20/2019|19w34a2
- Changed TRAP Engine version to 19w34a2(0.5.15)
- Tested NPOT Textures on all current image formats ~>45 mins
- Simplified FlipX/Y function ~>20 mins
- Made the OpenGLTexture2D more bindless ~>35 mins
SITREP 08/21/2019|19w34a3
- Changed TRAP Engine version to 19w34a3(0.5.16)
- Switched to OpenGL DSA(Direct State Access) mode ~>60 mins
SITREP 08/22/2019|19w34a4
- Changed TRAP Engine version to 19w34a4(0.5.17)
- Removed support for Non-Opaque Uniforms in GLSL Shaders(Use UBOs instead) ~>45 mins
- Added support for custom window icon with TRAP::Image ~>20 mins
- Simplified Compile function from OpenGLShader ~>30 mins
- Added support for 16BPP Indexed (RLE) TGA Image Files ~>45 mins
- Fixed bug in DecodeBGRAMap & DecodeRLEBGRAMap ~<5 mins
- Added Support for BMPV5 BitField Images ~>60 mins
SITREP 08/23/2019|19w34a5
- Changed TRAP Engine version to 19w34a5(0.5.18)
- Added Multi-Window support ~> 100 mins
- Changed Events system so it now passes current window title through ~>30 mins
SITREP 08/24/2019|19w34a6
- Changed TRAP Engine version to 19w34a6(0.5.19)
- Optimized memory usage in TGA Image Loader for RLE images ~>45 mins
SITREP 08/25/2019|19w34a7
- Changed TRAP Engine version to 19w34a7(0.5.20)
- Optimized Vertical/Horizontal Functions for Image flipping ~>25 mins
- Optimized Image Decode/Convert Functions ~>65 mins
SITREP 08/28/2019|19w35a2
- Changed TRAP Engine version to 19w35a2(0.5.22)
- 8BPP Indexed RLE BMP are now unsupported
- Added EmptyImage for OpenGLFrameBuffer ~>20 mins
- Vulkan Splitted Compute/Graphics shaders ~<10 mins
- OpenGL Changed DrawCall function ~<5 mins
SITREP 08/29/2019|19w35a3
- Changed TRAP Engine version to 19w35a3(0.5.23)
- Vulkan Added incomplete graphics pipeline ~>65 mins
- Added TextureCube Base class ~>30 mins
SITREP 09/02/2019|19w36a1
- Changed TRAP Engine version to 19w36a1(0.5.24)
- OpenGL Added Texture Cube with Vertical Cross ~>45 mins
- Added HotTextureReloading to TextureCube ~>45 mins
- OpenGL Added TextureCube with Horizontal Cross ~>25 mins
- Modified TextureManager::Get() function to pass TextureType ~>15 mins
- Added Fallback for TextureCube ~>25 mins
- Made Input class Singleton ~<15 mins
- OpenGL Added TextureCube with multiple images ~>40 mins
SITREP 09/03/2019|19w36a2
- Changed TRAP Engine version to 19w36a2(0.5.25)
- Removed std::function in EventDispatcher for performance ~<10 mins
- Fixed Changing Wrap/Filter of Texture ~<20 mins
- Added automatic drawing without IndexBuffer if no IndexBuffer exists ~>20 mins
- Added functions Get2D/GetCube to TextureManager ~<10 mins
- Updated Submodules ~15 mins
SITREP 09/04/2019|19w36a3
- Changed TRAP Engine version to 19w36a3(0.5.26)
- Added Camera Base class ~<15 mins
- OpenGL Added Texture Swizzle for GrayScale Images ~<25 mins
- RenderCommand Added Enable/Disable of Depth Masking ~<15 mins
- RenderCommand Added Setting of the Depth Test Function ~<25 mins
- RenderCommand Added Setting of different Blend Equations for RGB and alpha ~<25 mins
- RenderCommand Added Setting of different Blend Functions for srcRGB, srcAlpha, dstRGB, dstAlpha ~<30 mins
- RenderCommand Added Default values to some functions ~<10 mins
- Made VSync Window dependent ~>25 mins
- Removed GetVSyncInterval from API::Context ~<10 mins
- Added SetVSyncInterval and GetVSyncInterval to TRAP::Window ~>15 mins
- Removed unecessary TRAP::WindowProps constructor ~<20 mins
SITREP 09/05/2019|19w36a4
- Changed TRAP Engine version to 19w36a4(0.5.27)
- BufferElement GetComponentCount() Removed Invalid returns ~<15 mins
- Started Working on Documentation ~>60 mins
- Replaced every unsigned int with uint32_t ~<20 mins
- Replaced every int with int32_t ~<20 mins
SITREP 09/06/2019|19w36a5
- Changed TRAP Engine version to 19w36a5(0.5.28)
- Working on Documentation(TRAP::Window) ~>60 mins
- Fixed a Bug inside Window SetDisplayMode when using Fullscreen ~<20 mins
- Restructured Window class ~<30 mins
SITREP 09/07/2019|19w36a6
- Changed TRAP Engine version to 19w36a6(0.5.29)
- Added setting of the CursorMode ~>20 mins
- Added Raw Mouse Input support ~>20 mins
SITREP 09/08/2019|19w36a7
- Changed TRAP Engine version to 19w36a7(0.5.30)
- Replaced Key and Mouse defines with enum classes ~<45 mins
- Input Added GetKeyName ~<20 mins
- Window Added GetMonitorNames, GetMonitorName ~>15 mins
- Started Adding Gamepad support ~<10 mins
- Shader Added CreateFromFile without name parameter ~<15 mins
- Texture2D Added CreateFromFile without name parameter ~<15 mins
- TextureCube Added CreateFromCross without name parameter ~<15 mins
SITREP 09/09/2019|19w37a1
- Changed TRAP Engine version to 19w37a1(0.5.31)
- ShaderManager now uses unordered_map ~>20 mins
- TextureManager now uses unordered_map ~>20 mins
- TextureManager changed some functions ~>25 mins
- ShaderManager changed some functions ~>25 mins
- Textures and Shaders that already exists don't get overwritten now ~<20 mins
- ShaderManager Added Load functions to replace Add + CreateFromFile/Source ~<20 mins
- TextureManager Added Load functions to replace Add + CreateFromFile(s)/Cross ~<20 mins
- VFS Added GetFileName to retrieve filename of a virtualPath ~<15 mins
- Added Scopes and Refs as unique_ptr and shared_ptr replacement ~>35 mins
SITREP 09/11/2019|19w37a2
- Changed TRAP Engine version to 19w37a2(0.5.32)
- Window Added Detection for which Windows uses which Monitor when using Fullscreen or Borderless ~>35 mins
- UniformBuffer Added support for multiple UBOs @ the same time ~<20 mins
- Working on Controller support ~>35 mins
SITREP 09/12/2019|19w37a3
- Changed TRAP Engine version to 19w37a3(0.5.33)
- Finished Controller support ~>45 mins
- Changed all enums to use UpperCamelCase ~<20 mins
SITREP 09/13/2019|19w37a4
- Changed TRAP Engine version to 19w37a4(0.5.34)
- Working on Documentation for TRAP::Input ~>45 mins
SITREP 09/14/2019|19w37a5
- Changed TRAP Engine version to 19w37a5(0.5.35)
- Renderer changed Clear() ~<20 mins
- Fixed TimeStep class ~<20 mins
- Added new shader for testing(and fun :D) ~>20 mins
SITREP 09/19/2019|19w38a1
- Changed TRAP Engine version to 19w38a1(0.5.36)
- Moved Platform detection macros from premake to Core.h ~<20 mins
- Added OrthographicCameraController class and outsourced camera stuff from Sandbox ~>20 mins
- Added Zooming via mouse scrolling | controller triggers ~<5 mins
- Made OrthographicCameraController rotations optional ~<5 mins
- Made OrthographicCameraController controller input optional ~>10 mins
- Removed Translate and Rotate functions from OrthographicCamera ~<5 mins
- Added support for multiple OrthographicCameraControllers on different Windows ~>25 mins
- Main Window Resizing now gets handled inside the Engine ~<10 mins
- Added documentation for TRAP::Input ~>130 mins
SITREP 09/20/2019|19w38a2
- Changed TRAP Engine version to 19w38a2(0.5.37)
- Only Textures and Shaders which already exist in the Shader/TextureManager are getting reloaded now ~>20 mins
- OpenGL working on Persistent Mapped Triple Buffered(No Sync) Buffers for streaming data to the GPU every frame ~>45 mins
SITREP 09/23/2019|19w39a1
- Changed TRAP Engine version to 19w39a1(0.5.38)
- OpenGL Finished Persistent Mapped Triple Buffered(No Sync) Buffers ~>120 mins
SITREP 09/24/2019|19w39a2
- Changed TRAP Engine version to 19w39a2(0.5.39)
- Updated all submodules
SITREP 09/28/2019|19w39a3
- Changed TRAP Engine version to 19w39a3(0.5.40)
- Worked on Event/Core documentation ~>60 mins
- Changed some things in Core.h ~<10 mins
- Changed some macro/template names ~>10 mins
SITREP 09/29/2019|19w39a4
- Changed TRAP Engine version to 19w39a4(0.5.41)
- Reverted Logging macros back to use TP_ ~<20 mins
SITREP 09/30/2019|19w40a1
- Changed TRAP Engine version to 19w40a1(0.5.42)
- Fixed invalid monitor usage if Engine.cfg doesnt exist ~<5 mins
- Added Core.h documentation ~>30 mins
SITREP 10/03/2019|19w40a2
- Changed TRAP Engine version to 19w40a2(0.5.43)
- Fixed Window not updating position on windowed mode ~>10 mins
- Window Added storing of base video mode for every monitor ~>20 mins
SITREP 10/04/2019|19w40a3
- Changed TRAP Engine version to 19w40a3(0.5.44)
- Windows now use overclocked monitors refresh rate or native refresh rate ~>20 mins
- Worked on Event documentation ~>30 mins
SITREP 10/05/2019|19w40a4
- Changed TRAP Engine version to 19w40a4(0.5.45)
- Finished & Added Event documentation ~>75 mins
- OpenGLTexture2D & OpenGLTextureCube Added safety checks to Bind and Unbind ~>10 mins
- Now utilizing structured bindings ~<30 mins
- OpenGLTexture2D & OpenGLTextureCube Optimized Binding/Unbinding of the same Texture to the same slot ~>25 mins
SITREP 10/06/2019|19w40a5
- Changed TRAP Engine version to 19w40a5(0.5.46)
- OpenGLUniformBuffer Fixed Unbind function not using bindingPoint ~<20 mins
- OpenGLUniformBuffer Added Unbind/Bind safety checks ~>20 mins
- OpenGLUniformBuffer Optimized Binding/Unbinding of the same UniformBuffer to the same bindingPoint ~>20 mins
- Moved all inline functions to the .cpp files ~>120 mins
- Reordered functions to match declarations ~>125 mins
SITREP 10/08/2019|19w41a1
- Changed TRAP Engine version to 19w41a1(0.5.47)
- OpenGLShader GLSL Ignore #version tag & always add "#version 460 core" ~>15 mins
SITREP 10/09/2019|19w41a2
- Changed TRAP Engine version to 19w41a2(0.5.48)
- OpenGLUniformBuffer with Stream usage now uses Orphaning(because of internal issues) ~>15 mins
- Working on Shading language independent loading ~>60 mins
SITREP 10/12/2019|19w41a3
- Changed TRAP Engine version to 19w41a3(0.5.49)
- Working on Shading language independent loading ~>60 mins
- ConvertToSPIRV Finished GLSL converting ~>150 mins
- Shader Optimized RAM usage ~>45 mins
- VulkanShader Added loading of SPIR-V ~>30 mins
- Dependencies Added SPIRV-Cross ~>35 mins
- Updated documentation ~>15 mins
- OpenGLShader Added loading of SPIR-V ~>45 mins
- Updated README.md ~<5 mins
- Fixed Travis CI ~<15 mins
SITREP 10/13/2019|19w41a4
- Changed TRAP Engine version to 19w41a4(0.5.50)
- Application Replaced BIND_EVENT_FN with TRAP_BIND_EVENT_FN ~<10 mins
- Texture Optimized RAM usage ~>45 mins
- Refactored OpenGLTexture2D ~>25 mins
- KeyPressedEvent Added actually counting the amount of key repeats ~>15 mins
- Removed EmptyImage class ~<20 mins
- Shaders Removed language tag and HLSL support ~>20 mins
- Shaders Fixed some edge cases in *.shader parsing ~>40 mins
SITREP 10/15/2019|19w42a2
- Changed TRAP Engine version to 19w42a2(0.5.51)
- Images started caring about endian correctness ~>45 mins
- Worked on PNG Image File Format ~>20 mins
SITREP 10/18/2019|19w42a3
- Changed TRAP Engine version to 19w42a3(0.5.52)
- Finished caring about endian correctness ~>60 mins
SITREP 10/19/2019|19w42a4
- Changed TRAP Engine version to 19w42a4(0.5.53)
- Worked on PNG Image File Format ~>45 mins
SITREP 10/21/2019|19w43a1
- Changed TRAP Engine version to 19w43a1(0.5.54)
- PNG Finished loading of all chunks ~>100 mins
- PNG Finished CRC Checking ~>20 mins
- Started working on PNG Decompression ~> 20 mins
SITREP 10/26/2019|19w43a2
- Changed TRAP Engine version to 19w43a2(0.5.55)
- Added zlib to Inflate PNG Image Data ~>40 mins
- Disabled warnings from all submodules ~>20 mins
- Added Unfinished PNG Loader ~>120 mins
SITREP 10/27/2019|19w43a3
- Changed TRAP Engine version to 19w43a3(0.5.56)
- Finished PNG Loader ~> 120 mins
- Tested PNG Loader with PNGSuite ~>130 mins
- Fixed small bugs in PNG Loader ~>30 mins
SITREP 10/28/2019|19w44a1
- Changed TRAP Engine version to 19w44a1(0.5.57)
- Added HuffmanTree ~>60 mins
- Added Adler32 ~>30 mins
- Added own zlib inflator ~>140 mins
- Removed zlib-ng submodule ~>20 mins
SITREP 10/29/2019|19w44a2
- Changed TRAP Engine version to 19w44a2(0.5.58)
- [Vulkan] Fixed some unitinialized variables ~>10 mins
SITREP 10/31/2019|19w44a3
- Changed TRAP Engine version to 19w44a3(0.5.59)
- Config class can now be used in games ~<10 mins
- Changed some strings to string_views ~>30 mins
SITREP 11/02/2019|19w44a4
- Changed TRAP Engine version to 19w44a4(0.5.60)
- Changed Default Fallback Image ~<10 mins
- Started working on Renderer2D ~>40 mins
- Embedeed Shader for Renderer2D ~<15 mins
- Shader/TextureManager Added ability to remove Shader/Texture ~<30 mins
SITREP 11/03/2019|19w44a5
- Changed TRAP Engine version to 19w44a5(0.5.61)
- Optimized PNG Loader ~>20 mins
- Removed macOS support ~>25 mins
SITREP 11/05/2019|19w45a1
- Changed TRAP Engine version to 19w45a1(0.5.62)
- OpenGLTexture2D/Cube Fixed Uploading of 32BPP GrayScale-Alpha Images ~>20 mins
SITREP 11/06/2019|19w45a2
- Changed TRAP Engine version to 19w45a2(0.5.63)
- Memory SwapBytes now uses bitwise operations ~>20 mins
SITREP 11/09/2019|19w45a3
- Changed TRAP Engine version to 19w45a3(0.5.64)
- ImageLoader changed some functions ~>20 mins
- Added ability to load 2D texure from memory ~>40 mins
- OpenGLFrameBuffer2D Added resolution safety check ~>15 mins
- Renderer2D now uses only 1 shader and a 1x1 White 2D Texture ~>25 mins
SITREP 11/10/2019|19w45a4
- Changed TRAP Engine version to 19w45a4(0.5.65)
- Started working on Controller Input(XInput) ~>40 mins
SITREP 11/14/2019|19w46a1
- Changed TRAP Engine version to 19w46a1(0.5.66)
- PNG Image Loader reduced memory usage ~>30 mins
- Reverted last PNG Optimization because it invalidated data ~>20 mins
SITREP 11/16/2019|19w46a2
- Changed TRAP Engine version to 19w46a2(0.5.67)
- Create new branch for Controller Input ~>10 mins
- Finished Controller Input(XInput) ~>30 mins
- Application Added check if Windows 8 or newer (XInput 1.4 Requirements) ~>X mins
- Renamed ControllerHat functions to ControllerDPad ~>10 mins
- Added GetControllerDPad for XInput ~>20 mins
SITREP 11/17/2019|19w46a3
- Changed TRAP Engine version to 19w46a3(0.5.68)
- Branch ControllerInput:
- Started working on Linux Controller Input ~>30 mins
SITREP 11/23/2019|19w47a1
- Changed TRAP Engine version to 19w47a1(0.5.69)
- Branch ControllerInput:
- Finished Linux Controller Input ~>120 mins
- Windows XInput gets loaded at runtime now ~>20 mins
- Updated Documentation ~>45 mins
SITREP 11/24/2019|19w47a2
- Changed TRAP Engine version to 19w47a2(0.5.70)
- Branch ControllerInput:
- Reverted XInput runtime loading ~<10 mins
- TRAP Engine now requires Windows 8 or newer because of XInput 1.4
- Added DirectInput as new Controller API ~>50 mins
- Updated Docs ~<5 mins
- Created new Branch for a new Windowing API for Windows(Win32) and Linux(X11) ~<20 mins
SITREP 11/26/2019|19w48a1
- Changed TRAP Engine version to 19w48a1(0.5.71)
- Fixed SandboxLayer not initializing VertexArray ~<5 mins
- Fixed VulkanTexture2D creating Fallback2D with wrong name ~<5 mins
SITREP 11/28/2019|19w48a2
- Changed TRAP Engine version to 19w48a2(0.5.72)
- Tidied up Input header functions ~>30 mins
SITREP 11/30/2019|19w48a3
- Changed TRAP Engine version to 19w48a3(0.5.73)
- Updated documentation ~>15 mins
SITREP 12/01/2019|19w48a4
- Changed TRAP Engine version to 19w48a4(0.5.74)
- Replaced cstring functions from Controller Input with std::strings ~>40 mins
- Merged some XInput functions with the other APIs ~>20 mins
SITREP 12/04/2019|19w49a1
- Changed TRAP Engine version to 19w49a1(0.5.75)
- Branch Window:
- Started working on new Window API ~>40 mins
- Removed GLFW
SITREP 12/20/2019-12/23/2019|19w51a4-19w52a1
- Changed TRAP Engine version to 19w52a1(0.5.80)
- Branch Window:
- Finished big parts of the new WindowingAPI ~>720 mins
- Current phase: Debugging of core features & Tidying up the API
SITREP 12/25/2019|19w52a2
- Changed TRAP Engine version to 19w52a2(0.5.81)
- Branch Window:
- Updated Docs ~>20 mins
- Debugged and Fixed WindowingAPI ~>65 mins
SITREP 12/26/2019|19w52a3
- Changed TRAP Engine version to 19w52a3(0.5.82)
- Branch Window:
- Finished Windows side of WindowingAPI ~>240 mins
SITREP 12/27/2019|19w52a4
- Changed TRAP Engine version to 19w52a4(0.5.83)
- Branch Window:
- Added more Cursors ~>20 mins
- Updated ImGui submodule ~<10 mins
SITREP 12/28/2019|19w52a5
- Changed TRAP Engine version to 19w52a5(0.5.84)
- Branch Window:
- Changed Borderless Fullscreen Window behaviour ~<25 mins
- Fixed: VSync setting gets ignored if switch to Fullscreen ~<20 mins
- Fixed: Input polling only used Main Render Window. Now it uses an optional parameter ~<30 mins
- Updated Docs ~>25 mins
- Fixed: Fullscreen Windows using wrong Viewport size ~<20 mins
- Updated Readme ~<20 mins
SITREP 12/29/2019|19w52a6
- Changed TRAP Engine version to 19w52a6(0.5.85)
- Branch Window:
- Added Hotkey ALT+(KP)Enter to switch between Windowed and Fullscreen mode (Single-Window only!) ~<30 mins
- Fixed Minimizing the Main Window on Multi-Window programs also stopped Rendering on the other Windows ~<20 mins
- Added 30 FPS Lock if Main Window loses focus (Single-Window only!) ~<20 mins
SITREP 01/04/2020|20w01a1
- Changed TRAP Engine version to 20w01a1(0.5.86)
- Branch Window:
- Added Main Window now keeps track of maximized status and saves it for next start ~>20 mins
- Added ability to set maximized state upon window creation ~>10 mins
- Added ability to set resizable state upon window creation ~<10 mins
- Added ability to set custom image as mouse cursor ~<20 mins
- Added ability to query maximized, minimized and resizable states from a window ~<30 mins
- Replaced every TRAP_BIND_EVENT_FN with lambdas ~<20 mins
- Removed TRAP_BIND_EVENT_FN instead use lambdas now ~<20 mins
- Fixed TRAP::Window crash if no EventCallbackFn was set ~<20 mins
- Updated Docs
SITREP 01/05/2020|20w01a2
- Changed TRAP Engine version to 20w01a2(0.5.87)
- Branch Window:
- Added ImGui support ~>150 mins
- Fixed False triggering 30FPS lock if ImGui child window is focused outside Main Window ~<30 mins
- Moar references ~>40 mins
SITREP 01/06/2020|20w02a1
- Changed TRAP Engine version to 20w02a1(0.5.88)
- Branch Window:
- Changed Context Use function to use raw pointer instead of const Scope reference ~<10 mins
- Removed pointer hack inside Window.cpp ~<10 mins
- Changed some Window functionality ~>30 mins
SITREP 01/07/2020|20w02a2
- Changed TRAP Engine version to 20w02a2(0.5.89)
- Branch Window:
- Added 3 more functions to Window.cpp ~<30 mins
- Updated Docs ~<10 mins
- Removed some undefined behaviour ~>30 mins
- Removed some null deallocator smart pointer ~>30 mins
SITREP 01/11/2020|20w02a3
- Changed TRAP Engine version to 20w02a3(0.5.90)
- Branch Window:
- Changed WindowingAPI from Scopes to Refs ~>145 mins
- Added more WindowingAPI functions ~>40 mins
- Added GetControllerGUID to Input ~<10 mins
- Added new WindowingAPI functions to Window ~>30 mins
- Updated Docs ~<35 mins
SITREP 01/12/2020|20w02a4
- Changed TRAP Engine version to 20w02a4(0.5.91)
- Branch Window:
- Added WindowingAPI functions to Window ~>30 mins
- Changed WindowProps constructor ~<20 mins
- Added clipboard functions to Input ~<10 mins
- Updated Docs ~>50 mins
- Added detection for X11 and Wayland on Engine startup ~<20 mins
- Engine now only runs on Windows 7 or newer ~<10 mins
- Made branch more linux compatible ~<15 mins
SITREP 01/18/2020|20w03a1
- Changed TRAP Engine version to 20w03a1(0.5.92)
- Branch Window:
- Finished X11 Windowing ~>400 mins
- Fixed 2 small bugs ~<50 mins
- Made Config files Cross-Platform compatible (read text files now always use LF) ~<20 mins
SITREP 01/19/2020|20w03a2
- Changed TRAP Engine version to 20w03a2(0.5.93)
- Branch Window:
- Fixed X11 parent window initialization ~<10 mins
- Fixed Windows no Win key release event ~<20 mins
- Updated Docs ~<15 mins
- Fixed Windows synthetic key event used TRAP::Input::Key::Unknown ~<20 mins
- Fixed Windows Frame/Window size callback called twice ~<30 mins
- Fixed Windows Trying to set SwapInterval while not using OpenGL ~<30 mins
- Added Cursor captured mode ~>25 mins
SITREP 01/20/2020|20w04a1
- Changed TRAP Engine version to 20w04a1(0.6.01)
- Switched License from GPL 3.0 to Apache 2.0 ~<20 mins
- Replaced GLAD ~>300 mins
- Added custom ImGui OpenGL 4 implementation ~>40 mins
- Updated docs ~<20 mins
SITREP 01/21/2020|20w04a2
- Changed TRAP Engine version to 20w04a2(0.6.02)
- Added optional C++20 features ~25 mins
SITREP 01/26/2020|20w04a3
- Changed TRAP Engine version to 20w04a3(0.6.03)
- Reworked Math API (Vec1-4, Mat3-4, General) ~>309 mins
- Updated GLSLang submodule ~<10 mins
- VulkanShader now convert GLSL to SPIRV 1.5 (Need Vulkan 1.2 SDK) ~<20 mins
- Renamed Events ~<20 mins
- Updated Docs ~<30 mins
- Splitted up WindowEvents from ApplicationEvents ~<20 mins
- Added FrameBufferResizeEvent ~<30 mins
- Switched WindowResizeEvent to FrameBufferResizeEvent ~<20 mins
- Updated Docs ~<25 mins
SITREP 02/02/2020|20w05a1
- Changed TRAP Engine version to 20w05a1(0.6.04)
- Fixed Engine.cfg RefreshRate = 0 when invalid RefreshRate was used ~<15 mins
- Fixed GLSL Shaders for AMD GPUs ~<20 mins
- Added MouseEnter & MouseLeave Events ~<20 mins
- Replaced Single Linked Lists inside WindowingAPI with std::forward_list (This fixed a memory bug) ~>25 mins
SITREP 02/03/2020|20w06a1
- Changed TRAP Engine version to 20w06a1(0.6.05)
- Fixed TRAP_WINDOW_ASSERT undefined in release builds ~<5 mins
- Updated Docs ~<20 mins
- Added WindowDropEvent for Drag'n'Drop ~<25 mins
- Updated Docs ~<20 mins
SITREP 02/05/2020|20w06a2
- Changed TRAP Engine version to 20w06a2(0.6.06)
- Added WindowContentScaleEvent for OS DPI setting changes ~>20 mins
- Added GetContentScale to TRAP::Window ~<15 mins
- Updated Docs ~<20 mins
- Added Monitor class ~>30 mins
- Moved VideoMode struct from TRAP::INTERNAL::WindowingAPI to TRAP:: ~<10 mins
SITREP 02/08/2020|20w06a3
- Changed TRAP Engine version to 20w06a3(0.6.07)
- Moved TRAP::VideoMode struct to TRAP::Monitor ~<20 mins
- Updated Docs ~>40 mins
- Replaced GetWindowLong with GetWindowLongPtr inside WindowingAPIWin32.cpp ~<10 mins
- Replaced SetWindowLong with SetWindowLongPtr inside WindowingAPIWin32.cpp ~<10 mins
- Removed TRAP::Application::Get() function ~<10 mins
- Made some TRAP::Application functions static ~<20 mins
- Added Single-Line Comments to Config files by using a '#' at the beginning of a line ~<20 mins
SITREP 02/09/2020|20w06a4
- Changed TRAP Engine version to 20w06a4(0.6.08)
- Added Config class to Docs ~>30 mins
- Removed HotShader/TextureReloading from Engine.cfg ~<10 mins
- Added SetHotShader/TextureReloading() to TRAP::Application ~<15 mins
- Updated Docs ~<5 mins
- Removed TRAP::VFS::Get() function ~<20 mins
- Removed TRAP::Log::Get() function ~<20 mins
- Added TRAP::Log::GetBuffer() function ~<10 mins
- Added TRAP::Log to Docs ~>30 mins
- Added MonitorConnectEvent ~<30mins
- Added MonitorDisconnectEvent ~<20 mins
- Fixed PollMonitorsWin32 not updating Monitor Handles ~>25 mins
- Added Monitor(Dis)ConnectEvent to Docs ~<30 mins
- Added automatic handling of Windows on Monitors that got disconnected ~>50 mins
SITREP 02/10/2020|20w07a1
- Changed TRAP Engine version to 20w07a1(0.6.09)
- Changed Controller API (Temporarily removed XInput) ~>40 mins
- Added support for up to 16 Controllers simultaneously ~>20 mins
- Fixed CRLF endings for Linux ~<10 mins
- Readded XInput support ~>40 mins
- Removed ControllerAPI from Engine.cfg ~<20 mins
- Finished combining DirectInput and XInput APIs ~>25 mins
- Added XInput entries to ControllerMapping ~<20 mins
- Fixed OrthographicCameraController not zooming until Controller trigger > 0.0 ~<10 mins
- Fixed Windows builds ~>15 mins
SITREP 02/11/2020|20w07a2
- Changed TRAP Engine version to 20w07a2(0.6.10)
- Updated ConvertToSPIRV tool for Vulkan 1.2 and SPIRV 1.5 ~<10 mins
- Really Fixed CRLF endings for Linux ~<10 mins
- Added Tests project. Used for future tests ~<20mins
- Validated Clipboard functionality on Windows ~<20 mins
- Fixed TRAP_RELWITHDEBINFO preprocessor in Sandbox & Tests ~<10 mins
- Added missing iterators to LayerStack ~<20 mins
- Validated Cursor functionality on Windows ~>30 mins
- Fixed ImGui overwriting Cursor the by Client ~>30 mins
SITREP 02/15/2020|20w07a3
- Changed TRAP Engine version to 20w07a3(0.6.11)
- Updated Travis.yml. Now uses Vulkan 1.2.131.2 SDK ~<15 mins
- Fixed Linux (XKB) Keyboard not working properly ~>20 mins
- Validated Clipboard functionality on Linux(X11) ~<20 mins
- Fixed and Validated Cursor functionality on Linux(X11) ~>50 mins
- Changed ToString functions in KeyPress/Release/TypeEvent & MouseButtonPress/ReleaseEvent & ControllerDis/ConnectEvent ~>25 mins
- Fixed missing InputCursorEnter calls in WindowingAPIWin32 ~<10 mins
- Validated Events functionality on Windows ~<30 mins
- Updated Docs ~<30 mins
SITREP 02/19/2020|20w08a1
- Changed TRAP Engine version to 20w08a1(0.6.12)
- Added Utility functions using TRAP::Math::Vec ~<20 mins
- Validated Controller functionality on Windows ~<30 mins
- Validated Window Minimize functionality on Windows ~<30 mins
- CloseController now only sends ControllerDisconnectEvents if the Controller was connected ~<10 mins
- Updated Docs ~<30 mins
SITREP 02/20/2020|20w08a2
- Changed TRAP Engine version to 20w08a2(0.6.13)
- Added WindowMinimize/Maximize/RestoreEvents ~<40 mins
- Updated Docs ~<30 mins
- Validated Window Icon functionality on Windows ~<20 mins
- Added more queries to TRAP::Monitor ~<30 mins
- Updated Docs ~>30 mins
- Validated Monitor functionality on Windows ~<20 mins
SITREP 02/21/2020|20w08a3
- Changed TRAP Engine version to 20w08a3(0.6.14)
- Added support for translucent windows ~<20 mins
- Updated Docs ~<20 mins
- Validated Window Opacity functionality on Windows ~<20 mins
SITREP 02/22/2020|20w08a4
- Changed TRAP Engine version to 20w08a4(0.6.15)
- Validated Window Title UTF-8 support on Windows ~<20 mins
- Validated Events on Linux X11 ~<30 mins
- Validated Window Minimize functionality on Linux X11 ~<20 mins
- Validated Window Icon functionality on Linux X11 ~<20 mins
- Validated Monitor functionality on Linux X11 ~<20 mins
- Validated Window Opacity functionality on Linux X11 ~<20 mins
- Validated Window Title UTF-8 support on Linux X11 ~<20 mins
- Controller vibrations now only get set if they differ from current (Fixes Linux bug with repeated calls) ~<20 mins
- Fixed compiler warnings on Linux X11 ~>30 mins
SITREP 02/23/2020|20w08a5
- Changed TRAP Engine version to 20w08a5(0.6.16)
- Fixed Heap corruption on Linux X11 ~>50 mins
- Validated Controller functionality on Linux X11 ~<20 mins
- Fixed Controller bugs when Connected while TRAP is running on Windows ~<20 mins
- Removed Singleton class ~<20 mins
SITREP 02/24/2020|20w09a1
- Changed TRAP Engine version to 20w09a1(0.6.17)
- TRAP::Application::Run is now only accessible by the engine ~<10 mins
- Added JSON based Performance Profiler ~>30 mins
- Added Profiling to SandboxLayer & Sandbox2D ~<20 mins
- Added Profiling to whole engine ~>60 mins
SITREP 02/27/2020|20w09a2
- Changed TRAP Engine version to 20w09a2(0.6.18)
- Added Random generator using mt19937_64 ~>50 mins
- Validated Random generator ~<40 mins
SITREP 02/29/2020|20w09a3
- Changed TRAP Engine version to 20w09a3(0.6.19)
- Renderer2D Added Rotation support ~<20 mins
- Working on Vulkan ~>70 mins
SITREP 03/01/2020|20w09a4
- Changed TRAP Engine version to 20w09a4(0.6.20)
- Fixed Vulkan Present Queue ~<20 mins
- Added Command Buffer Submit synchronization ~<20 mins
- Added macro "TRAP_EXPERIMENTAL_VULKAN" to allow experimental usage of Vulkan API ~<20 mins
SITREP 03/04/2020|20w10a1
- Changed TRAP Engine version to 20w10a1(0.6.21)
- Added Quaternions ~>50 mins
- Replaced Matrix Rotations with Quaternions (thus fixing Gimbal Locking) ~<20 mins
- Added Missing GLM license notice in TRAP::Math ~<10 mins
- Added Missing GLAD license notice in OpenGLLoader ~<10 mins
- Added Missing GLFW license notice in TRAP::Input & TRAP::INTERNAL::WindowingAPI ~<10 mins
- Added Missing ImGui license notice in ImGui Layer ~<10 mins
- Added Missing GLSLang license ~<10 mins
- Added Missing SPIRV-Cross license ~<10 mins
- Added Missing Premake5 license ~<10 mins
SITREP 03/07/2020|20w10a2
- Changed TRAP Engine version to 20w10a2(0.6.22)
- Enabled AVX2 compilation(CPU Requirement) ~<10 mins
- Added SHA2 hash functions ~>20 mins
- Changed Adler32 and CRC32 interface ~<20 mins
- Added SHA3 hash functions ~>20 mins
- Fixed SHA2 on Linux ~<10 mins
SITREP 03/08/2020|20w10a3
- Changed TRAP Engine version to 20w10a3(0.6.23)
- Docs now use Dark theme by default ~<20 mins
- Moved Event stuff from TRAP namespace to TRAP::Events ~<30 mins
- Updated Event Docs ~>25 mins
- Restructured Events in Docs ~>40 mins
- Made TRAP::Input class static ~<30 mins
- Updated Input Docs ~>25 mins
- Worked on Image Docs ~>40 mins
SITREP 03/12/2020|20w11a1
- Changed TRAP Engine version to 20w11a1(0.6.24)
- Worked on Docs ~>60 mins
- Added ability to create texture via name and a TRAP::Image ~<30 mins
- Removed redundancy in Texture classes ~>40 mins
- Removed redundancy in Shader classes ~<30 mins
SITREP 03/14/2020|20w11a2
- Changed TRAP Engine version to 20w11a2(0.6.25)
- 2D Textures now can only be loaded directly from memory via a TRAP::Image ~>25 mins
- Cube Texture can now be loaded via a TRAP::Image ~>30 mins
- FPS now get calculated via the frametime ~<10 mins
SITREP 03/16/2020|20w12a1
- Changed TRAP Engine version to 20w12a1(0.6.26)
- Made TRAP::Log singleton ~<20 mins
- Updated TRAP::Log Docs ~<10 mins
- Added experimental ThreadPool (Dont use it for now) ~>30 mins
- Added a small 2D particle system example ~<70 mins
SITREP 03/20/2020|20w12a2
- Changed TRAP Engine version to 20w12a2(0.6.27)
- Added Triangle as Renderer2D primitive ~<20 mins
SITREP 03/26/2020|20w13a1
- Changed TRAP Engine version to 20w13a1(0.6.28)
- Moved OpenGL Max Texture Units from Texture2D/Cube to OpenGLRenderer ~<10 mins
- Fixed FrameTime when out of Focus ~<20 mins