X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player.c;h=e000c513b5f140c4cc5e7167c2b148f8cf526aec;hb=2b7784846e2f2ee57ba336a2aa040adb2d0ca461;hp=0339a8d889f87c0faa08bf6b2443cf2bba9e783b;hpb=bc40c302f1b8313bdd3c773fcfa2f850511c4634;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player.c b/player.c index 0339a8d..e000c51 100644 --- a/player.c +++ b/player.c @@ -5,6 +5,8 @@ #include "camera.h" #include "player_model.h" #include "input.h" +#include "world.h" +#include "audio.h" VG_STATIC int localplayer_cmd_respawn( int argc, const char *argv[] ) { @@ -33,6 +35,11 @@ VG_STATIC void player_init(void) } vg_console_reg_cmd( "respawn", localplayer_cmd_respawn, NULL ); + VG_VAR_F32( k_cam_damp ); + VG_VAR_F32( k_cam_spring ); + VG_VAR_F32( k_cam_punch ); + VG_VAR_F32( k_cam_shake_strength ); + VG_VAR_F32( k_cam_shake_trackspeed ); } PLAYER_API @@ -130,9 +137,9 @@ void player__pre_update( player_instance *player ) } if( button_down( k_srbind_reset ) && !player->immobile ){ - double delta = world_global.time - world_global.last_use; + f64 delta = world_static.time - world_static.last_use; - if( (delta <= RESET_MAX_TIME) && (world_global.last_use != 0.0) ){ + if( (delta <= RESET_MAX_TIME) && (world_static.last_use != 0.0) ){ player->rewinding = 1; player->rewind_sound_wait = 1; player->rewind_time = (double)player->rewind_length - 0.0001; @@ -219,11 +226,11 @@ void player__post_update( player_instance *player ) PLAYER_API void player__pass_gate( player_instance *player, ent_gate *gate ) { - world_routes_fracture( get_active_world(), gate, + world_routes_fracture( world_current_instance(), gate, player->rb.co, player->rb.v ); player->gate_waiting = gate; - world_routes_activate_entry_gate( get_active_world(), gate ); + world_routes_activate_entry_gate( world_current_instance(), gate ); m4x3_mulv( gate->transport, player->tpv_lpf, player->tpv_lpf ); m3x3_mulv( gate->transport, player->cam_velocity_smooth, @@ -250,9 +257,9 @@ void player__pass_gate( player_instance *player, ent_gate *gate ) player_save_rewind_frame( player ); if( gate->type == k_gate_type_nonlocel ) - world_global.active_world = gate->target; + world_static.active_world = gate->target; - world_global.in_volume = 0; + world_volumes.inside = 0; audio_lock(); audio_oneshot( &audio_gate_pass, 1.0f, 0.0f ); @@ -333,6 +340,11 @@ PLAYER_API void player__spawn( player_instance *player, player->subsystem = k_player_subsystem_walk; player->immobile = 0; player->gate_waiting = NULL; + player->rewind_length = 0; + player->rewind_accum = 0.0f; + player->rewind_gate = NULL; + player->rewinding = 0; + world_static.last_use = 0.0; global_skateshop_exit(); @@ -346,4 +358,13 @@ PLAYER_API void player__kill( player_instance *player ) } +/* implementation */ +#include "player_common.c" +#include "player_walk.c" +#include "player_skate.c" +#include "player_dead.c" +#include "player_drive.c" +#include "player_render.c" +#include "player_ragdoll.c" + #endif /* PLAYER_C */