X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world.h;h=9d35d304be7e8c6682f73e5cdae665857cd43749;hb=ba5f879f85b9cab1e2b37241399d79709fe4f584;hp=3734dbf353963295c2b75eb8ec25aa4436509436;hpb=4a883ac1b2506032f9dddab342712de46f2ca734;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world.h b/world.h index 3734dbf..9d35d30 100644 --- a/world.h +++ b/world.h @@ -18,6 +18,7 @@ static int ray_world( v3f pos, v3f dir, ray_hit *hit ); #include "traffic.h" /*TODO: -> world_traffic.h */ #include "world_routes.h" #include "world_sfd.h" +#include "world_audio.h" #include "shaders/terrain.h" #include "shaders/sky.h" @@ -85,6 +86,9 @@ static struct gworld * instance_cache; u32 instance_cache_count, instance_cache_cap; + + v3f render_gate_pos; + int active_route_board; } world; @@ -540,12 +544,15 @@ static void world_init(void) /* Other systems */ world_sfd_init(); + world_audio_init(); } static void world_update(void) { world_routes_update(); world_routes_debug(); + + sfd_update( &world.sfd.tester ); #if 0 @@ -734,6 +741,10 @@ static void render_world_gates( m4x4f projection, m4x3f camera ) } render_gate( &world.routes.gates[id].gate, camera ); + v3_lerp( world.render_gate_pos, + world.routes.gates[id].gate.co[0], + 1.0f, + world.render_gate_pos ); } static void render_world( m4x4f projection, m4x3f camera ) @@ -744,15 +755,23 @@ static void render_world( m4x4f projection, m4x3f camera ) render_world_alphatest( projection, camera[3] ); render_terrain( projection, camera[3] ); - m4x3f identity_matrix; - m4x3_identity( identity_matrix ); - identity_matrix[3][1] = 125.0f; + int closest = 0; + float min_dist = INFINITY; - v4f t; - q_axis_angle( t, (v3f){0.0f,1.0f,0.0f}, 2.3f ); - q_m3x3( t, identity_matrix ); + for( int i=0; i