allowed background travel
[fishladder.git] / fishladder.c
1 // Copyright (C) 2021 Harry Godden (hgn) - All Rights Reserved
2
3 //#define VG_STEAM
4 #include "vg/vg.h"
5 #include "fishladder_resources.h"
6
7 const char *level_pack_1[] = {
8 "level0",
9 "level1",
10 "level2",
11 "level3",
12 "level4",
13 "level5",
14 "level6",
15 "level7_combine",
16 "xor_small",
17 "sort",
18 "thirds"
19 };
20
21 #pragma pack(push,1)
22 struct career_state
23 {
24 u32 version;
25
26 struct career_level
27 {
28 u32 score;
29 u32 time;
30 u32 completed;
31 }
32 levels[ vg_list_size( level_pack_1 ) ];
33 }
34 career = { .version = 1 };
35 #pragma pack(pop)
36
37 static void career_serialize(void)
38 {
39 vg_asset_write( "sav/game.sav", &career, sizeof( struct career_state ) );
40 }
41
42 static void career_load(void)
43 {
44 i64 sz;
45 struct career_state *cr = vg_asset_read_s( "sav/game.sav", &sz );
46
47 memset( (void*)career.levels, 0, vg_list_size(level_pack_1) * sizeof(struct career_level) );
48
49 if( cr )
50 {
51 if( sz > sizeof( struct career_state ) )
52 vg_warn( "This save file is too big! Some levels will be lost\n" );
53
54 if( sz <= offsetof( struct career_state, levels ) )
55 {
56 vg_error( "This save file is too small to have a header\n" );
57 free( cr );
58 return;
59 }
60
61 u32 const size_header = offsetof(struct career_state, levels);
62 u32 const size_levels = sizeof(struct career_state)-size_header;
63 u32 const size_levels_input = sz - size_header;
64
65 memcpy( (void*)career.levels, (void*)cr->levels, size_levels_input );
66
67 if( sz < sizeof( struct career_state ) )
68 {
69 memset( ((void*)career.levels) + size_levels_input, 0, size_levels-size_levels_input );
70 }
71
72 free( cr );
73 vg_success( "Loaded save file... Info:\n" );
74
75 for( int i = 0; i < vg_list_size( career.levels ); i ++ )
76 {
77 struct career_level *lvl = &career.levels[i];
78 vg_info( "Score: %u, Time: %u, Completed: %u\n", lvl->score, lvl->time, lvl->completed );
79 }
80 }
81 else
82 {
83 vg_info( "No save file... Using blank one\n" );
84 }
85 }
86
87 m3x3f m_projection;
88 m3x3f m_view;
89 m3x3f m_mdl;
90
91 #define FLAG_CANAL 0x1
92 #define FLAG_IS_TRIGGER 0x2
93 #define FLAG_RESERVED0 0x4
94 #define FLAG_RESERVED1 0x8
95
96 #define FLAG_INPUT 0x10
97 #define FLAG_OUTPUT 0x20
98 #define FLAG_WALL 0x40
99
100 #define FLAG_FLIP_FLOP 0x100
101 #define FLAG_TRIGGERED 0x200
102 #define FLAG_FLIP_ROTATING 0x400
103 #define FLAG_TARGETED 0x800
104
105 /*
106 0000 0 | 0001 1 | 0010 2 | 0011 3
107 | | | | |
108 X | X= | X | X=
109 | | |
110 0100 4 | 0101 5 | 0110 6 | 0111 7
111 | | | | |
112 =X | =X= | =X | =X=
113 | | |
114 1000 8 | 1001 9 | 1010 10 | 1011 11
115 | | | | |
116 X | X= | X | X=
117 | | | | | | |
118 1100 12 | 1101 13 | 1110 14 | 1111 15
119 | | | | |
120 =X | =X= | =X | =X=
121 | | | | | | |
122 */
123
124 enum cell_type
125 {
126 k_cell_type_ramp_right = 3,
127 k_cell_type_ramp_left = 6,
128 k_cell_type_split = 7,
129 k_cell_type_merge = 13,
130 k_cell_type_con_r = 1,
131 k_cell_type_con_u = 2,
132 k_cell_type_con_l = 4,
133 k_cell_type_con_d = 8
134 };
135
136 v3f colour_sets[] =
137 { { 0.9f, 0.6f, 0.20f },
138 { 0.2f, 0.9f, 0.14f },
139 { 0.4f, 0.8f, 1.00f } };
140
141 static void colour_code_v3( char cc, v3f target )
142 {
143 if( cc >= 'a' && cc <= 'z' )
144 {
145 int id = cc - 'a';
146
147 if( id < vg_list_size( colour_sets ) )
148 {
149 v3_copy( colour_sets[ id ], target );
150 return;
151 }
152 }
153
154 v3_copy( (v3f){0.0f,0.0f,0.0f}, target );
155 }
156
157 struct mesh
158 {
159 GLuint vao, vbo;
160 u32 elements;
161 };
162
163 static void init_mesh( struct mesh *m, float const *tris, u32 length )
164 {
165 m->elements = length/3;
166 glGenVertexArrays( 1, &m->vao );
167 glGenBuffers( 1, &m->vbo );
168
169 glBindVertexArray( m->vao );
170 glBindBuffer( GL_ARRAY_BUFFER, m->vbo );
171 glBufferData( GL_ARRAY_BUFFER, length*sizeof(float), tris, GL_STATIC_DRAW );
172
173 glVertexAttribPointer( 0, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(float), (void*)0 );
174 glEnableVertexAttribArray( 0 );
175
176 VG_CHECK_GL();
177 }
178
179 static void free_mesh( struct mesh *m )
180 {
181 glDeleteVertexArrays( 1, &m->vao );
182 glDeleteBuffers( 1, &m->vbo );
183 }
184
185 static void draw_mesh( int const start, int const count )
186 {
187 glDrawArrays( GL_TRIANGLES, start*3, count*3 );
188 }
189
190 static void use_mesh( struct mesh *m )
191 {
192 glBindVertexArray( m->vao );
193 }
194
195 enum e_fish_state
196 {
197 k_fish_state_soon_dead = -1,
198 k_fish_state_dead = 0,
199 k_fish_state_alive,
200 k_fish_state_bg
201 };
202
203 struct world
204 {
205 #pragma pack(push,1)
206 struct cell
207 {
208 u16 state;
209 u16 links[2];
210 u8 config;
211 u8 pad0;
212 }
213 *data;
214 #pragma pack(pop)
215
216 int frame;
217
218 int initialzed;
219
220 int sim_frame;
221 float sim_start;
222 int simulating;
223 int sim_run, max_runs;
224
225 float frame_lerp;
226
227 struct cell_terminal
228 {
229 //char *conditions;
230 //char recv[12];
231
232 struct terminal_run
233 {
234 char conditions[8];
235 char recieved[8];
236
237 int condition_count, recv_count;
238 }
239 runs[8];
240
241 int run_count;
242
243 int id;
244 }
245 *io;
246
247 int w, h;
248
249 struct mesh tile, circle, numbers;
250 struct mesh_wire
251 {
252 GLuint vao, vbo, ebo;
253 u32 em;
254 }
255 wire;
256
257 GLuint background_data;
258 GLuint random_samples;
259
260 int selected, tile_x, tile_y;
261 v2f tile_pos;
262
263 struct fish
264 {
265 v2i pos;
266 v2i dir;
267 enum e_fish_state state;
268 char payload;
269 float death_time;
270 v2f physics_v;
271 v2f physics_co;
272 }
273 fishes[16];
274
275 int num_fishes;
276
277 char map_name[128];
278 struct career_level *ptr_career_level;
279
280 u32 score;
281 u32 completed;
282 u32 time;
283
284 } world = {};
285
286 static void map_free(void)
287 {
288 arrfree( world.data );
289 arrfree( world.io );
290
291 world.w = 0;
292 world.h = 0;
293 world.data = NULL;
294 world.io = NULL;
295 world.score = 0;
296 world.time = 0;
297 world.completed = 0;
298 world.max_runs = 0;
299 world.initialzed = 0;
300 }
301
302 static void io_reset(void)
303 {
304 for( int i = 0; i < arrlen( world.io ); i ++ )
305 {
306 struct cell_terminal *term = &world.io[i];
307
308 for( int j = 0; j < term->run_count; j ++ )
309 term->runs[j].recv_count = 0;
310 }
311 }
312
313 static void map_reclassify( v2i start, v2i end, int update_texbuffer );
314 static int map_load( const char *str, const char *name )
315 {
316 //TODO: It may be worthwhile, at this point, to switch to binary encoding for save data
317
318 map_free();
319
320 char const *c = str;
321
322 // Scan for width
323 for(;; world.w ++)
324 {
325 if( str[world.w] == ';' )
326 break;
327 else if( !str[world.w] )
328 {
329 vg_error( "Unexpected EOF when parsing level\n" );
330 return 0;
331 }
332 }
333
334 struct cell *row = arraddnptr( world.data, world.w );
335 int cx = 0;
336 int reg_start = 0, reg_end = 0;
337
338 u32 *links_to_make = NULL;
339 int links_satisfied = 0;
340
341 char link_id_buffer[32];
342 int link_id_n = 0;
343
344 for(;;)
345 {
346 if( !*c )
347 break;
348
349 if( *c == '\r' ) { c ++; continue; } // fuck off windows
350
351 if( *c == ';' )
352 {
353 c ++;
354
355 if( *c == '\r' ) c ++;
356
357 // Parse attribs
358 if( *c != '\n' )
359 {
360 while( *c )
361 {
362 if( *c == '\r' ) { c ++; continue; }
363
364 if( reg_start < reg_end )
365 {
366 struct cell_terminal *terminal = &world.io[ reg_start ];
367 struct terminal_run *run = &terminal->runs[ terminal->run_count-1 ];
368
369 if( *c >= 'a' && *c <= 'z' )
370 {
371 run->conditions[ run->condition_count ++ ] = *c;
372 }
373 else
374 {
375 if( *c == ',' || *c == '\n' )
376 {
377 reg_start ++;
378
379 if( *c == '\n' )
380 break;
381 }
382 else if( *c == ':' )
383 {
384 terminal->runs[ terminal->run_count ].condition_count = 0;
385 terminal->run_count ++;
386 world.max_runs = vg_max( world.max_runs, terminal->run_count );
387 }
388 else
389 {
390 vg_error( "Unkown attribute '%c' (row: %u)\n", *c, world.h );
391 goto IL_REG_ERROR;
392 }
393 }
394 }
395 else
396 {
397 if( links_satisfied < arrlen( links_to_make ) )
398 {
399 struct cell *target = &world.data[ links_to_make[ links_satisfied ] ];
400
401 if( (((u32)*c >= (u32)'0') && ((u32)*c <= (u32)'9')) || *c == '-' )
402 {
403 if( link_id_n >= vg_list_size( link_id_buffer )-1 )
404 {
405 vg_error( "Number was way too long to be parsed (row: %u)\n", world.h );
406 goto IL_REG_ERROR;
407 }
408
409 link_id_buffer[ link_id_n ++ ] = *c;
410 }
411 else if( *c == ',' || *c == '\n' )
412 {
413 link_id_buffer[ link_id_n ] = 0x00;
414 int value = atoi( link_id_buffer );
415
416 target->links[value >= 0? 1:0] = abs(value);
417 links_satisfied ++;
418 link_id_n = 0;
419
420 if( *c == '\n' )
421 break;
422 }
423 else
424 {
425 vg_error( "Invalid character '%c' (row: %u)\n", *c, world.h );
426 goto IL_REG_ERROR;
427 }
428 }
429 else
430 {
431 vg_error( "Too many values to assign (row: %u)\n", world.h );
432 goto IL_REG_ERROR;
433 }
434 }
435
436 c ++;
437 }
438 }
439
440 // Registry length-error checks
441 if( reg_start != reg_end )
442 {
443 vg_error( "Not enough spawn values assigned (row: %u, %u of %u)\n", world.h, reg_start, reg_end );
444 goto IL_REG_ERROR;
445 }
446
447 if( links_satisfied != arrlen( links_to_make ) )
448 {
449 vg_error( "Not enough link values assigned (row: %u, %u of %u)\n", world.h, links_satisfied, arrlen( links_to_make ) );
450 goto IL_REG_ERROR;
451 }
452
453 if( cx != world.w )
454 {
455 vg_error( "Not enough cells to match previous row definition (row: %u, %u<%u)\n", world.h, cx, world.w );
456 goto IL_REG_ERROR;
457 }
458
459 row = arraddnptr( world.data, world.w );
460 cx = 0;
461 world.h ++;
462 reg_end = reg_start = arrlen( world.io );
463
464 arrsetlen( links_to_make, 0 );
465 links_satisfied = 0;
466 }
467 else
468 {
469 if( cx == world.w )
470 {
471 vg_error( "Too many cells to match previous row definition (row: %u, %u>%u)\n", world.h, cx, world.w );
472 goto IL_REG_ERROR;
473 }
474
475 // Tile initialization
476 // row[ cx ] .. etc
477 struct cell *cell = &row[ cx ];
478 cell->config = 0xF;
479
480 if( *c == '+' || *c == '-' )
481 {
482 struct cell_terminal *term = arraddnptr( world.io, 1 );
483 term->id = cx + world.h*world.w;
484 term->run_count = 1;
485 term->runs[0].condition_count = 0;
486
487 cell->state = *c == '+'? FLAG_INPUT: FLAG_OUTPUT;
488 reg_end ++;
489 }
490 else if( *c == '#' ) cell->state = FLAG_WALL;
491 else if( ((u32)*c >= (u32)'A') && ((u32)*c <= (u32)'A'+0xf) )
492 {
493 // Canal flag bits (4bit/16 value):
494 // 0: Canal present
495 // 1: Is trigger
496 // 2: Reserved
497 // 3: Reserved
498
499 cell->state = ((u32)*c - (u32)'A') & (FLAG_CANAL|FLAG_IS_TRIGGER);
500
501 if( cell->state & FLAG_IS_TRIGGER )
502 arrpush( links_to_make, cx + world.h*world.w );
503
504 cell->links[0] = 0;
505 cell->links[1] = 0;
506 world.score ++;
507 }
508 else cell->state = 0x00;
509
510 cx ++;
511 }
512
513 c ++;
514 }
515
516 // Update data texture to fill out the background
517 {
518 u8 info_buffer[64*64*4];
519 for( int i = 0; i < 64*64; i ++ )
520 {
521 u8 *px = &info_buffer[i*4];
522 px[0] = 255;
523 px[1] = 0;
524 px[2] = 0;
525 px[3] = 0;
526 }
527
528 glBindTexture( GL_TEXTURE_2D, world.background_data );
529 glTexSubImage2D( GL_TEXTURE_2D, 0, 0, 0, 64, 64, GL_RGBA, GL_UNSIGNED_BYTE, info_buffer );
530 }
531
532 arrfree( links_to_make );
533
534 map_reclassify( NULL, NULL, 1 );
535
536 // Validate links
537 for( int i = 0; i < world.h*world.w; i ++ )
538 {
539 struct cell *src = &world.data[i];
540 if( src->state & FLAG_IS_TRIGGER )
541 {
542 int link_id = src->links[0]?0:1;
543 if( src->links[link_id] <= world.h*world.w )
544 {
545 struct cell *target = &world.data[ src->links[link_id] ];
546 if( (target->state & FLAG_CANAL) && (target->config == k_cell_type_split) )
547 {
548 if( target->links[ link_id ] )
549 {
550 vg_error( "Link target was already targeted\n" );
551 goto IL_REG_ERROR;
552 }
553 else
554 {
555 // Valid link
556 target->links[ link_id ] = i;
557 target->state |= FLAG_TARGETED;
558 }
559 }
560 else
561 {
562 vg_error( "Link target was invalid\n" );
563 goto IL_REG_ERROR;
564 }
565 }
566 else
567 {
568 vg_error( "Link target out of bounds\n" );
569 goto IL_REG_ERROR;
570 }
571 }
572 }
573
574 vg_success( "Map '%s' loaded! (%u:%u)\n", name, world.w, world.h );
575
576 io_reset();
577
578 strncpy( world.map_name, name, vg_list_size( world.map_name )-1 );
579 world.initialzed = 1;
580 return 1;
581
582 IL_REG_ERROR:
583 arrfree( links_to_make );
584 map_free();
585 return 0;
586 }
587
588 static struct cell *pcell( v2i pos )
589 {
590 return &world.data[ pos[1]*world.w + pos[0] ];
591 }
592
593 static void map_serialize( FILE *stream )
594 {
595 for( int y = 0; y < world.h; y ++ )
596 {
597 for( int x = 0; x < world.w; x ++ )
598 {
599 struct cell *cell = pcell( (v2i){ x, y } );
600
601 if( cell->state & FLAG_WALL ) fputc( '#', stream );
602 else if( cell->state & FLAG_INPUT ) fputc( '+', stream );
603 else if( cell->state & FLAG_OUTPUT ) fputc( '-', stream );
604 else if( cell->state & (FLAG_CANAL|FLAG_IS_TRIGGER|FLAG_RESERVED0|FLAG_RESERVED1) )
605 {
606 fputc( (cell->state & (FLAG_CANAL|FLAG_IS_TRIGGER|FLAG_RESERVED0|FLAG_RESERVED1)) + (u32)'A', stream );
607 }
608 else fputc( ' ', stream );
609 }
610
611 fputc( ';', stream );
612
613 int terminal_write_count = 0;
614
615 for( int x = 0; x < world.w; x ++ )
616 {
617 for( int i = 0; i < arrlen( world.io ); i ++ )
618 {
619 struct cell_terminal *term = &world.io[i];
620 if( term->id == y*world.w+x )
621 {
622 if( terminal_write_count )
623 fputc( ',', stream );
624 terminal_write_count ++;
625
626 for( int j = 0; j < term->run_count; j ++ )
627 {
628 struct terminal_run *run = &term->runs[j];
629
630 for( int k = 0; k < run->condition_count; k ++ )
631 fputc( run->conditions[k], stream );
632
633 if( j < term->run_count-1 )
634 fputc( ':', stream );
635 }
636 }
637 }
638 }
639
640 for( int x = 0; x < world.w; x ++ )
641 {
642 struct cell *cell = pcell( (v2i){ x,y } );
643 if( cell->state & FLAG_IS_TRIGGER )
644 {
645 if( terminal_write_count )
646 fputc( ',', stream );
647 terminal_write_count ++;
648
649 fprintf( stream, "%d", cell->links[0]? -cell->links[0]: cell->links[1] );
650 }
651 }
652
653 fputc( '\n', stream );
654 }
655 }
656
657 int main( int argc, char *argv[] )
658 {
659 vg_init( argc, argv, "Marble Computing | SPACE: Test | LeftClick: Toggle tile | RightClick: Drag wire" );
660 }
661
662 static int console_credits( int argc, char const *argv[] )
663 {
664 vg_info( "Aknowledgements:\n" );
665 vg_info( " GLFW zlib/libpng glfw.org\n" );
666 vg_info( " miniaudio MIT0 miniaud.io\n" );
667 vg_info( " QOI MIT phoboslab.org\n" );
668 vg_info( " STB library MIT nothings.org\n" );
669 vg_info( " Weiholmir font justfredrik.itch.io\n" );
670 return 0;
671 }
672
673 static int console_save_map( int argc, char const *argv[] )
674 {
675 if( !world.initialzed )
676 {
677 vg_error( "Tried to save uninitialized map!\n" );
678 return 0;
679 }
680
681 char map_path[ 256 ];
682
683 strcpy( map_path, "sav/" );
684 strcat( map_path, world.map_name );
685 strcat( map_path, ".map" );
686
687 FILE *test_writer = fopen( map_path, "wb" );
688 if( test_writer )
689 {
690 vg_info( "Saving map to '%s'\n", map_path );
691 map_serialize( test_writer );
692
693 fclose( test_writer );
694 return 1;
695 }
696 else
697 {
698 vg_error( "Unable to open stream for writing\n" );
699 return 0;
700 }
701 }
702
703 static int console_load_map( int argc, char const *argv[] )
704 {
705 char map_path[ 256 ];
706
707 if( argc >= 1 )
708 {
709 // try from saves
710 strcpy( map_path, "sav/" );
711 strcat( map_path, argv[0] );
712 strcat( map_path, ".map" );
713
714 char *text_source = vg_textasset_read( map_path );
715
716 if( !text_source )
717 {
718 strcpy( map_path, "maps/" );
719 strcat( map_path, argv[0] );
720 strcat( map_path, ".map" );
721
722 text_source = vg_textasset_read( map_path );
723 }
724
725 if( text_source )
726 {
727 vg_info( "Loading map: '%s'\n", map_path );
728 world.ptr_career_level = NULL;
729
730 if( !map_load( text_source, argv[0] ) )
731 {
732 free( text_source );
733 return 0;
734 }
735
736 free( text_source );
737
738 for( int i = 0; i < vg_list_size( level_pack_1 ); i ++ )
739 {
740 if( !strcmp( level_pack_1[i], argv[0] ) )
741 {
742 world.ptr_career_level = career.levels + i;
743 break;
744 }
745 }
746
747 return 1;
748 }
749 else
750 {
751 vg_error( "Missing maps '%s'\n", argv[0] );
752 return 0;
753 }
754 }
755 else
756 {
757 vg_error( "Missing argument <map_path>\n" );
758 return 0;
759 }
760 }
761
762 static void simulation_stop(void)
763 {
764 world.simulating = 0;
765 world.num_fishes = 0;
766 world.sim_frame = 0;
767
768 io_reset();
769
770 sfx_system_fadeout( &audio_system_balls_rolling, 44100 );
771
772 vg_info( "Stopping simulation!\n" );
773 }
774
775 static int console_changelevel( int argc, char const *argv[] )
776 {
777 if( argc >= 1 )
778 {
779 // Save current level
780 console_save_map( 0, NULL );
781 if( console_load_map( argc, argv ) )
782 {
783 simulation_stop();
784 return 1;
785 }
786 }
787 else
788 {
789 vg_error( "Missing argument <map_path>\n" );
790 }
791
792 return 0;
793 }
794
795 void vg_start(void)
796 {
797 vg_function_push( (struct vg_cmd){
798 .name = "_map_write",
799 .function = console_save_map
800 });
801
802 vg_function_push( (struct vg_cmd){
803 .name = "_map_load",
804 .function = console_load_map
805 });
806
807 vg_function_push( (struct vg_cmd){
808 .name = "map",
809 .function = console_changelevel
810 });
811
812 vg_function_push( (struct vg_cmd){
813 .name = "credits",
814 .function = console_credits
815 });
816
817 // Quad mesh
818 {
819 float quad_mesh[] =
820 {
821 0.0f, 0.0f, 0.0f, 1.0f, 1.0f, 1.0f,
822 0.0f, 0.0f, 1.0f, 1.0f, 1.0f, 0.0f,
823
824 0.0f, 0.0f, 0.0f, 1.0f, 4.0f, 1.0f,
825 0.0f, 0.0f, 4.0f, 1.0f, 4.0f, 0.0f
826 };
827
828 init_mesh( &world.tile, quad_mesh, vg_list_size(quad_mesh) );
829 }
830
831 // Circle mesh
832 {
833 float circle_mesh[32*6*3];
834 int res = vg_list_size( circle_mesh ) / (6*3);
835
836 for( int i = 0; i < res; i ++ )
837 {
838 v2f v0 = { sinf( ((float)i/(float)res)*VG_TAUf ), cosf( ((float)i/(float)res)*VG_TAUf ) };
839 v2f v1 = { sinf( ((float)(i+1)/(float)res)*VG_TAUf ), cosf( ((float)(i+1)/(float)res)*VG_TAUf ) };
840
841 circle_mesh[ i*6+0 ] = 0.0f;
842 circle_mesh[ i*6+1 ] = 0.0f;
843
844 v2_copy( v0, circle_mesh + 32*6 + i*12 );
845 v2_muls( v0, 0.8f, circle_mesh + 32*6 + i*12+2 );
846 v2_copy( v1, circle_mesh + 32*6 + i*12+4 );
847
848 v2_copy( v1, circle_mesh + 32*6 + i*12+6 );
849 v2_muls( v1, 0.8f, circle_mesh + 32*6 + i*12+8 );
850 v2_muls( v0, 0.8f, circle_mesh + 32*6 + i*12+10 );
851
852 v2_copy( v0, circle_mesh + i*6+4 );
853 v2_copy( v1, circle_mesh + i*6+2 );
854 v2_copy( v0, circle_mesh+i*6+4 );
855 v2_copy( v1, circle_mesh+i*6+2 );
856 }
857
858 init_mesh( &world.circle, circle_mesh, vg_list_size( circle_mesh ) );
859 }
860
861 // Numbers mesh
862 {
863 init_mesh( &world.numbers,
864 MESH_NUMBERS_BUFFER,
865 vg_list_size( MESH_NUMBERS_BUFFER )
866 );
867
868 for( int i = 0; i < 10; i ++ )
869 {
870 vg_info( "offset: %u, length: %u\n", MESH_NUMBERS_OFFSETS[i][0], MESH_NUMBERS_OFFSETS[i][1] );
871 }
872 }
873
874 // Create wire mesh
875 {
876 int const num_segments = 64;
877
878 struct mesh_wire *mw = &world.wire;
879
880 v2f wire_points[ num_segments * 2 ];
881 u16 wire_indices[ 6*(num_segments-1) ];
882
883 for( int i = 0; i < num_segments; i ++ )
884 {
885 float l = (float)i / (float)(num_segments-1);
886
887 v2_copy( (v2f){ l, -0.5f }, wire_points[i*2+0] );
888 v2_copy( (v2f){ l, 0.5f }, wire_points[i*2+1] );
889
890 if( i < num_segments-1 )
891 {
892 wire_indices[ i*6+0 ] = i*2 + 0;
893 wire_indices[ i*6+1 ] = i*2 + 1;
894 wire_indices[ i*6+2 ] = i*2 + 3;
895 wire_indices[ i*6+3 ] = i*2 + 0;
896 wire_indices[ i*6+4 ] = i*2 + 3;
897 wire_indices[ i*6+5 ] = i*2 + 2;
898 }
899 }
900
901 glGenVertexArrays( 1, &mw->vao );
902 glGenBuffers( 1, &mw->vbo );
903 glGenBuffers( 1, &mw->ebo );
904 glBindVertexArray( mw->vao );
905
906 glBindBuffer( GL_ARRAY_BUFFER, mw->vbo );
907
908 glBufferData( GL_ARRAY_BUFFER, sizeof( wire_points ), wire_points, GL_STATIC_DRAW );
909 glBindVertexArray( mw->vao );
910
911 glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, mw->ebo );
912 glBufferData( GL_ELEMENT_ARRAY_BUFFER, sizeof( wire_indices ), wire_indices, GL_STATIC_DRAW );
913
914 // XY
915 glVertexAttribPointer( 0, 2, GL_FLOAT, GL_FALSE, 2*sizeof(float), (void*)0 );
916 glEnableVertexAttribArray( 0 );
917
918 VG_CHECK_GL();
919
920 mw->em = vg_list_size( wire_indices );
921 }
922
923 // Create info data texture
924 {
925 glGenTextures( 1, &world.background_data );
926 glBindTexture( GL_TEXTURE_2D, world.background_data );
927 glTexImage2D( GL_TEXTURE_2D, 0, GL_RGBA, 64, 64, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL );
928 vg_tex2d_nearest();
929 }
930
931 // Create random smaples texture
932 {
933 u8 *data = malloc(512*512*2);
934 for( int i = 0; i < 512*512*2; i ++ )
935 data[ i ] = rand()/(RAND_MAX/255);
936
937 glGenTextures( 1, &world.random_samples );
938 glBindTexture( GL_TEXTURE_2D, world.random_samples );
939 glTexImage2D( GL_TEXTURE_2D, 0, GL_RG, 512, 512, 0, GL_RG, GL_UNSIGNED_BYTE, data );
940 vg_tex2d_linear();
941 vg_tex2d_repeat();
942
943 free( data );
944 }
945
946 resource_load_main();
947
948 // Restore gamestate
949 career_load();
950 console_load_map( 1, level_pack_1 );
951 }
952
953 void vg_free(void)
954 {
955 console_save_map( 0, NULL );
956 career_serialize();
957
958 resource_free_main();
959
960 glDeleteTextures( 1, &world.background_data );
961 glDeleteTextures( 1, &world.random_samples );
962
963 glDeleteVertexArrays( 1, &world.wire.vao );
964 glDeleteBuffers( 1, &world.wire.vbo );
965 glDeleteBuffers( 1, &world.wire.ebo );
966
967 free_mesh( &world.tile );
968 free_mesh( &world.circle );
969 free_mesh( &world.numbers );
970
971 map_free();
972 }
973
974 static int world_check_pos_ok( v2i co )
975 {
976 return (co[0] < 2 || co[0] >= world.w-2 || co[1] < 2 || co[1] >= world.h-2)? 0: 1;
977 }
978
979 static int cell_interactive( v2i co )
980 {
981 // Bounds check
982 if( !world_check_pos_ok( co ) )
983 return 0;
984
985 // Flags check
986 if( world.data[ world.w*co[1] + co[0] ].state & (FLAG_WALL|FLAG_INPUT|FLAG_OUTPUT) )
987 return 0;
988
989 // List of 3x3 configurations that we do not allow
990 static u32 invalid_src[][9] =
991 {
992 { 0,1,0,
993 1,1,1,
994 0,1,0
995 },
996 { 0,0,0,
997 0,1,1,
998 0,1,1
999 },
1000 { 0,0,0,
1001 1,1,0,
1002 1,1,0
1003 },
1004 { 0,1,1,
1005 0,1,1,
1006 0,0,0
1007 },
1008 { 1,1,0,
1009 1,1,0,
1010 0,0,0
1011 },
1012 { 0,1,0,
1013 0,1,1,
1014 0,1,0
1015 },
1016 { 0,1,0,
1017 1,1,0,
1018 0,1,0
1019 }
1020 };
1021
1022 // Statically compile invalid configurations into bitmasks
1023 static u32 invalid[ vg_list_size(invalid_src) ];
1024
1025 for( int i = 0; i < vg_list_size(invalid_src); i ++ )
1026 {
1027 u32 comped = 0x00;
1028
1029 for( int j = 0; j < 3; j ++ )
1030 for( int k = 0; k < 3; k ++ )
1031 comped |= invalid_src[i][ j*3+k ] << ((j*5)+k);
1032
1033 invalid[i] = comped;
1034 }
1035
1036 // Extract 5x5 grid surrounding tile
1037 u32 blob = 0x1000;
1038 for( int y = co[1]-2; y < co[1]+3; y ++ )
1039 for( int x = co[0]-2; x < co[0]+3; x ++ )
1040 {
1041 struct cell *cell = pcell((v2i){x,y});
1042
1043 if( cell && (cell->state & (FLAG_CANAL|FLAG_INPUT|FLAG_OUTPUT)) )
1044 blob |= 0x1 << ((y-(co[1]-2))*5 + x-(co[0]-2));
1045 }
1046
1047 // Run filter over center 3x3 grid to check for invalid configurations
1048 int kernel[] = { 0, 1, 2, 5, 6, 7, 10, 11, 12 };
1049 for( int i = 0; i < vg_list_size(kernel); i ++ )
1050 {
1051 if( blob & (0x1 << (6+kernel[i])) )
1052 {
1053 u32 window = blob >> kernel[i];
1054
1055 for( int j = 0; j < vg_list_size(invalid); j ++ )
1056 if((window & invalid[j]) == invalid[j])
1057 return 0;
1058 }
1059 }
1060
1061 return 1;
1062 }
1063
1064 static void map_reclassify( v2i start, v2i end, int update_texbuffer )
1065 {
1066 v2i full_start = { 1,1 };
1067 v2i full_end = { world.w-1, world.h-1 };
1068
1069 if( !start || !end )
1070 {
1071 start = full_start;
1072 end = full_end;
1073 }
1074
1075 // Texture data
1076 u8 info_buffer[64*64*4];
1077 u32 pixel_id = 0;
1078
1079 int px0 = vg_max( start[0], full_start[0] ),
1080 px1 = vg_min( end[0], full_end[0] ),
1081 py0 = vg_max( start[1], full_start[1] ),
1082 py1 = vg_min( end[1], full_end[1] );
1083
1084 for( int y = py0; y < py1; y ++ )
1085 {
1086 for( int x = px0; x < px1; x ++ )
1087 {
1088 struct cell *cell = pcell((v2i){x,y});
1089
1090 v2i dirs[] = {{1,0},{0,1},{-1,0},{0,-1}};
1091
1092 u8 height = 0;
1093 u8 config = 0x00;
1094
1095 if( cell->state & (FLAG_CANAL|FLAG_INPUT|FLAG_OUTPUT) )
1096 {
1097 for( int i = 0; i < vg_list_size( dirs ); i ++ )
1098 {
1099 struct cell *neighbour = pcell((v2i){x+dirs[i][0], y+dirs[i][1]});
1100 if( neighbour->state & (FLAG_CANAL|FLAG_INPUT|FLAG_OUTPUT) )
1101 config |= 0x1 << i;
1102 }
1103
1104 height = 128;
1105 }
1106 else
1107 {
1108 if( cell->state & FLAG_WALL )
1109 height = 255;
1110
1111 config = 0xF;
1112 }
1113
1114 pcell((v2i){x,y})->config = config;
1115
1116 u8 *info_px = &info_buffer[ (pixel_id ++)*4 ];
1117 info_px[0] = height;
1118 info_px[1] = cell->state & FLAG_WALL? 0: 255;
1119 info_px[2] = 0;
1120 info_px[3] = 0;
1121
1122 if(
1123 (
1124 ((cell->state & FLAG_IS_TRIGGER) && (cell->config == 0xF || cell->config == k_cell_type_split)) ||
1125 ((cell->state & FLAG_TARGETED) && (cell->config != k_cell_type_split))
1126 ) && update_texbuffer
1127 ){
1128 cell->state &= ~(FLAG_TARGETED|FLAG_IS_TRIGGER);
1129 for( u32 i = 0; i < 2; i ++ )
1130 {
1131 if( cell->links[i] )
1132 {
1133 struct cell *other_ptr = &world.data[ cell->links[i] ];
1134 other_ptr->links[ i ] = 0;
1135 other_ptr->state &= ~FLAG_IS_TRIGGER;
1136
1137 if( other_ptr->links[ i ^ 0x1 ] == 0 )
1138 other_ptr->state &= ~FLAG_TARGETED;
1139 }
1140 }
1141
1142 cell->links[0] = 0;
1143 cell->links[1] = 0;
1144 }
1145 }
1146 }
1147
1148 if( update_texbuffer )
1149 {
1150 glBindTexture( GL_TEXTURE_2D, world.background_data );
1151 glTexSubImage2D( GL_TEXTURE_2D, 0, px0 + 16, py0 + 16, px1-px0, py1-py0, GL_RGBA, GL_UNSIGNED_BYTE, info_buffer );
1152 }
1153 }
1154
1155
1156 v2f const curve_3[] = {{0.5f,1.0f},{0.5f,0.625f},{0.625f,0.5f},{1.0f,0.5f}};
1157 v2f const curve_6[] = {{0.5f,1.0f},{0.5f,0.625f},{0.375f,0.5f},{0.0f,0.5f}};
1158 v2f const curve_9[] = {{1.0f,0.5f},{0.625f,0.5f},{0.5f,0.375f},{0.5f,0.0f}};
1159 v2f const curve_12[]= {{0.0f,0.5f},{0.375f,0.5f},{0.5f,0.375f},{0.5f,0.0f}};
1160
1161 v2f const curve_1[] = {{1.0f,0.5f},{0.8f,0.5f},{0.3f,0.5f},{0.2f,0.5f}};
1162 v2f const curve_4[] = {{0.0f,0.5f},{0.3f,0.5f},{0.5f,0.5f},{0.8f,0.5f}};
1163 v2f const curve_2[] = {{0.5f,1.0f},{0.5f,0.8f},{0.5f,0.3f},{0.5f,0.2f}};
1164 v2f const curve_8[] = {{0.5f,0.8f},{0.5f,0.5f},{0.5f,0.3f},{0.5f,0.0f}};
1165
1166 v2f const curve_7[] = {{0.5f,0.8438f},{0.875f,0.8438f},{0.625f,0.5f},{1.0f,0.5f}};
1167 v2f const curve_7_1[] = {{0.5f,0.8438f},{1.0f-0.875f,0.8438f},{1.0-0.625f,0.5f},{0.0f,0.5f}};
1168
1169 float const curve_7_linear_section = 0.1562f;
1170
1171 u16 id_drag_from = 0;
1172 v2f drag_from_co;
1173 v2f drag_to_co;
1174
1175 void vg_update(void)
1176 {
1177 // Fit within screen
1178
1179 float r1 = (float)vg_window_y / (float)vg_window_x,
1180 r2 = (float)world.h / (float)world.w,
1181 size;
1182
1183 size = ( r2 < r1? (float)world.w * 0.5f: ((float)world.h * 0.5f) / r1 ) + 2.5f;
1184 m3x3_projection( m_projection, -size, size, -size*r1, size*r1 );
1185
1186 v3f origin;
1187 origin[0] = floorf( -0.5f * world.w );
1188 origin[1] = floorf( -0.5f * world.h );
1189 origin[2] = 0.0f;
1190
1191 m3x3_identity( m_view );
1192 m3x3_translate( m_view, origin );
1193 m3x3_mul( m_projection, m_view, vg_pv );
1194 vg_projection_update();
1195
1196 // Input stuff
1197 v2_copy( vg_mouse_ws, world.tile_pos );
1198
1199 world.tile_x = floorf( world.tile_pos[0] );
1200 world.tile_y = floorf( world.tile_pos[1] );
1201
1202 // Tilemap editing
1203 if( !world.simulating )
1204 {
1205 v2_copy( vg_mouse_ws, drag_to_co );
1206
1207 if( cell_interactive( (v2i){ world.tile_x, world.tile_y } ))
1208 {
1209 world.selected = world.tile_y * world.w + world.tile_x;
1210
1211 static u32 modify_state = 0;
1212
1213 struct cell *cell_ptr = &world.data[world.selected];
1214
1215 if( vg_get_button_down("primary") )
1216 {
1217 modify_state = (cell_ptr->state & FLAG_CANAL) ^ FLAG_CANAL;
1218 }
1219
1220 if( vg_get_button("primary") && ((cell_ptr->state & FLAG_CANAL) != modify_state) )
1221 {
1222 cell_ptr->state &= ~FLAG_CANAL;
1223 cell_ptr->state |= modify_state;
1224
1225 if( cell_ptr->state & FLAG_CANAL )
1226 {
1227 cell_ptr->links[0] = 0;
1228 cell_ptr->links[1] = 0;
1229
1230 sfx_set_playrnd( &audio_tile_mod, &audio_system_sfx, 3, 6 );
1231 world.score ++;
1232 }
1233 else
1234 {
1235 sfx_set_playrnd( &audio_tile_mod, &audio_system_sfx, 0, 3 );
1236 world.score --;
1237 }
1238
1239 map_reclassify( (v2i){ world.tile_x -2, world.tile_y -2 },
1240 (v2i){ world.tile_x +2, world.tile_y +2 }, 1 );
1241 }
1242
1243 if( vg_get_button_down("secondary") && !(cell_ptr->config == k_cell_type_split) )
1244 {
1245 id_drag_from = world.selected;
1246 drag_from_co[0] = world.tile_x + 0.5f;
1247 drag_from_co[1] = world.tile_y + 0.5f;
1248 }
1249
1250 if( id_drag_from && (cell_ptr->config == k_cell_type_split) )
1251 {
1252 float local_x = vg_mouse_ws[0] - (float)world.tile_x;
1253 drag_to_co[0] = (float)world.tile_x + (local_x > 0.5f? 0.75f: 0.25f);
1254 drag_to_co[1] = (float)world.tile_y + 0.25f;
1255
1256 if( vg_get_button_up("secondary") )
1257 {
1258 struct cell *drag_ptr = &world.data[id_drag_from];
1259 u32 link_id = local_x > 0.5f? 1: 0;
1260
1261 // Cleanup existing connections
1262 if( cell_ptr->links[ link_id ] )
1263 {
1264 vg_warn( "Destroying existing connection on link %u (%hu)\n", link_id, cell_ptr->links[ link_id ] );
1265
1266 struct cell *current_connection = &world.data[ cell_ptr->links[ link_id ]];
1267 current_connection->state &= ~FLAG_IS_TRIGGER;
1268 current_connection->links[ link_id ] = 0;
1269 }
1270
1271 if( drag_ptr->links[ link_id ^ 0x1 ] )
1272 {
1273 vg_warn( "Destroying alternate link %u (%hu)\n", link_id ^ 0x1, drag_ptr->links[ link_id ^ 0x1 ] );
1274
1275 struct cell *current_connection = &world.data[ drag_ptr->links[ link_id ^ 0x1 ]];
1276 if( !current_connection->links[ link_id ] )
1277 current_connection->state &= ~FLAG_TARGETED;
1278
1279 current_connection->links[ link_id ^ 0x1 ] = 0;
1280 drag_ptr->links[ link_id ^ 0x1 ] = 0;
1281 }
1282
1283 // Create the new connection
1284 vg_success( "Creating connection on link %u (%hu)\n", link_id, id_drag_from );
1285
1286 cell_ptr->links[ link_id ] = id_drag_from;
1287 drag_ptr->links[ link_id ] = world.selected;
1288
1289 cell_ptr->state |= FLAG_TARGETED;
1290 drag_ptr->state |= FLAG_IS_TRIGGER;
1291 id_drag_from = 0;
1292 }
1293 }
1294 }
1295 else
1296 world.selected = -1;
1297
1298 if( !(vg_get_button("secondary") && id_drag_from) )
1299 id_drag_from = 0;
1300 }
1301 else
1302 {
1303 world.selected = -1;
1304 id_drag_from = 0;
1305 }
1306
1307 // Simulation stop/start
1308 if( vg_get_button_down("go") )
1309 {
1310 if( world.simulating )
1311 {
1312 simulation_stop();
1313 }
1314 else
1315 {
1316 vg_success( "Starting simulation!\n" );
1317
1318 sfx_set_playrnd( &audio_rolls, &audio_system_balls_rolling, 0, 1 );
1319
1320 world.simulating = 1;
1321 world.num_fishes = 0;
1322 world.sim_frame = 0;
1323 world.sim_start = vg_time;
1324 world.sim_run = 0;
1325
1326 for( int i = 0; i < world.w*world.h; i ++ )
1327 world.data[ i ].state &= ~FLAG_FLIP_FLOP;
1328
1329 io_reset();
1330 }
1331 }
1332
1333 // Fish ticks
1334 if( world.simulating )
1335 {
1336 while( world.sim_frame < (int)((vg_time-world.sim_start)*2.0f) )
1337 {
1338 //vg_info( "frame: %u\n", world.sim_frame );
1339 sfx_set_playrnd( &audio_random, &audio_system_balls_switching, 0, 9 );
1340
1341 // Update splitter deltas
1342 for( int i = 0; i < world.h*world.w; i ++ )
1343 {
1344 struct cell *cell = &world.data[i];
1345 if( cell->config == k_cell_type_split )
1346 {
1347 cell->state &= ~FLAG_FLIP_ROTATING;
1348 }
1349 if( cell->state & FLAG_IS_TRIGGER )
1350 cell->state &= ~FLAG_TRIGGERED;
1351 }
1352
1353 int alive_count = 0;
1354
1355 // Update fish positions
1356 for( int i = 0; i < world.num_fishes; i ++ )
1357 {
1358 struct fish *fish = &world.fishes[i];
1359
1360 if( fish->state == k_fish_state_soon_dead )
1361 fish->state = k_fish_state_dead;
1362
1363 if( fish->state < k_fish_state_alive )
1364 continue;
1365
1366 struct cell *cell_current = pcell( fish->pos );
1367
1368 if( fish->state == k_fish_state_alive )
1369 {
1370 // Apply to output
1371 if( cell_current->state & FLAG_OUTPUT )
1372 {
1373 for( int j = 0; j < arrlen( world.io ); j ++ )
1374 {
1375 struct cell_terminal *term = &world.io[j];
1376
1377 if( term->id == fish->pos[1]*world.w + fish->pos[0] )
1378 {
1379 struct terminal_run *run = &term->runs[ world.sim_run ];
1380 if( run->recv_count < vg_list_size( run->recieved ) )
1381 run->recieved[ run->recv_count ++ ] = fish->payload;
1382
1383 break;
1384 }
1385 }
1386
1387 fish->state = k_fish_state_dead;
1388 continue;
1389 }
1390
1391 if( cell_current->config == k_cell_type_split )
1392 {
1393 // Flip flop L/R
1394 fish->dir[0] = cell_current->state&FLAG_FLIP_FLOP?1:-1;
1395 fish->dir[1] = 0;
1396
1397 if( !(cell_current->state & FLAG_TARGETED) )
1398 cell_current->state ^= FLAG_FLIP_FLOP;
1399 }
1400 else if( cell_current->config == k_cell_type_merge )
1401 {
1402 // Can only move up
1403 fish->dir[0] = 0;
1404 fish->dir[1] = -1;
1405 }
1406 else
1407 {
1408 struct cell *cell_next = pcell( (v2i){ fish->pos[0]+fish->dir[0], fish->pos[1]+fish->dir[1] } );
1409 if( !(cell_next->state & (FLAG_CANAL|FLAG_OUTPUT)) )
1410 {
1411 // Try other directions for valid, so down, left, right..
1412 v2i dirs[] = {{1,0},{-1,0},{0,-1}};
1413 //vg_info( "Trying some other directions...\n" );
1414
1415 for( int j = 0; j < vg_list_size(dirs); j ++ )
1416 {
1417 if( (dirs[j][0] == -fish->dir[0]) && (dirs[j][1] == -fish->dir[1]) )
1418 continue;
1419
1420 if( pcell( (v2i){ fish->pos[0]+dirs[j][0], fish->pos[1]+dirs[j][1] } )->state & (FLAG_CANAL|FLAG_OUTPUT) )
1421 {
1422 fish->dir[0] = dirs[j][0];
1423 fish->dir[1] = dirs[j][1];
1424 }
1425 }
1426 }
1427 }
1428
1429 fish->pos[0] += fish->dir[0];
1430 fish->pos[1] += fish->dir[1];
1431
1432 struct cell *cell_entry = pcell( fish->pos );
1433
1434 if( !(cell_entry->state & (FLAG_INPUT|FLAG_CANAL|FLAG_OUTPUT) ))
1435 {
1436 if( world_check_pos_ok( fish->pos ) )
1437 fish->state = k_fish_state_bg;
1438 else
1439 fish->state = k_fish_state_dead;
1440 }
1441 else
1442 {
1443 if( fish->dir[0] )
1444 {
1445 if( cell_entry->config == k_cell_type_split ||
1446 cell_entry->config == k_cell_type_ramp_right ||
1447 cell_entry->config == k_cell_type_ramp_left )
1448 {
1449 // Special death (FALL)
1450 /*
1451 v2_sub( fish->physics_co, fish->physics_v, fish->physics_v );
1452 v2_divs( fish->physics_v, vg_time_delta, fish->physics_v );
1453 */
1454
1455 fish->state = k_fish_state_dead;
1456 vg_error( "REMOVE THIS CONDITION\n" );
1457 continue;
1458 }
1459 }
1460
1461 if( cell_entry->config == k_cell_type_split )
1462 {
1463 sfx_set_playrnd( &audio_splitter, &audio_system_balls_important, 0, 1 );
1464 cell_entry->state |= FLAG_FLIP_ROTATING;
1465 }
1466 }
1467 }
1468 else if( fish->state == k_fish_state_bg )
1469 {
1470 fish->pos[0] += fish->dir[0];
1471 fish->pos[1] += fish->dir[1];
1472
1473 if( !world_check_pos_ok( fish->pos ) )
1474 fish->state = k_fish_state_dead;
1475 else
1476 {
1477 struct cell *cell_entry = pcell( fish->pos );
1478
1479 if( cell_entry->state & FLAG_CANAL )
1480 {
1481 if( cell_entry->config == k_cell_type_con_r || cell_entry->config == k_cell_type_con_u
1482 || cell_entry->config == k_cell_type_con_l || cell_entry->config == k_cell_type_con_d )
1483 {
1484 fish->state = k_fish_state_alive;
1485
1486 fish->dir[0] = 0;
1487 fish->dir[1] = 0;
1488
1489 switch( cell_entry->config )
1490 {
1491 case k_cell_type_con_r: fish->dir[0] = 1; break;
1492 case k_cell_type_con_l: fish->dir[0] = -1; break;
1493 case k_cell_type_con_u: fish->dir[1] = 1; break;
1494 case k_cell_type_con_d: fish->dir[1] = -1; break;
1495 }
1496 }
1497 }
1498 }
1499 }
1500 else { vg_error( "fish behaviour unimplemented for behaviour type (%d)\n" ); }
1501
1502 if( fish->state >= k_fish_state_alive )
1503 alive_count ++;
1504 }
1505
1506 // Second pass (triggers)
1507 for( int i = 0; i < world.num_fishes; i ++ )
1508 {
1509 struct fish *fish = &world.fishes[i];
1510
1511 if( fish->state == k_fish_state_alive )
1512 {
1513 struct cell *cell_current = pcell( fish->pos );
1514
1515 if( cell_current->state & FLAG_IS_TRIGGER )
1516 {
1517 int trigger_id = cell_current->links[0]?0:1;
1518 int connection_id = cell_current->links[trigger_id];
1519 int target_px = connection_id % world.w;
1520 int target_py = (connection_id - target_px)/world.w;
1521
1522 vg_line2( (v2f){ fish->pos[0], fish->pos[1] }, (v2f){ target_px, target_py }, 0xffffffff, 0xffffffff );
1523
1524 struct cell *target_peice = &world.data[ cell_current->links[trigger_id] ];
1525
1526 cell_current->state |= FLAG_TRIGGERED;
1527
1528 if( trigger_id )
1529 target_peice->state |= FLAG_FLIP_FLOP;
1530 else
1531 target_peice->state &= ~FLAG_FLIP_FLOP;
1532 }
1533 }
1534 }
1535
1536 // Third pass (collisions)
1537 for( int i = 0; i < world.num_fishes; i ++ )
1538 {
1539 if( world.fishes[i].state == k_fish_state_alive )
1540 {
1541 for( int j = i+1; j < world.num_fishes; j ++ )
1542 {
1543 if( (world.fishes[j].state == k_fish_state_alive) &&
1544 (world.fishes[i].pos[0] == world.fishes[j].pos[0]) &&
1545 (world.fishes[i].pos[1] == world.fishes[j].pos[1]) )
1546 {
1547 // Shatter death (+0.5s)
1548 world.fishes[i].state = k_fish_state_soon_dead;
1549 world.fishes[j].state = k_fish_state_soon_dead;
1550 world.fishes[i].death_time = 0.5f;
1551 world.fishes[j].death_time = 0.5f;
1552 }
1553 }
1554 }
1555 }
1556
1557 // Spawn fishes
1558 for( int i = 0; i < arrlen( world.io ); i ++ )
1559 {
1560 struct cell_terminal *term = &world.io[ i ];
1561 int posx = term->id % world.w;
1562 int posy = (term->id - posx)/world.w;
1563 int is_input = world.data[ term->id ].state & FLAG_INPUT;
1564
1565 if( is_input )
1566 {
1567 if( world.sim_frame < term->runs[ world.sim_run ].condition_count )
1568 {
1569 struct fish *fish = &world.fishes[world.num_fishes++];
1570 fish->pos[0] = posx;
1571 fish->pos[1] = posy;
1572 fish->state = k_fish_state_alive;
1573 fish->payload = term->runs[ world.sim_run ].conditions[ world.sim_frame ];
1574
1575 int can_spawn = 0;
1576
1577 v2i dirs[] = {{1,0},{-1,0},{0,-1}};
1578 for( int j = 0; j < vg_list_size(dirs); j ++ )
1579 if( pcell( (v2i){ posx+dirs[j][0], posy+dirs[j][1] } )->state & FLAG_CANAL )
1580 {
1581 fish->dir[0] = dirs[j][0];
1582 fish->dir[1] = dirs[j][1];
1583 can_spawn = 1;
1584 break;
1585 }
1586
1587 if( !can_spawn )
1588 world.num_fishes--;
1589 else
1590 alive_count ++;
1591 }
1592 }
1593 }
1594
1595 if( alive_count == 0 )
1596 {
1597 world.completed = 1;
1598
1599 for( int i = 0; i < arrlen( world.io ); i ++ )
1600 {
1601 struct cell_terminal *term = &world.io[ i ];
1602 int is_input = world.data[ term->id ].state & FLAG_INPUT;
1603
1604 if( !is_input )
1605 {
1606 struct terminal_run *run = &term->runs[ world.sim_run ];
1607
1608 if( run->recv_count == run->condition_count )
1609 {
1610 for( int j = 0; j < run->condition_count; j ++ )
1611 {
1612 if( run->recieved[j] != run->conditions[j] )
1613 {
1614 world.completed = 0;
1615 break;
1616 }
1617 }
1618 }
1619 else
1620 {
1621 world.completed = 0;
1622 break;
1623 }
1624 }
1625 }
1626
1627 if( world.completed )
1628 {
1629 if( world.sim_run < world.max_runs-1 )
1630 {
1631 vg_success( "Run passed, starting next\n" );
1632 world.sim_run ++;
1633 world.sim_frame = 0;
1634 world.sim_start = vg_time;
1635 world.num_fishes = 0;
1636 continue;
1637 }
1638 else
1639 {
1640 vg_success( "Level passed!\n" );
1641
1642 u32 score = 0;
1643 for( int i = 0; i < world.w*world.h; i ++ )
1644 if( world.data[ i ].state & FLAG_CANAL )
1645 score ++;
1646
1647 world.score = score;
1648 world.time = world.sim_frame;
1649 }
1650 }
1651 else
1652 {
1653 vg_error( "Level failed :(\n" );
1654 }
1655
1656 // Copy into career data
1657 if( world.ptr_career_level )
1658 {
1659 world.ptr_career_level->score = world.score;
1660 world.ptr_career_level->time = world.time;
1661 world.ptr_career_level->completed = world.completed;
1662 }
1663
1664 simulation_stop(); // TODO: Async?
1665 break;
1666 }
1667
1668 world.sim_frame ++;
1669 }
1670
1671 float scaled_time = 0.0f;
1672 scaled_time = (vg_time-world.sim_start)*2.0f;
1673 world.frame_lerp = scaled_time - (float)world.sim_frame;
1674
1675 // Update positions
1676 for( int i = 0; i < world.num_fishes; i ++ )
1677 {
1678 struct fish *fish = &world.fishes[i];
1679
1680 if( fish->state == k_fish_state_dead )
1681 continue;
1682
1683 if( fish->state == k_fish_state_soon_dead && (world.frame_lerp > fish->death_time) )
1684 continue; // Todo: particle thing?
1685
1686 struct cell *cell = pcell(fish->pos);
1687 v2f const *curve;
1688
1689 float t = world.frame_lerp;
1690 float ti = 1.0f-t;
1691
1692 v2_copy( fish->physics_co, fish->physics_v );
1693
1694 switch( cell->config )
1695 {
1696 case 13:
1697 if( fish->dir[0] == 1 )
1698 curve = curve_12;
1699 else
1700 curve = curve_9;
1701 break;
1702 case k_cell_type_con_r: curve = curve_1;
1703 if( fish->dir[0] == 1 ) t = ti;
1704 break;
1705 case k_cell_type_con_l: curve = curve_4;
1706 if( fish->dir[0] == -1 ) t = ti;
1707 break;
1708 case k_cell_type_con_u: curve = curve_2;
1709 if( fish->dir[1] == 1 ) t = ti;
1710 break;
1711 case k_cell_type_con_d: curve = curve_8;
1712 if( fish->dir[1] == 1 ) t = ti;
1713 break;
1714 case 3: curve = curve_3; break;
1715 case 6: curve = curve_6; break;
1716 case 9: curve = curve_9; break;
1717 case 12: curve = curve_12; break;
1718 case 7:
1719 if( t > curve_7_linear_section )
1720 {
1721 t -= curve_7_linear_section;
1722 t *= (1.0f/(1.0f-curve_7_linear_section));
1723
1724 curve = cell->state & FLAG_FLIP_FLOP? curve_7: curve_7_1;
1725 }
1726 else curve = NULL;
1727 break;
1728 default: curve = NULL; break;
1729 }
1730
1731 if( curve )
1732 {
1733 float t2 = t * t;
1734 float t3 = t * t * t;
1735
1736 float cA = 3.0f*t2 - 3.0f*t3;
1737 float cB = 3.0f*t3 - 6.0f*t2 + 3.0f*t;
1738 float cC = 3.0f*t2 - t3 - 3.0f*t + 1.0f;
1739
1740 fish->physics_co[0] = t3*curve[3][0] + cA*curve[2][0] + cB*curve[1][0] + cC*curve[0][0];
1741 fish->physics_co[1] = t3*curve[3][1] + cA*curve[2][1] + cB*curve[1][1] + cC*curve[0][1];
1742 fish->physics_co[0] += (float)fish->pos[0];
1743 fish->physics_co[1] += (float)fish->pos[1];
1744 }
1745 else
1746 {
1747 v2f origin;
1748 origin[0] = (float)fish->pos[0] + (float)fish->dir[0]*-0.5f + 0.5f;
1749 origin[1] = (float)fish->pos[1] + (float)fish->dir[1]*-0.5f + 0.5f;
1750
1751 fish->physics_co[0] = origin[0] + (float)fish->dir[0]*t;
1752 fish->physics_co[1] = origin[1] + (float)fish->dir[1]*t;
1753 }
1754 }
1755 }
1756 }
1757
1758 static void render_tiles( v2i start, v2i end, v4f const regular_colour, v4f const selected_colour )
1759 {
1760 v2i full_start = { 0,0 };
1761 v2i full_end = { world.w, world.h };
1762
1763 if( !start || !end )
1764 {
1765 start = full_start;
1766 end = full_end;
1767 }
1768
1769 glUniform4fv( SHADER_UNIFORM( shader_tile_main, "uColour" ), 1, regular_colour );
1770
1771 for( int y = start[1]; y < end[1]; y ++ )
1772 {
1773 for( int x = start[0]; x < end[0]; x ++ )
1774 {
1775 struct cell *cell = pcell((v2i){x,y});
1776 int selected = world.selected == y*world.w + x;
1777
1778 int tile_offsets[][2] =
1779 {
1780 {2, 0}, {0, 3}, {0, 2}, {2, 2},
1781 {1, 0}, {2, 3}, {3, 2}, {1, 3},
1782 {3, 1}, {0, 1}, {1, 2}, {2, 1},
1783 {1, 1}, {3, 3}, {2, 1}, {2, 1}
1784 };
1785
1786 int uv[2] = { 3, 0 };
1787
1788 if( cell->state & (FLAG_CANAL|FLAG_INPUT|FLAG_OUTPUT) )
1789 {
1790 uv[0] = tile_offsets[ cell->config ][0];
1791 uv[1] = tile_offsets[ cell->config ][1];
1792 } else continue;
1793
1794 glUniform4f( SHADER_UNIFORM( shader_tile_main, "uOffset" ), (float)x, (float)y, uv[0], uv[1] );
1795 if( selected )
1796 {
1797 glUniform4fv( SHADER_UNIFORM( shader_tile_main, "uColour" ), 1, selected_colour );
1798 draw_mesh( 0, 2 );
1799 glUniform4fv( SHADER_UNIFORM( shader_tile_main, "uColour" ), 1, regular_colour );
1800 }
1801 else
1802 draw_mesh( 0, 2 );
1803 }
1804 }
1805 }
1806
1807 static void draw_numbers( v3f coord, int number )
1808 {
1809 v3f pos;
1810 v3_copy( coord, pos );
1811 int digits[8]; int i = 0;
1812
1813 while( number > 0 && i < 8 )
1814 {
1815 digits[i ++] = number % 10;
1816 number = number / 10;
1817 }
1818
1819 for( int j = 0; j < i; j ++ )
1820 {
1821 glUniform3fv( SHADER_UNIFORM( shader_tile_colour, "uOffset" ), 1, pos );
1822 draw_mesh( MESH_NUMBERS_OFFSETS[digits[i-j-1]][0], MESH_NUMBERS_OFFSETS[digits[i-j-1]][1] );
1823 pos[0] += pos[2] * 0.75f;
1824 }
1825 }
1826
1827 void vg_render(void)
1828 {
1829 glViewport( 0,0, vg_window_x, vg_window_y );
1830
1831 glDisable( GL_DEPTH_TEST );
1832 glClearColor( 0.369768f, 0.3654f, 0.42f, 1.0f );
1833 glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
1834
1835 v4f const colour_default = {1.0f, 1.0f, 1.0f, 1.0f};
1836 v4f const colour_selected = {0.90f, 0.92f, 1.0f, 1.0f};
1837
1838 // TILE SET RENDERING
1839 // todo: just slam everything into a mesh...
1840 // when user modifies a tile the neighbours can be easily uploaded to gpu mem
1841 // in ~3 subBuffers
1842 // Currently we're uploading a fair amount of data every frame anyway.
1843 // NOTE: this is for final optimisations ONLY!
1844 // ======================================================================
1845
1846 use_mesh( &world.tile );
1847
1848 // Draw background
1849
1850 if(1){
1851
1852 SHADER_USE( shader_background );
1853 glUniformMatrix3fv( SHADER_UNIFORM( shader_background, "uPv" ), 1, GL_FALSE, (float *)vg_pv );
1854
1855 glActiveTexture( GL_TEXTURE0 );
1856 glBindTexture( GL_TEXTURE_2D, world.background_data );
1857 glUniform1i( SHADER_UNIFORM( shader_background, "uTexMain" ), 0 );
1858
1859 glUniform3f( SHADER_UNIFORM( shader_background, "uOffset" ), -16, -16, 64 );
1860 glUniform1f( SHADER_UNIFORM( shader_background, "uVariance" ), 0.02f );
1861
1862 glActiveTexture( GL_TEXTURE1 );
1863 glBindTexture( GL_TEXTURE_2D, world.random_samples );
1864 glUniform1i( SHADER_UNIFORM( shader_background, "uSamplerNoise" ), 1 );
1865
1866 draw_mesh( 0, 2 );
1867
1868 }
1869
1870
1871 SHADER_USE( shader_tile_main );
1872
1873 m2x2f subtransform;
1874 m2x2_identity( subtransform );
1875 glUniformMatrix2fv( SHADER_UNIFORM( shader_tile_main, "uSubTransform" ), 1, GL_FALSE, (float *)subtransform );
1876 glUniformMatrix3fv( SHADER_UNIFORM( shader_tile_main, "uPv" ), 1, GL_FALSE, (float *)vg_pv );
1877 glUniform1f( SHADER_UNIFORM( shader_tile_main, "uGhost" ), 0.0f );
1878 glUniform1f( SHADER_UNIFORM( shader_tile_main, "uForeground" ), 0.0f );
1879
1880 glEnable(GL_BLEND);
1881 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
1882 glBlendEquation(GL_FUNC_ADD);
1883
1884 // Bind textures
1885 vg_tex2d_bind( &tex_tile_data, 0 );
1886 glUniform1i( SHADER_UNIFORM( shader_tile_main, "uTexGlyphs" ), 0 );
1887
1888 vg_tex2d_bind( &tex_wood, 1 );
1889 glUniform1i( SHADER_UNIFORM( shader_tile_main, "uTexWood" ), 1 );
1890
1891 render_tiles( NULL, NULL, colour_default, colour_default );
1892
1893
1894
1895 SHADER_USE( shader_ball );
1896 glUniformMatrix3fv( SHADER_UNIFORM( shader_ball, "uPv" ), 1, GL_FALSE, (float *)vg_pv );
1897
1898 vg_tex2d_bind( &tex_ball, 0 );
1899 glUniform1i( SHADER_UNIFORM( shader_ball, "uTexMain" ), 0 );
1900
1901 // Draw 'fish'
1902 if( world.simulating )
1903 {
1904 for( int i = 0; i < world.num_fishes; i ++ )
1905 {
1906 struct fish *fish = &world.fishes[i];
1907
1908 if( fish->state == k_fish_state_dead || fish->state == k_fish_state_bg )
1909 continue;
1910
1911 if( fish->state == k_fish_state_soon_dead && (world.frame_lerp > fish->death_time) )
1912 continue;
1913
1914 v4f dot_colour = { 0.0f, 0.0f, 0.0f, 1.0f };
1915 colour_code_v3( fish->payload, dot_colour );
1916
1917 glUniform3fv( SHADER_UNIFORM( shader_ball, "uColour" ), 1, dot_colour );
1918 glUniform2fv( SHADER_UNIFORM( shader_ball, "uOffset" ), 1, fish->physics_co );
1919 draw_mesh( 0, 32 );
1920 }
1921 }
1922
1923 SHADER_USE( shader_tile_main );
1924
1925 // Bind textures
1926 vg_tex2d_bind( &tex_tile_data, 0 );
1927 glUniform1i( SHADER_UNIFORM( shader_tile_main, "uTexGlyphs" ), 0 );
1928
1929 vg_tex2d_bind( &tex_wood, 1 );
1930 glUniform1i( SHADER_UNIFORM( shader_tile_main, "uTexWood" ), 1 );
1931
1932 glUniform1f( SHADER_UNIFORM( shader_tile_main, "uForeground" ), 1.0f );
1933 render_tiles( NULL, NULL, colour_default, colour_selected );
1934
1935 // Draw splitters
1936 for( int y = 2; y < world.h-2; y ++ )
1937 {
1938 for( int x = 2; x < world.w-2; x ++ )
1939 {
1940 struct cell *cell = pcell((v2i){x,y});
1941
1942 if( cell->state & FLAG_CANAL )
1943 {
1944 if( cell->config == k_cell_type_split )
1945 {
1946 float rotation = cell->state & FLAG_FLIP_FLOP? vg_rad( -45.0f ): vg_rad( 45.0f );
1947
1948 if( cell->state & FLAG_FLIP_ROTATING )
1949 {
1950 if( (world.frame_lerp > curve_7_linear_section) )
1951 {
1952 float const rotation_speed = 0.4f;
1953 if( (world.frame_lerp < 1.0f-rotation_speed) )
1954 {
1955 float t = world.frame_lerp - curve_7_linear_section;
1956 t *= -2.0f * (1.0f/(1.0f-(curve_7_linear_section+rotation_speed)));
1957 t += 1.0f;
1958
1959 rotation *= t;
1960 }
1961 else
1962 rotation *= -1.0f;
1963 }
1964 }
1965
1966 m2x2_create_rotation( subtransform, rotation );
1967
1968 glUniformMatrix2fv( SHADER_UNIFORM( shader_tile_main, "uSubTransform" ), 1, GL_FALSE, (float *)subtransform );
1969 glUniform4f( SHADER_UNIFORM( shader_tile_main, "uOffset" ), (float)x, (float)y + 0.125f, cell->state & FLAG_TARGETED? 3.0f: 0.0f, 0.0f );
1970 draw_mesh( 0, 2 );
1971 }
1972 }
1973 }
1974 }
1975
1976 // Edit overlay
1977 if( world.selected != -1 && !(world.data[ world.selected ].state & FLAG_CANAL) && !id_drag_from )
1978 {
1979 v2i new_begin = { world.tile_x - 2, world.tile_y - 2 };
1980 v2i new_end = { world.tile_x + 2, world.tile_y + 2 };
1981
1982 world.data[ world.selected ].state ^= FLAG_CANAL;
1983 map_reclassify( new_begin, new_end, 0 );
1984
1985 m2x2_identity( subtransform );
1986 glUniform1f( SHADER_UNIFORM( shader_tile_main, "uGhost" ), 1.0f );
1987 glUniformMatrix2fv( SHADER_UNIFORM( shader_tile_main, "uSubTransform" ), 1, GL_FALSE, (float *)subtransform );
1988 glUniform2fv( SHADER_UNIFORM( shader_tile_main, "uMousePos" ), 1, world.tile_pos );
1989
1990 render_tiles( new_begin, new_end, colour_default, colour_default );
1991
1992 world.data[ world.selected ].state ^= FLAG_CANAL;
1993 map_reclassify( new_begin, new_end, 0 );
1994 }
1995
1996 //glDisable(GL_BLEND);
1997
1998 // Draw connecting wires
1999 glDisable(GL_BLEND);
2000
2001 SHADER_USE( shader_wire );
2002 glBindVertexArray( world.wire.vao );
2003
2004 glUniformMatrix3fv( SHADER_UNIFORM( shader_wire, "uPv" ), 1, GL_FALSE, (float *)vg_pv );
2005 glUniform4f( SHADER_UNIFORM( shader_wire, "uColour" ), 0.2f, 0.2f, 0.2f, 1.0f );
2006
2007 if( id_drag_from )
2008 {
2009 glUniform1f( SHADER_UNIFORM( shader_wire, "uCurve" ), 0.4f );
2010 glUniform3f( SHADER_UNIFORM( shader_wire, "uStart" ), drag_from_co[0], drag_from_co[1], 0.06f );
2011 glUniform3f( SHADER_UNIFORM( shader_wire, "uEnd" ), drag_to_co[0], drag_to_co[1], 0.06f );
2012 glDrawElements( GL_TRIANGLES, world.wire.em, GL_UNSIGNED_SHORT, (void*)(0) );
2013 }
2014
2015 float rp_x1 = world.frame_lerp*9.0f;
2016 float rp_x2 = 1.0f-rp_x1*expf(1.0f-rp_x1)* 0.36f;
2017
2018 for( int y = 2; y < world.h-2; y ++ )
2019 {
2020 for( int x = 2; x < world.w-2; x ++ )
2021 {
2022 struct cell *cell = pcell((v2i){x,y});
2023
2024 if( cell->state & FLAG_CANAL )
2025 {
2026 if( cell->state & FLAG_IS_TRIGGER )
2027 {
2028 int trigger_id = cell->links[0]?0:1;
2029
2030 int x2 = cell->links[trigger_id] % world.w;
2031 int y2 = (cell->links[trigger_id] - x2) / world.w;
2032
2033 v2f startpoint;
2034 v2f endpoint;
2035
2036 startpoint[0] = (float)x2 + (trigger_id? 0.75f: 0.25f);
2037 startpoint[1] = (float)y2 + 0.25f;
2038
2039 endpoint[0] = x+0.5f;
2040 endpoint[1] = y+0.5f;
2041
2042 glUniform1f( SHADER_UNIFORM( shader_wire, "uCurve" ), cell->state & FLAG_TRIGGERED? rp_x2 * 0.4f: 0.4f );
2043 glUniform3f( SHADER_UNIFORM( shader_wire, "uStart" ), startpoint[0], startpoint[1], 0.04f );
2044 glUniform3f( SHADER_UNIFORM( shader_wire, "uEnd" ), endpoint[0], endpoint[1], 0.04f );
2045 glDrawElements( GL_TRIANGLES, world.wire.em, GL_UNSIGNED_SHORT, (void*)(0) );
2046 }
2047 }
2048 }
2049 }
2050
2051 SHADER_USE( shader_tile_colour );
2052 glUniformMatrix3fv( SHADER_UNIFORM( shader_tile_colour, "uPv" ), 1, GL_FALSE, (float *)vg_pv );
2053 use_mesh( &world.circle );
2054
2055 int const filled_start = 0;
2056 int const filled_count = 32;
2057 int const empty_start = 32;
2058 int const empty_count = 32*2;
2059
2060 // Draw i/o arrays
2061 for( int i = 0; i < arrlen( world.io ); i ++ )
2062 {
2063 struct cell_terminal *term = &world.io[ i ];
2064 int posx = term->id % world.w;
2065 int posy = (term->id - posx)/world.w;
2066 int is_input = world.data[ term->id ].state & FLAG_INPUT;
2067
2068 v4f dot_colour = { 0.0f, 0.0f, 0.0f, 1.0f };
2069
2070 for( int k = 0; k < term->run_count; k ++ )
2071 {
2072 for( int j = 0; j < term->runs[k].condition_count; j ++ )
2073 {
2074 float y_offset = is_input? 1.2f: -0.2f;
2075 y_offset += (is_input? 0.2f: -0.2f) * (float)k;
2076
2077 glUniform3f( SHADER_UNIFORM( shader_tile_colour, "uOffset" ), (float)posx + 0.2f + 0.2f * (float)j, (float)posy + y_offset, 0.1f );
2078
2079 if( is_input )
2080 {
2081 colour_code_v3( term->runs[k].conditions[j], dot_colour );
2082 glUniform4fv( SHADER_UNIFORM( shader_tile_colour, "uColour" ), 1, dot_colour );
2083
2084 // Draw filled if tick not passed, draw empty if empty
2085 if( (world.sim_frame > j && world.sim_run >= k) || world.sim_run > k )
2086 draw_mesh( empty_start, empty_count );
2087 else
2088 draw_mesh( filled_start, filled_count );
2089 }
2090 else
2091 {
2092 if( term->runs[k].recv_count > j )
2093 {
2094 colour_code_v3( term->runs[k].recieved[j], dot_colour );
2095 v3_muls( dot_colour, 0.8f, dot_colour );
2096 glUniform4fv( SHADER_UNIFORM( shader_tile_colour, "uColour" ), 1, dot_colour );
2097
2098 draw_mesh( filled_start, filled_count );
2099 }
2100
2101 colour_code_v3( term->runs[k].conditions[j], dot_colour );
2102 glUniform4fv( SHADER_UNIFORM( shader_tile_colour, "uColour" ), 1, dot_colour );
2103
2104 draw_mesh( empty_start, empty_count );
2105 }
2106 }
2107 }
2108 }
2109
2110 if( world.simulating )
2111 {
2112 glUniform4f( SHADER_UNIFORM( shader_tile_colour, "uColour" ), 0.0f, 0.0f, 0.0f, 1.0f );
2113 glUniform3f( SHADER_UNIFORM( shader_tile_colour, "uOffset" ), -0.5f + cosf( vg_time * 4.0f ) * 0.2f, sinf( vg_time * 4.0f ) * 0.2f + (float)world.h * 0.5f, 0.05f );
2114 draw_mesh( filled_start, filled_count );
2115 }
2116
2117 // Draw score
2118 float const score_bright = 1.25f;
2119 glUniform4f( SHADER_UNIFORM( shader_tile_colour, "uColour" ),
2120 0.4f*score_bright, 0.39f*score_bright, 0.45f*score_bright, 1.0f );
2121
2122 use_mesh( &world.numbers );
2123 draw_numbers( (v3f){ 2.0f, (float)world.h-1.875f, 0.3333f }, world.score );
2124
2125 // Level selection UI
2126 use_mesh( &world.circle );
2127 float ratio = ((float)vg_window_x/(float)vg_window_y);
2128
2129 m3x3f ui_view = M3X3_IDENTITY;
2130 m3x3_scale( ui_view, (v3f){ 1.0f, ratio, 1.0f } );
2131 glUniformMatrix3fv( SHADER_UNIFORM( shader_tile_colour, "uPv" ), 1, GL_FALSE, (float *)ui_view );
2132
2133 // Calculate mouse in UIsp
2134 v3f mouse_ui_space = { ((float)vg_mouse[0] / (float)(vg_window_x)) * 2.0f - 1.0f,
2135 (((float)vg_mouse[1] / (float)(vg_window_y)) * 2.0f - 1.0f)*(-1.0f/ratio), 0.0125f };
2136
2137 // Get selected level
2138 const float selection_scale = 0.05f;
2139 int const level_count = vg_list_size( level_pack_1 );
2140 int level_select = -1;
2141
2142 if( mouse_ui_space[0] <= -0.8f )
2143 {
2144 float levels_range = (float)level_count*selection_scale*0.6f;
2145 float level_offset = ((-mouse_ui_space[1] + levels_range) / levels_range) * 0.5f * (float)level_count;
2146 level_select = ceilf( level_offset );
2147
2148 // Draw selector
2149 if( level_select >= 0 && level_select < vg_list_size( level_pack_1 ) )
2150 {
2151 glUniform4f( SHADER_UNIFORM( shader_tile_colour, "uColour" ), 0.369768f, 0.3654f, 0.42f, 1.0f );
2152
2153 use_mesh( &world.tile );
2154 glUniform3f( SHADER_UNIFORM( shader_tile_colour, "uOffset" ),
2155 -1.0f,
2156 ((float)level_count - (float)level_select * 2.0f ) * selection_scale * 0.6f,
2157 selection_scale
2158 );
2159 draw_mesh( 2, 2 );
2160
2161 use_mesh( &world.circle );
2162
2163 if( vg_get_button_down( "primary" ) )
2164 {
2165 console_changelevel( 1, level_pack_1 + level_select );
2166 }
2167 }
2168 }
2169 else mouse_ui_space[1] = INFINITY;
2170
2171 glUniform4f( SHADER_UNIFORM( shader_tile_colour, "uColour" ), 0.4f, 0.39f, 0.45f, 1.0f );
2172
2173 // Draw levels
2174 for( int i = 0; i < level_count; i ++ )
2175 {
2176 struct career_level *clevel = &career.levels[i];
2177
2178 v3f level_ui_space = {
2179 -0.97f,
2180 ((float)level_count - (float)i * 2.0f ) * selection_scale * 0.6f + selection_scale * 0.5f,
2181 selection_scale * 0.5f
2182 };
2183
2184 float scale = vg_clampf( 1.0f - fabsf(level_ui_space[1] - mouse_ui_space[1]) * 2.0f, 0.9f, 1.0f );
2185 level_ui_space[2] *= scale;
2186
2187 glUniform3fv( SHADER_UNIFORM( shader_tile_colour, "uOffset" ), 1, level_ui_space );
2188
2189 if( clevel->completed )
2190 draw_mesh( filled_start, filled_count );
2191 else
2192 draw_mesh( empty_start, empty_count );
2193 }
2194
2195 // Level scores
2196 glUniform4f( SHADER_UNIFORM( shader_tile_colour, "uColour" ), 0.4f*1.25f, 0.39f*1.25f, 0.45f*1.25f, 1.0f );
2197
2198 use_mesh( &world.numbers );
2199 for( int i = 0; i < level_count; i ++ )
2200 {
2201 struct career_level *clevel = &career.levels[i];
2202
2203 v3f level_ui_space = {
2204 -0.94f,
2205 ((float)level_count - (float)i * 2.0f ) * selection_scale * 0.6f + selection_scale * 0.5f,
2206 0.02f
2207 };
2208
2209 if( clevel->completed )
2210 draw_numbers( level_ui_space, clevel->score );
2211
2212 level_ui_space[0] = -0.975f;
2213 level_ui_space[1] -= 0.01f;
2214 draw_numbers( level_ui_space, i );
2215 }
2216
2217 //use_mesh( &world.numbers );
2218 //draw_numbers( (v3f){ 0.0f, -0.5f, 0.1f }, 128765 );
2219 }
2220
2221 void vg_ui(void)
2222 {
2223 ui_test();
2224 }