blob: e4b5f0a46e546abd8712e5b586d123c0feae3f8b (
plain)
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
27
28
29
30
31
32
33
34
35
36
|
use azalea_core::tick::GameTick;
use azalea_physics::PhysicsSystems;
use azalea_world::InstanceName;
use bevy_app::{App, Plugin};
use bevy_ecs::prelude::*;
use crate::{mining::MiningSystems, movement::send_position};
/// Counts the number of game ticks elapsed on the **local client** since the
/// `login` packet was received.
#[derive(Clone, Component, Debug, Default, Eq, PartialEq)]
pub struct TicksConnected(pub u64);
/// Inserts the counter-increment system into the `GameTick` schedule **before**
/// physics, mining and movement.
pub struct TickCounterPlugin;
impl Plugin for TickCounterPlugin {
fn build(&self, app: &mut App) {
app.add_systems(
GameTick,
increment_counter
.before(PhysicsSystems)
.before(MiningSystems)
.before(send_position),
);
}
}
/// Increment the [`TicksConnected`] component on every entity
/// that lives in an instance.
pub fn increment_counter(mut query: Query<&mut TicksConnected, With<InstanceName>>) {
for mut counter in &mut query {
counter.0 += 1;
}
}
|