rust/hwphysics/src/physics.rs
author alfadur
Tue, 03 Sep 2019 23:57:06 +0300
changeset 15392 b387a51705ac
parent 15383 701ad89a9f2a
child 15393 0ef770a40e75
permissions -rw-r--r--
implement iteration with tags
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15380
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
     1
use crate::{
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
     2
    common::{GearId, Millis},
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
     3
    data::GearDataManager,
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
     4
};
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
     5
use fpnum::*;
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
     6
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
     7
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
15380
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
     8
#[repr(transparent)]
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
     9
pub struct PositionData(pub FPPoint);
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    10
15380
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    11
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    12
#[repr(transparent)]
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    13
pub struct VelocityData(pub FPPoint);
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    14
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    15
pub struct PositionUpdates {
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    16
    pub gear_ids: Vec<GearId>,
15260
775d7efa4e5c save full shifts to position updates
alfadur
parents: 15120
diff changeset
    17
    pub shifts: Vec<(FPPoint, FPPoint)>,
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    18
}
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    19
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    20
impl PositionUpdates {
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    21
    pub fn new(capacity: usize) -> Self {
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    22
        Self {
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    23
            gear_ids: Vec::with_capacity(capacity),
15260
775d7efa4e5c save full shifts to position updates
alfadur
parents: 15120
diff changeset
    24
            shifts: Vec::with_capacity(capacity),
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    25
        }
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    26
    }
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    27
15260
775d7efa4e5c save full shifts to position updates
alfadur
parents: 15120
diff changeset
    28
    pub fn push(&mut self, gear_id: GearId, old_position: &FPPoint, new_position: &FPPoint) {
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    29
        self.gear_ids.push(gear_id);
15260
775d7efa4e5c save full shifts to position updates
alfadur
parents: 15120
diff changeset
    30
        self.shifts.push((*old_position, *new_position));
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    31
    }
15261
501dfa1c8deb update collision grid with position changes
alfadur
parents: 15260
diff changeset
    32
501dfa1c8deb update collision grid with position changes
alfadur
parents: 15260
diff changeset
    33
    pub fn iter(&self) -> impl Iterator<Item = (GearId, &FPPoint, &FPPoint)> {
501dfa1c8deb update collision grid with position changes
alfadur
parents: 15260
diff changeset
    34
        self.gear_ids
501dfa1c8deb update collision grid with position changes
alfadur
parents: 15260
diff changeset
    35
            .iter()
501dfa1c8deb update collision grid with position changes
alfadur
parents: 15260
diff changeset
    36
            .cloned()
501dfa1c8deb update collision grid with position changes
alfadur
parents: 15260
diff changeset
    37
            .zip(self.shifts.iter())
501dfa1c8deb update collision grid with position changes
alfadur
parents: 15260
diff changeset
    38
            .map(|(id, (from, to))| (id, from, to))
501dfa1c8deb update collision grid with position changes
alfadur
parents: 15260
diff changeset
    39
    }
15266
b58f98bbc120 clear intermediate result structures between iterations
alfadur
parents: 15261
diff changeset
    40
b58f98bbc120 clear intermediate result structures between iterations
alfadur
parents: 15261
diff changeset
    41
    pub fn clear(&mut self) {
b58f98bbc120 clear intermediate result structures between iterations
alfadur
parents: 15261
diff changeset
    42
        self.gear_ids.clear();
b58f98bbc120 clear intermediate result structures between iterations
alfadur
parents: 15261
diff changeset
    43
        self.shifts.clear();
b58f98bbc120 clear intermediate result structures between iterations
alfadur
parents: 15261
diff changeset
    44
    }
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    45
}
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    46
15381
52844baced17 add gravity
alfadur
parents: 15380
diff changeset
    47
pub struct PhysicsProcessor {
52844baced17 add gravity
alfadur
parents: 15380
diff changeset
    48
    gravity: FPNum,
52844baced17 add gravity
alfadur
parents: 15380
diff changeset
    49
    position_updates: PositionUpdates,
52844baced17 add gravity
alfadur
parents: 15380
diff changeset
    50
}
52844baced17 add gravity
alfadur
parents: 15380
diff changeset
    51
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    52
impl PhysicsProcessor {
15380
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    53
    pub fn register_components(data: &mut GearDataManager) {
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    54
        data.register::<PositionData>();
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    55
        data.register::<VelocityData>();
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    56
    }
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    57
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    58
    pub fn new() -> Self {
15270
7446258fab98 add time events
alfadur
parents: 15266
diff changeset
    59
        Self {
15383
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    60
            gravity: fp!(1 / 10),
15380
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    61
            position_updates: PositionUpdates::new(64),
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    62
        }
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    63
    }
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    64
15383
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    65
    pub fn process_single_tick(&mut self, data: &mut GearDataManager) -> &PositionUpdates {
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    66
        self.position_updates.clear();
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    67
15392
b387a51705ac implement iteration with tags
alfadur
parents: 15383
diff changeset
    68
        data.iter().run_id(
15383
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    69
            |gear_id, (pos, vel): (&mut PositionData, &mut VelocityData)| {
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    70
                let old_pos = pos.0;
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    71
                vel.0 -= self.gravity;
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    72
                pos.0 += vel.0;
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    73
                self.position_updates.push(gear_id, &old_pos, &pos.0)
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    74
            },
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    75
        );
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    76
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    77
        &self.position_updates
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    78
    }
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    79
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    80
    pub fn process_multiple_ticks(
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    81
        &mut self,
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    82
        data: &mut GearDataManager,
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    83
        time_step: Millis,
701ad89a9f2a avoid time multiplication when not skipping ticks
alfadur
parents: 15382
diff changeset
    84
    ) -> &PositionUpdates {
15275
66c987015f2d replace time with milliseconds
alfadur
parents: 15274
diff changeset
    85
        let fp_step = time_step.to_fixed();
15266
b58f98bbc120 clear intermediate result structures between iterations
alfadur
parents: 15261
diff changeset
    86
        self.position_updates.clear();
15380
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    87
15392
b387a51705ac implement iteration with tags
alfadur
parents: 15383
diff changeset
    88
        data.iter().run_id(
15380
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    89
            |gear_id, (pos, vel): (&mut PositionData, &mut VelocityData)| {
15382
6ad92b6ac43c remove velocity check
alfadur
parents: 15381
diff changeset
    90
                let old_pos = pos.0;
6ad92b6ac43c remove velocity check
alfadur
parents: 15381
diff changeset
    91
                vel.0 -= self.gravity * fp_step;
6ad92b6ac43c remove velocity check
alfadur
parents: 15381
diff changeset
    92
                pos.0 += vel.0 * fp_step;
6ad92b6ac43c remove velocity check
alfadur
parents: 15381
diff changeset
    93
                self.position_updates.push(gear_id, &old_pos, &pos.0)
15380
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    94
            },
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    95
        );
6e3e5be8b2e2 update hwphysics motion to use the new system
alfadur
parents: 15282
diff changeset
    96
15120
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    97
        &self.position_updates
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    98
    }
febccab419b1 Apply dos2unix to rust sources
unc0rr
parents: 14716
diff changeset
    99
}