strafe-client/src/physics.rs

1618 lines
60 KiB
Rust
Raw Normal View History

2024-02-02 06:14:58 +00:00
use std::collections::HashMap;
use std::collections::HashSet;
2024-02-07 04:29:36 +00:00
use crate::model_physics::{self,PhysicsMesh,TransformedMesh,MeshQuery,PhysicsMeshId,PhysicsSubmeshId};
2024-01-30 00:19:41 +00:00
use strafesnet_common::bvh;
2024-02-06 03:49:36 +00:00
use strafesnet_common::map;
2024-01-30 00:19:41 +00:00
use strafesnet_common::aabb;
2024-02-02 06:14:58 +00:00
use strafesnet_common::gameplay_modes;
2024-02-06 03:49:36 +00:00
use strafesnet_common::gameplay_attributes;
use strafesnet_common::model::ModelId;
2024-02-05 04:59:33 +00:00
use strafesnet_common::gameplay_style::{self,StyleModifiers};
2024-01-30 00:19:41 +00:00
use strafesnet_common::instruction::{self,InstructionEmitter,InstructionConsumer,TimedInstruction};
2024-01-30 06:37:05 +00:00
use strafesnet_common::integer::{self,Time,Planar64,Planar64Vec3,Planar64Mat3,Angle32,Ratio64Vec2};
2023-09-27 09:12:20 +00:00
2023-09-19 01:34:48 +00:00
#[derive(Debug)]
2023-09-09 00:34:26 +00:00
pub enum PhysicsInstruction {
2023-11-30 09:51:17 +00:00
CollisionStart(Collision),
CollisionEnd(Collision),
2023-09-09 00:00:50 +00:00
StrafeTick,
2023-09-09 03:14:18 +00:00
ReachWalkTargetVelocity,
// Water,
// Spawn(
// Option<SpawnId>,
// bool,//true = Trigger; false = teleport
// bool,//true = Force
// )
2023-09-20 00:53:29 +00:00
//InputInstructions conditionally activate RefreshWalkTarget (by doing what SetWalkTargetVelocity used to do and then flagging it)
2023-10-05 03:04:04 +00:00
Input(PhysicsInputInstruction),
}
#[derive(Debug)]
pub enum PhysicsInputInstruction {
ReplaceMouse(MouseState,MouseState),
SetNextMouse(MouseState),
SetMoveRight(bool),
SetMoveUp(bool),
2023-10-10 22:33:32 +00:00
SetMoveBack(bool),
SetMoveLeft(bool),
2023-10-05 03:04:04 +00:00
SetMoveDown(bool),
2023-10-10 22:33:32 +00:00
SetMoveForward(bool),
2023-10-05 03:04:04 +00:00
SetJump(bool),
SetZoom(bool),
Reset,
Idle,
//Idle: there were no input events, but the simulation is safe to advance to this timestep
//for interpolation / networking / playback reasons, most playback heads will always want
//to be 1 instruction ahead to generate the next state for interpolation.
2023-09-09 00:00:50 +00:00
}
#[derive(Clone,Hash,Default)]
2023-11-30 09:51:17 +00:00
pub struct Body{
pub position:Planar64Vec3,//I64 where 2^32 = 1 u
pub velocity:Planar64Vec3,//I64 where 2^32 = 1 u/s
pub acceleration:Planar64Vec3,//I64 where 2^32 = 1 u/s/s
pub time:Time,//nanoseconds x xxxxD!
}
impl std::ops::Neg for Body{
type Output=Self;
fn neg(self)->Self::Output{
Self{
position:self.position,
velocity:-self.velocity,
acceleration:self.acceleration,
time:-self.time,
}
}
2023-09-19 04:10:07 +00:00
}
2023-09-09 03:14:18 +00:00
2023-10-03 05:45:48 +00:00
//hey dumbass just use a delta
2023-10-05 03:04:04 +00:00
#[derive(Clone,Debug)]
pub struct MouseState {
pub pos: glam::IVec2,
2023-09-27 09:12:20 +00:00
pub time:Time,
2023-09-10 20:24:47 +00:00
}
2023-10-05 03:04:04 +00:00
impl Default for MouseState{
fn default() -> Self {
2023-09-20 00:53:29 +00:00
Self {
2023-09-27 09:12:20 +00:00
time:Time::ZERO,
2023-10-05 03:04:04 +00:00
pos:glam::IVec2::ZERO,
2023-09-20 00:53:29 +00:00
}
}
2023-10-05 03:04:04 +00:00
}
impl MouseState {
2023-09-27 09:12:20 +00:00
pub fn lerp(&self,target:&MouseState,time:Time)->glam::IVec2 {
2023-10-05 03:04:04 +00:00
let m0=self.pos.as_i64vec2();
let m1=target.pos.as_i64vec2();
//these are deltas
2023-09-27 09:12:20 +00:00
let t1t=(target.time-time).nanos();
let tt0=(time-self.time).nanos();
let dt=(target.time-self.time).nanos();
2023-10-05 03:04:04 +00:00
((m0*t1t+m1*tt0)/dt).as_ivec2()
2023-09-10 20:24:47 +00:00
}
}
2023-11-30 09:51:17 +00:00
enum JumpDirection{
Exactly(Planar64Vec3),
FromContactNormal,
}
2023-10-17 07:17:54 +00:00
enum WalkEnum{
Reached,
2023-10-17 07:17:54 +00:00
Transient(WalkTarget),
}
2023-10-17 07:17:54 +00:00
struct WalkTarget{
velocity:Planar64Vec3,
time:Time,
2023-09-19 04:10:07 +00:00
}
2023-10-17 07:17:54 +00:00
struct WalkState{
2023-11-30 09:51:17 +00:00
jump_direction:JumpDirection,
contact:ContactCollision,
2023-10-17 07:17:54 +00:00
state:WalkEnum,
}
impl WalkEnum{
//args going crazy
//(walk_enum,body.acceleration)=with_target_velocity();
2023-11-30 09:51:17 +00:00
fn with_target_velocity(body:&Body,style:&StyleModifiers,velocity:Planar64Vec3,normal:&Planar64Vec3,speed:Planar64,normal_accel:Planar64)->(WalkEnum,Planar64Vec3){
2023-10-17 07:17:54 +00:00
let mut target_diff=velocity-body.velocity;
//remove normal component
target_diff-=normal.clone()*(normal.dot(target_diff)/normal.dot(normal.clone()));
if target_diff==Planar64Vec3::ZERO{
2023-11-30 09:51:17 +00:00
(WalkEnum::Reached,Planar64Vec3::ZERO)
2023-10-17 07:17:54 +00:00
}else{
//normal friction acceleration is clippedAcceleration.dot(normal)*friction
2023-10-17 23:18:55 +00:00
let diff_len=target_diff.length();
2023-11-30 09:51:17 +00:00
let friction=if diff_len<speed{
2023-10-17 23:18:55 +00:00
style.static_friction
}else{
style.kinetic_friction
};
2023-11-30 09:51:17 +00:00
let accel=style.walk_accel.min(normal_accel*friction);
2023-10-17 23:18:55 +00:00
let time_delta=diff_len/accel;
2023-11-30 09:51:17 +00:00
let a=target_diff.with_length(accel);
2023-10-17 07:17:54 +00:00
(WalkEnum::Transient(WalkTarget{velocity,time:body.time+Time::from(time_delta)}),a)
2023-09-19 04:10:07 +00:00
}
}
}
2023-10-17 07:17:54 +00:00
impl WalkState{
2023-11-30 09:51:17 +00:00
fn ground(body:&Body,style:&StyleModifiers,gravity:Planar64Vec3,velocity:Planar64Vec3,contact:ContactCollision,normal:&Planar64Vec3)->(Self,Planar64Vec3){
let (walk_enum,a)=WalkEnum::with_target_velocity(body,style,velocity,&Planar64Vec3::Y,style.walk_speed,-normal.dot(gravity));
2023-10-17 07:17:54 +00:00
(Self{
state:walk_enum,
2023-11-30 09:51:17 +00:00
contact,
jump_direction:JumpDirection::Exactly(Planar64Vec3::Y),
2023-10-17 07:17:54 +00:00
},a)
}
2023-11-30 09:51:17 +00:00
fn ladder(body:&Body,style:&StyleModifiers,gravity:Planar64Vec3,velocity:Planar64Vec3,contact:ContactCollision,normal:&Planar64Vec3)->(Self,Planar64Vec3){
let (walk_enum,a)=WalkEnum::with_target_velocity(body,style,velocity,normal,style.ladder_speed,style.ladder_accel);
2023-10-17 07:17:54 +00:00
(Self{
state:walk_enum,
2023-11-30 09:51:17 +00:00
contact,
jump_direction:JumpDirection::FromContactNormal,
2023-10-17 07:17:54 +00:00
},a)
}
}
2023-09-19 04:10:07 +00:00
2023-11-30 09:51:17 +00:00
#[derive(Default)]
struct PhysicsModels{
2023-11-30 09:51:17 +00:00
meshes:Vec<PhysicsMesh>,
models:Vec<PhysicsModel>,
2023-11-30 09:51:17 +00:00
//separate models into Contacting and Intersecting?
//wrap model id with ContactingModelId and IntersectingModelId
//attributes can be split into contacting and intersecting (this also saves a bit of memory)
//can go even further and deduplicate General attributes separately, reconstructing it when queried
attributes:Vec<PhysicsCollisionAttributes>,
}
impl PhysicsModels{
fn clear(&mut self){
2023-11-30 09:51:17 +00:00
self.meshes.clear();
self.models.clear();
2023-11-30 09:51:17 +00:00
self.attributes.clear();
}
2023-11-30 09:51:17 +00:00
//TODO: "statically" verify the maps don't refer to any nonexistant data, if they do delete the references.
//then I can make these getter functions unchecked.
2024-02-07 04:29:36 +00:00
fn mesh(&self,convex_mesh_id:ConvexMeshId)->TransformedMesh{
let model_idx=convex_mesh_id.model_id.get() as usize;
2023-11-30 09:51:17 +00:00
TransformedMesh::new(
2024-02-07 04:29:36 +00:00
&self.meshes[model_idx].submesh_view(convex_mesh_id.submesh_id),
2024-02-05 06:37:09 +00:00
&self.models[idx].transform,
&self.models[idx].normal_transform,
self.models[idx].transform_det,
2023-11-30 09:51:17 +00:00
)
}
2024-02-06 03:49:36 +00:00
fn model(&self,model_id:PhysicsModelId)->&PhysicsModel{
&self.models[model_id.get() as usize]
2023-11-30 09:51:17 +00:00
}
2024-02-06 03:49:36 +00:00
fn attr(&self,model_id:PhysicsModelId)->&PhysicsCollisionAttributes{
&self.attributes[self.models[model_id.get() as usize].attr_id.get() as usize]
}
2023-11-30 09:51:17 +00:00
fn push_mesh(&mut self,mesh:PhysicsMesh){
self.meshes.push(mesh);
}
2024-02-06 03:49:36 +00:00
fn push_model(&mut self,model:PhysicsModel)->PhysicsModelId{
2024-02-07 04:29:21 +00:00
let model_id=PhysicsModelId::new(self.models.len() as u32);
self.models.push(model);
model_id
}
2024-02-05 06:37:09 +00:00
fn push_attr(&mut self,attr:PhysicsCollisionAttributes)->PhysicsAttributesId{
2024-02-07 04:29:21 +00:00
let attr_id=PhysicsAttributesId::new(self.attributes.len() as u32);
2023-11-30 09:51:17 +00:00
self.attributes.push(attr);
attr_id
}
}
2023-10-05 03:04:04 +00:00
#[derive(Clone)]
pub struct PhysicsCamera{
2023-09-27 09:12:20 +00:00
//punch: Planar64Vec3,
//punch_velocity: Planar64Vec3,
sensitivity:Ratio64Vec2,//dots to Angle32 ratios
mouse:MouseState,//last seen absolute mouse pos
clamped_mouse_pos:glam::IVec2,//angles are calculated from this cumulative value
angle_pitch_lower_limit:Angle32,
angle_pitch_upper_limit:Angle32,
//angle limits could be an enum + struct that defines whether it's limited and selects clamp or wrap depending
// enum AngleLimit{
// Unlimited,
// Limited{lower:Angle32,upper:Angle32},
// }
//pitch_limit:AngleLimit,
//yaw_limit:AngleLimit,
2023-09-20 00:53:29 +00:00
}
2023-10-05 03:04:04 +00:00
impl PhysicsCamera {
2023-09-27 09:12:20 +00:00
pub fn move_mouse(&mut self,mouse_pos:glam::IVec2){
let mut unclamped_mouse_pos=self.clamped_mouse_pos+mouse_pos-self.mouse.pos;
unclamped_mouse_pos.y=unclamped_mouse_pos.y.clamp(
self.sensitivity.y.rhs_div_int(self.angle_pitch_lower_limit.get() as i64) as i32,
self.sensitivity.y.rhs_div_int(self.angle_pitch_upper_limit.get() as i64) as i32,
);
self.clamped_mouse_pos=unclamped_mouse_pos;
2023-09-20 00:53:29 +00:00
}
2023-09-27 09:12:20 +00:00
pub fn simulate_move_angles(&self,mouse_pos:glam::IVec2)->glam::Vec2 {
let a=-self.sensitivity.mul_int((mouse_pos-self.mouse.pos+self.clamped_mouse_pos).as_i64vec2());
let ax=Angle32::wrap_from_i64(a.x);
let ay=Angle32::clamp_from_i64(a.y)
//clamp to actual vertical cam limit
.clamp(self.angle_pitch_lower_limit,self.angle_pitch_upper_limit);
return glam::vec2(ax.into(),ay.into());
}
2023-10-17 06:20:38 +00:00
fn simulate_move_rotation(&self,mouse_pos:glam::IVec2)->Planar64Mat3{
let a=-self.sensitivity.mul_int((mouse_pos-self.mouse.pos+self.clamped_mouse_pos).as_i64vec2());
let ax=Angle32::wrap_from_i64(a.x);
let ay=Angle32::clamp_from_i64(a.y)
//clamp to actual vertical cam limit
.clamp(self.angle_pitch_lower_limit,self.angle_pitch_upper_limit);
Planar64Mat3::from_rotation_yx(ax,ay)
}
2023-09-27 09:12:20 +00:00
fn simulate_move_rotation_y(&self,mouse_pos_x:i32)->Planar64Mat3{
let ax=-self.sensitivity.x.mul_int((mouse_pos_x-self.mouse.pos.x+self.clamped_mouse_pos.x) as i64);
Planar64Mat3::from_rotation_y(Angle32::wrap_from_i64(ax))
2023-09-20 00:53:29 +00:00
}
}
impl std::default::Default for PhysicsCamera{
fn default()->Self{
Self{
sensitivity:Ratio64Vec2::ONE*200_000,
mouse:MouseState::default(),//t=0 does not cause divide by zero because it's immediately replaced
clamped_mouse_pos:glam::IVec2::ZERO,
angle_pitch_lower_limit:-Angle32::FRAC_PI_2,
angle_pitch_upper_limit:Angle32::FRAC_PI_2,
}
}
}
2024-02-02 06:14:58 +00:00
pub struct ModeState{
2024-02-06 03:49:36 +00:00
mode_id:gameplay_modes::ModeId,
2024-02-02 06:14:58 +00:00
stage_id:gameplay_modes::StageId,
jump_counts:HashMap<ModelId,u32>,//model_id -> jump count
next_ordered_checkpoint_id:gameplay_modes::CheckpointId,//which OrderedCheckpoint model_id you must pass next (if 0 you haven't passed OrderedCheckpoint0)
unordered_checkpoints:HashSet<ModelId>,
2023-10-03 05:45:20 +00:00
}
2024-02-02 06:14:58 +00:00
impl std::default::Default for ModeState{
2023-10-28 23:38:16 +00:00
fn default()->Self{
2023-10-03 05:45:20 +00:00
Self{
2024-02-07 04:29:21 +00:00
mode_id:gameplay_modes::ModeId::new(0),
stage_id:gameplay_modes::StageId::new(0),
next_ordered_checkpoint_id:gameplay_modes::CheckpointId::new(0),
2024-02-05 06:37:09 +00:00
unordered_checkpoints:HashSet::new(),
jump_counts:HashMap::new(),
2023-10-03 05:45:20 +00:00
}
}
}
2023-10-17 23:18:55 +00:00
struct WorldState{}
2024-02-06 03:49:36 +00:00
struct HitboxMesh{
halfsize:Planar64Vec3,
mesh:PhysicsMesh,
2024-02-07 04:29:36 +00:00
transform:PhysicsModelTransform,
2023-10-17 23:18:55 +00:00
}
2024-02-06 03:49:36 +00:00
impl HitboxMesh{
2024-02-07 04:29:36 +00:00
fn new(mesh:PhysicsMesh,vertex_transform:integer::Planar64Affine3)->Self{
2024-02-06 03:49:36 +00:00
//calculate extents
let mut aabb=aabb::Aabb::default();
2024-02-07 04:29:36 +00:00
for vert in mesh.complete_mesh_view().verts(){
aabb.grow(vertex_transform.transform_point3(vert));
2024-02-06 03:49:36 +00:00
}
Self{
halfsize:aabb.size()/2,
mesh,
2024-02-07 04:29:36 +00:00
transform:PhysicsModelTransform::new(vertex_transform)
2024-02-06 03:49:36 +00:00
}
2023-11-30 09:51:17 +00:00
}
2024-02-06 03:49:36 +00:00
#[inline]
fn transformed_mesh(&self)->TransformedMesh{
TransformedMesh::new(&self.mesh,&self.transform,&self.normal_transform,self.transform_det)
2023-11-30 09:51:17 +00:00
}
}
2024-01-30 06:37:05 +00:00
trait StyleHelper{
fn get_control(&self,control:u32,controls:u32)->bool;
fn allow_strafe(&self,controls:u32)->bool;
fn get_control_dir(&self,controls:u32)->Planar64Vec3;
//fn get_jump_time(&self)->Planar64;
//fn get_jump_height(&self)->Planar64;
//fn get_jump_energy(&self)->Planar64;
fn get_jump_deltav(&self)->Planar64;
fn get_walk_target_velocity(&self,camera:&PhysicsCamera,controls:u32,next_mouse:&MouseState,time:Time,normal:&Planar64Vec3)->Planar64Vec3;
fn get_ladder_target_velocity(&self,camera:&PhysicsCamera,controls:u32,next_mouse:&MouseState,time:Time,normal:&Planar64Vec3)->Planar64Vec3;
fn get_propulsion_control_dir(&self,camera:&PhysicsCamera,controls:u32,next_mouse:&MouseState,time:Time)->Planar64Vec3;
2024-02-06 03:49:36 +00:00
fn calculate_mesh(&self)->HitboxMesh;
2023-10-03 05:45:20 +00:00
}
2024-01-30 06:37:05 +00:00
impl StyleHelper for StyleModifiers{
2023-10-03 23:52:45 +00:00
fn get_control(&self,control:u32,controls:u32)->bool{
2023-10-05 03:04:04 +00:00
controls&self.controls_mask&control==control
2023-10-03 23:52:45 +00:00
}
2023-10-31 21:11:39 +00:00
fn allow_strafe(&self,controls:u32)->bool{
//disable strafing according to strafe settings
2024-02-02 06:14:58 +00:00
self.strafe.is_some_and(|s|s.mask(controls))
2023-10-31 21:11:39 +00:00
}
2023-09-27 09:12:20 +00:00
fn get_control_dir(&self,controls:u32)->Planar64Vec3{
2023-10-03 23:52:45 +00:00
//don't get fancy just do it
2023-09-27 09:12:20 +00:00
let mut control_dir:Planar64Vec3 = Planar64Vec3::ZERO;
2023-10-03 23:52:45 +00:00
//Apply mask after held check so you can require non-allowed keys to be held for some reason
let controls=controls&self.controls_mask;
if controls & Self::CONTROL_MOVEFORWARD == Self::CONTROL_MOVEFORWARD {
control_dir+=Self::FORWARD_DIR;
}
if controls & Self::CONTROL_MOVEBACK == Self::CONTROL_MOVEBACK {
2023-09-27 09:12:20 +00:00
control_dir-=Self::FORWARD_DIR;
2023-10-03 23:52:45 +00:00
}
if controls & Self::CONTROL_MOVELEFT == Self::CONTROL_MOVELEFT {
2023-09-27 09:12:20 +00:00
control_dir-=Self::RIGHT_DIR;
2023-10-03 23:52:45 +00:00
}
if controls & Self::CONTROL_MOVERIGHT == Self::CONTROL_MOVERIGHT {
control_dir+=Self::RIGHT_DIR;
}
if controls & Self::CONTROL_MOVEUP == Self::CONTROL_MOVEUP {
control_dir+=Self::UP_DIR;
}
if controls & Self::CONTROL_MOVEDOWN == Self::CONTROL_MOVEDOWN {
2023-09-27 09:12:20 +00:00
control_dir-=Self::UP_DIR;
2023-10-03 23:52:45 +00:00
}
return control_dir
}
2023-10-14 21:51:13 +00:00
2023-10-17 23:18:55 +00:00
//fn get_jump_time(&self)->Planar64
//fn get_jump_height(&self)->Planar64
//fn get_jump_energy(&self)->Planar64
fn get_jump_deltav(&self)->Planar64{
match &self.jump_impulse{
2024-02-05 04:59:33 +00:00
&gameplay_style::JumpImpulse::FromTime(time)=>self.gravity.length()*(time/2),
&gameplay_style::JumpImpulse::FromHeight(height)=>(self.gravity.length()*height*2).sqrt(),
&gameplay_style::JumpImpulse::FromDeltaV(deltav)=>deltav,
&gameplay_style::JumpImpulse::FromEnergy(energy)=>(energy*2/self.mass).sqrt(),
2023-10-17 23:18:55 +00:00
}
2023-10-17 07:17:54 +00:00
}
2023-11-30 09:51:17 +00:00
fn get_walk_target_velocity(&self,camera:&PhysicsCamera,controls:u32,next_mouse:&MouseState,time:Time,normal:&Planar64Vec3)->Planar64Vec3{
let mut control_dir=self.get_control_dir(controls);
if control_dir==Planar64Vec3::ZERO{
return control_dir;
}
2023-10-17 07:17:54 +00:00
let camera_mat=camera.simulate_move_rotation_y(camera.mouse.lerp(&next_mouse,time).x);
2023-11-30 09:51:17 +00:00
control_dir=camera_mat*control_dir;
let n=normal.length();
let m=control_dir.length();
let d=normal.dot(control_dir)/m;
if d<n{
let cr=normal.cross(control_dir);
if cr==Planar64Vec3::ZERO{
Planar64Vec3::ZERO
}else{
cr.cross(*normal)*(self.walk_speed/(n*(n*n-d*d).sqrt()*m))
}
}else{
Planar64Vec3::ZERO
}
2023-10-17 23:18:55 +00:00
}
2023-11-30 09:51:17 +00:00
fn get_ladder_target_velocity(&self,camera:&PhysicsCamera,controls:u32,next_mouse:&MouseState,time:Time,normal:&Planar64Vec3)->Planar64Vec3{
let mut control_dir=self.get_control_dir(controls);
if control_dir==Planar64Vec3::ZERO{
return control_dir;
}
2023-10-17 23:18:55 +00:00
let camera_mat=camera.simulate_move_rotation(camera.mouse.lerp(&next_mouse,time));
2023-11-30 09:51:17 +00:00
control_dir=camera_mat*control_dir;
let n=normal.length();
let m=control_dir.length();
let mut d=normal.dot(control_dir)/m;
if d< -self.ladder_dot*n{
control_dir=Planar64Vec3::Y*m;
d=normal.y();
}else if self.ladder_dot*n<d{
control_dir=Planar64Vec3::NEG_Y*m;
d=-normal.y();
}
//n=d if you are standing on top of a ladder and press E.
//two fixes:
//- ladder movement is not allowed on walkable surfaces
//- fix the underlying issue
if d.get().unsigned_abs()<n.get().unsigned_abs(){
let cr=normal.cross(control_dir);
if cr==Planar64Vec3::ZERO{
Planar64Vec3::ZERO
}else{
cr.cross(*normal)*(self.ladder_speed/(n*(n*n-d*d).sqrt()))
}
}else{
Planar64Vec3::ZERO
}
2023-10-17 07:17:54 +00:00
}
2023-10-20 20:47:26 +00:00
fn get_propulsion_control_dir(&self,camera:&PhysicsCamera,controls:u32,next_mouse:&MouseState,time:Time)->Planar64Vec3{
2023-10-17 07:17:54 +00:00
let camera_mat=camera.simulate_move_rotation(camera.mouse.lerp(&next_mouse,time));
2023-10-20 20:47:26 +00:00
camera_mat*self.get_control_dir(controls)
2023-10-14 21:51:13 +00:00
}
2024-02-06 03:49:36 +00:00
fn calculate_mesh(&self)->HitboxMesh{
let mesh=match self.hitbox.mesh{
gameplay_style::HitboxMesh::Box=>PhysicsMesh::unit_cube(),
gameplay_style::HitboxMesh::Cylinder=>PhysicsMesh::unit_cylinder(),
};
let transform=integer::Planar64Affine3::new(Planar64Mat3::from_diagonal(self.hitbox.halfsize),Planar64Vec3::ZERO);
HitboxMesh::new(mesh,transform)
2023-11-30 09:51:17 +00:00
}
2023-10-03 23:52:45 +00:00
}
2023-10-03 05:45:20 +00:00
2023-10-13 02:44:46 +00:00
enum MoveState{
Air,
Walk(WalkState),
Water,
Ladder(WalkState),
}
#[derive(Clone,Default)]
2023-10-05 03:04:04 +00:00
pub struct PhysicsOutputState{
body:Body,
camera:PhysicsCamera,
camera_offset:Planar64Vec3,
2023-10-05 03:04:04 +00:00
}
impl PhysicsOutputState{
pub fn extrapolate(&self,mouse_pos:glam::IVec2,time:Time)->(glam::Vec3,glam::Vec2){
((self.body.extrapolated_position(time)+self.camera_offset).into(),self.camera.simulate_move_angles(mouse_pos))
2023-10-05 03:04:04 +00:00
}
}
2023-09-08 18:33:16 +00:00
2023-11-30 09:51:17 +00:00
#[derive(Clone,Hash,Eq,PartialEq)]
2023-10-03 05:45:20 +00:00
enum PhysicsCollisionAttributes{
Contact{//track whether you are contacting the object
2024-02-02 06:14:58 +00:00
contacting:gameplay_attributes::ContactingAttributes,
general:gameplay_attributes::GeneralAttributes,
2023-10-03 05:45:20 +00:00
},
Intersect{//track whether you are intersecting the object
2024-02-02 06:14:58 +00:00
intersecting:gameplay_attributes::IntersectingAttributes,
general:gameplay_attributes::GeneralAttributes,
2023-10-03 05:45:20 +00:00
},
}
2023-11-30 09:51:17 +00:00
struct NonPhysicsError;
2024-02-02 06:14:58 +00:00
impl TryFrom<&gameplay_attributes::CollisionAttributes> for PhysicsCollisionAttributes{
2023-11-30 09:51:17 +00:00
type Error=NonPhysicsError;
2024-02-02 06:14:58 +00:00
fn try_from(value:&gameplay_attributes::CollisionAttributes)->Result<Self,Self::Error>{
2023-11-30 09:51:17 +00:00
match value{
2024-02-02 06:14:58 +00:00
gameplay_attributes::CollisionAttributes::Decoration=>Err(NonPhysicsError),
gameplay_attributes::CollisionAttributes::Contact{contacting,general}=>Ok(Self::Contact{contacting:contacting.clone(),general:general.clone()}),
gameplay_attributes::CollisionAttributes::Intersect{intersecting,general}=>Ok(Self::Intersect{intersecting:intersecting.clone(),general:general.clone()}),
2023-11-30 09:51:17 +00:00
}
}
}
2024-02-07 04:29:21 +00:00
#[derive(id::Id)]
2024-02-06 03:49:36 +00:00
struct PhysicsAttributesId(u32);
2024-02-02 06:14:58 +00:00
//unique physics meshes indexed by this
2024-02-07 04:29:36 +00:00
#[derive(Debug,Clone,Copy,Eq,Hash,PartialEq)]
2024-02-05 04:59:33 +00:00
struct ConvexMeshId{
2024-02-07 04:29:36 +00:00
model_id:PhysicsModelId,
submesh_id:PhysicsSubmeshId,
2024-02-02 06:14:58 +00:00
}
2024-02-07 04:29:21 +00:00
#[derive(Debug,Clone,Copy,Hash,id::Id,Eq,PartialEq)]
2024-02-06 03:49:36 +00:00
struct PhysicsModelId(u32);
2024-02-06 04:27:54 +00:00
impl Into<ModelId> for PhysicsModelId{
fn into(self)->ModelId{
2024-02-07 04:29:21 +00:00
ModelId::new(self.0)
2024-02-06 04:27:54 +00:00
}
}
2024-02-06 03:49:36 +00:00
impl From<ModelId> for PhysicsModelId{
fn from(value:ModelId)->Self{
2024-02-07 04:29:21 +00:00
Self::new(value.get())
2024-02-06 03:49:36 +00:00
}
}
2024-02-07 04:29:36 +00:00
pub struct PhysicsModelTransform{
vertex:integer::Planar64Affine3,
normal:integer::Planar64Mat3,
det:Planar64,
}
impl PhysicsModelTransform{
pub const fn new(vertex_transform:integer::Planar64Affine3)->Self{
Self{
normal:vertex_transform.matrix3.inverse_times_det().transpose(),
det:vertex_transform.matrix3.determinant(),
vertex:vertex_transform,
}
}
}
2023-11-30 09:51:17 +00:00
pub struct PhysicsModel{
2023-09-08 22:54:43 +00:00
//A model is a thing that has a hitbox. can be represented by a list of TreyMesh-es
//in this iteration, all it needs is extents.
2024-02-06 05:28:01 +00:00
mesh_id:PhysicsMeshId,
2024-02-02 06:14:58 +00:00
//put these up on the Model (data normalization)
2024-02-06 03:49:36 +00:00
attr_id:PhysicsAttributesId,
2024-02-07 04:29:36 +00:00
transform:PhysicsModelTransform,
2023-09-08 22:54:43 +00:00
}
2023-11-30 09:51:17 +00:00
impl PhysicsModel{
2024-02-07 04:29:36 +00:00
pub const fn new(mesh_id:PhysicsMeshId,attr_id:PhysicsAttributesId,transform:PhysicsModelTransform)->Self{
Self{
2024-02-06 05:28:01 +00:00
mesh_id,
2023-11-30 09:51:17 +00:00
attr_id,
transform,
}
2023-09-08 23:14:01 +00:00
}
2024-02-07 04:29:36 +00:00
const fn transform(&self)->&PhysicsModelTransform{
&self.transform
}
2023-09-08 22:54:43 +00:00
}
2023-09-19 01:34:48 +00:00
#[derive(Debug,Clone,Eq,Hash,PartialEq)]
2023-11-30 09:51:17 +00:00
struct ContactCollision{
2024-02-02 06:14:58 +00:00
face_id:model_physics::MinkowskiFace,
2024-02-07 04:29:36 +00:00
convex_mesh_id:ConvexMeshId,
2023-09-08 22:54:22 +00:00
}
2023-11-30 09:51:17 +00:00
#[derive(Debug,Clone,Eq,Hash,PartialEq)]
struct IntersectCollision{
2024-02-07 04:29:36 +00:00
convex_mesh_id:ConvexMeshId,
2023-11-30 09:51:17 +00:00
}
#[derive(Debug,Clone,Eq,Hash,PartialEq)]
enum Collision{
Contact(ContactCollision),
Intersect(IntersectCollision),
}
impl Collision{
2024-02-07 04:29:36 +00:00
fn convex_mesh_id(&self)->ConvexMeshId{
2023-11-30 09:51:17 +00:00
match self{
2024-02-07 04:29:36 +00:00
&Collision::Contact(ContactCollision{convex_mesh_id,face_id:_})
|&Collision::Intersect(IntersectCollision{convex_mesh_id})=>convex_mesh_id,
2023-11-30 09:51:17 +00:00
}
2023-10-04 00:20:35 +00:00
}
2024-02-02 06:14:58 +00:00
fn face_id(&self)->Option<model_physics::MinkowskiFace>{
2023-11-30 09:51:17 +00:00
match self{
2024-02-07 04:29:36 +00:00
&Collision::Contact(ContactCollision{convex_mesh_id:_,face_id})=>Some(face_id),
&Collision::Intersect(IntersectCollision{convex_mesh_id:_})=>None,
2023-11-30 09:51:17 +00:00
}
2023-09-08 22:54:22 +00:00
}
}
2023-11-30 09:51:17 +00:00
#[derive(Default)]
2023-10-13 02:44:46 +00:00
struct TouchingState{
2024-02-05 06:37:09 +00:00
contacts:HashSet::<ContactCollision>,
intersects:HashSet::<IntersectCollision>,
2023-10-13 02:44:46 +00:00
}
impl TouchingState{
fn clear(&mut self){
self.contacts.clear();
self.intersects.clear();
}
2023-11-30 09:51:17 +00:00
fn insert(&mut self,collision:Collision)->bool{
match collision{
Collision::Contact(collision)=>self.contacts.insert(collision),
Collision::Intersect(collision)=>self.intersects.insert(collision),
}
2023-10-13 02:44:46 +00:00
}
2023-11-30 09:51:17 +00:00
fn remove(&mut self,collision:&Collision)->bool{
match collision{
Collision::Contact(collision)=>self.contacts.remove(collision),
Collision::Intersect(collision)=>self.intersects.remove(collision),
}
2023-10-13 02:44:46 +00:00
}
2023-11-30 09:51:17 +00:00
fn base_acceleration(&self,models:&PhysicsModels,style:&StyleModifiers,camera:&PhysicsCamera,controls:u32,next_mouse:&MouseState,time:Time)->Planar64Vec3{
let mut a=style.gravity;
if let Some(rocket_force)=style.rocket_force{
a+=style.get_propulsion_control_dir(camera,controls,next_mouse,time)*rocket_force;
}
//add accelerators
for contact in &self.contacts{
2024-02-07 04:29:36 +00:00
match models.attr(contact.convex_mesh_id.model_id){
2023-11-30 09:51:17 +00:00
PhysicsCollisionAttributes::Contact{contacting,general}=>{
match &general.accelerator{
Some(accelerator)=>a+=accelerator.acceleration,
None=>(),
}
},
_=>panic!("impossible touching state"),
}
}
for intersect in &self.intersects{
2024-02-07 04:29:36 +00:00
match models.attr(intersect.convex_mesh_id.model_id){
2023-11-30 09:51:17 +00:00
PhysicsCollisionAttributes::Intersect{intersecting,general}=>{
match &general.accelerator{
Some(accelerator)=>a+=accelerator.acceleration,
None=>(),
}
},
_=>panic!("impossible touching state"),
}
}
//add water../?
a
}
2024-02-06 04:27:54 +00:00
fn constrain_velocity(&self,models:&PhysicsModels,hitbox_mesh:&HitboxMesh,velocity:&mut Planar64Vec3){
2023-11-30 09:51:17 +00:00
//TODO: trey push solve
for contact in &self.contacts{
2024-02-07 04:29:21 +00:00
let n=contact_normal(models,hitbox_mesh,contact);
2023-11-30 09:51:17 +00:00
let d=n.dot128(*velocity);
if d<0{
*velocity-=n*Planar64::raw(((d<<32)/n.dot128(n)) as i64);
2023-10-13 02:44:46 +00:00
}
}
}
2024-02-06 04:27:54 +00:00
fn constrain_acceleration(&self,models:&PhysicsModels,hitbox_mesh:&HitboxMesh,acceleration:&mut Planar64Vec3){
2023-11-30 09:51:17 +00:00
//TODO: trey push solve
for contact in &self.contacts{
2024-02-07 04:29:21 +00:00
let n=contact_normal(models,hitbox_mesh,contact);
2023-11-30 09:51:17 +00:00
let d=n.dot128(*acceleration);
if d<0{
*acceleration-=n*Planar64::raw(((d<<32)/n.dot128(n)) as i64);
2023-10-13 02:44:46 +00:00
}
}
}
2024-02-06 04:27:54 +00:00
fn get_move_state(&self,body:&Body,models:&PhysicsModels,style:&StyleModifiers,hitbox_mesh:&HitboxMesh,camera:&PhysicsCamera,controls:u32,next_mouse:&MouseState,time:Time)->(MoveState,Planar64Vec3){
2023-11-30 09:51:17 +00:00
//check current move conditions and use heuristics to determine
//which ladder to climb on, which ground to walk on, etc
//collect move state affecting objects from contacts (accelerator,water,ladder,ground)
let gravity=self.base_acceleration(models,style,camera,controls,next_mouse,time);
let mut move_state=MoveState::Air;
let mut a=gravity;
for contact in &self.contacts{
2024-02-07 04:29:36 +00:00
match models.attr(contact.convex_mesh_id.model_id){
2023-11-30 09:51:17 +00:00
PhysicsCollisionAttributes::Contact{contacting,general}=>{
2024-02-06 03:49:36 +00:00
let normal=contact_normal(models,hitbox_mesh,contact);
2023-11-30 09:51:17 +00:00
match &contacting.contact_behaviour{
2024-02-05 04:59:33 +00:00
Some(gameplay_attributes::ContactingBehaviour::Ladder(_))=>{
2023-11-30 09:51:17 +00:00
//ladder walkstate
let mut target_velocity=style.get_ladder_target_velocity(camera,controls,next_mouse,time,&normal);
2024-02-06 03:49:36 +00:00
self.constrain_velocity(models,hitbox_mesh,&mut target_velocity);
2023-11-30 09:51:17 +00:00
let (walk_state,mut acceleration)=WalkState::ladder(body,style,gravity,target_velocity,contact.clone(),&normal);
move_state=MoveState::Ladder(walk_state);
2024-02-06 03:49:36 +00:00
self.constrain_acceleration(models,hitbox_mesh,&mut acceleration);
2023-11-30 09:51:17 +00:00
a=acceleration;
},
None=>if style.surf_slope.map_or(true,|s|normal.walkable(s,Planar64Vec3::Y)){
//check ground
let mut target_velocity=style.get_walk_target_velocity(camera,controls,next_mouse,time,&normal);
2024-02-06 03:49:36 +00:00
self.constrain_velocity(models,hitbox_mesh,&mut target_velocity);
2023-11-30 09:51:17 +00:00
let (walk_state,mut acceleration)=WalkState::ground(body,style,gravity,target_velocity,contact.clone(),&normal);
move_state=MoveState::Walk(walk_state);
2024-02-06 03:49:36 +00:00
self.constrain_acceleration(models,hitbox_mesh,&mut acceleration);
2023-11-30 09:51:17 +00:00
a=acceleration;
},
_=>(),
}
},
_=>panic!("impossible touching state"),
}
}
for intersect in &self.intersects{
//water
}
2024-02-06 03:49:36 +00:00
self.constrain_acceleration(models,hitbox_mesh,&mut a);
2023-11-30 09:51:17 +00:00
(move_state,a)
}
2024-02-06 04:27:54 +00:00
fn predict_collision_end(&self,collector:&mut instruction::InstructionCollector<PhysicsInstruction>,models:&PhysicsModels,hitbox_mesh:&HitboxMesh,body:&Body,time:Time){
2023-11-30 09:51:17 +00:00
let relative_body=VirtualBody::relative(&Body::default(),body).body(time);
for contact in &self.contacts{
//detect face slide off
2024-02-07 04:29:36 +00:00
let model_mesh=models.mesh(contact.convex_mesh_id);
let minkowski=model_physics::MinkowskiMesh::minkowski_sum(model_mesh,hitbox_mesh.transformed_mesh());
2023-11-30 09:51:17 +00:00
collector.collect(minkowski.predict_collision_face_out(&relative_body,collector.time(),contact.face_id).map(|(face,time)|{
TimedInstruction{
time,
instruction:PhysicsInstruction::CollisionEnd(
2024-02-07 04:29:36 +00:00
Collision::Contact(ContactCollision{convex_mesh_id:contact.convex_mesh_id,face_id:contact.face_id})
2023-11-30 09:51:17 +00:00
),
}
}));
}
for intersect in &self.intersects{
//detect model collision in reverse
2024-02-07 04:29:36 +00:00
let model_mesh=models.mesh(intersect.convex_mesh_id);
let minkowski=model_physics::MinkowskiMesh::minkowski_sum(model_mesh,hitbox_mesh.transformed_mesh());
2023-11-30 09:51:17 +00:00
collector.collect(minkowski.predict_collision_out(&relative_body,collector.time()).map(|(face,time)|{
TimedInstruction{
time,
instruction:PhysicsInstruction::CollisionEnd(
2024-02-07 04:29:36 +00:00
Collision::Intersect(IntersectCollision{convex_mesh_id:intersect.convex_mesh_id})
2023-11-30 09:51:17 +00:00
),
}
}));
2023-10-13 02:44:46 +00:00
}
}
}
2023-11-30 09:51:17 +00:00
impl Body{
pub fn new(position:Planar64Vec3,velocity:Planar64Vec3,acceleration:Planar64Vec3,time:Time)->Self{
2023-09-09 03:14:18 +00:00
Self{
2023-09-18 23:03:27 +00:00
position,
velocity,
acceleration,
2023-11-30 09:51:17 +00:00
time,
2023-09-09 03:14:18 +00:00
}
}
2023-09-27 09:12:20 +00:00
pub fn extrapolated_position(&self,time:Time)->Planar64Vec3{
let dt=time-self.time;
self.position+self.velocity*dt+self.acceleration*(dt*dt/2)
2023-09-09 03:14:18 +00:00
}
2023-09-27 09:12:20 +00:00
pub fn extrapolated_velocity(&self,time:Time)->Planar64Vec3{
let dt=time-self.time;
self.velocity+self.acceleration*dt
2023-09-18 23:04:18 +00:00
}
2023-09-27 09:12:20 +00:00
pub fn advance_time(&mut self,time:Time){
2023-09-09 03:14:18 +00:00
self.position=self.extrapolated_position(time);
2023-09-18 23:04:18 +00:00
self.velocity=self.extrapolated_velocity(time);
2023-09-09 03:14:18 +00:00
self.time=time;
}
2023-11-30 09:51:17 +00:00
pub fn infinity_dir(&self)->Option<Planar64Vec3>{
if self.velocity==Planar64Vec3::ZERO{
if self.acceleration==Planar64Vec3::ZERO{
None
}else{
Some(self.acceleration)
}
}else{
Some(self.velocity)
}
}
2024-01-30 00:19:41 +00:00
pub fn grow_aabb(&self,aabb:&mut aabb::Aabb,t0:Time,t1:Time){
2023-11-30 09:51:17 +00:00
aabb.grow(self.extrapolated_position(t0));
aabb.grow(self.extrapolated_position(t1));
//v+a*t==0
//goober code
if self.acceleration.x()!=Planar64::ZERO{
let t=Time::from(-self.velocity.x()/self.acceleration.x());
if t0<t&&t<t1{
aabb.grow(self.extrapolated_position(t));
}
}
if self.acceleration.y()!=Planar64::ZERO{
let t=Time::from(-self.velocity.y()/self.acceleration.y());
if t0<t&&t<t1{
aabb.grow(self.extrapolated_position(t));
}
}
if self.acceleration.z()!=Planar64::ZERO{
let t=Time::from(-self.velocity.z()/self.acceleration.z());
if t0<t&&t<t1{
aabb.grow(self.extrapolated_position(t));
}
}
}
2023-09-09 03:14:18 +00:00
}
2023-10-14 22:41:59 +00:00
impl std::fmt::Display for Body{
fn fmt(&self,f:&mut std::fmt::Formatter<'_>)->std::fmt::Result{
write!(f,"p({}) v({}) a({}) t({})",self.position,self.velocity,self.acceleration,self.time)
}
}
2023-09-09 03:14:18 +00:00
2023-11-30 09:51:17 +00:00
struct VirtualBody<'a>{
body0:&'a Body,
body1:&'a Body,
}
impl VirtualBody<'_>{
fn relative<'a>(body0:&'a Body,body1:&'a Body)->VirtualBody<'a>{
//(p0,v0,a0,t0)
//(p1,v1,a1,t1)
VirtualBody{
body0,
body1,
}
}
fn extrapolated_position(&self,time:Time)->Planar64Vec3{
self.body1.extrapolated_position(time)-self.body0.extrapolated_position(time)
}
fn extrapolated_velocity(&self,time:Time)->Planar64Vec3{
self.body1.extrapolated_velocity(time)-self.body0.extrapolated_velocity(time)
}
fn acceleration(&self)->Planar64Vec3{
self.body1.acceleration-self.body0.acceleration
}
fn body(&self,time:Time)->Body{
Body::new(self.extrapolated_position(time),self.extrapolated_velocity(time),self.acceleration(),time)
}
}
2024-02-05 04:59:33 +00:00
pub struct PhysicsState{
time:Time,
body:Body,
world:WorldState,//currently there is only one state the world can be in
mode_state:ModeState,
style:StyleModifiers,//mode style with custom style updates applied
touching:TouchingState,
//camera must exist in state because wormholes modify the camera, also camera punch
camera:PhysicsCamera,
pub next_mouse:MouseState,//Where is the mouse headed next
controls:u32,//TODO this should be a struct
move_state:MoveState,
2024-02-06 03:49:36 +00:00
}
//random collection of contextual data that doesn't belong in PhysicsState
pub struct PhysicsData{
//permanent map data
2024-02-07 04:29:36 +00:00
bvh:bvh::BvhNode<ConvexMeshId>,
2024-02-05 06:37:09 +00:00
modes:gameplay_modes::Modes,
2024-02-06 03:49:36 +00:00
//transient map/environment data (open world may load/unload)
models:PhysicsModels,
//cached calculations
hitbox_mesh:HitboxMesh,
2024-02-05 04:59:33 +00:00
}
2023-10-05 03:04:04 +00:00
impl Default for PhysicsState{
fn default()->Self{
2023-10-05 03:04:04 +00:00
Self{
2023-11-30 09:51:17 +00:00
body:Body::new(Planar64Vec3::int(0,50,0),Planar64Vec3::int(0,0,0),Planar64Vec3::int(0,-100,0),Time::ZERO),
time:Time::ZERO,
2023-10-05 03:04:04 +00:00
style:StyleModifiers::default(),
2023-10-13 02:44:46 +00:00
touching:TouchingState::default(),
move_state: MoveState::Air,
camera:PhysicsCamera::default(),
next_mouse:MouseState::default(),
controls:0,
2023-10-05 03:04:04 +00:00
world:WorldState{},
2024-02-02 06:14:58 +00:00
mode_state:ModeState::default(),
2023-10-05 03:04:04 +00:00
}
}
}
2023-09-08 18:33:16 +00:00
impl PhysicsState {
pub fn clear(&mut self){
2023-10-13 02:44:46 +00:00
self.touching.clear();
2023-10-05 03:04:04 +00:00
}
pub fn output(&self)->PhysicsOutputState{
PhysicsOutputState{
body:self.body.clone(),
camera:self.camera.clone(),
camera_offset:self.style.camera_offset.clone(),
2023-10-05 03:04:04 +00:00
}
}
2023-10-10 02:44:49 +00:00
pub fn load_user_settings(&mut self,user_settings:&crate::settings::UserSettings){
self.camera.sensitivity=user_settings.calculate_sensitivity();
}
2023-09-27 09:12:20 +00:00
pub fn advance_time(&mut self, time: Time){
2023-09-09 03:14:18 +00:00
self.body.advance_time(time);
self.time=time;
2023-09-08 18:33:16 +00:00
}
2023-09-08 18:33:20 +00:00
2023-09-20 00:53:29 +00:00
fn set_control(&mut self,control:u32,state:bool){
self.controls=if state{self.controls|control}else{self.controls&!control};
}
2023-10-13 02:44:46 +00:00
2023-10-31 21:11:39 +00:00
fn next_strafe_instruction(&self)->Option<TimedInstruction<PhysicsInstruction>>{
self.style.strafe.as_ref().map(|strafe|{
TimedInstruction{
2024-02-02 06:14:58 +00:00
time:strafe.next_tick(self.time),
//only poll the physics if there is a before and after mouse event
instruction:PhysicsInstruction::StrafeTick
}
})
2023-09-08 18:33:20 +00:00
}
2023-09-08 21:11:24 +00:00
//state mutated on collision:
//Accelerator
//stair step-up
//state mutated on instruction
//change fly acceleration (fly_sustain)
//change fly velocity
//generic event emmiters
//PlatformStandTime
//walk/swim/air/ladder sounds
//VState?
//falling under the map
// fn next_respawn_instruction(&self) -> Option<TimedInstruction<PhysicsInstruction>> {
// if self.body.position<self.world.min_y {
// return Some(TimedInstruction{
// time:self.time,
// instruction:PhysicsInstruction::Trigger(None)
// });
// }
// }
// fn next_water_instruction(&self) -> Option<TimedInstruction<PhysicsInstruction>> {
// return Some(TimedInstruction{
// time:(self.time*self.strafe_tick_num/self.strafe_tick_den+1)*self.strafe_tick_den/self.strafe_tick_num,
// //only poll the physics if there is a before and after mouse event
// instruction:PhysicsInstruction::Water
// });
// }
2023-10-13 02:44:46 +00:00
fn next_move_instruction(&self)->Option<TimedInstruction<PhysicsInstruction>>{
2023-09-19 04:10:07 +00:00
//check if you have a valid walk state and create an instruction
2023-10-13 02:44:46 +00:00
match &self.move_state{
MoveState::Walk(walk_state)|MoveState::Ladder(walk_state)=>match &walk_state.state{
2023-10-17 07:17:54 +00:00
WalkEnum::Transient(walk_target)=>Some(TimedInstruction{
time:walk_target.time,
instruction:PhysicsInstruction::ReachWalkTargetVelocity
}),
WalkEnum::Reached=>None,
}
2023-10-13 02:44:46 +00:00
MoveState::Air=>self.next_strafe_instruction(),
MoveState::Water=>None,//TODO
2023-09-19 04:10:07 +00:00
}
2023-09-08 21:11:24 +00:00
}
2023-09-08 18:33:20 +00:00
}
2024-02-06 03:49:36 +00:00
pub struct PhysicsContext{
pub state:PhysicsState,//this captures the entire state of the physics.
data:PhysicsData,//data currently loaded into memory which is needded for physics to run, but is not part of the state.
}
impl instruction::InstructionConsumer<PhysicsInstruction> for PhysicsContext{
fn process_instruction(&mut self,ins:TimedInstruction<PhysicsInstruction>){
atomic_state_update(&mut self.state,&self.data,ins)
}
}
impl instruction::InstructionEmitter<PhysicsInstruction> for PhysicsContext{
2023-09-09 00:34:26 +00:00
//this little next instruction function can cache its return value and invalidate the cached value by watching the State.
2023-11-30 09:51:17 +00:00
fn next_instruction(&self,time_limit:Time)->Option<TimedInstruction<PhysicsInstruction>>{
2024-02-06 03:49:36 +00:00
literally_next_instruction_but_with_context(&self.state,&self.data,time_limit)
}
}
impl PhysicsContext{
pub fn spawn(&mut self){
2024-02-07 04:29:21 +00:00
self.state.mode_state.stage_id=gameplay_modes::StageId::new(0);
2024-02-06 03:49:36 +00:00
self.process_instruction(instruction::TimedInstruction{
time:self.state.time,
instruction: PhysicsInstruction::Input(PhysicsInputInstruction::Reset),
});
}
2024-02-07 06:42:23 +00:00
pub fn generate_models(&mut self,map:&map::Map){
2024-02-06 03:49:36 +00:00
let mut starts=Vec::new();
let mut spawns=Vec::new();
let mut attr_hash=HashMap::new();
2024-02-07 06:42:23 +00:00
for (&model_id,model) in &map.models{
2024-02-07 04:29:36 +00:00
let mesh_id=self.data.models.meshes.len();
2024-02-06 03:49:36 +00:00
let mut make_mesh=false;
for model_instance in &model.instances{
if let Ok(physics_attributes)=PhysicsCollisionAttributes::try_from(&model_instance.attributes){
let attr_id=if let Some(&attr_id)=attr_hash.get(&physics_attributes){
attr_id
}else{
2024-02-07 04:29:36 +00:00
let attr_id=self.data.models.push_attr(physics_attributes.clone());
2024-02-06 03:49:36 +00:00
attr_hash.insert(physics_attributes,attr_id);
attr_id
};
let model_physics=PhysicsModel::new(mesh_id,attr_id,model_instance.transform);
make_mesh=true;
2024-02-07 04:29:36 +00:00
self.data.models.push_model(model_physics);
2024-02-06 03:49:36 +00:00
}
}
if make_mesh{
2024-02-07 04:29:36 +00:00
self.data.models.push_mesh(PhysicsMesh::from(model));
2024-02-06 03:49:36 +00:00
}
}
2024-02-07 04:29:36 +00:00
let convex_mesh_aabb_list=self.data.models.models.iter()
.enumerate().flat_map(|(model_id,model)|{
self.data.models.meshes[model.mesh_id.get() as usize].submesh_views()
.enumerate().map(|(submesh_id,view)|{
let mut aabb=aabb::Aabb::default();
for v in view.verts(){
aabb.grow(v)
}
(ConvexMeshId{
model_id:PhysicsModelId::new(model_id as u32),
submesh_id:PhysicsSubmeshId::new(submesh_id as u32),
},aabb)
})
}).collect();
self.data.bvh=bvh::generate_bvh_node(convex_mesh_aabb_list);
println!("Physics Objects: {}",self.data.models.models.len());
2024-02-06 03:49:36 +00:00
}
//tickless gaming
pub fn run(&mut self, time_limit:Time){
//prepare is ommitted - everything is done via instructions.
while let Some(instruction) = self.next_instruction(time_limit) {//collect
//process
self.process_instruction(instruction);
//write hash lol
}
}
//TODO get rid of this trash
fn refresh_walk_target(&mut self)->Planar64Vec3{
match &mut self.state.move_state{
MoveState::Air|MoveState::Water=>self.state.touching.base_acceleration(&self.data.models,&self.state.style,&self.state.camera,self.state.controls,&self.state.next_mouse,self.state.time),
MoveState::Walk(WalkState{state,contact,jump_direction:_})=>{
2024-02-06 04:27:54 +00:00
let n=contact_normal(&self.data.models,&self.data.hitbox_mesh,contact);
2024-02-06 03:49:36 +00:00
let gravity=self.state.touching.base_acceleration(&self.data.models,&self.state.style,&self.state.camera,self.state.controls,&self.state.next_mouse,self.state.time);
let mut a;
let mut v=self.state.style.get_walk_target_velocity(&self.state.camera,self.state.controls,&self.state.next_mouse,self.state.time,&n);
2024-02-06 04:27:54 +00:00
self.state.touching.constrain_velocity(&self.data.models,&self.data.hitbox_mesh,&mut v);
2024-02-06 03:49:36 +00:00
let normal_accel=-n.dot(gravity)/n.length();
(*state,a)=WalkEnum::with_target_velocity(&self.state.body,&self.state.style,v,&n,self.state.style.walk_speed,normal_accel);
a
},
MoveState::Ladder(WalkState{state,contact,jump_direction:_})=>{
2024-02-06 04:27:54 +00:00
let n=contact_normal(&self.data.models,&self.data.hitbox_mesh,contact);
2024-02-06 03:49:36 +00:00
let gravity=self.state.touching.base_acceleration(&self.data.models,&self.state.style,&self.state.camera,self.state.controls,&self.state.next_mouse,self.state.time);
let mut a;
let mut v=self.state.style.get_ladder_target_velocity(&self.state.camera,self.state.controls,&self.state.next_mouse,self.state.time,&n);
2024-02-06 04:27:54 +00:00
self.state.touching.constrain_velocity(&self.data.models,&self.data.hitbox_mesh,&mut v);
2024-02-06 03:49:36 +00:00
(*state,a)=WalkEnum::with_target_velocity(&self.state.body,&self.state.style,v,&n,self.state.style.ladder_speed,self.state.style.ladder_accel);
a
},
}
}
}
fn literally_next_instruction_but_with_context(state:&PhysicsState,data:&PhysicsData,time_limit:Time)->Option<TimedInstruction<PhysicsInstruction>>{
2023-09-08 18:33:20 +00:00
//JUST POLLING!!! NO MUTATION
2024-01-30 00:19:41 +00:00
let mut collector = instruction::InstructionCollector::new(time_limit);
2023-11-30 09:51:17 +00:00
2024-02-06 03:49:36 +00:00
collector.collect(state.next_move_instruction());
2023-11-30 09:51:17 +00:00
//check for collision ends
2024-02-06 04:27:54 +00:00
state.touching.predict_collision_end(&mut collector,&data.models,&data.hitbox_mesh,&state.body,state.time);
2023-11-30 09:51:17 +00:00
//check for collision starts
2024-01-30 00:19:41 +00:00
let mut aabb=aabb::Aabb::default();
2024-02-06 03:49:36 +00:00
state.body.grow_aabb(&mut aabb,state.time,collector.time());
aabb.inflate(state.style.hitbox.halfsize);
2023-11-30 09:51:17 +00:00
//common body
2024-02-06 03:49:36 +00:00
let relative_body=VirtualBody::relative(&Body::default(),&state.body).body(state.time);
2024-02-06 04:27:54 +00:00
let hitbox_mesh=data.hitbox_mesh.transformed_mesh();
2024-02-07 04:29:36 +00:00
data.bvh.the_tester(&aabb,&mut |convex_mesh_id|{
2023-11-30 09:51:17 +00:00
//no checks are needed because of the time limits.
2024-02-07 04:29:36 +00:00
let model_mesh=data.models.mesh(convex_mesh_id);
let minkowski=model_physics::MinkowskiMesh::minkowski_sum(model_mesh,hitbox_mesh);
2023-11-30 09:51:17 +00:00
collector.collect(minkowski.predict_collision_in(&relative_body,collector.time())
//temp (?) code to avoid collision loops
2024-02-06 03:49:36 +00:00
.map_or(None,|(face,time)|if time==state.time{None}else{Some((face,time))})
2023-11-30 09:51:17 +00:00
.map(|(face,time)|{
2024-02-07 04:29:36 +00:00
TimedInstruction{time,instruction:PhysicsInstruction::CollisionStart(match data.models.attr(convex_mesh_id.model_id){
PhysicsCollisionAttributes::Contact{contacting:_,general:_}=>Collision::Contact(ContactCollision{convex_mesh_id,face_id:face}),
PhysicsCollisionAttributes::Intersect{intersecting:_,general:_}=>Collision::Intersect(IntersectCollision{convex_mesh_id}),
2023-11-30 09:51:17 +00:00
})}
}));
2023-10-06 06:52:04 +00:00
});
2023-09-09 03:12:58 +00:00
collector.instruction()
2023-09-08 18:33:20 +00:00
}
2023-09-09 00:15:49 +00:00
2023-11-30 09:51:17 +00:00
fn get_walk_state(move_state:&MoveState)->Option<&WalkState>{
match move_state{
MoveState::Walk(walk_state)|MoveState::Ladder(walk_state)=>Some(walk_state),
MoveState::Air|MoveState::Water=>None,
}
}
2024-02-06 04:27:54 +00:00
fn jumped_velocity(models:&PhysicsModels,style:&StyleModifiers,hitbox_mesh:&HitboxMesh,walk_state:&WalkState,v:&mut Planar64Vec3){
2023-11-30 09:51:17 +00:00
let jump_dir=match &walk_state.jump_direction{
2024-02-06 04:27:54 +00:00
JumpDirection::FromContactNormal=>contact_normal(models,hitbox_mesh,&walk_state.contact),
2023-11-30 09:51:17 +00:00
&JumpDirection::Exactly(dir)=>dir,
};
*v=*v+jump_dir*(style.get_jump_deltav()/jump_dir.length());
}
2024-02-06 04:27:54 +00:00
fn contact_normal(models:&PhysicsModels,hitbox_mesh:&HitboxMesh,contact:&ContactCollision)->Planar64Vec3{
2024-02-07 04:29:36 +00:00
let model_mesh=models.mesh(contact.convex_mesh_id);
let minkowski=model_physics::MinkowskiMesh::minkowski_sum(model_mesh,hitbox_mesh.transformed_mesh());
2023-11-30 09:51:17 +00:00
minkowski.face_nd(contact.face_id).0
}
fn set_position(body:&mut Body,touching:&mut TouchingState,point:Planar64Vec3)->Planar64Vec3{
//test intersections at new position
//hovering above the surface 0 units is not intersecting. you will fall into it just fine
2023-10-18 23:18:17 +00:00
body.position=point;
//manual clear //for c in contacts{process_instruction(CollisionEnd(c))}
touching.clear();
//TODO: calculate contacts and determine the actual state
//touching.recalculate(body);
2023-11-30 09:51:17 +00:00
point
}
2024-02-06 04:27:54 +00:00
fn set_velocity_cull(body:&mut Body,touching:&mut TouchingState,models:&PhysicsModels,hitbox_mesh:&HitboxMesh,v:Planar64Vec3)->bool{
2023-11-30 09:51:17 +00:00
//This is not correct but is better than what I have
let mut culled=false;
touching.contacts.retain(|contact|{
2024-02-06 04:27:54 +00:00
let n=contact_normal(models,hitbox_mesh,contact);
2023-11-30 09:51:17 +00:00
let r=n.dot(v)<=Planar64::ZERO;
if !r{
culled=true;
println!("set_velocity_cull contact={:?}",contact);
}
r
});
2024-02-06 04:27:54 +00:00
set_velocity(body,touching,models,hitbox_mesh,v);
2023-11-30 09:51:17 +00:00
culled
}
2024-02-06 04:27:54 +00:00
fn set_velocity(body:&mut Body,touching:&TouchingState,models:&PhysicsModels,hitbox_mesh:&HitboxMesh,mut v:Planar64Vec3)->Planar64Vec3{
touching.constrain_velocity(models,hitbox_mesh,&mut v);
2023-11-30 09:51:17 +00:00
body.velocity=v;
v
}
2024-02-06 04:27:54 +00:00
fn set_acceleration_cull(body:&mut Body,touching:&mut TouchingState,models:&PhysicsModels,hitbox_mesh:&HitboxMesh,a:Planar64Vec3)->bool{
2023-11-30 09:51:17 +00:00
//This is not correct but is better than what I have
let mut culled=false;
touching.contacts.retain(|contact|{
2024-02-06 04:27:54 +00:00
let n=contact_normal(models,hitbox_mesh,contact);
2023-11-30 09:51:17 +00:00
let r=n.dot(a)<=Planar64::ZERO;
if !r{
culled=true;
println!("set_acceleration_cull contact={:?}",contact);
}
r
});
2024-02-06 04:27:54 +00:00
set_acceleration(body,touching,models,hitbox_mesh,a);
2023-11-30 09:51:17 +00:00
culled
}
2024-02-06 04:27:54 +00:00
fn set_acceleration(body:&mut Body,touching:&TouchingState,models:&PhysicsModels,hitbox_mesh:&HitboxMesh,mut a:Planar64Vec3)->Planar64Vec3{
touching.constrain_acceleration(models,hitbox_mesh,&mut a);
2023-11-30 09:51:17 +00:00
body.acceleration=a;
a
}
2024-02-06 04:27:54 +00:00
fn teleport(body:&mut Body,touching:&mut TouchingState,models:&PhysicsModels,style:&StyleModifiers,hitbox_mesh:&HitboxMesh,point:Planar64Vec3)->MoveState{
2023-11-30 09:51:17 +00:00
set_position(body,touching,point);
2024-02-06 04:27:54 +00:00
set_acceleration(body,touching,models,hitbox_mesh,style.gravity);
2023-11-30 09:51:17 +00:00
MoveState::Air
2023-10-18 23:18:17 +00:00
}
2024-02-06 04:27:54 +00:00
fn teleport_to_spawn(body:&mut Body,touching:&mut TouchingState,style:&StyleModifiers,hitbox_mesh:&HitboxMesh,mode:&gameplay_modes::Mode,models:&PhysicsModels,stage_id:gameplay_modes::StageId)->Option<MoveState>{
2024-02-06 03:49:36 +00:00
let model=models.model(mode.get_spawn_model_id(stage_id)?.into());
2024-02-07 04:29:36 +00:00
let point=model.transform.vertex.transform_point3(Planar64Vec3::Y)+Planar64Vec3::Y*(style.hitbox.halfsize.y()+Planar64::ONE/16);
2024-02-06 04:27:54 +00:00
Some(teleport(body,touching,models,style,hitbox_mesh,point))
2023-10-28 23:38:16 +00:00
}
2023-10-18 23:18:17 +00:00
2024-02-07 04:29:36 +00:00
fn run_teleport_behaviour(wormhole:&Option<gameplay_attributes::Wormhole>,game:&mut ModeState,models:&PhysicsModels,mode:&gameplay_modes::Mode,style:&StyleModifiers,hitbox_mesh:&HitboxMesh,touching:&mut TouchingState,body:&mut Body,convex_mesh_id:ConvexMeshId)->Option<MoveState>{
2023-11-30 09:51:17 +00:00
//TODO: jump count and checkpoints are always reset on teleport.
//Map makers are expected to use tools to prevent
//multi-boosting on JumpLimit boosters such as spawning into a SetVelocity
2024-02-07 04:29:36 +00:00
if let Some(stage_element)=mode.get_element(convex_mesh_id.model_id.into()){
2024-02-05 06:37:09 +00:00
let stage=mode.get_stage(stage_element.stage_id)?;
2024-02-02 06:14:58 +00:00
if stage_element.force||game.stage_id<stage_element.stage_id{
//TODO: check if all checkpoints are complete up to destination stage id, otherwise set to checkpoint completion stage it
game.stage_id=stage_element.stage_id;
}
match &stage_element.behaviour{
2024-02-05 06:37:09 +00:00
gameplay_modes::StageElementBehaviour::SpawnAt=>(),
2024-02-05 04:59:33 +00:00
gameplay_modes::StageElementBehaviour::Trigger
|gameplay_modes::StageElementBehaviour::Teleport=>{
2024-02-02 06:14:58 +00:00
//I guess this is correct behaviour when trying to teleport to a non-existent spawn but it's still weird
2024-02-06 04:27:54 +00:00
return teleport_to_spawn(body,touching,style,hitbox_mesh,mode,models,game.stage_id);
2024-02-02 06:14:58 +00:00
},
2024-02-05 06:37:09 +00:00
gameplay_modes::StageElementBehaviour::Platform=>(),
2024-02-05 04:59:33 +00:00
&gameplay_modes::StageElementBehaviour::Checkpoint=>{
2024-02-05 06:37:09 +00:00
//checkpoint check
//TODO: need to check all stages
if stage.ordered_checkpoint_id.map_or(true,|id|id<game.next_ordered_checkpoint_id)
&&stage.unordered_checkpoint_count<=game.unordered_checkpoints.len() as u32{
//pass
2024-02-02 06:14:58 +00:00
}else{
2024-02-05 06:37:09 +00:00
//fail
2024-02-06 04:27:54 +00:00
return teleport_to_spawn(body,touching,style,hitbox_mesh,mode,models,game.stage_id);
2024-02-02 06:14:58 +00:00
}
},
}
2024-02-05 06:37:09 +00:00
if let Some(next_checkpoint)=stage.ordered_checkpoints.get(&game.next_ordered_checkpoint_id){
2024-02-07 04:29:36 +00:00
if convex_mesh_id==next_checkpoint{
2024-02-05 06:37:09 +00:00
//if you hit the next number in a sequence of ordered checkpoints
//increment the current checkpoint id
2024-02-07 04:29:21 +00:00
game.next_ordered_checkpoint_id=gameplay_modes::CheckpointId::new(game.next_ordered_checkpoint_id.get()+1);
2024-02-05 04:59:33 +00:00
}
2023-10-18 23:18:17 +00:00
}
2024-02-07 04:29:36 +00:00
if stage.unordered_checkpoints.contains(convex_mesh_id.model_id.into()){
2024-02-05 06:37:09 +00:00
//count model id in accumulated unordered checkpoints
2024-02-07 04:29:36 +00:00
game.unordered_checkpoints.insert(convex_mesh_id.model_id.into());
2024-02-05 06:37:09 +00:00
}
}
match wormhole{
&Some(gameplay_attributes::Wormhole{destination_model})=>{
2024-02-07 04:29:36 +00:00
let origin_model=models.model(convex_mesh_id.model_id);
2024-02-06 04:27:54 +00:00
let destination_model=models.model(destination_model.into());
2024-02-05 06:37:09 +00:00
//ignore the transform for now
2024-02-07 04:29:36 +00:00
Some(teleport(body,touching,models,style,hitbox_mesh,body.position-origin_model.transform.vertex.translation+destination_model.transform.vertex.translation))
2024-02-05 06:37:09 +00:00
}
None=>None,
}
2023-10-18 23:18:17 +00:00
}
2024-02-06 03:49:36 +00:00
fn atomic_state_update(state:&mut PhysicsState,data:&PhysicsData,ins:TimedInstruction<PhysicsInstruction>){
2023-11-30 09:51:17 +00:00
match &ins.instruction{
2023-10-05 03:04:04 +00:00
PhysicsInstruction::Input(PhysicsInputInstruction::Idle)
|PhysicsInstruction::Input(PhysicsInputInstruction::SetNextMouse(_))
|PhysicsInstruction::Input(PhysicsInputInstruction::ReplaceMouse(_,_))
2023-11-30 09:51:17 +00:00
|PhysicsInstruction::StrafeTick=>(),
2023-10-05 06:51:39 +00:00
_=>println!("{}|{:?}",ins.time,ins.instruction),
}
//selectively update body
2023-11-30 09:51:17 +00:00
match &ins.instruction{
2024-02-06 03:49:36 +00:00
PhysicsInstruction::Input(PhysicsInputInstruction::Idle)=>state.time=ins.time,//idle simply updates time
2023-10-04 21:01:06 +00:00
PhysicsInstruction::Input(_)
|PhysicsInstruction::ReachWalkTargetVelocity
|PhysicsInstruction::CollisionStart(_)
|PhysicsInstruction::CollisionEnd(_)
2024-02-06 03:49:36 +00:00
|PhysicsInstruction::StrafeTick=>state.advance_time(ins.time),
}
2023-11-30 09:51:17 +00:00
match ins.instruction{
PhysicsInstruction::CollisionStart(c)=>{
2024-02-07 04:29:36 +00:00
let convex_mesh_id=c.convex_mesh_id();
match (data.models.attr(convex_mesh_id.model_id),&c){
2023-11-30 09:51:17 +00:00
(PhysicsCollisionAttributes::Contact{contacting,general},Collision::Contact(contact))=>{
2024-02-06 03:49:36 +00:00
let mut v=state.body.velocity;
2024-02-06 04:27:54 +00:00
let normal=contact_normal(&data.models,&data.hitbox_mesh,contact);
2023-10-17 07:17:54 +00:00
match &contacting.contact_behaviour{
2024-02-02 06:14:58 +00:00
Some(gameplay_attributes::ContactingBehaviour::Surf)=>println!("I'm surfing!"),
Some(gameplay_attributes::ContactingBehaviour::Cling)=>println!("Unimplemented!"),
&Some(gameplay_attributes::ContactingBehaviour::Elastic(elasticity))=>{
2023-11-30 09:51:17 +00:00
//velocity and normal are facing opposite directions so this is inherently negative.
let d=normal.dot(v)*(Planar64::ONE+Planar64::raw(elasticity as i64+1));
v+=normal*(d/normal.dot(normal));
2023-10-18 02:12:25 +00:00
},
2024-02-02 06:14:58 +00:00
Some(gameplay_attributes::ContactingBehaviour::Ladder(contacting_ladder))=>{
2023-10-17 07:17:54 +00:00
if contacting_ladder.sticky{
//kill v
2023-11-30 09:51:17 +00:00
//actually you could do this with a booster attribute :thinking:
2023-10-18 02:12:25 +00:00
v=Planar64Vec3::ZERO;//model.velocity
2023-10-17 07:17:54 +00:00
}
//ladder walkstate
2024-02-06 03:49:36 +00:00
let gravity=state.touching.base_acceleration(&data.models,&state.style,&state.camera,state.controls,&state.next_mouse,state.time);
let mut target_velocity=state.style.get_ladder_target_velocity(&state.camera,state.controls,&state.next_mouse,state.time,&normal);
2024-02-06 04:27:54 +00:00
state.touching.constrain_velocity(&data.models,&data.hitbox_mesh,&mut target_velocity);
2024-02-06 03:49:36 +00:00
let (walk_state,a)=WalkState::ladder(&state.body,&state.style,gravity,target_velocity,contact.clone(),&normal);
state.move_state=MoveState::Ladder(walk_state);
2024-02-06 04:27:54 +00:00
set_acceleration(&mut state.body,&state.touching,&data.models,&data.hitbox_mesh,a);
2023-10-17 07:17:54 +00:00
}
2024-02-06 04:27:54 +00:00
None=>if state.style.surf_slope.map_or(true,|s|contact_normal(&data.models,&data.hitbox_mesh,contact).walkable(s,Planar64Vec3::Y)){
2023-11-30 09:51:17 +00:00
//ground
2024-02-06 03:49:36 +00:00
let gravity=state.touching.base_acceleration(&data.models,&state.style,&state.camera,state.controls,&state.next_mouse,state.time);
let mut target_velocity=state.style.get_walk_target_velocity(&state.camera,state.controls,&state.next_mouse,state.time,&normal);
2024-02-06 04:27:54 +00:00
state.touching.constrain_velocity(&data.models,&data.hitbox_mesh,&mut target_velocity);
2024-02-06 03:49:36 +00:00
let (walk_state,a)=WalkState::ground(&state.body,&state.style,gravity,target_velocity,contact.clone(),&normal);
state.move_state=MoveState::Walk(walk_state);
2024-02-06 04:27:54 +00:00
set_acceleration(&mut state.body,&state.touching,&data.models,&data.hitbox_mesh,a);
},
}
2023-10-05 03:04:04 +00:00
//check ground
2024-02-06 03:49:36 +00:00
state.touching.insert(c);
2023-10-18 23:18:17 +00:00
//I love making functions with 10 arguments to dodge the borrow checker
2024-02-07 04:29:36 +00:00
run_teleport_behaviour(&general.wormhole,&mut state.mode_state,&data.models,&data.modes.get_mode(state.mode_state.mode_id).unwrap(),&state.style,&data.hitbox_mesh,&mut state.touching,&mut state.body,convex_mesh_id);
//flatten v
2024-02-06 04:27:54 +00:00
state.touching.constrain_velocity(&data.models,&data.hitbox_mesh,&mut v);
2023-10-05 03:04:04 +00:00
match &general.booster{
Some(booster)=>{
2023-11-30 09:51:17 +00:00
//DELETE THIS when boosters get converted to height machines
2023-10-18 02:12:25 +00:00
match booster{
2024-02-05 06:37:09 +00:00
//&gameplay_attributes::Booster::Affine(transform)=>v=transform.transform_point3(v),
2024-02-02 06:14:58 +00:00
&gameplay_attributes::Booster::Velocity(velocity)=>v+=velocity,
&gameplay_attributes::Booster::Energy{direction: _,energy: _}=>todo!(),
2023-10-18 02:12:25 +00:00
}
},
None=>(),
}
2024-02-06 03:49:36 +00:00
let calc_move=if state.style.get_control(StyleModifiers::CONTROL_JUMP,state.controls){
if let Some(walk_state)=get_walk_state(&state.move_state){
2024-02-06 04:27:54 +00:00
jumped_velocity(&data.models,&state.style,&data.hitbox_mesh,walk_state,&mut v);
set_velocity_cull(&mut state.body,&mut state.touching,&data.models,&data.hitbox_mesh,v)
2023-11-30 09:51:17 +00:00
}else{false}
}else{false};
2023-10-18 02:12:25 +00:00
match &general.trajectory{
Some(trajectory)=>{
match trajectory{
2024-02-02 06:14:58 +00:00
gameplay_attributes::SetTrajectory::AirTime(_) => todo!(),
gameplay_attributes::SetTrajectory::Height(_) => todo!(),
gameplay_attributes::SetTrajectory::TargetPointTime { target_point: _, time: _ } => todo!(),
gameplay_attributes::SetTrajectory::TargetPointSpeed { target_point: _, speed: _, trajectory_choice: _ } => todo!(),
&gameplay_attributes::SetTrajectory::Velocity(velocity)=>v=velocity,
gameplay_attributes::SetTrajectory::DotVelocity { direction: _, dot: _ } => todo!(),
2023-10-18 02:12:25 +00:00
}
2023-10-05 03:04:04 +00:00
},
None=>(),
}
2024-02-06 04:27:54 +00:00
set_velocity(&mut state.body,&state.touching,&data.models,&data.hitbox_mesh,v);
2023-11-30 09:51:17 +00:00
//not sure if or is correct here
if calc_move||Planar64::ZERO<normal.dot(v){
2024-02-06 04:27:54 +00:00
(state.move_state,state.body.acceleration)=state.touching.get_move_state(&state.body,&data.models,&state.style,&data.hitbox_mesh,&state.camera,state.controls,&state.next_mouse,state.time);
2023-10-20 20:47:26 +00:00
}
2024-02-06 03:49:36 +00:00
let a=state.refresh_walk_target();
2024-02-06 04:27:54 +00:00
set_acceleration(&mut state.body,&state.touching,&data.models,&data.hitbox_mesh,a);
},
2023-11-30 09:51:17 +00:00
(PhysicsCollisionAttributes::Intersect{intersecting: _,general},Collision::Intersect(intersect))=>{
//I think that setting the velocity to 0 was preventing surface contacts from entering an infinite loop
2024-02-06 03:49:36 +00:00
state.touching.insert(c);
2024-02-07 04:29:36 +00:00
run_teleport_behaviour(&general.wormhole,&mut state.mode_state,&data.models,&data.modes.get_mode(state.mode_state.mode_id).unwrap(),&state.style,&data.hitbox_mesh,&mut state.touching,&mut state.body,convex_mesh_id);
},
2023-11-30 09:51:17 +00:00
_=>panic!("invalid pair"),
2023-09-20 00:53:29 +00:00
}
2023-09-18 20:20:51 +00:00
},
PhysicsInstruction::CollisionEnd(c) => {
2024-02-07 04:29:36 +00:00
match data.models.attr(c.convex_mesh_id().model_id){
2023-11-30 09:51:17 +00:00
PhysicsCollisionAttributes::Contact{contacting:_,general:_}=>{
2024-02-06 03:49:36 +00:00
state.touching.remove(&c);//remove contact before calling contact_constrain_acceleration
//check ground
2024-02-06 04:27:54 +00:00
(state.move_state,state.body.acceleration)=state.touching.get_move_state(&state.body,&data.models,&state.style,&data.hitbox_mesh,&state.camera,state.controls,&state.next_mouse,state.time);
},
2023-11-30 09:51:17 +00:00
PhysicsCollisionAttributes::Intersect{intersecting:_,general:_}=>{
2024-02-06 03:49:36 +00:00
state.touching.remove(&c);
},
}
2023-09-18 20:20:51 +00:00
},
2023-09-09 03:14:18 +00:00
PhysicsInstruction::StrafeTick => {
2024-02-06 03:49:36 +00:00
let control_dir=state.style.get_control_dir(state.controls);
2023-11-30 09:51:17 +00:00
if control_dir!=Planar64Vec3::ZERO{
2024-02-06 03:49:36 +00:00
let camera_mat=state.camera.simulate_move_rotation_y(state.camera.mouse.lerp(&state.next_mouse,state.time).x);
2023-11-30 09:51:17 +00:00
let control_dir=camera_mat*control_dir;
//normalize but careful for zero
2024-02-06 03:49:36 +00:00
let d=state.body.velocity.dot(control_dir);
if d<state.style.mv {
let v=state.body.velocity+control_dir*(state.style.mv-d);
2023-11-30 09:51:17 +00:00
//this is wrong but will work ig
//need to note which push planes activate in push solve and keep those
2024-02-06 04:27:54 +00:00
if set_velocity_cull(&mut state.body,&mut state.touching,&data.models,&data.hitbox_mesh,v){
(state.move_state,state.body.acceleration)=state.touching.get_move_state(&state.body,&data.models,&state.style,&data.hitbox_mesh,&state.camera,state.controls,&state.next_mouse,state.time);
2023-11-30 09:51:17 +00:00
}
}
2023-09-09 03:14:18 +00:00
}
}
PhysicsInstruction::ReachWalkTargetVelocity => {
2024-02-06 03:49:36 +00:00
match &mut state.move_state{
2023-10-13 02:44:46 +00:00
MoveState::Air|MoveState::Water=>(),
MoveState::Walk(walk_state)|MoveState::Ladder(walk_state)=>{
2023-10-17 07:17:54 +00:00
match &mut walk_state.state{
WalkEnum::Reached=>(),
WalkEnum::Transient(walk_target)=>{
//precisely set velocity
2023-11-30 09:51:17 +00:00
let a=Planar64Vec3::ZERO;//ignore gravity for now.
2024-02-06 04:27:54 +00:00
set_acceleration(&mut state.body,&state.touching,&data.models,&data.hitbox_mesh,a);
2023-11-30 09:51:17 +00:00
let v=walk_target.velocity;
2024-02-06 04:27:54 +00:00
set_velocity(&mut state.body,&state.touching,&data.models,&data.hitbox_mesh,v);
2023-10-17 07:17:54 +00:00
walk_state.state=WalkEnum::Reached;
},
}
2023-10-13 02:44:46 +00:00
}
}
},
2023-09-20 00:53:29 +00:00
PhysicsInstruction::Input(input_instruction) => {
2023-10-02 02:25:16 +00:00
let mut refresh_walk_target=true;
2023-09-20 00:53:29 +00:00
match input_instruction{
2023-10-05 03:04:04 +00:00
PhysicsInputInstruction::SetNextMouse(m) => {
2024-02-06 03:49:36 +00:00
state.camera.move_mouse(state.next_mouse.pos);
(state.camera.mouse,state.next_mouse)=(state.next_mouse.clone(),m);
2023-10-05 03:04:04 +00:00
},
PhysicsInputInstruction::ReplaceMouse(m0,m1) => {
2024-02-06 03:49:36 +00:00
state.camera.move_mouse(m0.pos);
(state.camera.mouse,state.next_mouse)=(m0,m1);
2023-09-20 00:53:29 +00:00
},
2024-02-06 03:49:36 +00:00
PhysicsInputInstruction::SetMoveForward(s) => state.set_control(StyleModifiers::CONTROL_MOVEFORWARD,s),
PhysicsInputInstruction::SetMoveLeft(s) => state.set_control(StyleModifiers::CONTROL_MOVELEFT,s),
PhysicsInputInstruction::SetMoveBack(s) => state.set_control(StyleModifiers::CONTROL_MOVEBACK,s),
PhysicsInputInstruction::SetMoveRight(s) => state.set_control(StyleModifiers::CONTROL_MOVERIGHT,s),
PhysicsInputInstruction::SetMoveUp(s) => state.set_control(StyleModifiers::CONTROL_MOVEUP,s),
PhysicsInputInstruction::SetMoveDown(s) => state.set_control(StyleModifiers::CONTROL_MOVEDOWN,s),
2023-10-05 03:04:04 +00:00
PhysicsInputInstruction::SetJump(s) => {
2024-02-06 03:49:36 +00:00
state.set_control(StyleModifiers::CONTROL_JUMP,s);
if let Some(walk_state)=get_walk_state(&state.move_state){
let mut v=state.body.velocity;
2024-02-06 04:27:54 +00:00
jumped_velocity(&data.models,&state.style,&data.hitbox_mesh,walk_state,&mut v);
if set_velocity_cull(&mut state.body,&mut state.touching,&data.models,&data.hitbox_mesh,v){
(state.move_state,state.body.acceleration)=state.touching.get_move_state(&state.body,&data.models,&state.style,&data.hitbox_mesh,&state.camera,state.controls,&state.next_mouse,state.time);
2023-11-30 09:51:17 +00:00
}
}
2023-10-17 07:17:54 +00:00
refresh_walk_target=false;
2023-09-20 00:53:29 +00:00
},
2023-10-05 03:04:04 +00:00
PhysicsInputInstruction::SetZoom(s) => {
2024-02-06 03:49:36 +00:00
state.set_control(StyleModifiers::CONTROL_ZOOM,s);
2023-10-02 02:25:16 +00:00
refresh_walk_target=false;
2023-09-20 00:53:29 +00:00
},
2023-10-05 03:04:04 +00:00
PhysicsInputInstruction::Reset => {
2023-11-30 09:51:17 +00:00
//it matters which of these runs first, but I have not thought it through yet as it doesn't matter yet
2024-02-05 06:37:09 +00:00
let spawn_point={
2024-02-06 04:27:54 +00:00
let mode=data.modes.get_mode(state.mode_state.mode_id).unwrap();
2024-02-05 06:37:09 +00:00
let stage=mode.get_stage(gameplay_modes::StageId::FIRST).unwrap();
2024-02-07 04:29:36 +00:00
data.models.model(stage.spawn().into()).transform.vertex.translation
2024-02-05 06:37:09 +00:00
};
2024-02-06 03:49:36 +00:00
set_position(&mut state.body,&mut state.touching,spawn_point);
2024-02-06 04:27:54 +00:00
set_velocity(&mut state.body,&state.touching,&data.models,&data.hitbox_mesh,Planar64Vec3::ZERO);
(state.move_state,state.body.acceleration)=state.touching.get_move_state(&state.body,&data.models,&state.style,&data.hitbox_mesh,&state.camera,state.controls,&state.next_mouse,state.time);
2023-10-02 02:25:16 +00:00
refresh_walk_target=false;
2023-09-20 00:53:29 +00:00
},
2023-10-05 03:04:04 +00:00
PhysicsInputInstruction::Idle => {refresh_walk_target=false;},//literally idle!
2023-09-20 00:53:29 +00:00
}
if refresh_walk_target{
2024-02-06 03:49:36 +00:00
let a=state.refresh_walk_target();
2024-02-06 04:27:54 +00:00
if set_acceleration_cull(&mut state.body,&mut state.touching,&data.models,&data.hitbox_mesh,a){
(state.move_state,state.body.acceleration)=state.touching.get_move_state(&state.body,&data.models,&state.style,&data.hitbox_mesh,&state.camera,state.controls,&state.next_mouse,state.time);
2023-10-20 20:47:26 +00:00
}
2023-09-19 04:10:07 +00:00
}
},
2023-09-09 03:14:18 +00:00
}
2023-09-09 00:15:49 +00:00
}
2023-11-30 09:51:17 +00:00
#[allow(dead_code)]
fn test_collision_axis_aligned(relative_body:Body,expected_collision_time:Option<Time>){
2024-02-06 03:49:36 +00:00
let h0=HitboxMesh::from_mesh_scale(PhysicsMesh::unit_cube(),Planar64Vec3::int(5,1,5)/2);
let h1=HitboxMesh::roblox();
2023-11-30 09:51:17 +00:00
let hitbox_mesh=h1.transformed_mesh();
let platform_mesh=h0.transformed_mesh();
2024-02-02 06:14:58 +00:00
let minkowski=model_physics::MinkowskiMesh::minkowski_sum(&platform_mesh,&hitbox_mesh);
2023-11-30 09:51:17 +00:00
let collision=minkowski.predict_collision_in(&relative_body,Time::MAX);
assert_eq!(collision.map(|tup|tup.1),expected_collision_time,"Incorrect time of collision");
}
#[allow(dead_code)]
fn test_collision_rotated(relative_body:Body,expected_collision_time:Option<Time>){
2024-02-06 03:49:36 +00:00
let h0=HitboxMesh::new(PhysicsMesh::unit_cube(),
2024-01-30 00:19:41 +00:00
integer::Planar64Affine3::new(
integer::Planar64Mat3::from_cols(
2023-11-30 09:51:17 +00:00
Planar64Vec3::int(5,0,1)/2,
Planar64Vec3::int(0,1,0)/2,
Planar64Vec3::int(-1,0,5)/2,
),
Planar64Vec3::ZERO,
)
);
2024-02-06 03:49:36 +00:00
let h1=HitboxMesh::roblox();
2023-11-30 09:51:17 +00:00
let hitbox_mesh=h1.transformed_mesh();
let platform_mesh=h0.transformed_mesh();
2024-02-07 04:29:36 +00:00
let minkowski=model_physics::MinkowskiMesh::minkowski_sum(platform_mesh,hitbox_mesh);
2023-11-30 09:51:17 +00:00
let collision=minkowski.predict_collision_in(&relative_body,Time::MAX);
assert_eq!(collision.map(|tup|tup.1),expected_collision_time,"Incorrect time of collision");
}
#[allow(dead_code)]
fn test_collision(relative_body:Body,expected_collision_time:Option<Time>){
test_collision_axis_aligned(relative_body.clone(),expected_collision_time);
test_collision_rotated(relative_body,expected_collision_time);
}
#[test]
fn test_collision_degenerate(){
test_collision(Body::new(
Planar64Vec3::int(0,5,0),
Planar64Vec3::int(0,-1,0),
Planar64Vec3::ZERO,
Time::ZERO
),Some(Time::from_secs(2)));
}
#[test]
fn test_collision_degenerate_east(){
test_collision(Body::new(
Planar64Vec3::int(3,5,0),
Planar64Vec3::int(0,-1,0),
Planar64Vec3::ZERO,
Time::ZERO
),Some(Time::from_secs(2)));
}
#[test]
fn test_collision_degenerate_south(){
test_collision(Body::new(
Planar64Vec3::int(0,5,3),
Planar64Vec3::int(0,-1,0),
Planar64Vec3::ZERO,
Time::ZERO
),Some(Time::from_secs(2)));
}
#[test]
fn test_collision_degenerate_west(){
test_collision(Body::new(
Planar64Vec3::int(-3,5,0),
Planar64Vec3::int(0,-1,0),
Planar64Vec3::ZERO,
Time::ZERO
),Some(Time::from_secs(2)));
}
#[test]
fn test_collision_degenerate_north(){
test_collision(Body::new(
Planar64Vec3::int(0,5,-3),
Planar64Vec3::int(0,-1,0),
Planar64Vec3::ZERO,
Time::ZERO
),Some(Time::from_secs(2)));
}
#[test]
fn test_collision_parabola_edge_east_from_west(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(3,3,0),
Planar64Vec3::int(100,-1,0),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_south_from_north(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(0,3,3),
Planar64Vec3::int(0,-1,100),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_west_from_east(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(-3,3,0),
Planar64Vec3::int(-100,-1,0),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_north_from_south(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(0,3,-3),
Planar64Vec3::int(0,-1,-100),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_north_from_ne(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(0,6,-7)/2,
Planar64Vec3::int(-10,-1,1),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_north_from_nw(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(0,6,-7)/2,
Planar64Vec3::int(10,-1,1),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_east_from_se(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(7,6,0)/2,
Planar64Vec3::int(-1,-1,-10),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_east_from_ne(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(7,6,0)/2,
Planar64Vec3::int(-1,-1,10),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_south_from_se(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(0,6,7)/2,
Planar64Vec3::int(-10,-1,-1),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_south_from_sw(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(0,6,7)/2,
Planar64Vec3::int(10,-1,-1),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_west_from_se(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(-7,6,0)/2,
Planar64Vec3::int(1,-1,-10),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_parabola_edge_west_from_ne(){
test_collision(VirtualBody::relative(&Body::default(),&Body::new(
Planar64Vec3::int(-7,6,0)/2,
Planar64Vec3::int(1,-1,10),
Planar64Vec3::int(0,-1,0),
Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
}
#[test]
fn test_collision_oblique(){
test_collision(Body::new(
Planar64Vec3::int(0,5,0),
Planar64Vec3::int(1,-64,2)/64,
Planar64Vec3::ZERO,
Time::ZERO
),Some(Time::from_secs(2)));
}
#[test]
fn zoom_hit_nothing(){
test_collision(Body::new(
Planar64Vec3::int(0,10,0),
Planar64Vec3::int(1,0,0),
Planar64Vec3::int(0,1,0),
Time::ZERO
),None);
}
#[test]
fn already_inside_hit_nothing(){
test_collision(Body::new(
Planar64Vec3::ZERO,
Planar64Vec3::int(1,0,0),
Planar64Vec3::int(0,1,0),
Time::ZERO
),None);
}