aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/swarm/events.rs
blob: 62593029d328fe9de75d965e0c26ca90aafacc7f (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
37
38
39
40
41
use azalea_client::LocalPlayer;
use azalea_world::entity::MinecraftEntityId;
use bevy_app::{App, Plugin};
use bevy_ecs::prelude::*;
use derive_more::{Deref, DerefMut};

pub struct SwarmPlugin;
impl Plugin for SwarmPlugin {
    fn build(&self, app: &mut App) {
        app.add_event::<SwarmReadyEvent>()
            .add_system(check_ready)
            .init_resource::<IsSwarmReady>();
    }
}

/// All the bots from the swarm are now in the world.
pub struct SwarmReadyEvent;

#[derive(Default, Resource, Deref, DerefMut)]
struct IsSwarmReady(bool);

fn check_ready(
    query: Query<Option<&MinecraftEntityId>, With<LocalPlayer>>,
    mut is_swarm_ready: ResMut<IsSwarmReady>,
    mut ready_events: EventWriter<SwarmReadyEvent>,
) {
    // if we already know the swarm is ready, do nothing
    if **is_swarm_ready {
        return;
    }
    // if all the players are in the world, we're ready
    for entity_id in query.iter() {
        if entity_id.is_none() {
            return;
        }
    }

    // all the players are in the world, so we're ready
    **is_swarm_ready = true;
    ready_events.send(SwarmReadyEvent);
}