Compare commits

...

2 Commits

Author SHA1 Message Date
Royiex
5e6ebdf125 Fixes 2024-02-12 19:14:15 +01:00
Royiex
cda4d82236 Better Print 2024-02-12 19:13:43 +01:00
2 changed files with 15 additions and 21 deletions

View File

@ -45,6 +45,7 @@ pub struct Body{
pub acceleration:Planar64Vec3,//I64 where 2^32 = 1 u/s/s pub acceleration:Planar64Vec3,//I64 where 2^32 = 1 u/s/s
pub time:Time,//nanoseconds x xxxxD! pub time:Time,//nanoseconds x xxxxD!
} }
impl std::ops::Neg for Body{ impl std::ops::Neg for Body{
type Output=Self; type Output=Self;
fn neg(self)->Self::Output{ fn neg(self)->Self::Output{
@ -1177,7 +1178,7 @@ impl PhysicsState {
ordered_checkpoint_from_checkpoint_id:eshmep2, ordered_checkpoint_from_checkpoint_id:eshmep2,
}); });
} }
println!("Physics Objects: {}",self.models.models.len()); // println!("Physics Objects: {}",self.models.models.len());
} }
pub fn load_user_settings(&mut self,user_settings:&crate::settings::UserSettings){ pub fn load_user_settings(&mut self,user_settings:&crate::settings::UserSettings){
@ -1360,7 +1361,7 @@ fn set_velocity_cull(body:&mut Body,touching:&mut TouchingState,models:&PhysicsM
let r=n.dot(v)<=Planar64::ZERO; let r=n.dot(v)<=Planar64::ZERO;
if !r{ if !r{
culled=true; culled=true;
println!("set_velocity_cull contact={:?}",contact); // println!("set_velocity_cull contact={:?}",contact);
} }
r r
}); });

View File

@ -1,4 +1,4 @@
use crate::physics::{MouseState,PhysicsInputInstruction}; use crate::physics::{MouseState,PhysicsInputInstruction, PhysicsState};
use strafesnet_common::integer::Time; use strafesnet_common::integer::Time;
use strafesnet_common::instruction::{TimedInstruction,InstructionConsumer}; use strafesnet_common::instruction::{TimedInstruction,InstructionConsumer};
use strafesnet_common::integer::{self,Planar64,Planar64Vec3,Planar64Mat3,Angle32,Ratio64,Ratio64Vec2}; use strafesnet_common::integer::{self,Planar64,Planar64Vec3,Planar64Mat3,Angle32,Ratio64,Ratio64Vec2};
@ -24,36 +24,28 @@ pub enum Instruction{
ClearModels, ClearModels,
//Graphics(crate::graphics_worker::Instruction), //Graphics(crate::graphics_worker::Instruction),
} }
pub struct Speed{ pub struct Speed{
pub player_vel:Planar64Vec3, pub player_vel:Planar64Vec3,
pub time:Time pub time:Time,
} pub start_time:Option<Time>,
impl std::ops::Neg for Speed{
type Output=Self;
fn neg(self)->Self::Output{
Self{
player_vel:self.player_vel,
time:self.time
}
}
} }
impl Speed{ impl Speed{
pub fn new(player_vel:Planar64Vec3,time:Time)->Self{ pub fn new(self,player_vel:Planar64Vec3,time:Time)->Self{
Self{ Self{
player_vel, player_vel,
time, time,
start_time:None,
} }
} }
} }
pub fn new(mut physics:crate::physics::PhysicsState,mut graphics_worker:crate::compat_worker::INWorker<crate::graphics_worker::Instruction>)->crate::compat_worker::QNWorker<TimedInstruction<Instruction>>{ pub fn new(mut physics:crate::physics::PhysicsState,mut graphics_worker:crate::compat_worker::INWorker<crate::graphics_worker::Instruction>)->crate::compat_worker::QNWorker<TimedInstruction<Instruction>>{
let mut mouse_blocking=true; let mut mouse_blocking=true;
let mut last_mouse_time=physics.next_mouse.time; let mut last_mouse_time=physics.next_mouse.time;
let mut timeline=std::collections::VecDeque::new(); let mut timeline=std::collections::VecDeque::new();
let mut next_velocity_print=std::time::Instant::now(); let mut next_velocity_print=std::time::Instant::now();
let mut player_vel = physics.body.velocity.length();
crate::compat_worker::QNWorker::new(move |ins:TimedInstruction<Instruction>|{ crate::compat_worker::QNWorker::new(move |ins:TimedInstruction<Instruction>|{
if if let Some(phys_input)=match &ins.instruction{ if if let Some(phys_input)=match &ins.instruction{
Instruction::Input(input_instruction)=>match input_instruction{ Instruction::Input(input_instruction)=>match input_instruction{
@ -138,10 +130,11 @@ impl Speed{
}); });
} }
//some random print stuff //some random print stuff
if 3.0/5.0<next_velocity_print.elapsed().as_secs_f64(){ if 3.0/5.0<next_velocity_print.elapsed().as_secs_f64(){
next_velocity_print=next_velocity_print+std::time::Duration::from_secs_f64(1.0/30.0); next_velocity_print=next_velocity_print+std::time::Duration::from_secs_f64(1.0/10.0);
println!("velocity: {} u/s", (Planar64Vec3::new(physics.body.velocity.x(), Planar64::int(0), physics.body.velocity.z())).length()*(Planar64::int(130)/9)); println!("xz Velocity: {} u/s", (Planar64Vec3::new(physics.body.velocity.x(), Planar64::int(0), physics.body.velocity.z())).length());
} }
} }
match ins.instruction{ match ins.instruction{
Instruction::Render=>{ Instruction::Render=>{