X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player.h;h=7b5eeaa882158316eb7c9befe4f91700679cdb8a;hb=75703291fbf045008a3b1ebb20fc46a2617b6b3b;hp=c8c9abc54b8932ecd480838014a44001ca9c4dfb;hpb=6294ef64d948eab2365e39a2645c9843aa96fba8;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player.h b/player.h index c8c9abc..7b5eeaa 100644 --- a/player.h +++ b/player.h @@ -2,6 +2,10 @@ * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved */ +/* + * TODO: Tilt camera down to face borde when its behind you or out of vision + */ + #ifndef PLAYER_H #define PLAYER_H @@ -14,7 +18,9 @@ #include "bvh.h" VG_STATIC float - k_walkspeed = 12.0f, /* no longer used */ + k_walkspeed = 12.0f, + k_air_accelerate = 20.0f, + k_runspeed = 20.0f, k_board_radius = 0.3f, k_board_length = 0.45f, @@ -29,7 +35,7 @@ VG_STATIC float k_steer_air = 3.6f, k_steer_air_lerp = 0.3f, k_pump_force = 0.0f, - k_downforce = 5.0f, + k_downforce = 8.0f, k_walk_downforce = 8.0f, k_jump_charge_speed = (1.0f/1.0f), k_jump_force = 5.0f, @@ -62,12 +68,15 @@ VG_STATIC struct gplayer v3f a, v_last, m, bob, vl; /* Utility */ - float vswitch, slip, slip_last, - reverse; + float vswitch, slip, slip_last, reverse; float grab, jump, pushing, push_time; + v2f grab_mouse_delta; + + int lift_frames; + double start_push; - int in_air, on_board, jump_charge, jump_dir; + int in_air, on_board, jump_charge, jump_dir, grind; m3x3f vr,vr_pstep; } @@ -81,8 +90,14 @@ VG_STATIC struct gplayer int rewind_sound_wait; v3f land_target; - v3f land_target_log[22]; - u32 land_target_colours[22]; + + struct land_log + { + v3f positions[50]; + u32 colour; + int count; + } + land_log[22]; int land_log_count; v3f handl_target, handr_target, @@ -93,10 +108,9 @@ VG_STATIC struct gplayer *input_js1v, *input_js2h, *input_js2v, - *input_emjs2h, - *input_emjs2v, *input_jump, *input_push, + *input_walk, *input_walkh, *input_walkv, *input_switch_mode, @@ -135,7 +149,8 @@ VG_STATIC struct gplayer walk_timer, fjump, fonboard, - frun; + frun, + fgrind; float walk; int step_phase; @@ -225,10 +240,9 @@ VG_STATIC void player_init(void) /* 1 player.input_grab = vg_create_named_input( "grab", k_input_type_axis_norm ); player.input_js2h = vg_create_named_input( "grab-h", k_input_type_axis ); player.input_js2v = vg_create_named_input( "grab-v", k_input_type_axis ); - player.input_emjs2h = vg_create_named_input( "kbgrab-h", k_input_type_axis ); - player.input_emjs2v = vg_create_named_input( "kbgrab-v", k_input_type_axis ); player.input_jump = vg_create_named_input( "jump", k_input_type_button ); - player.input_push = vg_create_named_input( "push", k_input_type_axis_norm ); + player.input_push = vg_create_named_input( "push", k_input_type_button ); + player.input_walk = vg_create_named_input( "walk", k_input_type_button ); player.input_walkh = vg_create_named_input( "walk-h", k_input_type_axis ); @@ -250,23 +264,22 @@ VG_STATIC void player_init(void) /* 1 "bind -steer-v w", "bind +steer-v s", - "bind grab gp-rt", - "bind grab-h gp-rs-h", - "bind grab-v gp-rs-v", - - "bind -kbgrab-h left", - "bind +kbgrab-h right", - "bind -kbgrab-v down", - "bind +kbgrab-v up", + "bind grab gp-rt", + "bind +grab shift", + "bind grab-h gp-rs-h", + "bind grab-v gp-rs-v", "bind jump space", "bind jump gp-a", - "bind push gp-lt", - "bind +push shift", + "bind push gp-b", + "bind push w", + + "bind walk shift", + "bind walk gp-ls", - "bind walk-h gp-ls-h", - "bind walk-v gp-ls-v", + "bind walk-h gp-ls-h", + "bind walk-v -gp-ls-v", "bind +walk-h d", "bind -walk-h a", "bind +walk-v w", @@ -280,7 +293,7 @@ VG_STATIC void player_init(void) /* 1 }; for( int i=0; iaxis.value, + player.input_js2v->axis.value }; + + if( (v2_length2(last_input) > 0.001f) && (v2_length2(input) > 0.001f) ) + { + v2_sub( input, last_input, vel ); + v2_muls( vel, 1.0f/vg.time_delta, vel ); + } + else + { + v2_zero( vel ); + } + + v2_lerp( vel_smooth, vel, vg.time_delta*8.0f, vel_smooth ); + + v2_muladds( player.angles, vel_smooth, vg.time_delta, player.angles ); + v2_copy( input, last_input ); + } + else + { + player.angles[0] += player.input_js2h->axis.value * vg.time_delta * 4.0f; + player.angles[1] += player.input_js2v->axis.value * vg.time_delta * 4.0f; + } + player.angles[1] = vg_clampf( player.angles[1], -VG_PIf*0.5f, VG_PIf*0.5f ); } @@ -393,7 +450,7 @@ VG_STATIC void player_update_pre(void) return; } - if( vg_input_button_down( player.input_reset ) ) + if( vg_input_button_down( player.input_reset ) && !menu_enabled() ) { if( player.is_dead ) { @@ -457,7 +514,7 @@ VG_STATIC void player_update_pre(void) } } - if( vg_input_button_down( player.input_switch_mode ) ) + if( vg_input_button_down( player.input_switch_mode ) && !menu_enabled() ) { phys->on_board ^= 0x1; @@ -479,7 +536,7 @@ VG_STATIC void player_update_pre(void) player_mouseview(); } -VG_STATIC void player_update_fixed(void) /* 2 */ +VG_STATIC void player_update_fixed(void) /* 2 */ { if( player.rewinding ) return; @@ -509,8 +566,14 @@ VG_STATIC void player_update_fixed(void) /* 2 VG_STATIC void player_update_post(void) { for( int i=0; icount - 1; j ++ ) + vg_line( log->positions[j], log->positions[j+1], log->colour ); + + vg_line_cross( log->positions[log->count-1], log->colour, 0.25f ); + } if( player.is_dead ) {