X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player_skate.h;h=4c8bbd4afc83d93fdaf23e6226d41e2dce44fd21;hb=f3a2490079baf440238b78e54f4476649eddbda2;hp=11c66e9d203ccc2c4493613cf289664eae8328e2;hpb=b1557496a922904b7abcd47d5a59a6da44d70fe8;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player_skate.h b/player_skate.h index 11c66e9..4c8bbd4 100644 --- a/player_skate.h +++ b/player_skate.h @@ -13,7 +13,14 @@ struct player_skate { k_skate_activity_air, k_skate_activity_ground, - k_skate_activity_grind + k_skate_activity_undefined, + k_skate_activity_grind_any, + k_skate_activity_grind_boardslide, + k_skate_activity_grind_noseslide, + k_skate_activity_grind_tailslide, + k_skate_activity_grind_back50, + k_skate_activity_grind_front50, + k_skate_activity_grind_5050 } activity, activity_prev; @@ -36,11 +43,15 @@ struct player_skate trick_euler; /* measured in units of TAU */ float trick_time; + + float gravity_bias; +#if 0 m3x3f velocity_bias, velocity_bias_pstep; v3f apex; - v3f up_dir; +#endif + v3f up_dir; v3f head_position; int lift_frames; @@ -53,22 +64,64 @@ struct player_skate int charging_jump, jump_dir; float jump_charge; - double jump_time; + double jump_time; double start_push, cur_push; v3f prev_pos; + + /* initial launch conditions */ + double air_start; + v3f air_init_v, + air_init_co; } state, state_gate_storage; + + /* animation */ + struct skeleton_anim *anim_stand, *anim_highg, *anim_slide, + *anim_air, + *anim_push, *anim_push_reverse, + *anim_ollie, *anim_ollie_reverse, + *anim_grabs, *anim_stop; + v3f + board_trick_residualv, + board_trick_residuald; + + float blend_slide, + blend_z, + blend_x, + blend_fly, + blend_stand, + blend_push, + blend_jump, + blend_airdir, + blend_weight; + + /* vectors representing the direction of the axels in localspace */ + v3f truckv0[2]; + v2f wobble; + + /* + * Physics + * ---------------------------------------------------- + */ + + float substep, + substep_delta; + struct land_prediction { v3f log[50]; v3f n; v3f apex; - u32 log_length; + v3f v; + + float gravity; + + int log_length; float score, land_dist; @@ -82,38 +135,27 @@ struct player_skate u32 colour; } - predictions[22]; + predictions[32]; u32 prediction_count; float land_dist; v3f land_normal; - /* animation */ - struct skeleton_anim *anim_stand, *anim_highg, *anim_slide, - *anim_air, - *anim_push, *anim_push_reverse, - *anim_ollie, *anim_ollie_reverse, - *anim_grabs, *anim_stop; - v3f board_offset, - board_trick_residualv, - board_trick_residuald; - v4f board_rotation; - - float blend_slide, - blend_z, - blend_x, - blend_fly, - blend_stand, - blend_push, - blend_jump, - blend_airdir; + v3f surface_picture, + weight_distribution, + grind_vec, + grind_dir; - float substep, - substep_delta; + u32 frames_since_activity_change; - v2f wobble; + float grind_strength; - float debug_normal_pressure; - u32 device_id_walk; + struct grind_limit + { + v3f ra, n; + float p; + } + limits[3]; + u32 limit_count; }; VG_STATIC void player__skate_bind ( player_instance *player );