X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_routes.h;h=d8d36d210efcccc7dfd8747c7148f039af0664e5;hb=15beb60ade240af4e00b0d204f7e89a4d35dca36;hp=f98fb0d850ec7ffcac20e3fd096bc93b48fdc0dc;hpb=d00b1df8f80e4714dc2f9aa2189d242bb4d09a2f;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_routes.h b/world_routes.h index f98fb0d..d8d36d2 100644 --- a/world_routes.h +++ b/world_routes.h @@ -21,7 +21,7 @@ enum route_special_type static void world_routes_interact(void) { - world.routes.last_interaction = vg_time; + world.routes.last_interaction = vg.time; } static void debug_sbpath( struct route_node *rna, struct route_node *rnb, @@ -410,7 +410,7 @@ static void world_routes_ui_draw( u32 route, v4f colour, float offset ) shader_routeui_use(); glBindVertexArray( pr->ui.vao ); - float fade_amt = vg_time - pr->ui.fade_timer_start; + float fade_amt = vg.time - pr->ui.fade_timer_start; fade_amt = vg_clampf( fade_amt / 1.0f, 0.0f, 1.0f ); float fade_block_size = 0.0f, @@ -430,7 +430,8 @@ static void world_routes_ui_draw( u32 route, v4f colour, float offset ) v4_copy( colour, fade_colour ); fade_colour[3] *= 1.0f-fade_amt; - float timer_delta = (vg_time - world.routes.last_interaction) * (1.0/60.0), + /* 1 minute timer */ + float timer_delta = (vg.time - world.routes.last_interaction) * (1.0/60.0), timer_scale = 1.0f - vg_minf( timer_delta, 1.0f ); /* @@ -495,7 +496,15 @@ static void world_routes_local_set_record( u32 route, double lap_time ) temp.time = time_centiseconds; highscores_push_record( &temp ); - track_infos[ pr->track_id ].push = 1; + + 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 { @@ -580,7 +589,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 = vg.time; int orig_seg_count = pr->ui.segment_count; @@ -603,7 +612,7 @@ static void world_routes_verify_run( u32 route ) pr->ui.fade_count ++; } - r->routes[route].latest_pass = vg_time; + r->routes[route].latest_pass = vg.time; } /* @@ -622,7 +631,7 @@ static void world_routes_activate_gate( u32 id ) r->active_gate = id; rg->timing.version = r->current_run_version; - rg->timing.time = vg_time; + rg->timing.time = vg.time; for( u32 i=0; iroute_count; i++ ) { struct route *route = &r->routes[i]; @@ -644,7 +653,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 = vg.time; world_routes_ui_clear(i); vg_success( "CLEARING -> %u %u \n", route->ui.fade_start, @@ -655,7 +664,7 @@ static void world_routes_activate_gate( u32 id ) r->current_run_version ++; rc->timing.version = r->current_run_version; - rc->timing.time = vg_time; + rc->timing.time = vg.time; r->current_run_version ++; } @@ -672,7 +681,7 @@ static void world_routes_notify_reset(void) struct route *route = &r->routes[i]; if( route->active ) - world_routes_ui_notch( i, vg_time - route->latest_pass ); + world_routes_ui_notch( i, vg.time - route->latest_pass ); } } @@ -1015,6 +1024,7 @@ static void world_routes_loadfrom( mdl_header *mdl ) 1, sizeof( struct route ) ); struct route *route = &r->routes[r->route_count]; + memset( route, 0, sizeof(struct route) ); v3_copy( inf->colour, route->colour ); route->colour[3] = 1.0f; @@ -1119,11 +1129,12 @@ static void world_routes_update(void) for( int i=0; iroute_count; i++ ) { struct route *route = &r->routes[i]; - route->factive = vg_lerpf( route->factive, route->active, 0.01f ); + route->factive = vg_lerpf( route->factive, route->active, + 0.6f*vg.time_delta ); if( route->active ) { - world_routes_ui_updatetime( i, vg_time - route->latest_pass ); + world_routes_ui_updatetime( i, vg.time - route->latest_pass ); } } }