azalea_client/plugins/
disconnect.rs1use azalea_chat::FormattedText;
4use azalea_entity::{
5 EntityBundle, HasClientLoaded, InLoadedChunk, LocalEntity, metadata::PlayerMetadataBundle,
6};
7use azalea_world::MinecraftEntityId;
8use bevy_app::{App, Plugin, PostUpdate};
9use bevy_ecs::prelude::*;
10use derive_more::Deref;
11use tracing::info;
12
13use super::login::IsAuthenticated;
14#[cfg(feature = "online-mode")]
15use crate::chat_signing;
16use crate::{
17 client::JoinedClientBundle, connection::RawConnection, local_player::InstanceHolder,
18 tick_counter::TicksConnected,
19};
20
21pub struct DisconnectPlugin;
22impl Plugin for DisconnectPlugin {
23 fn build(&self, app: &mut App) {
24 app.add_message::<DisconnectEvent>().add_systems(
25 PostUpdate,
26 (
27 update_read_packets_task_running_component,
28 remove_components_from_disconnected_players,
29 disconnect_on_connection_dead,
34 )
35 .chain(),
36 );
37 }
38}
39
40#[derive(Message)]
51pub struct DisconnectEvent {
52 pub entity: Entity,
53 pub reason: Option<FormattedText>,
54}
55
56#[derive(Bundle)]
61pub struct RemoveOnDisconnectBundle {
62 pub joined_client: JoinedClientBundle,
63
64 pub entity: EntityBundle,
65 pub minecraft_entity_id: MinecraftEntityId,
66 pub instance_holder: InstanceHolder,
67 pub player_metadata: PlayerMetadataBundle,
68 pub in_loaded_chunk: InLoadedChunk,
69 pub raw_connection: RawConnection,
71 pub is_connection_alive: IsConnectionAlive,
73 #[cfg(feature = "online-mode")]
75 pub chat_signing_session: chat_signing::ChatSigningSession,
76 pub is_authenticated: IsAuthenticated,
78 pub has_client_loaded: HasClientLoaded,
80 pub ticks_alive: TicksConnected,
82}
83
84pub fn remove_components_from_disconnected_players(
87 mut commands: Commands,
88 mut events: MessageReader<DisconnectEvent>,
89 mut loaded_by_query: Query<&mut azalea_entity::LoadedBy>,
90) {
91 for DisconnectEvent { entity, reason } in events.read() {
92 info!(
93 "A client {entity:?} was disconnected{}",
94 if let Some(reason) = reason {
95 format!(": {reason}")
96 } else {
97 "".to_owned()
98 }
99 );
100 commands
101 .entity(*entity)
102 .remove::<RemoveOnDisconnectBundle>();
103 for mut loaded_by in &mut loaded_by_query.iter_mut() {
110 loaded_by.remove(entity);
111 }
112 }
113}
114
115#[derive(Component, Clone, Copy, Debug, Deref)]
116pub struct IsConnectionAlive(bool);
117
118fn update_read_packets_task_running_component(
119 query: Query<(Entity, &RawConnection)>,
120 mut commands: Commands,
121) {
122 for (entity, raw_connection) in &query {
123 let running = raw_connection.is_alive();
124 commands.entity(entity).insert(IsConnectionAlive(running));
125 }
126}
127
128#[allow(clippy::type_complexity)]
129fn disconnect_on_connection_dead(
130 query: Query<(Entity, &IsConnectionAlive), (Changed<IsConnectionAlive>, With<LocalEntity>)>,
131 mut disconnect_events: MessageWriter<DisconnectEvent>,
132) {
133 for (entity, &is_connection_alive) in &query {
134 if !*is_connection_alive {
135 disconnect_events.write(DisconnectEvent {
136 entity,
137 reason: None,
138 });
139 }
140 }
141}