surface props
[carveJwlIkooP6JGAAIwe30JlM.git] / world_routes.h
1 /*
2 * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved
3 */
4
5 #ifndef ROUTES_H
6 #define ROUTES_H
7
8 #include "world.h"
9 #include "world_gate.h"
10
11 #include "shaders/vblend.h"
12 #include "shaders/route.h"
13 #include "shaders/routeui.h"
14
15
16 enum route_special_type
17 {
18 k_route_special_type_none = 0,
19 k_route_special_type_gate = 1,
20 k_route_special_type_collector = 2
21 };
22
23 VG_STATIC void debug_sbpath( struct route_node *rna, struct route_node *rnb,
24 u32 colour, float xoffset )
25 {
26 v3f p0, h0, p1, h1, l, p;
27
28 v3_copy( rna->co, p0 );
29 v3_muladds( rna->co, rna->h, 1.0f, h0 );
30 v3_copy( rnb->co, p1 );
31 v3_muladds( rnb->co, rnb->h, -1.0f, h1 );
32
33 v3_muladds( p0, rna->right, xoffset, p0 );
34 v3_muladds( h0, rna->right, xoffset, h0 );
35 v3_muladds( p1, rnb->right, xoffset, p1 );
36 v3_muladds( h1, rnb->right, xoffset, h1 );
37
38 v3_copy( p0, l );
39
40 for( int i=0; i<5; i++ )
41 {
42 float t = (float)(i+1)/5.0f;
43 eval_bezier_time( p0, p1, h0, h1, t, p );
44 vg_line( p, l, colour );
45 v3_copy( p, l );
46 }
47 }
48
49 /*
50 * Get a list of node ids in stack, and return how many there is
51 */
52 VG_STATIC u32 world_routes_get_path( u32 starter, u32 stack[64] )
53 {
54 u32 stack_i[64];
55
56 stack[0] = starter;
57 stack_i[0] = 0;
58
59 u32 si = 1;
60 int loop_complete = 0;
61
62 while( si )
63 {
64 if( stack_i[si-1] == 2 )
65 {
66 si --;
67 continue;
68 }
69
70 struct route_node *rn = &world.nodes[stack[si-1]];
71 u32 nextid = rn->next[stack_i[si-1]];
72 stack_i[si-1] ++;
73
74 if( nextid != 0xffffffff )
75 {
76 if( nextid == stack[0] )
77 {
78 loop_complete = 1;
79 break;
80 }
81
82 int valid = 1;
83 for( int sj=0; sj<si; sj++ )
84 {
85 if( stack[sj] == nextid )
86 {
87 valid = 0;
88 break;
89 }
90 }
91
92 if( valid )
93 {
94 stack_i[si] = 0;
95 stack[si] = nextid;
96 si ++;
97 continue;
98 }
99 }
100 }
101
102 if( loop_complete )
103 return si;
104
105 return 0;
106 }
107
108 /*
109 * Free a segment from the UI bar to be reused later
110 */
111 VG_STATIC void world_routes_ui_popfirst( struct route_ui_bar *pui )
112 {
113 if( pui->segment_count )
114 {
115 pui->segment_start ++;
116
117 if( pui->segment_start == 32 )
118 pui->segment_start = 0;
119
120 pui->segment_count --;
121 }
122 }
123
124 /*
125 * Reset ui bar completely
126 */
127 VG_STATIC void world_routes_ui_clear( struct route_ui_bar *pui )
128 {
129 pui->segment_start = (pui->segment_start + pui->segment_count) %
130 k_max_ui_segments;
131 pui->segment_count = 0;
132 }
133
134 /*
135 * Break a index range into two pieces over the edge of the maximum it can
136 * store. s1 is 0 always, so its a ring buffer.
137 */
138 VG_STATIC void world_routes_ui_split_indices( u32 s0, u32 count,
139 u32 *c0, u32 *c1 )
140 {
141 *c0 = (VG_MIN( s0+count, k_route_ui_max_indices )) - s0;
142 *c1 = count-(*c0);
143 }
144
145 /*
146 * Place a set of indices into gpu array automatically splits
147 * across bounds
148 */
149 VG_STATIC void world_routes_ui_set_indices( struct route_ui_bar *pui,
150 u16 *indices, u32 count )
151 {
152 u32 c0, c1;
153 world_routes_ui_split_indices( pui->indices_head, count, &c0, &c1 );
154
155 glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, pui->ebo );
156
157 if( c0 )
158 {
159 glBufferSubData( GL_ELEMENT_ARRAY_BUFFER, pui->indices_head*sizeof(u16),
160 c0*sizeof(u16), indices );
161 }
162
163 if( c1 )
164 {
165 glBufferSubData( GL_ELEMENT_ARRAY_BUFFER, 0, c1*sizeof(u16), indices+c0 );
166 pui->indices_head = c1;
167 }
168 else
169 pui->indices_head += c0;
170 }
171
172 /*
173 * Place a set of vertices into gpu array
174 */
175 VG_STATIC u32 world_routes_ui_set_verts( struct route_ui_bar *pui,
176 v2f *verts, u32 count )
177 {
178 if( pui->vertex_head + count >= k_route_ui_max_verts )
179 pui->vertex_head = 0;
180
181 u32 vert_start = pui->vertex_head;
182 pui->vertex_head += count;
183
184 glBindBuffer( GL_ARRAY_BUFFER, pui->vbo );
185 glBufferSubData( GL_ARRAY_BUFFER, (GLintptr)(vert_start*sizeof(v2f)),
186 sizeof(v2f)*count, verts );
187
188 return vert_start;
189 }
190
191 /*
192 * Update the last (count) vertices positions, does not add any.
193 * Data must already be written to, and not cross either array boundaries.
194 */
195 VG_STATIC u32 world_routes_ui_update_verts( struct route_ui_bar *pui,
196 v2f *verts, u32 count )
197 {
198 u32 vert_start = pui->vertex_head-count;
199
200 glBindBuffer( GL_ARRAY_BUFFER, pui->vbo );
201 glBufferSubData( GL_ARRAY_BUFFER, (GLintptr)(vert_start*sizeof(v2f)),
202 sizeof(v2f)*count, verts );
203
204 return vert_start;
205 }
206
207 /*
208 * Current/active segment of this UI bar
209 */
210 VG_STATIC struct route_ui_segment *world_routes_ui_curseg(
211 struct route_ui_bar *pui )
212 {
213 u32 index = (pui->segment_start+pui->segment_count-1)%k_max_ui_segments;
214 return &pui->segments[ index ];
215 }
216
217 /*
218 * Start a new segment in the UI bar, will create a split on the last one if
219 * there is one active currently. (api)
220 */
221 VG_STATIC void world_routes_ui_newseg( u32 route )
222 {
223 struct route_ui_bar *pui = &world.ui_bars[route];
224
225 glBindVertexArray( pui->vao );
226 if( pui->segment_count )
227 {
228 float const k_gap_width = 1.0f;
229
230 struct route_ui_segment *cseg = world_routes_ui_curseg( pui );
231
232 v2f verts[2];
233 verts[0][0] = cseg->length-k_gap_width;
234 verts[0][1] = 0.5f;
235 verts[1][0] = cseg->length-k_gap_width;
236 verts[1][1] = -0.5f;
237
238 world_routes_ui_update_verts( pui, verts, 2 );
239 }
240
241 pui->segment_count ++;
242 struct route_ui_segment *segment = world_routes_ui_curseg( pui );
243
244 v2f verts[4];
245 verts[0][0] = 0.0f;
246 verts[0][1] = 0.5f;
247 verts[1][0] = 0.0f;
248 verts[1][1] = -0.5f;
249 verts[2][0] = 0.0f;
250 verts[2][1] = 0.5f;
251 verts[3][0] = 0.0f;
252 verts[3][1] = -0.5f;
253
254 u32 vert_start = world_routes_ui_set_verts( pui, verts, 4 );
255
256 u16 indices[6];
257 indices[0] = vert_start + 0;
258 indices[1] = vert_start + 1;
259 indices[2] = vert_start + 3;
260 indices[3] = vert_start + 0;
261 indices[4] = vert_start + 3;
262 indices[5] = vert_start + 2;
263
264 segment->vertex_start = vert_start;
265 segment->vertex_count = 4;
266 segment->index_start = pui->indices_head;
267 segment->index_count = 6;
268 segment->notches = 0;
269
270 world_routes_ui_set_indices( pui, indices, 6 );
271 }
272
273 /*
274 * Extend the end of the bar
275 */
276 VG_STATIC void world_routes_ui_updatetime( u32 route, float time )
277 {
278 struct route_ui_bar *pui = &world.ui_bars[route];
279
280 v2f verts[2];
281 verts[0][0] = time;
282 verts[0][1] = 0.5f;
283 verts[1][0] = time;
284 verts[1][1] = -0.5f;
285
286 u32 vert_start = pui->vertex_head-2;
287
288 glBindVertexArray( pui->vao );
289 world_routes_ui_update_verts( pui, verts, 2 );
290
291 struct route_ui_segment *cseg = world_routes_ui_curseg( pui );
292 cseg->length = time;
293 }
294
295 VG_STATIC void world_routes_ui_draw_segment( struct route_ui_segment *segment )
296 {
297 u32 c0, c1;
298 world_routes_ui_split_indices( segment->index_start,
299 segment->index_count, &c0, &c1 );
300 if( c0 )
301 glDrawElements( GL_TRIANGLES, c0, GL_UNSIGNED_SHORT,
302 (void *)(segment->index_start*sizeof(u16)));
303 if( c1 )
304 glDrawElements( GL_TRIANGLES, c1, GL_UNSIGNED_SHORT, (void *)(0) );
305 }
306
307 /*
308 * Draws full bar at Y offset(offset).
309 */
310 VG_STATIC void world_routes_ui_draw( u32 route, v4f colour, float offset )
311 {
312 float const k_bar_height = 0.05f,
313 k_bar_scale_x = 0.005f;
314
315 struct route *pr = &world.routes[route];
316 struct route_ui_bar *pui = &world.ui_bars[route];
317
318 float cx = pui->xpos;
319
320 shader_routeui_use();
321 glBindVertexArray( pui->vao );
322
323 float fade_amt = world.time - pui->fade_timer_start;
324 fade_amt = vg_clampf( fade_amt / 1.0f, 0.0f, 1.0f );
325
326 float fade_block_size = 0.0f,
327 main_block_size = 0.0f;
328
329 for( u32 i=0; i<pui->fade_count; i++ )
330 {
331 u32 j = (pui->fade_start + i) % k_max_ui_segments;
332 struct route_ui_segment *segment = &pui->segments[j];
333
334 fade_block_size += segment->length;
335 }
336
337 cx -= fade_block_size * fade_amt;
338
339 v4f fade_colour;
340 v4_copy( colour, fade_colour );
341 fade_colour[3] *= 1.0f-fade_amt;
342
343 /* 1 minute timer */
344 float timer_delta = (world.time - world.last_use) * (1.0/45.0),
345 timer_scale = 1.0f - vg_minf( timer_delta, 1.0f );
346
347 /*
348 * Draw fadeout bar
349 */
350
351 float height = pr->factive*k_bar_height * timer_scale,
352 base = -1.0f + (offset+0.5f)*k_bar_height * timer_scale;
353
354 shader_routeui_uColour( fade_colour );
355 for( u32 i=0; i<pui->fade_count; i++ )
356 {
357 u32 j = (pui->fade_start + i) % k_max_ui_segments;
358 struct route_ui_segment *segment = &pui->segments[j];
359
360 shader_routeui_uOffset( (v4f){ cx*k_bar_scale_x, base,
361 k_bar_scale_x, height } );
362
363 world_routes_ui_draw_segment( segment );
364 cx += segment->length;
365 }
366
367 /*
368 * Draw main bar
369 */
370 shader_routeui_uColour( colour );
371 for( u32 i=0; i<pui->segment_count; i++ )
372 {
373 u32 j = (pui->segment_start + i) % k_max_ui_segments;
374 struct route_ui_segment *segment = &pui->segments[j];
375
376 shader_routeui_uOffset( (v4f){ cx*k_bar_scale_x, base,
377 k_bar_scale_x, height } );
378
379 world_routes_ui_draw_segment( segment );
380 cx += segment->length;
381
382 main_block_size += segment->length;
383 }
384
385 pui->xpos = vg_lerpf( pui->xpos, -main_block_size * 0.5f, 0.03f );
386 }
387
388 VG_STATIC void world_routes_local_set_record( u32 route, double lap_time )
389 {
390 vg_success( " NEW LAP TIME: %f\n", lap_time );
391
392 struct route *pr = &world.routes[route];
393
394 if( pr->track_id != 0xffffffff )
395 {
396 double time_centiseconds = lap_time * 100.0;
397 if( time_centiseconds > (float)0xfffe )
398 return;
399
400 highscore_record temp;
401 temp.trackid = pr->track_id;
402 temp.datetime = time(NULL);
403 temp.playerid = 0;
404 temp.points = 0;
405 temp.time = time_centiseconds;
406
407 highscores_push_record( &temp );
408
409 struct track_info *pti = &track_infos[ pr->track_id ];
410 pti->push = 1;
411
412 if( pti->achievement_id )
413 {
414 steam_set_achievement( pti->achievement_id );
415 steam_store_achievements();
416 }
417 }
418 else
419 {
420 vg_warn( "There is no associated track for this record...\n" );
421 }
422 }
423
424 /*
425 * Will scan the whole run for two things;
426 * 1: we set a new record for the total, complete loop around the course
427 * 2: the time of each segment will be recorded into the data buffer
428 * (not implemented: TODO)
429 */
430 VG_STATIC void world_routes_verify_run( u32 route )
431 {
432 struct route *pr = &world.routes[route];
433 struct route_ui_bar *pui = &world.ui_bars[route];
434
435 u32 stack[64];
436 u32 si = world_routes_get_path( world.routes[route].start, stack );
437
438 /*
439 * we only care about gates that ref gates, so shuffle down the array
440 */
441 struct route_timing *timings[64];
442 u32 sj = 0, maxv = 0, begin = 0;
443 for( u32 i=0; i<si; i++ )
444 {
445 struct route_node *inode = &world.nodes[stack[i]];
446
447 if( inode->special_type == k_route_special_type_collector )
448 {
449 timings[sj ++] = &world.collectors[ inode->special_id ].timing;
450 }
451 else if( inode->special_type == k_route_special_type_gate )
452 {
453 timings[sj ++] = &world.gates[inode->special_id].timing;
454 }
455 }
456
457 for( u32 i=0; i<sj; i++ )
458 {
459 if( timings[i]->version > maxv )
460 {
461 maxv = timings[i]->version;
462 begin = i;
463 }
464 }
465
466 vg_info( "== begin verification (%u) ==\n", route );
467 vg_info( " current version: %u\n", world.current_run_version );
468
469 int verified = 0;
470 if( timings[begin]->version == world.current_run_version )
471 verified = 1;
472
473 int valid_segment_count = 0;
474
475 double lap_time = 0.0;
476
477 for( u32 i=0; i<sj; i++ )
478 {
479 u32 j = (sj+begin-i-1) % sj,
480 j1 = (j+1) % sj;
481
482 double diff = 0.0;
483
484 if( i<sj-1 )
485 {
486 /* j1v should equal jv+1 */
487 if( timings[j1]->version == timings[j]->version+1 )
488 {
489 diff = timings[j1]->time - timings[j]->time;
490 lap_time += diff;
491
492 if( verified && diff > 0.0 ) valid_segment_count ++;
493 }
494 else
495 verified = 0;
496 }
497
498 if( verified )
499 vg_success( " [ %u %f ] %f\n", timings[j1]->time,
500 timings[j1]->version, diff );
501 else
502 vg_warn( " [ %u %f ]\n", timings[j1]->time, timings[j1]->version );
503 }
504
505 pui->fade_start = pui->segment_start;
506 pui->fade_count = 0;
507 pui->fade_timer_start = world.time;
508
509 int orig_seg_count = pui->segment_count;
510
511 world_routes_ui_newseg( route );
512
513 if( verified )
514 {
515 world_routes_local_set_record( route, lap_time );
516 world_routes_ui_popfirst( pui );
517 pui->fade_count ++;
518 }
519 else
520 vg_info( " ctime: %f\n", lap_time );
521
522 /* remove any excess we had from previous runs */
523 int to_remove = orig_seg_count-valid_segment_count;
524 for( int i=0; i<to_remove; i++ )
525 {
526 world_routes_ui_popfirst( pui );
527 pui->fade_count ++;
528 }
529
530 world.routes[route].latest_pass = world.time;
531 }
532
533 /*
534 * When going through a gate this is called for bookkeeping purposes
535 */
536 VG_STATIC void world_routes_activate_gate( u32 id )
537 {
538 struct route_gate *rg = &world.gates[id];
539 struct route_node *pnode = &world.nodes[rg->node_id],
540 *pdest = &world.nodes[pnode->next[0]];
541
542 world.last_use = world.time;
543
544 struct route_collector *rc = &world.collectors[ pdest->special_id ];
545
546 world.active_gate = id;
547 rg->timing.version = world.current_run_version;
548 rg->timing.time = world.time;
549
550 for( u32 i=0; i<world.route_count; i++ )
551 {
552 struct route *route = &world.routes[i];
553
554 int was_active = route->active;
555
556 route->active = 0;
557 for( u32 j=0; j<pdest->ref_count; j++ )
558 {
559 if( pdest->route_ids[j] == i )
560 {
561 world_routes_verify_run( i );
562 route->active = 1;
563 break;
564 }
565 }
566
567 if( was_active && !route->active )
568 {
569 struct route_ui_bar *pui = &world.ui_bars[i];
570 pui->fade_start = pui->segment_start;
571 pui->fade_count = pui->segment_count;
572 pui->fade_timer_start = world.time;
573
574 world_routes_ui_clear( pui );
575 vg_success( "CLEARING -> %u %u \n", pui->fade_start,
576 pui->fade_count );
577 }
578 }
579
580 world.current_run_version ++;
581
582 rc->timing.version = world.current_run_version;
583 rc->timing.time = world.time;
584 world.current_run_version ++;
585 }
586
587 /*
588 * Notify the UI system that we've reset the player
589 */
590 VG_STATIC void world_routes_notify_reset(void)
591 {
592 world.rewind_from = world.time;
593 world.rewind_to = world.last_use;
594
595 #if 0
596 for( int i=0; i<r->route_count; i++ )
597 {
598 struct route *route = &r->routes[i];
599
600 if( route->active )
601 world_routes_ui_notch( i, r->time - route->latest_pass );
602 }
603 #endif
604 }
605
606 /* Rewind between the saved points in time */
607 VG_STATIC void world_routes_rollback_time( double t )
608 {
609 world.time = vg_lerp( world.rewind_to, world.rewind_from, t );
610 }
611
612 /* draw lines along the paths */
613 VG_STATIC void world_routes_debug(void)
614 {
615 for( int i=0; i<world.node_count; i++ )
616 {
617 struct route_node *rn = &world.nodes[i];
618 vg_line_pt3( rn->co, 1.0f, rn->special_type? 0xffffff00: 0xff00b2ff );
619 }
620
621 for( int i=0; i<world.route_count; i++ )
622 {
623 struct route *route = &world.routes[i];
624
625 u32 stack[64];
626 u32 si = world_routes_get_path( route->start, stack );
627
628 u32 colours[] = { 0xfff58142, 0xff42cbf5, 0xff42f56c, 0xfff542b3,
629 0xff5442f5 };
630
631 u32 cc = colours[i%vg_list_size(colours)];
632
633 for( int sj=0; sj<si; sj++ )
634 {
635 int sk = (sj+1)%si;
636
637 struct route_node *pj = &world.nodes[stack[sj]],
638 *pk = &world.nodes[stack[sk]];
639 debug_sbpath( pj, pk, cc, (float)i );
640 }
641 }
642
643 for( int i=0; i<world.node_count; i++ )
644 {
645 struct route_node *ri = &world.nodes[i],
646 *rj = NULL;
647
648 for( int j=0; j<2; j++ )
649 {
650 if( ri->next[j] != 0xffffffff )
651 {
652 rj = &world.nodes[ri->next[j]];
653 vg_line( ri->co, rj->co, 0x20ffffff );
654 }
655 }
656 }
657 }
658
659 VG_STATIC void world_routes_create_mesh( u32 route_id )
660 {
661 struct route *route = &world.routes[ route_id ];
662
663 u32 stack[64];
664 u32 si = world_routes_get_path( route->start, stack );
665
666 u32 last_valid = 0;
667
668 for( int sj=0; sj<si; sj++ )
669 {
670 int sk=(sj+1)%si;
671
672 struct route_node *rnj = &world.nodes[ stack[sj] ],
673 *rnk = &world.nodes[ stack[sk] ],
674 *rnl;
675
676 if( rnj->special_type && rnk->special_type )
677 {
678 last_valid = 0;
679 continue;
680 }
681
682 float base_x0 = (float)rnj->ref_count*-0.5f + (float)rnj->current_refs,
683 base_x1 = (float)rnk->ref_count*-0.5f + (float)rnk->current_refs;
684
685 if( rnk->special_type )
686 {
687 rnl = &world.nodes[ rnk->next[0] ];
688 base_x1 = (float)rnl->ref_count*-0.5f + (float)rnl->current_refs;
689 }
690
691 if( sk == 0 )
692 {
693 base_x1 -= 1.0f;
694 }
695
696 v3f p0, h0, p1, h1, p, pd;
697
698 v3_copy( rnj->co, p0 );
699 v3_muladds( rnj->co, rnj->h, 1.0f, h0 );
700 v3_copy( rnk->co, p1 );
701 v3_muladds( rnk->co, rnk->h, -1.0f, h1 );
702
703 float t=0.0f;
704 int it = 0;
705
706 for( int it=0; it<256; it ++ )
707 {
708 float const k_sample_dist = 0.02f;
709 eval_bezier_time( p0,p1,h0,h1, t,p );
710 eval_bezier_time( p0,p1,h0,h1, t+k_sample_dist,pd );
711
712 float mod = k_sample_dist / v3_dist( p, pd );
713
714 v3f v0,up, right;
715 v3_muls( rnj->up, 1.0f-t, up );
716 v3_muladds( up, rnk->up, t, up );
717
718 v3_sub( pd,p,v0 );
719 v3_cross( up, v0, right );
720 v3_normalize( right );
721
722 float cur_x = (1.0f-t)*base_x0 + t*base_x1;
723
724 v3f sc, sa, sb, down;
725 v3_muladds( p, right, cur_x, sc );
726 v3_muladds( sc, up, 1.5f, sc );
727 v3_muladds( sc, right, 0.45f, sa );
728 v3_muladds( sc, right, -0.45f, sb );
729 v3_muls( up, -1.0f, down );
730
731 ray_hit ha, hb;
732 ha.dist = 8.0f;
733 hb.dist = 8.0f;
734 if( ray_world( sa, down, &ha ) &&
735 ray_world( sb, down, &hb ))
736 {
737 mdl_vert va, vb;
738
739 v3_muladds( ha.pos, up, 0.06f, va.co );
740 v3_muladds( hb.pos, up, 0.06f, vb.co );
741 v3_copy( up, va.norm );
742 v3_copy( up, vb.norm );
743 v2_zero( va.uv );
744 v2_zero( vb.uv );
745
746 scene_push_vert( world.scene_lines, &va );
747 scene_push_vert( world.scene_lines, &vb );
748
749 if( last_valid )
750 {
751 /* Connect them with triangles */
752 scene_push_tri( world.scene_lines, (u32[3]){
753 last_valid+0-2, last_valid+1-2, last_valid+2-2} );
754 scene_push_tri( world.scene_lines, (u32[3]){
755 last_valid+1-2, last_valid+3-2, last_valid+2-2} );
756 }
757
758 last_valid = world.scene_lines->vertex_count;
759 }
760 else
761 last_valid = 0;
762
763 t += 1.0f*mod;
764
765 if( t >= 1.0f )
766 {
767 /* TODO special case for end of loop, need to add triangles
768 * between first and last rungs */
769 break;
770 }
771 }
772
773 rnj->current_refs ++;
774 }
775
776 scene_copy_slice( world.scene_lines, &route->sm );
777 }
778
779 /*
780 * Create the strips of colour that run through the world along course paths
781 */
782 VG_STATIC void world_routes_generate(void)
783 {
784 vg_info( "Generating route meshes\n" );
785 world.scene_lines = scene_init( world.dynamic_vgl, 200000, 300000 );
786
787 for( u32 i=0; i<world.route_count; i++ )
788 world_routes_create_mesh( i );
789
790 vg_acquire_thread_sync();
791 {
792 scene_upload( world.scene_lines, &world.mesh_route_lines );
793 }
794 vg_release_thread_sync();
795 vg_linear_del( world.dynamic_vgl, world.scene_lines );
796 }
797
798 /* determine if special type is required for this gate */
799 VG_STATIC enum route_special_type world_route_node_type( mdl_node *pnode )
800 {
801 if( pnode->classtype == k_classtype_gate )
802 {
803 struct classtype_gate *inf = mdl_get_entdata( world.meta, pnode );
804
805 if( inf->target )
806 {
807 mdl_node *pother = mdl_node_from_id( world.meta, inf->target );
808
809 if( pother->classtype == k_classtype_gate )
810 {
811 return k_route_special_type_gate;
812 }
813 }
814
815 return k_route_special_type_collector;
816 }
817
818 return k_route_special_type_none;
819 }
820
821 /* count entities and allocate correct amount of memory in advance */
822 VG_STATIC void world_routes_allocate(void)
823 {
824 vg_info( "Allocating routes\n" );
825
826 /* count */
827 u32 node_count = 0,
828 route_count = 0,
829 gate_count = 0,
830 collector_count = 0;
831
832 for( int i=0; i<world.meta->info.node_count; i++ )
833 {
834 mdl_node *pnode = mdl_node_from_id( world.meta, i );
835
836 if( pnode->classtype == k_classtype_route_node ||
837 pnode->classtype == k_classtype_gate )
838 {
839 pnode->sub_uid = node_count;
840
841 enum route_special_type type = world_route_node_type( pnode );
842
843 if( type == k_route_special_type_gate )
844 gate_count ++;
845 else if( type == k_route_special_type_collector )
846 collector_count ++;
847
848 node_count ++;
849 }
850 else if( pnode->classtype == k_classtype_route )
851 {
852 route_count ++;
853 }
854 }
855
856 /* allocate */
857 u32 node_size = node_count * sizeof(struct route_node),
858 route_size = route_count * sizeof(struct route),
859 gate_size = gate_count * sizeof(struct route_gate),
860 collector_size = collector_count * sizeof(struct route_collector);
861
862 world.nodes = vg_linear_alloc( world.dynamic_vgl, node_size );
863 world.routes = vg_linear_alloc( world.dynamic_vgl, route_size );
864 world.gates = vg_linear_alloc( world.dynamic_vgl, gate_size );
865 world.collectors = vg_linear_alloc( world.dynamic_vgl, collector_size );
866 }
867
868 /* create node from mdl node */
869 VG_STATIC struct route_node *world_routes_create_node( mdl_node *pnode )
870 {
871 struct route_node *rn = &world.nodes[ world.node_count ++ ];
872
873 m4x3f transform;
874 mdl_node_transform( pnode, transform );
875
876 v3_copy( transform[3], rn->co );
877 v3_copy( transform[0], rn->right );
878 v3_copy( transform[1], rn->up );
879 v3_muls( transform[2], -1.0f, rn->h );
880 v3_normalize( rn->right );
881 v3_normalize( rn->up );
882
883 rn->next[0] = 0xffffffff;
884 rn->next[1] = 0xffffffff;
885
886 rn->special_type = 0;
887 rn->special_id = 0;
888 rn->current_refs = 0;
889 rn->ref_count = 0;
890
891 return rn;
892 }
893
894 /* retrieve the correct node id from mdl subuid */
895 VG_STATIC u32 world_routes_get_subuid( u32 target )
896 {
897 if( target == 0 )
898 return 0xffffffff;
899 else
900 return mdl_node_from_id( world.meta, target )->sub_uid;
901 }
902
903 #if 0
904 VG_STATIC void world_id_fixup( u32 *uid, mdl_context *mdl )
905 {
906 if( *uid )
907 *uid = mdl_node_from_id( mdl, *uid )->sub_uid;
908 else
909 *uid = 0xffffffff;
910 }
911 #endif
912
913 /* process gate attachement onto node */
914 VG_STATIC void world_routes_process_gate( struct route_node *rn,
915 mdl_node *pnode )
916 {
917 struct classtype_gate *inf = mdl_get_entdata( world.meta, pnode );
918
919 /* H is later scaled based on link distance */
920 v3_normalize( rn->h );
921
922 rn->next[0] = world_routes_get_subuid( inf->target );
923 rn->next[1] = 0xffffffff;
924 rn->special_type = world_route_node_type( pnode );
925
926 /* process gate type */
927 if( rn->special_type == k_route_special_type_gate )
928 {
929 mdl_node *pother = mdl_node_from_id( world.meta, inf->target );
930
931 struct route_gate *rg = &world.gates[ world.gate_count ];
932
933 rg->node_id = world.node_count-1;
934 rg->timing.time = 0.0;
935 rg->timing.version = 0;
936
937 v3_copy( pnode->co, rg->gate.co[0] );
938 v3_copy( pother->co, rg->gate.co[1] );
939 v4_copy( pnode->q, rg->gate.q[0] );
940 v4_copy( pother->q, rg->gate.q[1] );
941 v2_copy( inf->dims, rg->gate.dims );
942
943 gate_transform_update( &rg->gate );
944 rn->special_id = world.gate_count;
945
946 world.gate_count ++;
947 }
948
949 /* process collector type */
950 else if( rn->special_type == k_route_special_type_collector )
951 {
952 struct route_collector *rc =
953 &world.collectors[ world.collector_count ];
954
955 rc->timing.time = 0.0;
956 rc->timing.version = 0;
957
958 rn->special_id = world.collector_count;
959 world.collector_count ++;
960 }
961 else
962 vg_fatal_exit_loop( "Invalid state" );
963 }
964
965 /* create route from node description */
966 VG_STATIC void world_routes_create_route( mdl_node *pnode )
967 {
968 mdl_context *mdl = world.meta;
969
970 struct classtype_route *inf = mdl_get_entdata( mdl, pnode );
971 struct route *route = &world.routes[ world.route_count ];
972 memset( route, 0, sizeof(struct route) );
973
974 v3_copy( inf->colour, route->colour );
975 route->colour[3] = 1.0f;
976 route->track_id = 0xffffffff;
977
978 for( u32 j=0; j<vg_list_size(track_infos); j++ )
979 {
980 if( !strcmp( mdl_pstr(mdl,pnode->pstr_name), track_infos[j].name ))
981 {
982 route->track_id = j;
983 break;
984 }
985 }
986
987 route->start = world_routes_get_subuid( inf->id_start );
988 route->active = 0;
989 route->factive = 0.0f;
990 mdl_node_transform( pnode, route->scoreboard_transform );
991
992 struct route_ui_bar *pui = &world.ui_bars[ world.route_count ];
993 pui->indices_head = k_route_ui_max_indices - 9;
994 pui->vertex_head = k_route_ui_max_verts - 200;
995 pui->segment_start = 0;
996 pui->segment_count = 0;
997 pui->fade_start = 0;
998 pui->fade_count = 0;
999 pui->fade_timer_start = 0.0;
1000
1001 world.route_count ++;
1002 }
1003
1004 /* load all routes from model header */
1005 VG_STATIC void world_routes_process(void)
1006 {
1007 vg_info( "Initializing routes\n" );
1008 mdl_context *mdl = world.meta;
1009
1010 for( int i=0; i<mdl->info.node_count; i++ )
1011 {
1012 mdl_node *pnode = mdl_node_from_id(mdl,i);
1013
1014 if( pnode->classtype == k_classtype_route_node ||
1015 pnode->classtype == k_classtype_gate )
1016 {
1017 struct route_node *rn = world_routes_create_node( pnode );
1018
1019 if( pnode->classtype == k_classtype_gate )
1020 {
1021 world_routes_process_gate( rn, pnode );
1022 }
1023 else
1024 {
1025 struct classtype_route_node *inf = mdl_get_entdata( mdl, pnode );
1026 rn->next[0] = world_routes_get_subuid( inf->target );
1027 rn->next[1] = world_routes_get_subuid( inf->target1 );
1028 }
1029 }
1030 else if( pnode->classtype == k_classtype_route )
1031 {
1032 world_routes_create_route( pnode );
1033 }
1034 }
1035
1036 /*
1037 * Gather references
1038 */
1039 for( int i=0; i<world.route_count; i++ )
1040 {
1041 struct route *route = &world.routes[i];
1042
1043 u32 stack[64];
1044 u32 si = world_routes_get_path( route->start, stack );
1045
1046 for( int sj=0; sj<si; sj++ )
1047 {
1048 struct route_node *rn = &world.nodes[ stack[sj] ];
1049 rn->route_ids[ rn->ref_count ++ ] = i;
1050
1051 if( rn->ref_count > 4 )
1052 vg_warn( "Too many references on route node %i\n", i );
1053 }
1054 }
1055 }
1056
1057 /*
1058 * -----------------------------------------------------------------------------
1059 * Events
1060 * -----------------------------------------------------------------------------
1061 */
1062
1063 VG_STATIC void world_routes_init(void)
1064 {
1065 world.current_run_version = 2;
1066 world.time = RESET_MAX_TIME*2.0;
1067 world.last_use = 0.0;
1068
1069 shader_route_register();
1070 shader_routeui_register();
1071
1072 vg_acquire_thread_sync();
1073 {
1074 /* UI buffers */
1075 for( int i=0; i<vg_list_size(world.ui_bars); i++ )
1076 {
1077 /* OpenGL strips */
1078 struct route_ui_bar *pui = &world.ui_bars[i];
1079
1080 glGenVertexArrays( 1, &pui->vao );
1081 glGenBuffers( 1, &pui->vbo );
1082 glGenBuffers( 1, &pui->ebo );
1083 glBindVertexArray( pui->vao );
1084
1085 size_t stride = sizeof(v2f);
1086
1087 glBindBuffer( GL_ARRAY_BUFFER, pui->vbo );
1088 glBufferData( GL_ARRAY_BUFFER, k_route_ui_max_verts*stride,
1089 NULL, GL_DYNAMIC_DRAW );
1090
1091 glBindVertexArray( pui->vao );
1092 glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, pui->ebo );
1093 glBufferData( GL_ELEMENT_ARRAY_BUFFER,
1094 k_route_ui_max_indices*sizeof(u16), NULL,
1095 GL_DYNAMIC_DRAW );
1096
1097 glVertexAttribPointer( 0, 2, GL_FLOAT, GL_FALSE, stride, (void *)0 );
1098 glEnableVertexAttribArray( 0 );
1099 VG_CHECK_GL_ERR();
1100 }
1101 }
1102 vg_release_thread_sync();
1103 }
1104
1105 VG_STATIC void world_routes_update(void)
1106 {
1107 world.time += vg.time_delta;
1108
1109 for( int i=0; i<world.route_count; i++ )
1110 {
1111 struct route *route = &world.routes[i];
1112 route->factive = vg_lerpf( route->factive, route->active,
1113 0.6f*vg.time_delta );
1114
1115 if( route->active )
1116 {
1117 world_routes_ui_updatetime(i, world.time - route->latest_pass );
1118 }
1119 }
1120 }
1121
1122 VG_STATIC void bind_terrain_noise(void);
1123 VG_STATIC void render_world_routes( m4x4f projection, v3f camera )
1124 {
1125 m4x3f identity_matrix;
1126 m4x3_identity( identity_matrix );
1127
1128 shader_route_use();
1129 shader_route_uTexGarbage(0);
1130 shader_link_standard_ub( _shader_route.id, 2 );
1131 bind_terrain_noise();
1132
1133 shader_route_uPv( projection );
1134 shader_route_uMdl( identity_matrix );
1135 shader_route_uCamera( camera );
1136
1137 mesh_bind( &world.mesh_route_lines );
1138
1139 for( int i=0; i<world.route_count; i++ )
1140 {
1141 struct route *route = &world.routes[i];
1142
1143 v4f colour;
1144 v3_lerp( (v3f){0.7f,0.7f,0.7f}, route->colour, route->factive, colour );
1145 colour[3] = 1.0f;
1146
1147 shader_route_uColour( colour );
1148 mdl_draw_submesh( &route->sm );
1149 }
1150 }
1151
1152 VG_STATIC void render_world_routes_ui(void)
1153 {
1154 glEnable(GL_BLEND);
1155 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
1156 glBlendEquation(GL_FUNC_ADD);
1157
1158 float active_offset = 0.0f;
1159 for( int i=0; i<world.route_count; i++ )
1160 {
1161 struct route *route = &world.routes[i];
1162 world_routes_ui_draw( i, route->colour, active_offset );
1163 active_offset += route->factive;
1164 }
1165
1166 glDisable(GL_BLEND);
1167 }
1168
1169 #endif /* ROUTES_H */