1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use bevy::prelude::*;
use bevy_rapier2d::prelude::*;
use game_library::{
    state::{Game, Overlay},
    Acceleration,
};

/// Plugin that makes moving things move
pub struct MovementPlugin;

impl Plugin for MovementPlugin {
    fn build(&self, app: &mut App) {
        app.add_systems(
            Update,
            update_velocity
                .run_if(in_state(Game::Playing).and_then(not(in_state(Overlay::Settings)))),
        );
    }
}

/// System that updates the velocity of moving things
fn update_velocity(mut query: Query<(&mut Velocity, &Acceleration)>, time: Res<Time>) {
    for (mut velocity, acceleration) in &mut query {
        velocity.linvel += acceleration.value * time.delta_seconds();
    }
}