X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_routes.c;h=0bfdcac8bf92ac1406032a6f0c427f73e04ecad4;hb=71b7175073e0c764c3c5cb0c7ceee0f8cca09e58;hp=4deccaa754308cbc8566123243b05ee3c0e32d6e;hpb=810a45773a2ade051c5ffb50321dab89bd2a45e9;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_routes.c b/world_routes.c index 4deccaa..0bfdcac 100644 --- a/world_routes.c +++ b/world_routes.c @@ -21,6 +21,7 @@ #include "shaders/scene_route.h" #include "shaders/routeui.h" +#include "ent_region.h" static void world_routes_clear( world_instance *world ) { @@ -45,6 +46,8 @@ static void world_routes_time_lap( world_instance *world, ent_route *route ){ double start_time = 0.0; u32 last_version=0; + f64 last_time = 0.0; + ent_checkpoint *last_cp = NULL; u32 valid_sections=0; int clean = !localplayer.rewinded_since_last_gate; @@ -68,14 +71,16 @@ static void world_routes_time_lap( world_instance *world, ent_route *route ){ else valid_sections = 0; } - last_version = rg->timing_version; - vg_info( "%u %f [%s]\n", rg->timing_version, rg->timing_time, i? ((rg->flags & k_ent_gate_clean_pass)? "CLEAN": " "): " N/A "); if( !(rg->flags & k_ent_gate_clean_pass) ) clean = 0; + + last_version = rg->timing_version; + last_time = rg->timing_time; + last_cp = cp; } if( world_static.current_run_version == last_version+1 ){ @@ -84,6 +89,11 @@ static void world_routes_time_lap( world_instance *world, ent_route *route ){ if( route->checkpoints_count == 1 ){ route->timing_base = world_static.time; } + + f32 section = world_static.time - last_time; + if( (section < last_cp->best_time) || (last_cp->best_time == 0.0f) ){ + last_cp->best_time = section; + } } else valid_sections = 0; @@ -96,12 +106,12 @@ static void world_routes_time_lap( world_instance *world, ent_route *route ){ if( (route->best_laptime == 0.0) || (lap_time < route->best_laptime) ){ route->best_laptime = lap_time; - route->achievment_status |= 0x1; - - if( clean ) - route->achievment_status |= 0x2; } + route->flags |= k_ent_route_flag_achieve_silver; + if( clean ) route->flags |= k_ent_route_flag_achieve_gold; + ent_region_re_eval( world ); + /* for steam achievements. */ if( route->anon.official_track_id != 0xffffffff ){ struct track_info *ti = &track_infos[ route->anon.official_track_id ]; @@ -125,6 +135,9 @@ static void world_routes_time_lap( world_instance *world, ent_route *route ){ vg_info( "valid sections: %u\n", valid_sections ); vg_info( "----------------------------\n" ); + + route->ui_residual = 1.0f; + route->ui_residual_block_w = route->ui_first_block_width; } /* @@ -542,6 +555,14 @@ static void world_gen_routes_ent_init( world_instance *world ){ ent_route *route = mdl_arritm(&world->ent_route,i); mdl_transform_m4x3( &route->anon.transform, route->board_transform ); + route->flags = 0x00; + route->best_laptime = 0.0; + route->ui_stopper = 0.0f; + route->ui_residual = 0.0f; + + if( mdl_arrcount(&world->ent_region) ) + route->flags |= k_ent_route_flag_out_of_zone; + route->anon.official_track_id = 0xffffffff; for( u32 j=0; jent_gate, i ); } + for( u32 i=0; ient_checkpoint); i++ ){ + ent_checkpoint *cp = mdl_arritm( &world->ent_checkpoint, i ); + cp->best_time = 0.0; + } + world_routes_clear( world ); }