forked from StrafesNET/strafe-client
wip: refactor WalkState
This commit is contained in:
parent
526666651a
commit
edd15d0a09
@ -115,22 +115,54 @@ impl MouseState {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum WalkEnum{
|
enum WalkEnum{
|
||||||
Reached,
|
Reached,
|
||||||
Transient,
|
Transient(WalkTarget),
|
||||||
}
|
}
|
||||||
pub struct WalkState {
|
struct WalkTarget{
|
||||||
pub target_velocity: Planar64Vec3,
|
velocity:Planar64Vec3,
|
||||||
pub target_time: Time,
|
time:Time,
|
||||||
pub state: WalkEnum,
|
}
|
||||||
|
struct WalkState{
|
||||||
|
normal:Planar64Vec3,
|
||||||
|
state:WalkEnum,
|
||||||
|
}
|
||||||
|
impl WalkEnum{
|
||||||
|
//so many args bruh
|
||||||
|
fn with_target_velocity(physics:&PhysicsState,mut velocity:Planar64Vec3,normal:&Planar64Vec3)->(WalkEnum,Planar64Vec3){
|
||||||
|
physics.touching.constrain_velocity(&physics.models,&mut velocity);
|
||||||
|
let mut target_diff=velocity-physics.body.velocity;
|
||||||
|
//remove normal component
|
||||||
|
target_diff-=normal.clone()*(normal.dot(target_diff)/normal.dot(normal.clone()));
|
||||||
|
if target_diff==Planar64Vec3::ZERO{
|
||||||
|
let mut a=Planar64Vec3::ZERO;
|
||||||
|
physics.touching.constrain_acceleration(&physics.models,&mut a);
|
||||||
|
(WalkEnum::Reached,a)
|
||||||
|
}else{
|
||||||
|
//normal friction acceleration is clippedAcceleration.dot(normal)*friction
|
||||||
|
let accel=physics.style.walk_accel.min(physics.style.gravity.dot(Planar64Vec3::NEG_Y)*physics.style.friction);
|
||||||
|
let time_delta=target_diff.length()/accel;
|
||||||
|
let mut a=target_diff.with_length(accel);
|
||||||
|
physics.touching.constrain_acceleration(&physics.models,&mut a);
|
||||||
|
(WalkEnum::Transient(WalkTarget{velocity,time:physics.body.time+Time::from(time_delta)}),a)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//(walk_enum,body.acceleration)=with_target_velocity();
|
||||||
}
|
}
|
||||||
impl WalkState{
|
impl WalkState{
|
||||||
pub fn new() -> Self {
|
fn ground(physics:&PhysicsState,mut velocity:Planar64Vec3)->(Self,Planar64Vec3){
|
||||||
Self{
|
let (walk_enum,a)=WalkEnum::with_target_velocity(physics,velocity,&Planar64Vec3::Y);
|
||||||
target_velocity:Planar64Vec3::ZERO,
|
(Self{
|
||||||
target_time:Time::ZERO,
|
state:walk_enum,
|
||||||
state:WalkEnum::Reached,
|
normal:Planar64Vec3::Y,
|
||||||
|
},a)
|
||||||
}
|
}
|
||||||
|
fn ladder(physics:&PhysicsState,mut velocity:Planar64Vec3,normal:&Planar64Vec3)->(Self,Planar64Vec3){
|
||||||
|
let (walk_enum,a)=WalkEnum::with_target_velocity(physics,velocity,normal);
|
||||||
|
(Self{
|
||||||
|
state:walk_enum,
|
||||||
|
normal:normal.clone(),
|
||||||
|
},a)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -286,8 +318,8 @@ impl StyleModifiers{
|
|||||||
return control_dir
|
return control_dir
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_jump_power(&self)->Planar64Vec3{
|
fn get_jump_power(&self)->Planar64{
|
||||||
Planar64Vec3::int(0,715588,0)/(2*1000000/100)
|
Planar64::int(715588)/(2*1000000/100)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -712,18 +744,12 @@ impl PhysicsState {
|
|||||||
}
|
}
|
||||||
fn jump(&mut self){
|
fn jump(&mut self){
|
||||||
match &self.move_state{
|
match &self.move_state{
|
||||||
MoveState::Air=>(),
|
MoveState::Walk(walk_state)|MoveState::Ladder(walk_state)=>{
|
||||||
MoveState::Walk(walk_state)=>{
|
let mut v=self.body.velocity+walk_state.normal*self.style.get_jump_power();
|
||||||
let mut v=self.body.velocity+self.style.get_jump_power();
|
|
||||||
self.touching.constrain_velocity(&self.models,&mut v);
|
|
||||||
self.body.velocity=v;
|
|
||||||
},
|
|
||||||
MoveState::Water=>(),
|
|
||||||
MoveState::Ladder(walk_state)=>{
|
|
||||||
let mut v=self.body.velocity+self.style.get_jump_power();
|
|
||||||
self.touching.constrain_velocity(&self.models,&mut v);
|
self.touching.constrain_velocity(&self.models,&mut v);
|
||||||
self.body.velocity=v;
|
self.body.velocity=v;
|
||||||
},
|
},
|
||||||
|
MoveState::Air|MoveState::Water=>(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -769,13 +795,12 @@ impl PhysicsState {
|
|||||||
fn refresh_walk_target(&mut self){
|
fn refresh_walk_target(&mut self){
|
||||||
//calculate acceleration yada yada
|
//calculate acceleration yada yada
|
||||||
match &mut self.move_state{
|
match &mut self.move_state{
|
||||||
MoveState::Air=>(),
|
MoveState::Walk(walk_state)|MoveState::Ladder(walk_state)=>{
|
||||||
MoveState::Walk(walk_state)=>{
|
|
||||||
let mut v=walk_state.target_velocity;
|
let mut v=walk_state.target_velocity;
|
||||||
self.touching.constrain_velocity(&self.models,&mut v);
|
self.touching.constrain_velocity(&self.models,&mut v);
|
||||||
let mut target_diff=v-self.body.velocity;
|
let mut target_diff=v-self.body.velocity;
|
||||||
//remove normal component
|
//remove normal component
|
||||||
target_diff-=Planar64Vec3::Y*target_diff.y();
|
target_diff-=walk_state.normal*(walk_state.normal.dot(target_diff)/walk_state.normal.dot(walk_state.normal));
|
||||||
if target_diff==Planar64Vec3::ZERO{
|
if target_diff==Planar64Vec3::ZERO{
|
||||||
let mut a=Planar64Vec3::ZERO;
|
let mut a=Planar64Vec3::ZERO;
|
||||||
self.touching.constrain_acceleration(&self.models,&mut a);
|
self.touching.constrain_acceleration(&self.models,&mut a);
|
||||||
@ -792,10 +817,7 @@ impl PhysicsState {
|
|||||||
walk_state.state=WalkEnum::Transient;
|
walk_state.state=WalkEnum::Transient;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
MoveState::Water=>(),
|
MoveState::Air|MoveState::Water=>(),
|
||||||
MoveState::Ladder(walk_state)=>{
|
|
||||||
//
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fn next_move_instruction(&self)->Option<TimedInstruction<PhysicsInstruction>>{
|
fn next_move_instruction(&self)->Option<TimedInstruction<PhysicsInstruction>>{
|
||||||
@ -1148,7 +1170,9 @@ impl crate::instruction::InstructionConsumer<PhysicsInstruction> for PhysicsStat
|
|||||||
None=>match &c.face {
|
None=>match &c.face {
|
||||||
TreyMeshFace::Top => {
|
TreyMeshFace::Top => {
|
||||||
//ground
|
//ground
|
||||||
self.move_state=MoveState::Walk(WalkState::new())
|
let (walk_state,a)=WalkState::ground(&self,self.get_walk_target());
|
||||||
|
self.move_state=MoveState::Walk(walk_state);
|
||||||
|
self.body.acceleration=a;
|
||||||
},
|
},
|
||||||
_ => (),
|
_ => (),
|
||||||
},
|
},
|
||||||
@ -1331,17 +1355,18 @@ impl crate::instruction::InstructionConsumer<PhysicsInstruction> for PhysicsStat
|
|||||||
let camera_mat=self.camera.simulate_move_rotation_y(self.camera.mouse.lerp(&self.next_mouse,self.time).x);
|
let camera_mat=self.camera.simulate_move_rotation_y(self.camera.mouse.lerp(&self.next_mouse,self.time).x);
|
||||||
let control_dir=camera_mat*self.style.get_control_dir(self.controls);
|
let control_dir=camera_mat*self.style.get_control_dir(self.controls);
|
||||||
walk_state.target_velocity=control_dir*self.style.walkspeed;
|
walk_state.target_velocity=control_dir*self.style.walkspeed;
|
||||||
|
self.refresh_walk_target();
|
||||||
},
|
},
|
||||||
MoveState::Ladder(walk_state)=>{
|
MoveState::Ladder(walk_state)=>{
|
||||||
// let camera_mat=self.camera.simulate_move_rotation(self.camera.mouse.lerp(&self.next_mouse,self.time));
|
let camera_mat=self.camera.simulate_move_rotation(self.camera.mouse.lerp(&self.next_mouse,self.time));
|
||||||
// let control_dir=camera_mat*self.style.get_control_dir(self.controls);
|
let control_dir=camera_mat*self.style.get_control_dir(self.controls);
|
||||||
// walk_state.target_velocity=control_dir*self.style.walkspeed;
|
walk_state.target_velocity=control_dir*self.style.walkspeed;
|
||||||
|
self.refresh_walk_target();
|
||||||
},
|
},
|
||||||
MoveState::Water=>(),
|
MoveState::Water=>(),
|
||||||
MoveState::Air=>(),
|
MoveState::Air=>(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
self.refresh_walk_target();
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user