-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathmain.c
3215 lines (2846 loc) · 104 KB
/
main.c
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
#define GS_IMPL
#include <gs/gs.h>
#define GS_IMMEDIATE_DRAW_IMPL
#include <gs/util/gs_idraw.h>
#include "render_pass/blur_pass.h"
#include "render_pass/bright_filter_pass.h"
#include "render_pass/composite_pass.h"
#include "font/font.h"
#include "font/font_data.c"
gs_global const s32 g_window_width = 800;
gs_global const s32 g_window_height = 600;
gs_global const s32 g_texture_width = 1258 >> 1;
gs_global const s32 g_texture_height = 848 >> 1;
// 32 bit color structure
typedef struct color_t {
u8 r;
u8 g;
u8 b;
u8 a;
} color_t;
typedef struct particle_t {
u8 id;
f32 life_time;
gs_vec2 velocity;
color_t color;
b32 has_been_updated_this_frame;
} particle_t;
// Should have a hash map of glyph character to glyph metric
// Globals
gs_global gs_command_buffer_t g_cb = {0};
gs_global gs_handle(gs_graphics_vertex_buffer_t) g_vbo = {0};
gs_global gs_handle(gs_graphics_index_buffer_t) g_ibo = {0};
gs_global gs_handle(gs_graphics_shader_t) g_shader = {0};
gs_global gs_handle(gs_graphics_uniform_t) u_tex = {0};
gs_global gs_handle(gs_graphics_uniform_t) u_flip_y = {0};
gs_global gs_handle(gs_graphics_texture_t) g_tex = {0};
gs_global gs_handle(gs_graphics_texture_t) g_tex_ui = {0};
gs_global gs_handle(gs_graphics_texture_t) g_rt = {0};
gs_global gs_handle(gs_graphics_framebuffer_t) g_fb = {0};
gs_global gs_handle(gs_graphics_render_pass_t) g_rp = {0};
gs_global gs_handle(gs_graphics_pipeline_t) g_pip = {0};
gs_global blur_pass_t g_blur_pass = {0};
gs_global bright_filter_pass_t g_bright_pass = {0};
gs_global composite_pass_t g_composite_pass = {0};
gs_global font_t g_font = {0};
// For now, all particle information will simply be a value to determine its material id
#define mat_id_empty (u8)0
#define mat_id_sand (u8)1
#define mat_id_water (u8)2
#define mat_id_salt (u8)3
#define mat_id_wood (u8)4
#define mat_id_fire (u8)5
#define mat_id_smoke (u8)6
#define mat_id_ember (u8)7
#define mat_id_steam (u8)8
#define mat_id_gunpowder (u8)9
#define mat_id_oil (u8)10
#define mat_id_lava (u8)11
#define mat_id_stone (u8)12
#define mat_id_acid (u8)13
// Colors
#define mat_col_empty (color_t){0, 0, 0, 0}
#define mat_col_sand (color_t){150, 100, 50, 255}
#define mat_col_salt (color_t){200, 180, 190, 255}
#define mat_col_water (color_t){20, 100, 170, 200}
#define mat_col_stone (color_t){120, 110, 120, 255}
#define mat_col_wood (color_t){60, 40, 20, 255}
#define mat_col_fire (color_t){150, 20, 0, 255}
#define mat_col_smoke (color_t){50, 50, 50, 255}
#define mat_col_ember (color_t){200, 120, 20, 255}
#define mat_col_steam (color_t){220, 220, 250, 255}
#define mat_col_gunpowder (color_t){60, 60, 60, 255}
#define mat_col_oil (color_t){80, 70, 60, 255}
#define mat_col_lava (color_t){200, 50, 0, 255}
#define mat_col_acid (color_t){90, 200, 60, 255}
typedef enum material_selection
{
mat_sel_sand = 0x00,
mat_sel_water,
mat_sel_salt,
mat_sel_wood,
mat_sel_fire,
mat_sel_smoke,
mat_sel_steam,
mat_sel_gunpowder,
mat_sel_oil,
mat_sel_lava,
mat_sel_stone,
mat_sel_acid
} material_selection;
// Material selection for "painting" / default to sand
gs_global material_selection g_material_selection = mat_sel_sand;
// World update processing structure
gs_global u8* g_world_process_update_structure = {0}; // Every particle has id associated with it? Jeezuz...
// World particle data structure
gs_global particle_t* g_world_particle_data = {0};
// Texture buffers
gs_global color_t* g_texture_buffer = {0};
// UI texture buffer
gs_global color_t* g_ui_buffer = {0};
// Frame counter
gs_global u32 g_frame_counter = 0;
// World physics settings
gs_global f32 gravity = 10.f;
gs_global f32 g_selection_radius = 10.f;
gs_global b32 g_show_material_selection_panel = true;
gs_global b32 g_run_simulation = true;
gs_global b32 g_show_frame_count = true;
gs_global b32 g_use_post_processing = true;
// Shaders
#if (defined GS_PLATFORM_WEB || defined GS_PLATFORM_ANDROID)
#define GL_VERSION_STR "#version 300 es\n"
#else
#define GL_VERSION_STR "#version 330 core\n"
#endif
const char* v_src =
GL_VERSION_STR
"precision mediump float;\n"
"layout (location = 0) in vec2 a_pos;\n"
"layout (location = 1) in vec2 a_texCoord;\n"
"uniform int u_flip_y;"
"out vec2 texCoord;\n"
"void main()\n"
"{\n"
" gl_Position = vec4(a_pos, 0.0, 1.0);\n"
" texCoord = vec2(a_texCoord.x, bool(u_flip_y) ? 1.0 - a_texCoord.y : a_texCoord.y);\n"
"}";
const char* f_src =
GL_VERSION_STR
"precision mediump float;\n"
"out vec4 frag_color;\n"
"in vec2 texCoord;\n"
"uniform sampler2D u_tex;\n"
"void main()\n"
"{\n"
" frag_color = texture(u_tex, texCoord);\n"
"}";
// Forward Decls.
void app_init();
void app_update();
void app_shutdown();
particle_t particle_empty();
particle_t particle_sand();
particle_t particle_water();
particle_t particle_salt();
particle_t particle_wood();
particle_t particle_fire();
particle_t particle_lava();
particle_t particle_smoke();
particle_t particle_ember();
particle_t particle_steam();
particle_t particle_gunpowder();
particle_t particle_oil();
particle_t particle_stone();
particle_t particle_acid();
void update_input(gs_command_buffer_t* cb);
b32 update_ui(gs_command_buffer_t* cb);
// Particle updates
void update_particle_sim(gs_command_buffer_t* cb);
void update_sand(u32 x, u32 y);
void update_water(u32 x, u32 y);
void update_salt(u32 x, u32 y);
void update_fire(u32 x, u32 y);
void update_smoke(u32 x, u32 y);
void update_ember(u32 x, u32 y);
void update_steam(u32 x, u32 y);
void update_gunpowder(u32 x, u32 y);
void update_oil(u32 x, u32 y);
void update_lava(u32 x, u32 y);
void update_acid(u32 x, u32 y);
void update_default(u32 x, u32 y);
// Utilities for writing data into color buffer
void write_data(u32 idx, particle_t);
// Rendering
void render_scene();
// Font methods
void construct_font_data();
font_glyph_t get_glyph(font_t* f, char c);
gs_vec2 calculate_mouse_position()
{
gs_vec2 ws = gs_platform_window_sizev(gs_platform_main_window());
gs_vec2 pmp = gs_platform_mouse_positionv();
// Need to place mouse into frame
f32 x_scale = pmp.x / (f32)ws.x;
f32 y_scale = pmp.y / (f32)ws.y;
return (gs_vec2){x_scale * (f32)g_texture_width, y_scale * (f32)g_texture_height};
}
s32 random_val(s32 lower, s32 upper)
{
if (upper < lower) {
s32 tmp = lower;
lower = upper;
upper = tmp;
}
return (rand() % (upper - lower + 1) + lower);
}
s32 compute_idx(s32 x, s32 y)
{
return (y * g_texture_width + x);
}
b32 in_bounds(s32 x, s32 y)
{
if (x < 0 || x > (g_texture_width - 1) || y < 0 || y > (g_texture_height - 1)) return false;
return true;
}
b32 is_empty(s32 x, s32 y)
{
return (in_bounds(x, y) && g_world_particle_data[compute_idx(x, y)].id == mat_id_empty);
}
particle_t get_particle_at(s32 x, s32 y)
{
return g_world_particle_data[compute_idx(x, y)];
}
b32 completely_surrounded(s32 x, s32 y)
{
// Top
if (in_bounds(x, y - 1) && !is_empty(x, y - 1)) {
return false;
}
// Bottom
if (in_bounds(x, y + 1) && !is_empty(x, y + 1)) {
return false;
}
// Left
if (in_bounds(x - 1, y) && !is_empty(x - 1, y)) {
return false;
}
// Right
if (in_bounds(x + 1, y) && !is_empty(x + 1, y)) {
return false;
}
// Top Left
if (in_bounds(x - 1, y - 1) && !is_empty(x - 1, y - 1)) {
return false;
}
// Top Right
if (in_bounds(x + 1, y - 1) && !is_empty(x + 1, y - 1)) {
return false;
}
// Bottom Left
if (in_bounds(x - 1, y + 1) && !is_empty(x - 1, y + 1)) {
return false;
}
// Bottom Right
if (in_bounds(x + 1, y + 1) && !is_empty(x + 1, y + 1)) {
return false;
}
return true;
}
b32 is_in_liquid(s32 x, s32 y, s32* lx, s32* ly)
{
if (in_bounds(x, y) && (get_particle_at(x, y).id == mat_id_water || get_particle_at(x, y).id == mat_id_oil)) {
*lx = x; *ly = y;
return true;
}
if (in_bounds(x, y - 1) && (get_particle_at(x, y - 1).id == mat_id_water || get_particle_at(x, y - 1).id == mat_id_oil)) {
*lx = x; *ly = y - 1;
return true;
}
if (in_bounds(x, y + 1) && (get_particle_at(x, y + 1).id == mat_id_water || get_particle_at(x, y + 1).id == mat_id_oil)) {
*lx = x; *ly = y + 1;
return true;
}
if (in_bounds(x - 1, y) && (get_particle_at(x - 1, y).id == mat_id_water || get_particle_at(x - 1, y).id == mat_id_oil)) {
*lx = x - 1; *ly = y;
return true;
}
if (in_bounds(x - 1, y - 1) && (get_particle_at(x - 1, y - 1).id == mat_id_water || get_particle_at(x - 1, y - 1).id == mat_id_oil)) {
*lx = x - 1; *ly = y - 1;
return true;
}
if (in_bounds(x - 1, y + 1) && (get_particle_at(x - 1, y + 1).id == mat_id_water || get_particle_at(x - 1, y + 1).id == mat_id_oil)) {
*lx = x - 1; *ly = y + 1;
return true;
}
if (in_bounds(x + 1, y) && (get_particle_at(x + 1, y).id == mat_id_water || get_particle_at(x + 1, y).id == mat_id_oil)) {
*lx = x + 1; *ly = y;
return true;
}
if (in_bounds(x + 1, y - 1) && (get_particle_at(x + 1, y - 1).id == mat_id_water || get_particle_at(x + 1, y - 1).id == mat_id_oil)) {
*lx = x + 1; *ly = y - 1;
return true;
}
if (in_bounds(x + 1, y + 1) && (get_particle_at(x + 1, y + 1).id == mat_id_water || get_particle_at(x + 1, y + 1).id == mat_id_oil)) {
*lx = x + 1; *ly = y + 1;
return true;
}
return false;
}
b32 is_in_water(s32 x, s32 y, s32* lx, s32* ly)
{
if (in_bounds(x, y) && (get_particle_at(x, y).id == mat_id_water)) {
*lx = x; *ly = y;
return true;
}
if (in_bounds(x, y - 1) && (get_particle_at(x, y - 1).id == mat_id_water)) {
*lx = x; *ly = y - 1;
return true;
}
if (in_bounds(x, y + 1) && (get_particle_at(x, y + 1).id == mat_id_water)) {
*lx = x; *ly = y + 1;
return true;
}
if (in_bounds(x - 1, y) && (get_particle_at(x - 1, y).id == mat_id_water)) {
*lx = x - 1; *ly = y;
return true;
}
if (in_bounds(x - 1, y - 1) && (get_particle_at(x - 1, y - 1).id == mat_id_water)) {
*lx = x - 1; *ly = y - 1;
return true;
}
if (in_bounds(x - 1, y + 1) && (get_particle_at(x - 1, y + 1).id == mat_id_water)) {
*lx = x - 1; *ly = y + 1;
return true;
}
if (in_bounds(x + 1, y) && (get_particle_at(x + 1, y).id == mat_id_water)) {
*lx = x + 1; *ly = y;
return true;
}
if (in_bounds(x + 1, y - 1) && (get_particle_at(x + 1, y - 1).id == mat_id_water)) {
*lx = x + 1; *ly = y - 1;
return true;
}
if (in_bounds(x + 1, y + 1) && (get_particle_at(x + 1, y + 1).id == mat_id_water)) {
*lx = x + 1; *ly = y + 1;
return true;
}
return false;
}
gs_app_desc_t gs_main(int32_t argc, char** argv)
{
gs_app_desc_t app = {0};
app.window_title = "SandSim";
app.window_width = g_window_width;
app.window_height = g_window_height;
app.init = app_init;
app.update = app_update;
app.shutdown = app_shutdown;
app.frame_rate = 60;
app.enable_vsync = false;
return app;
}
typedef struct hsv_t
{
f32 h;
f32 s;
f32 v;
} hsv_t;
// From on: https://gist.github.com/fairlight1337/4935ae72bcbcc1ba5c72
hsv_t rgb_to_hsv(color_t c)
{
gs_vec3 cv = (gs_vec3){(f32)c.r / 255.f, (f32)c.g / 255.f, (f32)c.b / 255.f};
f32 fR = cv.x, fG = cv.y, fB = cv.z;
f32 fCMax = gs_max(gs_max(fR, fG), fB);
f32 fCMin = gs_min(gs_min(fR, fG), fB);
f32 fDelta = fCMax - fCMin;
hsv_t hsv;
if(fDelta > 0) {
if(fCMax == fR) {
hsv.h = 60 * (fmod(((fG - fB) / fDelta), 6));
} else if(fCMax == fG) {
hsv.h = 60 * (((fB - fR) / fDelta) + 2);
} else if(fCMax == fB) {
hsv.h = 60 * (((fR - fG) / fDelta) + 4);
}
if(fCMax > 0) {
hsv.s = fDelta / fCMax;
} else {
hsv.s = 0;
}
hsv.v = fCMax;
} else {
hsv.h = 0;
hsv.s = 0;
hsv.v = fCMax;
}
if(hsv.h < 0) {
hsv.h = 360 + hsv.h;
}
return hsv;
}
// Implemented from: https://stackoverflow.com/questions/27374550/how-to-compare-color-object-and-get-closest-color-in-an-color
// distance between two hues:
f32 hue_dist(f32 h1, f32 h2)
{
f32 d = fabsf(h1 - h2);
return d > 180.f ? 360.f - d : d;
}
// color brightness as perceived:
f32 brightness(color_t c)
{
return ((f32)c.r * 0.299f + (f32)c.g * 0.587f + (f32)c.b *0.114f) / 256.f;
}
f32 color_num(color_t c)
{
const f32 bright_factor = 100.0f;
const f32 sat_factor = 0.1f;
hsv_t hsv = rgb_to_hsv(c);
return hsv.s * sat_factor + brightness(c) * bright_factor;
}
#define __check_hsv(c0, c1, p_func)\
do {\
hsv_t hsv0 = rgb_to_hsv(c0);\
hsv_t hsv1 = rgb_to_hsv(c1);\
f32 d = abs(color_num(c0) - color_num(c1)) + hue_dist(hsv0.h, hsv1.h);\
if (d < min_dist) {\
min_dist = d;\
p = p_func();\
}\
} while (0)
#define __check_dist_euclidean(c0, c1, p_func)\
do {\
gs_vec4 c0_vec = (gs_vec4){(f32)c0.r, c0.g, c0.b, 255.f};\
gs_vec4 c1_vec = (gs_vec4){(f32)c1.r, c1.g, c1.b, 255.f};\
f32 d = gs_vec4_dist(c0_vec, c1_vec);\
if (d < min_dist) {\
min_dist = d;\
p = p_func();\
}\
} while (0)
#define __check_dist(c0, c1, p_func)\
do\
{\
f32 rd = (f32)c0.r - (f32)c1.r;\
f32 gd = (f32)c0.g - (f32)c1.g;\
f32 bd = (f32)c0.b - (f32)c1.b;\
f32 sd = rd * rd + gd * gd + bd * bd;\
f32 d = pow(rd * 0.299, 2) + pow(gd * 0.587, 2) + pow(bd * 0.114, 2);\
if (d < min_dist) {\
min_dist = d;\
p = p_func();\
}\
} while (0)
particle_t get_closest_particle_from_color(color_t c)
{
particle_t p = particle_empty();
f32 min_dist = FLT_MAX;
gs_vec4 c_vec = (gs_vec4){(f32)c.r, (f32)c.g, (f32)c.b, (f32)c.a};
u8 id = mat_id_empty;
__check_dist_euclidean(c, mat_col_sand, particle_sand);
__check_dist_euclidean(c, mat_col_water, particle_water);
__check_dist_euclidean(c, mat_col_salt, particle_salt);
__check_dist_euclidean(c, mat_col_wood, particle_wood);
__check_dist_euclidean(c, mat_col_fire, particle_fire);
__check_dist_euclidean(c, mat_col_smoke, particle_smoke);
__check_dist_euclidean(c, mat_col_steam, particle_steam);
__check_dist_euclidean(c, mat_col_gunpowder, particle_gunpowder);
__check_dist_euclidean(c, mat_col_oil, particle_oil);
__check_dist_euclidean(c, mat_col_lava, particle_lava);
__check_dist_euclidean(c, mat_col_stone, particle_stone);
__check_dist_euclidean(c, mat_col_acid, particle_acid);
return p;
}
void drop_file_callback(void* platform_window, s32 count, const char** file_paths)
{
if (count < 1) return;
// Just do first one for now...
if (count > 1) count = 1;
// We'll place at the mouse position as well, for shiggles
gs_vec2 mp = calculate_mouse_position();
for (s32 i = 0; i < count; ++i)
{
// Need to verify this IS an image first.
char temp_file_extension_buffer[16] = {0};
gs_util_get_file_extension(temp_file_extension_buffer, sizeof(temp_file_extension_buffer), file_paths[0]);
if (gs_string_compare_equal(temp_file_extension_buffer, "png") ||
gs_string_compare_equal(temp_file_extension_buffer, "jpg") ||
gs_string_compare_equal(temp_file_extension_buffer, "jpeg") ||
gs_string_compare_equal(temp_file_extension_buffer, "bmp"))
{
// Load texture into memory
s32 _w, _h, _n;
void* texture_data = NULL;
// Force texture data to 3 components
gs_util_load_texture_data_from_file(file_paths[i], &_w, &_h, &_n, &texture_data, false);
_n = 3;
// Not sure what the format should be, so this is ...blah. Need to find a way to determine this beforehand.
u8* data = (u8*)texture_data;
s32 sx = (g_texture_width - _w) / 2;
s32 sy = (g_texture_height - _h) / 2;
// Now we need to process the data and place it into our particle/color buffers
for (u32 h = 0; h < _h; ++h)
{
for (u32 w = 0; w < _w; ++w)
{
color_t c =
{
data[(h * _w + w) * _n + 0],
data[(h * _w + w) * _n + 1],
data[(h * _w + w) * _n + 2],
255
};
// Get color of this pixel in the image
particle_t p = get_closest_particle_from_color(c);
// Let's place this thing in the center instead...
if (in_bounds(sx + w, sy + h)) {
u32 idx = compute_idx(sx + w, sy + h);
write_data(idx, p);
}
}
}
// Free texture data
gs_free(texture_data);
}
}
}
// Here, we'll initialize all of our application data, which in this case is our graphics resources
void app_init()
{
// Construct command buffer (the command buffer is used to allow for immediate drawing at any point in our program)
g_cb = gs_command_buffer_new();
// Create shader
g_shader = gs_graphics_shader_create (
&(gs_graphics_shader_desc_t) {
.sources = (gs_graphics_shader_source_desc_t[]) {
{.type = GS_GRAPHICS_SHADER_STAGE_VERTEX, .source = v_src},
{.type = GS_GRAPHICS_SHADER_STAGE_FRAGMENT, .source = f_src}
},
.size = 2 * sizeof(gs_graphics_shader_source_desc_t),
.name = "g_shader"
}
);
// Construct uniforms for shader
u_tex = gs_graphics_uniform_create (
&(gs_graphics_uniform_desc_t) {
.name = "u_tex",
.layout = &(gs_graphics_uniform_layout_desc_t){.type = GS_GRAPHICS_UNIFORM_SAMPLER2D}
}
);
u_flip_y = gs_graphics_uniform_create (
&(gs_graphics_uniform_desc_t) {
.name = "u_flip_y",
.layout = &(gs_graphics_uniform_layout_desc_t){.type = GS_GRAPHICS_UNIFORM_INT}
}
);
// Vertex data for triangle
f32 v_data[] = {
// Positions UVs
-1.0f, -1.0f, 0.0f, 0.0f, // Top Left
1.0f, -1.0f, 1.0f, 0.0f, // Top Right
-1.0f, 1.0f, 0.0f, 1.0f, // Bottom Left
1.0f, 1.0f, 1.0f, 1.0f // Bottom Right
};
u32 i_data[] = {
0, 2, 3,
3, 1, 0
};
// Construct vertex buffer
g_vbo = gs_graphics_vertex_buffer_create(
&(gs_graphics_vertex_buffer_desc_t) {
.data = v_data,
.size = sizeof(v_data)
}
);
// Construct index buffer
g_ibo = gs_graphics_index_buffer_create(
&(gs_graphics_index_buffer_desc_t) {
.data = i_data,
.size = sizeof(i_data)
}
);
// Construct world data (for now, it'll just be the size of the screen)
g_world_particle_data = gs_malloc(g_texture_width * g_texture_height * sizeof(particle_t));
// Construct texture buffer data
g_texture_buffer = gs_malloc(g_texture_width * g_texture_height * sizeof(color_t));
g_ui_buffer = gs_malloc(g_texture_width * g_texture_height * sizeof(color_t));
// Set buffers to 0
memset(g_texture_buffer, 0, g_texture_width * g_texture_height * sizeof(color_t));
memset(g_world_particle_data, 0, g_texture_width * g_texture_height);
memset(g_ui_buffer, 0, g_texture_width * g_texture_height);
// Construct texture resource from GPU
gs_graphics_texture_desc_t t_desc = gs_default_val();
t_desc.format = GS_GRAPHICS_TEXTURE_FORMAT_RGBA8;
t_desc.mag_filter = GS_GRAPHICS_TEXTURE_FILTER_NEAREST;
t_desc.min_filter = GS_GRAPHICS_TEXTURE_FILTER_NEAREST;
t_desc.num_mips = 0;
t_desc.width = g_texture_width;
t_desc.height = g_texture_height;
t_desc.data = g_texture_buffer;
g_tex = gs_graphics_texture_create(&t_desc);
// Construct texture resource from GPU
t_desc.data = g_ui_buffer;
g_tex_ui = gs_graphics_texture_create(&t_desc);
// Construct target for offscreen rendering
t_desc.data = NULL;
g_rt = gs_graphics_texture_create(&t_desc);
// Construct frame buffer
g_fb = gs_graphics_framebuffer_create(NULL);
// Construct render pass
g_rp = gs_graphics_render_pass_create(
&(gs_graphics_render_pass_desc_t){
.fbo = g_fb, // Frame buffer to bind for render pass
.color = &g_rt, // Color buffer array to bind to frame buffer
.color_size = sizeof(g_rt) // Size of color attachment array in bytes
}
);
// Pipeline
g_pip = gs_graphics_pipeline_create(
&(gs_graphics_pipeline_desc_t) {
.raster = {
.shader = g_shader
},
.blend = {
.func = GS_GRAPHICS_BLEND_EQUATION_ADD,
.src = GS_GRAPHICS_BLEND_MODE_SRC_ALPHA,
.dst = GS_GRAPHICS_BLEND_MODE_ONE_MINUS_SRC_ALPHA
},
.layout = {
.attrs = (gs_graphics_vertex_attribute_desc_t[]){
{.format = GS_GRAPHICS_VERTEX_ATTRIBUTE_FLOAT2, .name = "a_position"}, // Named attribute required for lower GL versions / ES2 / ES3
{.format = GS_GRAPHICS_VERTEX_ATTRIBUTE_FLOAT2, .name = "a_texCoord"} // Named attribute required for lower GL versions / ES2 / ES3
},
.size = 2 * sizeof(gs_graphics_vertex_attribute_desc_t)
}
}
);
// Initialize render passes
g_blur_pass = blur_pass_ctor(g_fb);
g_bright_pass = bright_filter_pass_ctor(g_fb);
g_composite_pass = composite_pass_ctor(g_fb);
// Load UI font texture data from file
construct_font_data();
// Set up callback for dropping them files, yo.
// platform->set_dropped_files_callback(platform->main_window(), &drop_file_callback);
}
void app_update()
{
// If we press the escape key, exit the application
if (gs_platform_key_pressed(GS_KEYCODE_ESC)) {
gs_engine_quit();
}
// Why not print this elsewhere, yo?
gs_timed_action(60, {
gs_println("frame: %.5f ms", gs_engine_subsystem(platform)->time.frame);
});
// All application updates
b32 ui_interaction = update_ui(&g_cb);
if (!ui_interaction) {
update_input(&g_cb);
}
if (g_run_simulation) {
update_particle_sim(&g_cb);
}
/*===============
// Render scene
================*/
render_scene(&g_cb);
// Update frame counter
g_frame_counter = (g_frame_counter + 1) % UINT32_MAX;
}
void app_shutdown()
{
gs_println("Goodbye, Gunslinger.");
}
void construct_font_data()
{
g_font.data = g_font_data;
g_font.width = 90;
g_font.height = 42;
g_font.num_comps = 3;
// Set up metrics
g_font.glyph_advance = 1;
// Construct glyph information
const s32 glyph_width = 5, glyph_height = 7;
for (u32 r = 0; r < 6; ++r)
{
for (u32 c = 0; c < 18; ++c)
{
u32 idx = r * 18 + c;
g_font.glyphs[idx] = (font_glyph_t){c * 5, r * 7, 5, 7};
}
}
}
font_glyph_t get_glyph(font_t* f, char c)
{
switch (c)
{
case ' ': return g_font.glyphs[0];
case '!': return g_font.glyphs[1];
case '"': return g_font.glyphs[2];
case '#': return g_font.glyphs[3];
case '$': return g_font.glyphs[4];
case '%': return g_font.glyphs[5];
case '&': return g_font.glyphs[6];
case '\'': return g_font.glyphs[7];
case '(': return g_font.glyphs[8];
case ')': return g_font.glyphs[9];
case '*': return g_font.glyphs[10];
case '+': return g_font.glyphs[11];
case ',': return g_font.glyphs[12];
case '-': return g_font.glyphs[13];
case '.': return g_font.glyphs[14];
case '/': return g_font.glyphs[15];
case '0': return g_font.glyphs[16];
case '1': return g_font.glyphs[17];
case '2': return g_font.glyphs[18];
case '3': return g_font.glyphs[19];
case '4': return g_font.glyphs[20];
case '5': return g_font.glyphs[21];
case '6': return g_font.glyphs[22];
case '7': return g_font.glyphs[23];
case '8': return g_font.glyphs[24];
case '9': return g_font.glyphs[25];
case ':': return g_font.glyphs[26];
case ';': return g_font.glyphs[27];
case '<': return g_font.glyphs[28];
case '=': return g_font.glyphs[29];
case '>': return g_font.glyphs[30];
case '?': return g_font.glyphs[31];
case '@': return g_font.glyphs[32];
case 'A': return g_font.glyphs[33];
case 'B': return g_font.glyphs[34];
case 'C': return g_font.glyphs[35];
case 'D': return g_font.glyphs[36];
case 'E': return g_font.glyphs[37];
case 'F': return g_font.glyphs[38];
case 'G': return g_font.glyphs[39];
case 'H': return g_font.glyphs[40];
case 'I': return g_font.glyphs[41];
case 'J': return g_font.glyphs[42];
case 'K': return g_font.glyphs[43];
case 'L': return g_font.glyphs[44];
case 'M': return g_font.glyphs[45];
case 'N': return g_font.glyphs[46];
case 'O': return g_font.glyphs[47];
case 'P': return g_font.glyphs[48];
case 'Q': return g_font.glyphs[49];
case 'R': return g_font.glyphs[50];
case 'S': return g_font.glyphs[51];
case 'T': return g_font.glyphs[52];
case 'U': return g_font.glyphs[53];
case 'V': return g_font.glyphs[54];
case 'W': return g_font.glyphs[55];
case 'X': return g_font.glyphs[56];
case 'Y': return g_font.glyphs[57];
case 'Z': return g_font.glyphs[58];
case '[': return g_font.glyphs[59];
case '\\': return g_font.glyphs[60];
case ']': return g_font.glyphs[61];
case '^': return g_font.glyphs[62];
case '_': return g_font.glyphs[63];
case '`': return g_font.glyphs[64];
case 'a': return g_font.glyphs[65];
case 'b': return g_font.glyphs[66];
case 'c': return g_font.glyphs[67];
case 'd': return g_font.glyphs[68];
case 'e': return g_font.glyphs[69];
case 'f': return g_font.glyphs[70];
case 'g': return g_font.glyphs[71];
case 'h': return g_font.glyphs[72];
case 'i': return g_font.glyphs[73];
case 'j': return g_font.glyphs[74];
case 'k': return g_font.glyphs[75];
case 'l': return g_font.glyphs[76];
case 'm': return g_font.glyphs[77];
case 'n': return g_font.glyphs[78];
case 'o': return g_font.glyphs[79];
case 'p': return g_font.glyphs[80];
case 'q': return g_font.glyphs[81];
case 'r': return g_font.glyphs[82];
case 's': return g_font.glyphs[83];
case 't': return g_font.glyphs[84];
case 'u': return g_font.glyphs[85];
case 'v': return g_font.glyphs[86];
case 'w': return g_font.glyphs[87];
case 'x': return g_font.glyphs[88];
case 'y': return g_font.glyphs[89];
case 'z': return g_font.glyphs[90];
case '{': return g_font.glyphs[91];
case '|': return g_font.glyphs[92];
case '}': return g_font.glyphs[93];
case '~': return g_font.glyphs[94];
// For anything not supported, just return empty space
default: {
return (font_glyph_t){0};
} break;
}
}
void putpixel(int x, int y) {
if (in_bounds(x, y)) {
g_ui_buffer[compute_idx(x, y)] = (color_t){255, 255, 255, 255};
}
}
// Function to put pixels
// at subsequence points
void drawCircle(int xc, int yc, int x, int y)
{
putpixel(xc+x, yc+y);
putpixel(xc-x, yc+y);
putpixel(xc+x, yc-y);
putpixel(xc-x, yc-y);
putpixel(xc+y, yc+x);
putpixel(xc-y, yc+x);
putpixel(xc+y, yc-x);
putpixel(xc-y, yc-x);
}
// Function for circle-generation
// using Bresenham's algorithm
void circleBres(int xc, int yc, int r)
{
int x = 0, y = r;
int d = 3 - 2 * r;
drawCircle(xc, yc, x, y);
while (y >= x)
{
// For each pixel we will
// draw all eight pixels
x++;
// Check for decision parameter
// and correspondingly
// update d, x, y
if (d > 0)
{
y--;
d = d + 4 * (x - y) + 10;
}
else
d = d + 4 * x + 6;
drawCircle(xc, yc, x, y);
}
}
void update_input(gs_command_buffer_t* cb)
{
if (gs_platform_key_pressed(GS_KEYCODE_I)) {
g_show_material_selection_panel = !g_show_material_selection_panel;
}
if (gs_platform_key_pressed(GS_KEYCODE_F)) {
g_show_frame_count = !g_show_frame_count;
}
if (gs_platform_key_pressed(GS_KEYCODE_B)) {
g_use_post_processing = !g_use_post_processing;
}
f32 wx = 0, wy = 0;
gs_platform_mouse_wheel(&wx, &wy);
if (gs_platform_key_pressed(GS_KEYCODE_LEFT_BRACKET) || wy < 0.f) {
g_selection_radius = gs_clamp(g_selection_radius - 1.f, 1.f, 100.f);
}
if (gs_platform_key_pressed(GS_KEYCODE_RIGHT_BRACKET) || wy > 0.f) {
g_selection_radius = gs_clamp(g_selection_radius + 1.f, 1.f, 100.f);
}
if (gs_platform_key_pressed(GS_KEYCODE_P)) {
g_run_simulation = !g_run_simulation;
}
// Clear data
if (gs_platform_key_pressed(GS_KEYCODE_C)) {
memset(g_texture_buffer, 0, sizeof(color_t) * g_texture_width * g_texture_height);
memset(g_world_particle_data, 0, sizeof(particle_t) * g_texture_width * g_texture_height);
}
// Mouse input for testing
if (gs_platform_mouse_down(GS_MOUSE_LBUTTON))
{
gs_vec2 mp = calculate_mouse_position();
f32 mp_x = gs_clamp(mp.x, 0.f, (f32)g_texture_width - 1.f);
f32 mp_y = gs_clamp(mp.y, 0.f, (f32)g_texture_height - 1.f);
u32 max_idx = (g_texture_width * g_texture_height) - 1;
s32 r_amt = random_val(1, 10000);
float _R = g_selection_radius;
// Spawn in a circle around the mouse
for (u32 i = 0; i < r_amt; ++i)
{
f32 ran = (f32)random_val(0, 100) / 100.f;
f32 r = _R * sqrt(ran);
f32 theta = (f32)random_val(0, 100)/100.f * 2.f * GS_PI;
f32 rx = cos((f32)theta) * r;
f32 ry = sin((f32)theta) * r;
s32 mpx = (s32)gs_clamp(mp_x + (f32)rx, 0.f, (f32)g_texture_width - 1.f);
s32 mpy = (s32)gs_clamp(mp_y + (f32)ry, 0.f, (f32)g_texture_height - 1.f);
s32 idx = mpy * (s32)g_texture_width + mpx;
idx = gs_clamp(idx, 0, max_idx);
if (is_empty(mpx, mpy))
{
particle_t p = {0};
switch (g_material_selection) {
case mat_sel_sand: p = particle_sand(); break;;
case mat_sel_water: p = particle_water(); break;;
case mat_sel_salt: p = particle_salt(); break;;
case mat_sel_wood: p = particle_wood(); break;;
case mat_sel_fire: p = particle_fire(); break;
case mat_sel_smoke: p = particle_smoke(); break;
case mat_sel_steam: p = particle_steam(); break;
case mat_sel_gunpowder: p = particle_gunpowder(); break;
case mat_sel_oil: p = particle_oil(); break;
case mat_sel_lava: p = particle_lava(); break;