X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_routes.h;h=e53f0920537bea10fe3eebcfd66c9855fcac5e21;hb=4f96bd0040e35ecb21d353ee2b895129682d22c1;hp=5ebcbcc97a47df87a9e7b9d4a10bc4b3ff821bf2;hpb=55b17b4ef5e56ee515656960609843d5365b4d93;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_routes.h b/world_routes.h index 5ebcbcc..e53f092 100644 --- a/world_routes.h +++ b/world_routes.h @@ -1,114 +1,24 @@ +/* + * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved + */ + #ifndef ROUTES_H #define ROUTES_H -#include "common.h" -#include "model.h" -#include "gate.h" +#include "world.h" +#include "world_gate.h" #include "shaders/vblend.h" #include "shaders/route.h" #include "shaders/routeui.h" + enum route_special_type { k_route_special_type_gate = 1, k_route_special_type_collector = 2 }; -enum { k_max_ui_segments = 32 }; -enum { k_route_ui_max_verts = 2000 }; -enum { k_route_ui_max_indices = 3000 }; - -struct subworld_routes -{ - struct route_node - { - v3f co, right, up, h; - u32 next[2]; - - u32 special_type, special_id, current_refs, ref_count; - u32 route_ids[4]; /* Gates can be linked into up to four routes */ - } - *nodes; - - u32 node_count, - node_cap; - - struct route - { - const char *name; - v4f colour; - - u32 start; - mdl_submesh sm; - - int active; - float factive; - - double best_lap, latest_pass; /* Session */ - - struct - { - GLuint vao, vbo, ebo; - - u32 indices_head; - u32 vertex_head; - - float last_notch; - - struct route_ui_segment - { - float length; - u32 vertex_start, vertex_count, - index_start, index_count; - } - segments[k_max_ui_segments]; - - u32 segment_start, segment_count, fade_start, fade_count; - double fade_timer_start; - float xpos; - } - ui; - } - *routes; - - u32 route_count, - route_cap; - - struct route_gate - { - teleport_gate gate; - - u32 node_id; - - struct route_timing - { - u32 version; /* Incremented on every teleport */ - double time; - } - timing; - } - *gates; - - struct route_collector - { - struct route_timing timing; - } - *collectors; - - u32 gate_count, - gate_cap, - collector_count, - collector_cap; - - u32 active_gate, - current_run_version; - - scene scene_lines; -}; - -static struct subworld_routes *subworld_routes(void); - static void debug_sbpath( struct route_node *rna, struct route_node *rnb, u32 colour, float xoffset ) { @@ -140,7 +50,6 @@ static void debug_sbpath( struct route_node *rna, struct route_node *rnb, */ static u32 world_routes_get_path( u32 starter, u32 stack[64] ) { - struct subworld_routes *r = subworld_routes(); u32 stack_i[64]; stack[0] = starter; @@ -157,7 +66,7 @@ static u32 world_routes_get_path( u32 starter, u32 stack[64] ) continue; } - struct route_node *rn = &r->nodes[stack[si-1]]; + struct route_node *rn = &world_routes.nodes[stack[si-1]]; u32 nextid = rn->next[stack_i[si-1]]; stack_i[si-1] ++; @@ -200,8 +109,7 @@ static u32 world_routes_get_path( u32 starter, u32 stack[64] ) */ static void world_routes_ui_popfirst( u32 route ) { - struct subworld_routes *r = subworld_routes(); - struct route *pr = &r->routes[route]; + struct route *pr = &world_routes.routes[route]; if( pr->ui.segment_count ) { @@ -219,8 +127,7 @@ static void world_routes_ui_popfirst( u32 route ) */ static void world_routes_ui_clear( u32 route ) { - struct subworld_routes *r = subworld_routes(); - struct route *pr = &r->routes[route]; + struct route *pr = &world_routes.routes[route]; pr->ui.segment_start = (pr->ui.segment_start + pr->ui.segment_count) % k_max_ui_segments; pr->ui.segment_count = 0; @@ -312,8 +219,7 @@ static struct route_ui_segment *world_routes_ui_curseg( struct route *pr ) */ static void world_routes_ui_newseg( u32 route ) { - struct subworld_routes *r = subworld_routes(); - struct route *pr = &r->routes[route]; + struct route *pr = &world_routes.routes[route]; pr->ui.last_notch = 0.0; @@ -360,6 +266,7 @@ static void world_routes_ui_newseg( u32 route ) segment->vertex_count = 4; segment->index_start = pr->ui.indices_head; segment->index_count = 6; + segment->notches = 0; world_routes_ui_set_indices( pr, indices, 6 ); } @@ -369,8 +276,7 @@ static void world_routes_ui_newseg( u32 route ) */ static void world_routes_ui_updatetime( u32 route, float time ) { - struct subworld_routes *r = subworld_routes(); - struct route *pr = &r->routes[route]; + struct route *pr = &world_routes.routes[route]; v2f verts[2]; verts[0][0] = time; @@ -392,11 +298,18 @@ static void world_routes_ui_updatetime( u32 route, float time ) */ static void world_routes_ui_notch( u32 route, float time ) { - struct subworld_routes *r = subworld_routes(); - struct route *pr = &r->routes[route]; + return; /* FIXME: Temporarily disabled */ + + struct route *pr = &world_routes.routes[route]; if( (time - pr->ui.last_notch) > 1.0 ) { + struct route_ui_segment *segment = world_routes_ui_curseg(pr); + if( segment->notches == k_max_ui_splits_per_segment ) + return; + + segment->notches ++; + v2f verts[8]; float const k_notch_width = 1.0f; @@ -455,7 +368,6 @@ static void world_routes_ui_notch( u32 route, float time ) pr->ui.last_notch = time; - struct route_ui_segment *segment = world_routes_ui_curseg(pr); segment->vertex_count += 6; segment->index_count += 18; } @@ -481,15 +393,14 @@ static void world_routes_ui_draw( u32 route, v4f colour, float offset ) float const k_bar_height = 0.05f, k_bar_scale_x = 0.005f; - struct subworld_routes *r = subworld_routes(); - struct route *pr = &r->routes[route]; + struct route *pr = &world_routes.routes[route]; float cx = pr->ui.xpos; shader_routeui_use(); glBindVertexArray( pr->ui.vao ); - float fade_amt = vg_time - pr->ui.fade_timer_start; + float fade_amt = world_routes.time - pr->ui.fade_timer_start; fade_amt = vg_clampf( fade_amt / 1.0f, 0.0f, 1.0f ); float fade_block_size = 0.0f, @@ -509,12 +420,16 @@ static void world_routes_ui_draw( u32 route, v4f colour, float offset ) v4_copy( colour, fade_colour ); fade_colour[3] *= 1.0f-fade_amt; + /* 1 minute timer */ + float timer_delta = (world_routes.time - world_routes.last_use) * (1.0/45.0), + timer_scale = 1.0f - vg_minf( timer_delta, 1.0f ); + /* * Draw fadeout bar */ - float height = pr->factive*k_bar_height, - base = -1.0f + (offset+0.5f)*k_bar_height; + float height = pr->factive*k_bar_height * timer_scale, + base = -1.0f + (offset+0.5f)*k_bar_height * timer_scale; shader_routeui_uColour( fade_colour ); for( u32 i=0; iui.fade_count; i++ ) @@ -550,6 +465,42 @@ static void world_routes_ui_draw( u32 route, v4f colour, float offset ) pr->ui.xpos = vg_lerpf( pr->ui.xpos, -main_block_size * 0.5f, 0.03f ); } +static void world_routes_local_set_record( u32 route, double lap_time ) +{ + vg_success( " NEW LAP TIME: %f\n", lap_time ); + + struct route *pr = &world_routes.routes[route]; + + if( pr->track_id != 0xffffffff ) + { + double time_centiseconds = lap_time * 100.0; + if( time_centiseconds > (float)0xfffe ) + return; + + highscore_record temp; + temp.trackid = pr->track_id; + temp.datetime = time(NULL); + temp.playerid = 0; + temp.points = 0; + temp.time = time_centiseconds; + + highscores_push_record( &temp ); + + struct track_info *pti = &track_infos[ pr->track_id ]; + pti->push = 1; + + if( pti->achievement_id ) + { + steam_set_achievement( pti->achievement_id ); + steam_store_achievements(); + } + } + else + { + vg_warn( "There is no associated track for this record...\n" ); + } +} + /* * Will scan the whole run for two things; * 1: we set a new record for the total, complete loop around the course @@ -558,11 +509,10 @@ static void world_routes_ui_draw( u32 route, v4f colour, float offset ) */ static void world_routes_verify_run( u32 route ) { - struct subworld_routes *r = subworld_routes(); - struct route *pr = &r->routes[route]; + struct route *pr = &world_routes.routes[route]; u32 stack[64]; - u32 si = world_routes_get_path( r->routes[route].start, stack ); + u32 si = world_routes_get_path( world_routes.routes[route].start, stack ); /* * we only care about gates that ref gates, so shuffle down the array @@ -571,10 +521,16 @@ static void world_routes_verify_run( u32 route ) u32 sj = 0, maxv = 0, begin = 0; for( u32 i=0; inodes[stack[i]].special_type == k_route_special_type_collector ) - timings[sj ++] = &r->collectors[r->nodes[stack[i]].special_id].timing; - else if( r->nodes[stack[i]].special_type == k_route_special_type_gate ) - timings[sj ++] = &r->gates[r->nodes[stack[i]].special_id].timing; + struct route_node *inode = &world_routes.nodes[stack[i]]; + + if( inode->special_type == k_route_special_type_collector ) + { + timings[sj ++] = &world_routes.collectors[ inode->special_id ].timing; + } + else if( inode->special_type == k_route_special_type_gate ) + { + timings[sj ++] = &world_routes.gates[inode->special_id].timing; + } } for( u32 i=0; icurrent_run_version ); + vg_info( " current version: %u\n", world_routes.current_run_version ); int verified = 0; - if( timings[begin]->version == r->current_run_version ) + if( timings[begin]->version == world_routes.current_run_version ) verified = 1; int valid_segment_count = 0; @@ -627,7 +583,7 @@ static void world_routes_verify_run( u32 route ) pr->ui.fade_start = pr->ui.segment_start; pr->ui.fade_count = 0; - pr->ui.fade_timer_start = vg_time; + pr->ui.fade_timer_start = world_routes.time; int orig_seg_count = pr->ui.segment_count; @@ -635,7 +591,7 @@ static void world_routes_verify_run( u32 route ) if( verified ) { - vg_success( " NEW LAP TIME: %f\n", lap_time ); + world_routes_local_set_record( route, lap_time ); world_routes_ui_popfirst(route); pr->ui.fade_count ++; } @@ -650,7 +606,7 @@ static void world_routes_verify_run( u32 route ) pr->ui.fade_count ++; } - r->routes[route].latest_pass = vg_time; + world_routes.routes[route].latest_pass = world_routes.time; } /* @@ -658,19 +614,20 @@ static void world_routes_verify_run( u32 route ) */ static void world_routes_activate_gate( u32 id ) { - struct subworld_routes *r = subworld_routes(); - struct route_gate *rg = &r->gates[id]; - struct route_node *pnode = &r->nodes[rg->node_id], - *pdest = &r->nodes[pnode->next[0]]; + struct route_gate *rg = &world_routes.gates[id]; + struct route_node *pnode = &world_routes.nodes[rg->node_id], + *pdest = &world_routes.nodes[pnode->next[0]]; + + world_routes.last_use = world_routes.time; - struct route_collector *rc = &r->collectors[ pdest->special_id ]; + struct route_collector *rc = &world_routes.collectors[ pdest->special_id ]; - r->active_gate = id; - rg->timing.version = r->current_run_version; - rg->timing.time = vg_time; - for( u32 i=0; iroute_count; i++ ) + world_routes.active_gate = id; + rg->timing.version = world_routes.current_run_version; + rg->timing.time = world_routes.time; + for( u32 i=0; iroutes[i]; + struct route *route = &world_routes.routes[i]; int was_active = route->active; @@ -689,7 +646,7 @@ static void world_routes_activate_gate( u32 id ) { route->ui.fade_start = route->ui.segment_start; route->ui.fade_count = route->ui.segment_count; - route->ui.fade_timer_start = vg_time; + route->ui.fade_timer_start = world_routes.time; world_routes_ui_clear(i); vg_success( "CLEARING -> %u %u \n", route->ui.fade_start, @@ -697,11 +654,11 @@ static void world_routes_activate_gate( u32 id ) } } - r->current_run_version ++; + world_routes.current_run_version ++; - rc->timing.version = r->current_run_version; - rc->timing.time = vg_time; - r->current_run_version ++; + rc->timing.version = world_routes.current_run_version; + rc->timing.time = world_routes.time; + world_routes.current_run_version ++; } /* @@ -709,30 +666,40 @@ static void world_routes_activate_gate( u32 id ) */ static void world_routes_notify_reset(void) { - struct subworld_routes *r = subworld_routes(); + world_routes.rewind_from = world_routes.time; + world_routes.rewind_to = world_routes.last_use; +#if 0 for( int i=0; iroute_count; i++ ) { struct route *route = &r->routes[i]; if( route->active ) - world_routes_ui_notch( i, vg_time - route->latest_pass ); + world_routes_ui_notch( i, r->time - route->latest_pass ); } +#endif } +/* Rewind between the saved points in time */ +static void world_routes_rollback_time( double t ) +{ + world_routes.time = + vg_lerp( world_routes.rewind_to, world_routes.rewind_from, t ); +} + +/* draw lines along the paths */ static void world_routes_debug(void) { - struct subworld_routes *r = subworld_routes(); - for( int i=0; inode_count; i++ ) + for( int i=0; inodes[i]; + struct route_node *rn = &world_routes.nodes[i]; vg_line_pt3( rn->co, 1.0f, rn->special_type? 0xffffff00: 0xff00b2ff ); } - for( int i=0; iroute_count; i++ ) + for( int i=0; iroutes[i]; + struct route *route = &world_routes.routes[i]; u32 stack[64]; u32 si = world_routes_get_path( route->start, stack ); @@ -745,36 +712,29 @@ static void world_routes_debug(void) for( int sj=0; sjnodes[stack[sj]], &r->nodes[stack[sk]], cc, - (float)i ); + + struct route_node *pj = &world_routes.nodes[stack[sj]], + *pk = &world_routes.nodes[stack[sk]]; + debug_sbpath( pj, pk, cc, (float)i ); } } - for( int i=0; inode_count; i++ ) + for( int i=0; inodes[i], + struct route_node *ri = &world_routes.nodes[i], *rj = NULL; for( int j=0; j<2; j++ ) { if( ri->next[j] != 0xffffffff ) { - rj = &r->nodes[ri->next[j]]; + rj = &world_routes.nodes[ri->next[j]]; vg_line( ri->co, rj->co, 0x20ffffff ); } } } } -static void world_routes_free(void) -{ - struct subworld_routes *r = subworld_routes(); - - free( r->nodes ); - free( r->routes ); - free( r->gates ); -} - static void world_id_fixup( u32 *uid, mdl_header *mdl ) { if( *uid ) @@ -783,229 +743,192 @@ static void world_id_fixup( u32 *uid, mdl_header *mdl ) *uid = 0xffffffff; } -/* - * Create the strips of colour that run through the world along course paths - */ -static void world_routes_gen_meshes(void) +static void world_routes_create_mesh( u32 route_id ) { - struct subworld_routes *r = subworld_routes(); - scene_init( &r->scene_lines ); + struct route *route = &world_routes.routes[ route_id ]; - for( int i=0; iroute_count; i++ ) - { - struct route *route = &r->routes[i]; + u32 stack[64]; + u32 si = world_routes_get_path( route->start, stack ); - u32 stack[64]; - u32 si = world_routes_get_path( route->start, stack ); + u32 last_valid = 0; - u32 last_valid = 0; + for( int sj=0; sjspecial_type && rnk->special_type ) { - int sk=(sj+1)%si; - - struct route_node *rnj = &r->nodes[ stack[sj] ], - *rnk = &r->nodes[ stack[sk] ], - *rnl; - - if( rnj->special_type && rnk->special_type ) - { - last_valid = 0; - continue; - } + last_valid = 0; + continue; + } - float base_x0 = (float)rnj->ref_count*-0.5f + (float)rnj->current_refs, - base_x1 = (float)rnk->ref_count*-0.5f + (float)rnk->current_refs; + float base_x0 = (float)rnj->ref_count*-0.5f + (float)rnj->current_refs, + base_x1 = (float)rnk->ref_count*-0.5f + (float)rnk->current_refs; - if( rnk->special_type ) - { - rnl = &r->nodes[ rnk->next[0] ]; - base_x1 = (float)rnl->ref_count*-0.5f + (float)rnl->current_refs; - } + if( rnk->special_type ) + { + rnl = &world_routes.nodes[ rnk->next[0] ]; + base_x1 = (float)rnl->ref_count*-0.5f + (float)rnl->current_refs; + } - if( sk == 0 ) - { - base_x1 -= 1.0f; - } + if( sk == 0 ) + { + base_x1 -= 1.0f; + } - v3f p0, h0, p1, h1, p, pd; - - v3_copy( rnj->co, p0 ); - v3_muladds( rnj->co, rnj->h, 1.0f, h0 ); - v3_copy( rnk->co, p1 ); - v3_muladds( rnk->co, rnk->h, -1.0f, h1 ); + v3f p0, h0, p1, h1, p, pd; + + v3_copy( rnj->co, p0 ); + v3_muladds( rnj->co, rnj->h, 1.0f, h0 ); + v3_copy( rnk->co, p1 ); + v3_muladds( rnk->co, rnk->h, -1.0f, h1 ); - float t=0.0f; - int it = 0; + float t=0.0f; + int it = 0; - for( int it=0; it<256; it ++ ) - { - float const k_sample_dist = 0.02f; - eval_bezier_time( p0,p1,h0,h1, t,p ); - eval_bezier_time( p0,p1,h0,h1, t+k_sample_dist,pd ); + for( int it=0; it<256; it ++ ) + { + float const k_sample_dist = 0.02f; + eval_bezier_time( p0,p1,h0,h1, t,p ); + eval_bezier_time( p0,p1,h0,h1, t+k_sample_dist,pd ); - float mod = k_sample_dist / v3_dist( p, pd ); + float mod = k_sample_dist / v3_dist( p, pd ); - v3f v0,up, right; - v3_muls( rnj->up, 1.0f-t, up ); - v3_muladds( up, rnk->up, t, up ); + v3f v0,up, right; + v3_muls( rnj->up, 1.0f-t, up ); + v3_muladds( up, rnk->up, t, up ); - v3_sub( pd,p,v0 ); - v3_cross( up, v0, right ); - v3_normalize( right ); + v3_sub( pd,p,v0 ); + v3_cross( up, v0, right ); + v3_normalize( right ); - float cur_x = (1.0f-t)*base_x0 + t*base_x1; - - v3f sc, sa, sb, down; - v3_muladds( p, right, cur_x, sc ); - v3_muladds( sc, up, 1.5f, sc ); - v3_muladds( sc, right, 0.45f, sa ); - v3_muladds( sc, right, -0.45f, sb ); - v3_muls( up, -1.0f, down ); + float cur_x = (1.0f-t)*base_x0 + t*base_x1; + + v3f sc, sa, sb, down; + v3_muladds( p, right, cur_x, sc ); + v3_muladds( sc, up, 1.5f, sc ); + v3_muladds( sc, right, 0.45f, sa ); + v3_muladds( sc, right, -0.45f, sb ); + v3_muls( up, -1.0f, down ); + + ray_hit ha, hb; + ha.dist = 8.0f; + hb.dist = 8.0f; + if( ray_world( sa, down, &ha ) && + ray_world( sb, down, &hb )) + { + mdl_vert va, vb; - ray_hit ha, hb; - ha.dist = 8.0f; - hb.dist = 8.0f; - if(ray_world( sa, down, &ha ) && - ray_world( sb, down, &hb )) - { - mdl_vert va, vb; - - v3_muladds( ha.pos, up, 0.06f, va.co ); - v3_muladds( hb.pos, up, 0.06f, vb.co ); - v3_copy( up, va.norm ); - v3_copy( up, vb.norm ); - v3_zero( va.colour ); - v3_zero( vb.colour ); - v2_zero( va.uv ); - v2_zero( vb.uv ); - - scene_push_vert( &r->scene_lines, &va ); - scene_push_vert( &r->scene_lines, &vb ); - - if( last_valid ) - { - /* Connect them with triangles */ - scene_push_tri( &r->scene_lines, (u32[3]){ - last_valid+0-2, last_valid+1-2, last_valid+2-2} ); - scene_push_tri( &r->scene_lines, (u32[3]){ - last_valid+1-2, last_valid+3-2, last_valid+2-2} ); - } - - last_valid = r->scene_lines.vertex_count; - } - else - last_valid = 0; + v3_muladds( ha.pos, up, 0.06f, va.co ); + v3_muladds( hb.pos, up, 0.06f, vb.co ); + v3_copy( up, va.norm ); + v3_copy( up, vb.norm ); + v2_zero( va.uv ); + v2_zero( vb.uv ); - t += 1.0f*mod; + scene_push_vert( &world_routes.scene_lines, &va ); + scene_push_vert( &world_routes.scene_lines, &vb ); - if( t >= 1.0f ) + if( last_valid ) { - /* TODO special case for end of loop, need to add triangles - * between first and last rungs */ - break; + /* Connect them with triangles */ + scene_push_tri( &world_routes.scene_lines, (u32[3]){ + last_valid+0-2, last_valid+1-2, last_valid+2-2} ); + scene_push_tri( &world_routes.scene_lines, (u32[3]){ + last_valid+1-2, last_valid+3-2, last_valid+2-2} ); } + + last_valid = world_routes.scene_lines.vertex_count; } + else + last_valid = 0; - rnj->current_refs ++; + t += 1.0f*mod; + + if( t >= 1.0f ) + { + /* TODO special case for end of loop, need to add triangles + * between first and last rungs */ + break; + } } - scene_copy_slice( &r->scene_lines, &route->sm ); + rnj->current_refs ++; } - scene_upload( &r->scene_lines ); - scene_free_offline_buffers( &r->scene_lines ); + scene_copy_slice( &world_routes.scene_lines, &route->sm ); } -static void world_routes_update(void) +/* + * Create the strips of colour that run through the world along course paths + */ +static int world_routes_create_all_meshes(void) { - struct subworld_routes *r = subworld_routes(); - - for( int i=0; iroute_count; i++ ) - { - struct route *route = &r->routes[i]; - route->factive = vg_lerpf( route->factive, route->active, 0.01f ); - - if( route->active ) - { - world_routes_ui_updatetime( i, vg_time - route->latest_pass ); - } - } -} + vg_info( "Generating route meshes\n" ); -static void bind_terrain_textures(void); -static void render_world_routes( m4x4f projection, v3f camera ) -{ - struct subworld_routes *r = subworld_routes(); + scene_init( &world_routes.scene_lines ); - m4x3f identity_matrix; - m4x3_identity( identity_matrix ); + for( u32 i=0; iscene_lines ); - - for( int i=0; iroute_count; i++ ) + vg_acquire_thread_sync(); { - struct route *route = &r->routes[i]; + scene_upload( &world_routes.scene_lines ); - v4f colour; - v3_lerp( (v3f){0.7f,0.7f,0.7f}, route->colour, route->factive, colour ); - colour[3] = 1.0f; + /* UI buffers */ + for( int i=0; ism ); - } -} + glGenVertexArrays( 1, &route->ui.vao ); + glGenBuffers( 1, &route->ui.vbo ); + glGenBuffers( 1, &route->ui.ebo ); + glBindVertexArray( route->ui.vao ); -static void render_world_routes_ui(void) -{ - glEnable(GL_BLEND); - glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - glBlendEquation(GL_FUNC_ADD); + size_t stride = sizeof(v2f); - struct subworld_routes *r = subworld_routes(); + glBindBuffer( GL_ARRAY_BUFFER, route->ui.vbo ); + glBufferData( GL_ARRAY_BUFFER, k_route_ui_max_verts*stride, + NULL, GL_DYNAMIC_DRAW ); - float active_offset = 0.0f; - for( int i=0; iroute_count; i++ ) - { - struct route *route = &r->routes[i]; - world_routes_ui_draw( i, route->colour, active_offset ); - active_offset += route->factive; + glBindVertexArray( route->ui.vao ); + glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, route->ui.ebo ); + glBufferData( GL_ELEMENT_ARRAY_BUFFER, + k_route_ui_max_indices*sizeof(u16), NULL, + GL_DYNAMIC_DRAW ); + + glVertexAttribPointer( 0, 2, GL_FLOAT, GL_FALSE, stride, (void *)0 ); + glEnableVertexAttribArray( 0 ); + VG_CHECK_GL_ERR(); + } } + vg_release_thread_sync(); - glDisable(GL_BLEND); + scene_free_offline_buffers( &world_routes.scene_lines ); + return 1; } -static void world_routes_register(void) -{ - struct subworld_routes *r = subworld_routes(); - r->current_run_version = 2; - - shader_route_register(); - shader_routeui_register(); -} static void world_routes_loadfrom( mdl_header *mdl ) { - struct subworld_routes *r = subworld_routes(); - r->nodes = NULL; - r->node_count = 0; - r->node_cap = 0; - r->routes = NULL; - r->route_count = 0; - r->route_cap = 0; - r->gates = NULL; - r->gate_count = 0; - r->gate_cap = 0; - + vg_info( "Initializing routes\n" ); + + world_routes.nodes = NULL; + world_routes.node_count = 0; + world_routes.node_cap = 0; + world_routes.routes = NULL; + world_routes.route_count = 0; + world_routes.route_cap = 0; + world_routes.gates = NULL; + world_routes.gate_count = 0; + world_routes.gate_cap = 0; + + /* TODO Break this up */ for( int i=0; inode_count; i++ ) { mdl_node *pnode = mdl_node_from_id(mdl,i); @@ -1015,12 +938,14 @@ static void world_routes_loadfrom( mdl_header *mdl ) pnode->classtype == k_classtype_gate ) { mdl_node_transform( pnode, transform ); - pnode->sub_uid = r->node_count; + pnode->sub_uid = world_routes.node_count; - r->nodes = buffer_reserve( r->nodes, r->node_count, &r->node_cap, 1, - sizeof( struct route_node ) ); + world_routes.nodes = buffer_reserve( world_routes.nodes, + world_routes.node_count, + &world_routes.node_cap, 1, + sizeof( struct route_node ) ); - struct route_node *rn = &r->nodes[r->node_count]; + struct route_node *rn = &world_routes.nodes[world_routes.node_count]; v3_copy( transform[0], rn->right ); v3_normalize( rn->right ); @@ -1049,12 +974,15 @@ static void world_routes_loadfrom( mdl_header *mdl ) if( pother->classtype == k_classtype_gate ) { - r->gates = buffer_reserve( r->gates, r->gate_count, - &r->gate_cap, + world_routes.gates = buffer_reserve( world_routes.gates, + world_routes.gate_count, + &world_routes.gate_cap, 1, sizeof( struct route_gate ) ); - struct route_gate *rg = &r->gates[r->gate_count]; - rg->node_id = r->node_count; + struct route_gate *rg = + &world_routes.gates[world_routes.gate_count]; + + rg->node_id = world_routes.node_count; rg->timing.time = 0.0; rg->timing.version = 0; @@ -1066,26 +994,29 @@ static void world_routes_loadfrom( mdl_header *mdl ) gate_transform_update( &rg->gate ); rn->special_type = k_route_special_type_gate; - rn->special_id = r->gate_count; + rn->special_id = world_routes.gate_count; - r->gate_count ++; + world_routes.gate_count ++; } } if( rn->special_type == 0 ) { - r->collectors = buffer_reserve( - r->collectors, r->collector_count, &r->collector_cap, + world_routes.collectors = buffer_reserve( + world_routes.collectors, + world_routes.collector_count, + &world_routes.collector_cap, 1, sizeof( struct route_collector )); - struct route_collector *rc = &r->collectors[r->collector_count]; + struct route_collector *rc = + &world_routes.collectors[world_routes.collector_count]; rc->timing.time = 0.0; rc->timing.version = 0; rn->special_type = k_route_special_type_collector; - rn->special_id = r->collector_count; + rn->special_id = world_routes.collector_count; - r->collector_count ++; + world_routes.collector_count ++; } } else @@ -1095,44 +1026,37 @@ static void world_routes_loadfrom( mdl_header *mdl ) rn->next[1] = inf->target1; } - r->node_count ++; + world_routes.node_count ++; } else if( pnode->classtype == k_classtype_route ) { struct classtype_route *inf = mdl_get_entdata( mdl, pnode ); - r->routes = buffer_reserve( r->routes, r->route_count, &r->route_cap, + world_routes.routes = buffer_reserve( world_routes.routes, + world_routes.route_count, + &world_routes.route_cap, 1, sizeof( struct route ) ); - struct route *route = &r->routes[r->route_count]; + struct route *route = &world_routes.routes[world_routes.route_count]; + memset( route, 0, sizeof(struct route) ); v3_copy( inf->colour, route->colour ); route->colour[3] = 1.0f; - route->name = NULL; + + route->track_id = 0xffffffff; + for( u32 j=0; jpstr_name), track_infos[j].name )) + { + route->track_id = j; + break; + } + } + route->start = inf->id_start; route->active = 0; route->factive = 0.0f; - - /* OpenGL strips */ - glGenVertexArrays( 1, &route->ui.vao ); - glGenBuffers( 1, &route->ui.vbo ); - glGenBuffers( 1, &route->ui.ebo ); - glBindVertexArray( route->ui.vao ); - - size_t stride = sizeof(v2f); - - glBindBuffer( GL_ARRAY_BUFFER, route->ui.vbo ); - glBufferData( GL_ARRAY_BUFFER, k_route_ui_max_verts*stride, - NULL, GL_DYNAMIC_DRAW ); - glBindVertexArray( route->ui.vao ); - glBindBuffer( GL_ELEMENT_ARRAY_BUFFER, route->ui.ebo ); - glBufferData( GL_ELEMENT_ARRAY_BUFFER, - k_route_ui_max_indices*sizeof(u16), NULL, - GL_DYNAMIC_DRAW ); - - glVertexAttribPointer( 0, 2, GL_FLOAT, GL_FALSE, stride, (void *)0 ); - glEnableVertexAttribArray( 0 ); - VG_CHECK_GL(); + mdl_node_transform( pnode, route->scoreboard_transform ); route->ui.indices_head = k_route_ui_max_indices - 9; route->ui.vertex_head = k_route_ui_max_verts - 200; @@ -1143,40 +1067,40 @@ static void world_routes_loadfrom( mdl_header *mdl ) route->ui.fade_count = 0; route->ui.fade_timer_start = 0.0; - r->route_count ++; + world_routes.route_count ++; } } /* * Apply correct system-local ids */ - for( int i=0; inode_count; i++ ) + for( int i=0; inodes[i]; + struct route_node *rn = &world_routes.nodes[i]; for( int j=0; j<2; j++ ) world_id_fixup( &rn->next[j], mdl ); } - for( int i=0; iroute_count; i++ ) + for( int i=0; iroutes[i]; + struct route *route = &world_routes.routes[i]; world_id_fixup( &route->start, mdl ); } /* * Gather references */ - for( int i=0; iroute_count; i++ ) + for( int i=0; iroutes[i]; + struct route *route = &world_routes.routes[i]; u32 stack[64]; u32 si = world_routes_get_path( route->start, stack ); for( int sj=0; sjnodes[ stack[sj] ]; + struct route_node *rn = &world_routes.nodes[ stack[sj] ]; rn->route_ids[ rn->ref_count ++ ] = i; if( rn->ref_count > 4 ) @@ -1184,7 +1108,94 @@ static void world_routes_loadfrom( mdl_header *mdl ) } } - world_routes_gen_meshes(); + world_routes_create_all_meshes(); +} + +/* + * ----------------------------------------------------------------------------- + * Events + * ----------------------------------------------------------------------------- + */ + +static void world_routes_init(void) +{ + world_routes.current_run_version = 2; + world_routes.time = RESET_MAX_TIME*2.0; + world_routes.last_use = 0.0; + + shader_route_register(); + shader_routeui_register(); +} + +static void world_routes_free(void*_) +{ + vg_free( world_routes.nodes ); + vg_free( world_routes.routes ); + vg_free( world_routes.gates ); +} + +static void world_routes_update(void) +{ + world_routes.time += vg.time_delta; + + for( int i=0; ifactive = vg_lerpf( route->factive, route->active, + 0.6f*vg.time_delta ); + + if( route->active ) + { + world_routes_ui_updatetime(i, world_routes.time - route->latest_pass ); + } + } +} + +static void bind_terrain_textures(void); +static void render_world_routes( m4x4f projection, v3f camera ) +{ + m4x3f identity_matrix; + m4x3_identity( identity_matrix ); + + shader_route_use(); + shader_route_uTexGarbage(0); + shader_link_standard_ub( _shader_route.id, 2 ); + bind_terrain_textures(); + + shader_route_uPv( projection ); + shader_route_uMdl( identity_matrix ); + shader_route_uCamera( camera ); + + scene_bind( &world_routes.scene_lines ); + + for( int i=0; icolour, route->factive, colour ); + colour[3] = 1.0f; + + shader_route_uColour( colour ); + mdl_draw_submesh( &route->sm ); + } +} + +static void render_world_routes_ui(void) +{ + glEnable(GL_BLEND); + glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); + glBlendEquation(GL_FUNC_ADD); + + float active_offset = 0.0f; + for( int i=0; icolour, active_offset ); + active_offset += route->factive; + } + + glDisable(GL_BLEND); } #endif /* ROUTES_H */