2022-05-16 19:36:14 +10:00
|
|
|
use std::collections::HashSet;
|
2022-04-29 17:48:41 +10:00
|
|
|
use std::iter::FusedIterator;
|
2022-05-16 19:36:14 +10:00
|
|
|
use std::ops::Deref;
|
2022-04-15 07:55:45 +10:00
|
|
|
|
|
|
|
use flume::{Receiver, Sender, TrySendError};
|
2022-04-29 17:48:41 +10:00
|
|
|
use rayon::iter::ParallelIterator;
|
2022-05-16 19:36:14 +10:00
|
|
|
use uuid::Uuid;
|
2022-05-16 21:09:51 +10:00
|
|
|
use vek::Vec3;
|
2022-04-15 07:55:45 +10:00
|
|
|
|
2022-06-10 13:26:21 +10:00
|
|
|
use crate::biome::{Biome, BiomeGrassColorModifier, BiomePrecipitation};
|
2022-04-15 07:55:45 +10:00
|
|
|
use crate::block_pos::BlockPos;
|
2022-05-17 19:58:43 +10:00
|
|
|
use crate::byte_angle::ByteAngle;
|
2022-06-10 13:26:21 +10:00
|
|
|
use crate::dimension::{Dimension, DimensionEffects};
|
2022-05-17 19:58:43 +10:00
|
|
|
use crate::entity::{velocity_to_packet_units, EntityType};
|
2022-06-10 13:26:21 +10:00
|
|
|
use crate::packets::play::c2s::C2sPlayPacket;
|
|
|
|
pub use crate::packets::play::s2c::GameMode;
|
|
|
|
use crate::packets::play::s2c::{
|
2022-04-15 07:55:45 +10:00
|
|
|
Biome as BiomeRegistryBiome, BiomeAdditionsSound, BiomeEffects, BiomeMoodSound, BiomeMusic,
|
2022-04-30 22:06:20 +10:00
|
|
|
BiomeParticle, BiomeParticleOptions, BiomeProperty, BiomeRegistry, ChangeGameState,
|
2022-06-21 21:55:32 +10:00
|
|
|
ChangeGameStateReason, ChatTypeRegistry, DestroyEntities, DimensionType, DimensionTypeRegistry,
|
2022-06-10 13:26:21 +10:00
|
|
|
DimensionTypeRegistryEntry, Disconnect, EntityHeadLook, EntityPosition,
|
2022-05-17 19:58:43 +10:00
|
|
|
EntityPositionAndRotation, EntityRotation, EntityTeleport, EntityVelocity, JoinGame,
|
2022-06-21 21:55:32 +10:00
|
|
|
KeepAliveClientbound, PlayerPositionAndLook, PlayerPositionAndLookFlags, RegistryCodec,
|
|
|
|
S2cPlayPacket, SpawnPosition, UnloadChunk, UpdateViewDistance, UpdateViewPosition,
|
2022-04-15 07:55:45 +10:00
|
|
|
};
|
|
|
|
use crate::protocol::{BoundedInt, Nbt};
|
2022-06-10 13:26:21 +10:00
|
|
|
use crate::server::C2sPacketChannels;
|
2022-04-29 17:48:41 +10:00
|
|
|
use crate::slotmap::{Key, SlotMap};
|
2022-04-15 07:55:45 +10:00
|
|
|
use crate::util::{chunks_in_view_distance, is_chunk_in_view_distance};
|
|
|
|
use crate::var_int::VarInt;
|
2022-05-17 19:58:43 +10:00
|
|
|
use crate::{
|
2022-06-22 07:14:16 +10:00
|
|
|
ident, ChunkPos, Chunks, DimensionId, Entities, EntityId, Server, SpatialIndex, Text, Ticks,
|
|
|
|
WorldMeta, LIBRARY_NAMESPACE,
|
2022-05-17 19:58:43 +10:00
|
|
|
};
|
2022-04-15 07:55:45 +10:00
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub struct Clients {
|
2022-04-29 17:48:41 +10:00
|
|
|
sm: SlotMap<Client>,
|
|
|
|
}
|
2022-04-15 07:55:45 +10:00
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub struct ClientsMut<'a>(&'a mut Clients);
|
|
|
|
|
|
|
|
impl<'a> Deref for ClientsMut<'a> {
|
|
|
|
type Target = Clients;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clients {
|
2022-04-29 17:48:41 +10:00
|
|
|
pub(crate) fn new() -> Self {
|
|
|
|
Self { sm: SlotMap::new() }
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
2022-04-29 17:48:41 +10:00
|
|
|
pub fn count(&self) -> usize {
|
2022-06-19 17:25:25 +10:00
|
|
|
self.sm.len()
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn get(&self, client: ClientId) -> Option<&Client> {
|
|
|
|
self.sm.get(client.0)
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn iter(&self) -> impl FusedIterator<Item = (ClientId, &Client)> + Clone + '_ {
|
|
|
|
self.sm.iter().map(|(k, v)| (ClientId(k), v))
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn par_iter(&self) -> impl ParallelIterator<Item = (ClientId, &Client)> + Clone + '_ {
|
|
|
|
self.sm.par_iter().map(|(k, v)| (ClientId(k), v))
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
2022-05-16 19:36:14 +10:00
|
|
|
}
|
2022-04-29 17:48:41 +10:00
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
impl<'a> ClientsMut<'a> {
|
|
|
|
pub(crate) fn new(c: &'a mut Clients) -> Self {
|
|
|
|
Self(c)
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn reborrow(&mut self) -> ClientsMut {
|
|
|
|
ClientsMut(self.0)
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
|
2022-05-18 20:05:10 +10:00
|
|
|
pub(crate) fn create(&mut self, client: Client) -> (ClientId, ClientMut) {
|
|
|
|
let (id, client) = self.0.sm.insert(client);
|
|
|
|
(ClientId(id), ClientMut(client))
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn delete(&mut self, client: ClientId) -> bool {
|
|
|
|
self.0.sm.remove(client.0).is_some()
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn retain(&mut self, mut f: impl FnMut(ClientId, ClientMut) -> bool) {
|
|
|
|
self.0.sm.retain(|k, v| f(ClientId(k), ClientMut(v)))
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn get_mut(&mut self, client: ClientId) -> Option<ClientMut> {
|
|
|
|
self.0.sm.get_mut(client.0).map(ClientMut)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn iter_mut(&mut self) -> impl FusedIterator<Item = (ClientId, ClientMut)> + '_ {
|
|
|
|
self.0
|
|
|
|
.sm
|
|
|
|
.iter_mut()
|
|
|
|
.map(|(k, v)| (ClientId(k), ClientMut(v)))
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn par_iter_mut(&mut self) -> impl ParallelIterator<Item = (ClientId, ClientMut)> + '_ {
|
|
|
|
self.0
|
|
|
|
.sm
|
|
|
|
.par_iter_mut()
|
|
|
|
.map(|(k, v)| (ClientId(k), ClientMut(v)))
|
|
|
|
}
|
|
|
|
}
|
2022-04-29 17:48:41 +10:00
|
|
|
pub struct ClientId(Key);
|
|
|
|
|
2022-04-15 07:55:45 +10:00
|
|
|
/// Represents a client connected to the server after logging in.
|
|
|
|
pub struct Client {
|
|
|
|
/// Setting this to `None` disconnects the client.
|
2022-06-10 13:26:21 +10:00
|
|
|
send: Option<Sender<S2cPlayPacket>>,
|
|
|
|
recv: Receiver<C2sPlayPacket>,
|
2022-04-15 07:55:45 +10:00
|
|
|
/// The tick this client was created.
|
|
|
|
created_tick: Ticks,
|
|
|
|
username: String,
|
2022-05-16 19:36:14 +10:00
|
|
|
uuid: Uuid,
|
2022-04-15 07:55:45 +10:00
|
|
|
on_ground: bool,
|
2022-05-16 21:09:51 +10:00
|
|
|
new_position: Vec3<f64>,
|
|
|
|
old_position: Vec3<f64>,
|
2022-04-15 07:55:45 +10:00
|
|
|
/// Measured in degrees
|
|
|
|
yaw: f32,
|
|
|
|
/// Measured in degrees
|
|
|
|
pitch: f32,
|
|
|
|
/// If any of position, yaw, or pitch were modified by the
|
|
|
|
/// user this tick.
|
|
|
|
teleported_this_tick: bool,
|
|
|
|
/// Counts up as teleports are made.
|
|
|
|
teleport_id_counter: u32,
|
|
|
|
/// The number of pending client teleports that have yet to receive a
|
|
|
|
/// confirmation. Inbound client position packets are ignored while this
|
|
|
|
/// is nonzero.
|
|
|
|
pending_teleports: u32,
|
|
|
|
spawn_position: BlockPos,
|
|
|
|
spawn_position_yaw: f32,
|
|
|
|
/// If spawn_position or spawn_position_yaw were modified this tick.
|
|
|
|
modified_spawn_position: bool,
|
2022-06-22 07:14:16 +10:00
|
|
|
death_location: Option<(DimensionId, BlockPos)>,
|
2022-04-15 07:55:45 +10:00
|
|
|
events: Vec<Event>,
|
|
|
|
/// The ID of the last keepalive sent.
|
|
|
|
last_keepalive_id: i64,
|
|
|
|
/// If the last sent keepalive got a response.
|
|
|
|
got_keepalive: bool,
|
|
|
|
new_max_view_distance: u8,
|
2022-04-29 17:48:41 +10:00
|
|
|
old_max_view_distance: u8,
|
2022-04-15 07:55:45 +10:00
|
|
|
/// Entities that were visible to this client at the end of the last tick.
|
|
|
|
/// This is used to determine what entity create/destroy packets should be
|
|
|
|
/// sent.
|
|
|
|
loaded_entities: HashSet<EntityId>,
|
2022-05-16 19:36:14 +10:00
|
|
|
loaded_chunks: HashSet<ChunkPos>,
|
2022-04-15 07:55:45 +10:00
|
|
|
new_game_mode: GameMode,
|
2022-04-29 17:48:41 +10:00
|
|
|
old_game_mode: GameMode,
|
2022-04-15 07:55:45 +10:00
|
|
|
settings: Option<Settings>,
|
|
|
|
// TODO: latency
|
|
|
|
// TODO: time, weather
|
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub struct ClientMut<'a>(&'a mut Client);
|
|
|
|
|
|
|
|
impl<'a> Deref for ClientMut<'a> {
|
|
|
|
type Target = Client;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-15 07:55:45 +10:00
|
|
|
impl Client {
|
|
|
|
pub(crate) fn new(
|
2022-06-10 13:26:21 +10:00
|
|
|
packet_channels: C2sPacketChannels,
|
2022-04-15 07:55:45 +10:00
|
|
|
username: String,
|
2022-05-16 19:36:14 +10:00
|
|
|
uuid: Uuid,
|
2022-04-15 07:55:45 +10:00
|
|
|
server: &Server,
|
|
|
|
) -> Self {
|
|
|
|
let (send, recv) = packet_channels;
|
|
|
|
|
|
|
|
Self {
|
|
|
|
send: Some(send),
|
|
|
|
recv,
|
|
|
|
created_tick: server.current_tick(),
|
|
|
|
username,
|
2022-05-16 19:36:14 +10:00
|
|
|
uuid,
|
2022-04-15 07:55:45 +10:00
|
|
|
on_ground: false,
|
2022-05-16 21:09:51 +10:00
|
|
|
new_position: Vec3::default(),
|
|
|
|
old_position: Vec3::default(),
|
2022-04-15 07:55:45 +10:00
|
|
|
yaw: 0.0,
|
|
|
|
pitch: 0.0,
|
|
|
|
teleported_this_tick: false,
|
|
|
|
teleport_id_counter: 0,
|
|
|
|
pending_teleports: 0,
|
|
|
|
spawn_position: BlockPos::default(),
|
|
|
|
spawn_position_yaw: 0.0,
|
|
|
|
modified_spawn_position: true,
|
2022-06-22 07:14:16 +10:00
|
|
|
death_location: None,
|
2022-04-15 07:55:45 +10:00
|
|
|
events: Vec::new(),
|
|
|
|
last_keepalive_id: 0,
|
|
|
|
got_keepalive: true,
|
|
|
|
new_max_view_distance: 16,
|
2022-04-29 17:48:41 +10:00
|
|
|
old_max_view_distance: 0,
|
2022-04-15 07:55:45 +10:00
|
|
|
loaded_entities: HashSet::new(),
|
2022-05-16 19:36:14 +10:00
|
|
|
loaded_chunks: HashSet::new(),
|
2022-04-15 07:55:45 +10:00
|
|
|
new_game_mode: GameMode::Survival,
|
2022-04-29 17:48:41 +10:00
|
|
|
old_game_mode: GameMode::Survival,
|
2022-04-15 07:55:45 +10:00
|
|
|
settings: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn created_tick(&self) -> Ticks {
|
|
|
|
self.created_tick
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn username(&self) -> &str {
|
|
|
|
&self.username
|
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn uuid(&self) -> Uuid {
|
|
|
|
self.uuid
|
|
|
|
}
|
|
|
|
|
2022-05-16 21:09:51 +10:00
|
|
|
pub fn position(&self) -> Vec3<f64> {
|
2022-04-15 07:55:45 +10:00
|
|
|
self.new_position
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn yaw(&self) -> f32 {
|
|
|
|
self.yaw
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pitch(&self) -> f32 {
|
|
|
|
self.pitch
|
|
|
|
}
|
|
|
|
|
2022-06-22 07:14:16 +10:00
|
|
|
/// Gets the spawn position. The client will see regular compasses point at
|
|
|
|
/// the returned position.
|
|
|
|
pub fn spawn_position(&self) -> BlockPos {
|
|
|
|
self.spawn_position
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Gets the last death location. The client will see recovery compasses
|
|
|
|
/// point at the returned position. If the client's current dimension
|
|
|
|
/// differs from the returned dimension or the location is `None` then the
|
|
|
|
/// compass will spin randomly.
|
|
|
|
pub fn death_location(&self) -> Option<(DimensionId, BlockPos)> {
|
|
|
|
self.death_location
|
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn game_mode(&self) -> GameMode {
|
|
|
|
self.new_game_mode
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn on_ground(&self) -> bool {
|
|
|
|
self.on_ground
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_disconnected(&self) -> bool {
|
|
|
|
self.send.is_none()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn events(&self) -> &[Event] {
|
|
|
|
&self.events
|
|
|
|
}
|
|
|
|
|
2022-06-20 01:40:37 +10:00
|
|
|
/// The current view distance of this client measured in chunks.
|
|
|
|
pub fn view_distance(&self) -> u8 {
|
|
|
|
self.settings
|
|
|
|
.as_ref()
|
|
|
|
.map_or(2, |s| s.view_distance)
|
|
|
|
.min(self.max_view_distance())
|
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
pub fn max_view_distance(&self) -> u8 {
|
|
|
|
self.new_max_view_distance
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn settings(&self) -> Option<&Settings> {
|
|
|
|
self.settings.as_ref()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ClientMut<'a> {
|
|
|
|
pub(crate) fn new(client: &'a mut Client) -> Self {
|
|
|
|
Self(client)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn reborrow(&mut self) -> ClientMut {
|
|
|
|
ClientMut(self.0)
|
|
|
|
}
|
|
|
|
|
2022-05-16 21:09:51 +10:00
|
|
|
pub fn teleport(&mut self, pos: impl Into<Vec3<f64>>, yaw: f32, pitch: f32) {
|
2022-05-16 19:36:14 +10:00
|
|
|
self.0.new_position = pos.into();
|
|
|
|
self.0.yaw = yaw;
|
|
|
|
self.0.pitch = pitch;
|
2022-04-15 07:55:45 +10:00
|
|
|
|
|
|
|
if !self.teleported_this_tick {
|
2022-05-16 19:36:14 +10:00
|
|
|
self.0.teleported_this_tick = true;
|
2022-04-15 07:55:45 +10:00
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
self.0.pending_teleports = match self.0.pending_teleports.checked_add(1) {
|
2022-04-15 07:55:45 +10:00
|
|
|
Some(n) => n,
|
|
|
|
None => {
|
|
|
|
self.disconnect("Too many pending teleports");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
self.0.teleport_id_counter = self.0.teleport_id_counter.wrapping_add(1);
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-30 22:06:20 +10:00
|
|
|
pub fn set_game_mode(&mut self, new_game_mode: GameMode) {
|
2022-05-16 19:36:14 +10:00
|
|
|
self.0.new_game_mode = new_game_mode;
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
2022-06-22 07:14:16 +10:00
|
|
|
/// Sets the spawn position. The client will see regular compasses point at
|
|
|
|
/// the provided position.
|
2022-04-15 07:55:45 +10:00
|
|
|
pub fn set_spawn_position(&mut self, pos: impl Into<BlockPos>, yaw_degrees: f32) {
|
|
|
|
let pos = pos.into();
|
2022-05-16 19:36:14 +10:00
|
|
|
if pos != self.0.spawn_position || yaw_degrees != self.0.spawn_position_yaw {
|
|
|
|
self.0.spawn_position = pos;
|
|
|
|
self.0.spawn_position_yaw = yaw_degrees;
|
|
|
|
self.0.modified_spawn_position = true;
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-22 07:14:16 +10:00
|
|
|
/// Sets the last death location. The client will see recovery compasses
|
|
|
|
/// point at the provided position. If the client's current dimension
|
|
|
|
/// differs from the provided dimension or the location is `None` then the
|
|
|
|
/// compass will spin randomly.
|
|
|
|
///
|
|
|
|
/// Changes to the last death location take effect when the client
|
|
|
|
/// (re)spawns.
|
|
|
|
pub fn set_death_location(&mut self, location: Option<(DimensionId, BlockPos)>) {
|
|
|
|
self.0.death_location = location;
|
|
|
|
}
|
|
|
|
|
2022-04-15 07:55:45 +10:00
|
|
|
/// Attempts to enqueue a play packet to be sent to this client. The client
|
|
|
|
/// is disconnected if the clientbound packet buffer is full.
|
2022-06-10 13:26:21 +10:00
|
|
|
pub(crate) fn send_packet(&mut self, packet: impl Into<S2cPlayPacket>) {
|
2022-05-16 19:36:14 +10:00
|
|
|
send_packet(&mut self.0.send, packet);
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn disconnect(&mut self, reason: impl Into<Text>) {
|
2022-05-16 19:36:14 +10:00
|
|
|
if self.0.send.is_some() {
|
2022-04-15 07:55:45 +10:00
|
|
|
let txt = reason.into();
|
2022-05-16 19:36:14 +10:00
|
|
|
log::info!("disconnecting client '{}': \"{txt}\"", self.0.username);
|
2022-04-15 07:55:45 +10:00
|
|
|
|
|
|
|
self.send_packet(Disconnect { reason: txt });
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
self.0.send = None;
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn disconnect_no_reason(&mut self) {
|
2022-05-16 19:36:14 +10:00
|
|
|
if self.0.send.is_some() {
|
|
|
|
log::info!("disconnecting client '{}' (no reason)", self.0.username);
|
|
|
|
self.0.send = None;
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The new view distance is clamped to `2..=32`.
|
|
|
|
pub fn set_max_view_distance(&mut self, dist: u8) {
|
2022-05-16 19:36:14 +10:00
|
|
|
self.0.new_max_view_distance = dist.clamp(2, 32);
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn update(
|
|
|
|
&mut self,
|
2022-05-16 19:36:14 +10:00
|
|
|
server: &Server,
|
|
|
|
entities: &Entities,
|
2022-06-19 18:01:48 +10:00
|
|
|
spatial_index: &SpatialIndex,
|
2022-05-16 19:36:14 +10:00
|
|
|
chunks: &Chunks,
|
2022-05-17 19:58:43 +10:00
|
|
|
meta: &WorldMeta,
|
2022-04-29 17:48:41 +10:00
|
|
|
) {
|
2022-05-16 19:36:14 +10:00
|
|
|
self.0.events.clear();
|
2022-04-15 07:55:45 +10:00
|
|
|
|
|
|
|
if self.is_disconnected() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-29 17:48:41 +10:00
|
|
|
for _ in 0..self.recv.len() {
|
|
|
|
self.handle_serverbound_packet(self.recv.try_recv().unwrap());
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
2022-04-29 17:48:41 +10:00
|
|
|
// Mark the client as disconnected when appropriate.
|
|
|
|
// We do this check after handling serverbound packets so that none are lost.
|
2022-05-16 19:36:14 +10:00
|
|
|
if self.recv.is_disconnected() || self.send.as_ref().map_or(true, |s| s.is_disconnected()) {
|
|
|
|
self.0.send = None;
|
2022-04-29 17:48:41 +10:00
|
|
|
return;
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
2022-05-17 19:58:43 +10:00
|
|
|
let current_tick = server.current_tick();
|
2022-04-15 07:55:45 +10:00
|
|
|
|
2022-04-29 17:48:41 +10:00
|
|
|
// Send the join game packet and other initial packets. We defer this until now
|
|
|
|
// so that the user can set the client's location, game mode, etc.
|
2022-05-17 19:58:43 +10:00
|
|
|
if self.created_tick == current_tick {
|
2022-04-15 07:55:45 +10:00
|
|
|
self.send_packet(JoinGame {
|
2022-05-16 19:36:14 +10:00
|
|
|
entity_id: 0, // EntityId 0 is reserved for clients.
|
2022-04-30 22:06:20 +10:00
|
|
|
is_hardcore: false, // TODO
|
2022-04-15 07:55:45 +10:00
|
|
|
gamemode: self.new_game_mode,
|
|
|
|
previous_gamemode: self.old_game_mode,
|
2022-05-16 19:36:14 +10:00
|
|
|
dimension_names: server
|
2022-04-15 07:55:45 +10:00
|
|
|
.dimensions()
|
2022-04-30 22:06:20 +10:00
|
|
|
.map(|(id, _)| ident!("{LIBRARY_NAMESPACE}:dimension_{}", id.0))
|
2022-04-15 07:55:45 +10:00
|
|
|
.collect(),
|
2022-06-21 21:55:32 +10:00
|
|
|
registry_codec: Nbt(make_dimension_codec(server)),
|
|
|
|
dimension_type_name: ident!(
|
|
|
|
"{LIBRARY_NAMESPACE}:dimension_type_{}",
|
|
|
|
meta.dimension().0
|
|
|
|
),
|
2022-05-17 19:58:43 +10:00
|
|
|
dimension_name: ident!("{LIBRARY_NAMESPACE}:dimension_{}", meta.dimension().0),
|
2022-04-15 07:55:45 +10:00
|
|
|
hashed_seed: 0,
|
|
|
|
max_players: VarInt(0),
|
|
|
|
view_distance: BoundedInt(VarInt(self.new_max_view_distance as i32)),
|
|
|
|
simulation_distance: VarInt(16),
|
2022-06-21 21:55:32 +10:00
|
|
|
reduced_debug_info: false, // TODO
|
|
|
|
enable_respawn_screen: false,
|
2022-06-22 05:26:28 +10:00
|
|
|
is_debug: false,
|
|
|
|
is_flat: meta.is_flat(),
|
2022-06-22 07:14:16 +10:00
|
|
|
last_death_location: self
|
|
|
|
.death_location
|
|
|
|
.map(|(id, pos)| (ident!("{LIBRARY_NAMESPACE}:dimension_{}", id.0), pos)),
|
2022-04-15 07:55:45 +10:00
|
|
|
});
|
|
|
|
|
|
|
|
self.teleport(self.position(), self.yaw(), self.pitch());
|
2022-05-16 19:36:14 +10:00
|
|
|
} else if self.0.old_game_mode != self.0.new_game_mode {
|
|
|
|
self.0.old_game_mode = self.0.new_game_mode;
|
2022-04-30 22:06:20 +10:00
|
|
|
self.send_packet(ChangeGameState {
|
|
|
|
reason: ChangeGameStateReason::ChangeGameMode,
|
2022-05-16 19:36:14 +10:00
|
|
|
value: self.0.new_game_mode as i32 as f32,
|
2022-04-30 22:06:20 +10:00
|
|
|
});
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
2022-04-29 17:48:41 +10:00
|
|
|
// Update the players spawn position (compass position)
|
2022-05-16 19:36:14 +10:00
|
|
|
if self.0.modified_spawn_position {
|
|
|
|
self.0.modified_spawn_position = false;
|
2022-04-15 07:55:45 +10:00
|
|
|
|
|
|
|
self.send_packet(SpawnPosition {
|
|
|
|
location: self.spawn_position,
|
|
|
|
angle: self.spawn_position_yaw,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update view distance fog on the client if necessary.
|
2022-05-16 19:36:14 +10:00
|
|
|
if self.0.old_max_view_distance != self.0.new_max_view_distance {
|
|
|
|
self.0.old_max_view_distance = self.0.new_max_view_distance;
|
2022-05-17 19:58:43 +10:00
|
|
|
if self.0.created_tick != current_tick {
|
2022-04-15 07:55:45 +10:00
|
|
|
self.send_packet(UpdateViewDistance {
|
2022-05-16 19:36:14 +10:00
|
|
|
view_distance: BoundedInt(VarInt(self.0.new_max_view_distance as i32)),
|
2022-04-15 07:55:45 +10:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if it's time to send another keepalive.
|
2022-05-17 19:58:43 +10:00
|
|
|
if current_tick % (server.tick_rate() * 8) == 0 {
|
2022-05-16 19:36:14 +10:00
|
|
|
if self.0.got_keepalive {
|
2022-04-15 07:55:45 +10:00
|
|
|
let id = rand::random();
|
|
|
|
self.send_packet(KeepAliveClientbound { id });
|
2022-05-16 19:36:14 +10:00
|
|
|
self.0.last_keepalive_id = id;
|
|
|
|
self.0.got_keepalive = false;
|
2022-04-15 07:55:45 +10:00
|
|
|
} else {
|
|
|
|
self.disconnect("Timed out (no keepalive response)");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-20 01:40:37 +10:00
|
|
|
let view_dist = self.view_distance();
|
2022-04-15 07:55:45 +10:00
|
|
|
|
2022-05-16 21:09:51 +10:00
|
|
|
let center = ChunkPos::new(
|
|
|
|
(self.new_position.x / 16.0) as i32,
|
|
|
|
(self.new_position.z / 16.0) as i32,
|
|
|
|
);
|
2022-04-15 07:55:45 +10:00
|
|
|
|
|
|
|
// Send the update view position packet if the client changes the chunk section
|
|
|
|
// they're in.
|
|
|
|
{
|
2022-05-16 19:36:14 +10:00
|
|
|
let old_section = self.0.old_position.map(|n| (n / 16.0) as i32);
|
|
|
|
let new_section = self.0.new_position.map(|n| (n / 16.0) as i32);
|
2022-04-15 07:55:45 +10:00
|
|
|
|
|
|
|
if old_section != new_section {
|
|
|
|
self.send_packet(UpdateViewPosition {
|
|
|
|
chunk_x: VarInt(new_section.x),
|
|
|
|
chunk_z: VarInt(new_section.z),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-23 01:06:54 +10:00
|
|
|
let dimension = server.dimension(meta.dimension());
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
// Update existing chunks and unload those outside the view distance. Chunks
|
|
|
|
// that have been overwritten also need to be unloaded.
|
|
|
|
self.0.loaded_chunks.retain(|&pos| {
|
|
|
|
// The cache stops chunk data packets from needing to be sent when a player
|
|
|
|
// moves to an adjacent chunk and back to the original.
|
|
|
|
let cache = 2;
|
|
|
|
|
|
|
|
if let Some(chunk) = chunks.get(pos) {
|
|
|
|
if is_chunk_in_view_distance(center, pos, view_dist + cache)
|
2022-05-17 19:58:43 +10:00
|
|
|
&& chunk.created_tick() != current_tick
|
2022-05-16 19:36:14 +10:00
|
|
|
{
|
2022-06-23 01:06:54 +10:00
|
|
|
chunk.block_change_packets(pos, dimension.min_y, |pkt| {
|
|
|
|
send_packet(&mut self.0.send, pkt)
|
|
|
|
});
|
2022-05-16 19:36:14 +10:00
|
|
|
return true;
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
}
|
2022-05-16 19:36:14 +10:00
|
|
|
|
|
|
|
send_packet(
|
|
|
|
&mut self.0.send,
|
|
|
|
UnloadChunk {
|
|
|
|
chunk_x: pos.x,
|
|
|
|
chunk_z: pos.z,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
false
|
2022-04-15 07:55:45 +10:00
|
|
|
});
|
|
|
|
|
|
|
|
// Load new chunks within the view distance
|
|
|
|
for pos in chunks_in_view_distance(center, view_dist) {
|
2022-05-16 19:36:14 +10:00
|
|
|
if let Some(chunk) = chunks.get(pos) {
|
|
|
|
if self.0.loaded_chunks.insert(pos) {
|
|
|
|
self.send_packet(chunk.chunk_data_packet(pos));
|
2022-06-23 01:06:54 +10:00
|
|
|
chunk.block_change_packets(pos, dimension.min_y, |pkt| self.send_packet(pkt));
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is done after the chunks are loaded so that the "downloading terrain"
|
|
|
|
// screen is closed at the appropriate time.
|
2022-05-16 21:09:51 +10:00
|
|
|
if self.0.teleported_this_tick {
|
|
|
|
self.0.teleported_this_tick = false;
|
|
|
|
|
|
|
|
self.send_packet(PlayerPositionAndLook {
|
|
|
|
position: self.new_position,
|
|
|
|
yaw: self.yaw,
|
|
|
|
pitch: self.pitch,
|
|
|
|
flags: PlayerPositionAndLookFlags::new(false, false, false, false, false),
|
|
|
|
teleport_id: VarInt((self.teleport_id_counter - 1) as i32),
|
|
|
|
dismount_vehicle: false,
|
|
|
|
});
|
|
|
|
}
|
2022-05-16 19:36:14 +10:00
|
|
|
|
|
|
|
let mut entities_to_unload = Vec::new();
|
|
|
|
|
|
|
|
// Update all entities that are visible and unload entities that are no
|
|
|
|
// longer visible.
|
|
|
|
self.0.loaded_entities.retain(|&id| {
|
|
|
|
if let Some(entity) = entities.get(id) {
|
2022-05-17 19:58:43 +10:00
|
|
|
debug_assert!(entity.typ() != EntityType::Marker);
|
|
|
|
if self.0.new_position.distance(entity.position()) <= view_dist as f64 * 16.0
|
|
|
|
&& !entity.flags().type_modified()
|
|
|
|
{
|
2022-05-17 04:53:21 +10:00
|
|
|
if let Some(meta) = entity.updated_metadata_packet(id) {
|
|
|
|
send_packet(&mut self.0.send, meta);
|
|
|
|
}
|
2022-05-17 19:58:43 +10:00
|
|
|
|
|
|
|
let position_delta = entity.position() - entity.old_position();
|
|
|
|
let needs_teleport = position_delta.map(f64::abs).reduce_partial_max() >= 8.0;
|
|
|
|
let flags = entity.flags();
|
|
|
|
|
|
|
|
if entity.position() != entity.old_position()
|
|
|
|
&& !needs_teleport
|
|
|
|
&& flags.yaw_or_pitch_modified()
|
|
|
|
{
|
|
|
|
send_packet(
|
|
|
|
&mut self.0.send,
|
|
|
|
EntityPositionAndRotation {
|
|
|
|
entity_id: VarInt(id.to_network_id()),
|
|
|
|
delta: (position_delta * 4096.0).as_(),
|
|
|
|
yaw: ByteAngle::from_degrees(entity.yaw()),
|
|
|
|
pitch: ByteAngle::from_degrees(entity.pitch()),
|
|
|
|
on_ground: entity.on_ground(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
if entity.position() != entity.old_position() && !needs_teleport {
|
|
|
|
send_packet(
|
|
|
|
&mut self.0.send,
|
|
|
|
EntityPosition {
|
|
|
|
entity_id: VarInt(id.to_network_id()),
|
|
|
|
delta: (position_delta * 4096.0).as_(),
|
|
|
|
on_ground: entity.on_ground(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if flags.yaw_or_pitch_modified() {
|
|
|
|
send_packet(
|
|
|
|
&mut self.0.send,
|
|
|
|
EntityRotation {
|
|
|
|
entity_id: VarInt(id.to_network_id()),
|
|
|
|
yaw: ByteAngle::from_degrees(entity.yaw()),
|
|
|
|
pitch: ByteAngle::from_degrees(entity.pitch()),
|
|
|
|
on_ground: entity.on_ground(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if needs_teleport {
|
|
|
|
send_packet(
|
|
|
|
&mut self.0.send,
|
|
|
|
EntityTeleport {
|
|
|
|
entity_id: VarInt(id.to_network_id()),
|
|
|
|
position: entity.position(),
|
|
|
|
yaw: ByteAngle::from_degrees(entity.yaw()),
|
|
|
|
pitch: ByteAngle::from_degrees(entity.pitch()),
|
|
|
|
on_ground: entity.on_ground(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if flags.velocity_modified() {
|
|
|
|
send_packet(
|
|
|
|
&mut self.0.send,
|
|
|
|
EntityVelocity {
|
|
|
|
entity_id: VarInt(id.to_network_id()),
|
|
|
|
velocity: velocity_to_packet_units(entity.velocity()),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if flags.head_yaw_modified() {
|
|
|
|
send_packet(
|
|
|
|
&mut self.0.send,
|
|
|
|
EntityHeadLook {
|
|
|
|
entity_id: VarInt(id.to_network_id()),
|
|
|
|
head_yaw: ByteAngle::from_degrees(entity.head_yaw()),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
entities_to_unload.push(VarInt(id.to_network_id()));
|
|
|
|
false
|
|
|
|
});
|
|
|
|
|
|
|
|
if !entities_to_unload.is_empty() {
|
|
|
|
self.send_packet(DestroyEntities {
|
|
|
|
entities: entities_to_unload,
|
2022-04-15 07:55:45 +10:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
// Spawn new entities within the view distance.
|
2022-06-19 18:01:48 +10:00
|
|
|
let pos = self.position();
|
|
|
|
spatial_index.query::<_, _, ()>(
|
2022-06-20 01:40:37 +10:00
|
|
|
|bb| bb.projected_point(pos).distance(pos) <= view_dist as f64 * 16.0,
|
2022-06-19 18:01:48 +10:00
|
|
|
|id, _| {
|
|
|
|
if self.0.loaded_entities.insert(id) {
|
|
|
|
let entity = entities.get(id).unwrap();
|
|
|
|
if entity.typ() != EntityType::Marker {
|
|
|
|
self.send_packet(
|
|
|
|
entity
|
|
|
|
.spawn_packet(id)
|
|
|
|
.expect("should not be a marker entity"),
|
|
|
|
);
|
2022-06-20 01:40:37 +10:00
|
|
|
|
2022-06-19 18:01:48 +10:00
|
|
|
if let Some(meta) = entity.initial_metadata_packet(id) {
|
|
|
|
self.send_packet(meta);
|
|
|
|
}
|
|
|
|
}
|
2022-05-16 19:36:14 +10:00
|
|
|
}
|
2022-06-19 18:01:48 +10:00
|
|
|
None
|
|
|
|
},
|
|
|
|
);
|
2022-05-16 19:36:14 +10:00
|
|
|
|
|
|
|
self.0.old_position = self.0.new_position;
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
2022-04-29 17:48:41 +10:00
|
|
|
|
2022-06-10 13:26:21 +10:00
|
|
|
fn handle_serverbound_packet(&mut self, pkt: C2sPlayPacket) {
|
2022-05-16 19:36:14 +10:00
|
|
|
let client = &mut self.0;
|
|
|
|
|
2022-04-29 17:48:41 +10:00
|
|
|
fn handle_movement_packet(
|
|
|
|
client: &mut Client,
|
2022-05-16 21:09:51 +10:00
|
|
|
new_position: Vec3<f64>,
|
2022-04-29 17:48:41 +10:00
|
|
|
new_yaw: f32,
|
|
|
|
new_pitch: f32,
|
|
|
|
new_on_ground: bool,
|
|
|
|
) {
|
|
|
|
if client.pending_teleports == 0 {
|
|
|
|
let event = Event::Movement {
|
|
|
|
position: client.new_position,
|
2022-05-16 21:09:51 +10:00
|
|
|
yaw: client.yaw,
|
|
|
|
pitch: client.pitch,
|
2022-04-29 17:48:41 +10:00
|
|
|
on_ground: client.on_ground,
|
|
|
|
};
|
|
|
|
|
|
|
|
client.new_position = new_position;
|
|
|
|
client.yaw = new_yaw;
|
|
|
|
client.pitch = new_pitch;
|
|
|
|
client.on_ground = new_on_ground;
|
|
|
|
|
|
|
|
client.events.push(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
match pkt {
|
2022-06-10 13:26:21 +10:00
|
|
|
C2sPlayPacket::TeleportConfirm(p) => {
|
2022-05-16 19:36:14 +10:00
|
|
|
if client.pending_teleports == 0 {
|
2022-04-29 17:48:41 +10:00
|
|
|
self.disconnect("Unexpected teleport confirmation");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let got = p.teleport_id.0 as u32;
|
2022-05-16 19:36:14 +10:00
|
|
|
let expected = client
|
2022-04-29 17:48:41 +10:00
|
|
|
.teleport_id_counter
|
2022-05-16 19:36:14 +10:00
|
|
|
.wrapping_sub(client.pending_teleports);
|
2022-04-29 17:48:41 +10:00
|
|
|
|
|
|
|
if got == expected {
|
2022-05-16 19:36:14 +10:00
|
|
|
client.pending_teleports -= 1;
|
2022-04-29 17:48:41 +10:00
|
|
|
} else {
|
|
|
|
self.disconnect(format!(
|
|
|
|
"Unexpected teleport ID (expected {expected}, got {got})"
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 13:26:21 +10:00
|
|
|
C2sPlayPacket::QueryBlockNbt(_) => {}
|
|
|
|
C2sPlayPacket::SetDifficulty(_) => {}
|
|
|
|
C2sPlayPacket::ChatMessageServerbound(_) => {}
|
2022-06-21 21:55:32 +10:00
|
|
|
C2sPlayPacket::ChatPreview(_) => {}
|
2022-06-10 13:26:21 +10:00
|
|
|
C2sPlayPacket::ClientStatus(_) => {}
|
|
|
|
C2sPlayPacket::ClientSettings(p) => {
|
2022-05-16 19:36:14 +10:00
|
|
|
let old = client.settings.replace(Settings {
|
2022-04-29 17:48:41 +10:00
|
|
|
locale: p.locale.0,
|
|
|
|
view_distance: p.view_distance.0,
|
|
|
|
chat_mode: p.chat_mode,
|
|
|
|
chat_colors: p.chat_colors,
|
|
|
|
main_hand: p.main_hand,
|
|
|
|
displayed_skin_parts: p.displayed_skin_parts,
|
|
|
|
allow_server_listings: p.allow_server_listings,
|
|
|
|
});
|
|
|
|
|
2022-05-16 19:36:14 +10:00
|
|
|
client.events.push(Event::SettingsChanged(old));
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
2022-06-10 13:26:21 +10:00
|
|
|
C2sPlayPacket::TabCompleteServerbound(_) => {}
|
|
|
|
C2sPlayPacket::ClickWindowButton(_) => {}
|
|
|
|
C2sPlayPacket::CloseWindow(_) => {}
|
|
|
|
C2sPlayPacket::PluginMessageServerbound(_) => {}
|
|
|
|
C2sPlayPacket::EditBook(_) => {}
|
|
|
|
C2sPlayPacket::QueryEntityNbt(_) => {}
|
|
|
|
C2sPlayPacket::InteractEntity(_) => {}
|
|
|
|
C2sPlayPacket::GenerateStructure(_) => {}
|
|
|
|
C2sPlayPacket::KeepAliveServerbound(p) => {
|
2022-05-16 19:36:14 +10:00
|
|
|
let last_keepalive_id = client.last_keepalive_id;
|
|
|
|
if client.got_keepalive {
|
2022-04-29 17:48:41 +10:00
|
|
|
self.disconnect("Unexpected keepalive");
|
2022-05-16 19:36:14 +10:00
|
|
|
} else if p.id != last_keepalive_id {
|
2022-04-29 17:48:41 +10:00
|
|
|
self.disconnect(format!(
|
|
|
|
"Keepalive ids don't match (expected {}, got {})",
|
2022-05-16 19:36:14 +10:00
|
|
|
last_keepalive_id, p.id
|
2022-04-29 17:48:41 +10:00
|
|
|
));
|
|
|
|
} else {
|
2022-05-16 19:36:14 +10:00
|
|
|
client.got_keepalive = true;
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
}
|
2022-06-10 13:26:21 +10:00
|
|
|
C2sPlayPacket::LockDifficulty(_) => {}
|
|
|
|
C2sPlayPacket::PlayerPosition(p) => {
|
2022-05-16 19:36:14 +10:00
|
|
|
handle_movement_packet(client, p.position, client.yaw, client.pitch, p.on_ground)
|
|
|
|
}
|
2022-06-10 13:26:21 +10:00
|
|
|
C2sPlayPacket::PlayerPositionAndRotation(p) => {
|
2022-05-16 19:36:14 +10:00
|
|
|
handle_movement_packet(client, p.position, p.yaw, p.pitch, p.on_ground)
|
|
|
|
}
|
2022-06-10 13:26:21 +10:00
|
|
|
C2sPlayPacket::PlayerRotation(p) => {
|
2022-05-16 19:36:14 +10:00
|
|
|
handle_movement_packet(client, client.new_position, p.yaw, p.pitch, p.on_ground)
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
|
2022-06-10 13:26:21 +10:00
|
|
|
C2sPlayPacket::PlayerMovement(p) => handle_movement_packet(
|
2022-05-16 19:36:14 +10:00
|
|
|
client,
|
|
|
|
client.new_position,
|
|
|
|
client.yaw,
|
|
|
|
client.pitch,
|
|
|
|
p.on_ground,
|
|
|
|
),
|
2022-06-10 13:26:21 +10:00
|
|
|
C2sPlayPacket::VehicleMoveServerbound(_) => {}
|
|
|
|
C2sPlayPacket::SteerBoat(_) => {}
|
|
|
|
C2sPlayPacket::PickItem(_) => {}
|
|
|
|
C2sPlayPacket::CraftRecipeRequest(_) => {}
|
|
|
|
C2sPlayPacket::PlayerAbilitiesServerbound(_) => {}
|
|
|
|
C2sPlayPacket::PlayerDigging(_) => {}
|
|
|
|
C2sPlayPacket::EntityAction(_) => {}
|
|
|
|
C2sPlayPacket::SteerVehicle(_) => {}
|
|
|
|
C2sPlayPacket::Pong(_) => {}
|
|
|
|
C2sPlayPacket::SetRecipeBookState(_) => {}
|
|
|
|
C2sPlayPacket::SetDisplayedRecipe(_) => {}
|
|
|
|
C2sPlayPacket::NameItem(_) => {}
|
|
|
|
C2sPlayPacket::ResourcePackStatus(_) => {}
|
|
|
|
C2sPlayPacket::AdvancementTab(_) => {}
|
|
|
|
C2sPlayPacket::SelectTrade(_) => {}
|
|
|
|
C2sPlayPacket::SetBeaconEffect(_) => {}
|
|
|
|
C2sPlayPacket::HeldItemChangeServerbound(_) => {}
|
|
|
|
C2sPlayPacket::UpdateCommandBlock(_) => {}
|
|
|
|
C2sPlayPacket::UpdateCommandBlockMinecart(_) => {}
|
|
|
|
C2sPlayPacket::CreativeInventoryAction(_) => {}
|
|
|
|
C2sPlayPacket::UpdateJigsawBlock(_) => {}
|
|
|
|
C2sPlayPacket::UpdateStructureBlock(_) => {}
|
|
|
|
C2sPlayPacket::UpdateSign(_) => {}
|
|
|
|
C2sPlayPacket::PlayerArmSwing(_) => {}
|
|
|
|
C2sPlayPacket::Spectate(_) => {}
|
|
|
|
C2sPlayPacket::PlayerBlockPlacement(_) => {}
|
|
|
|
C2sPlayPacket::UseItem(_) => {}
|
2022-04-29 17:48:41 +10:00
|
|
|
}
|
|
|
|
}
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Client {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
log::trace!("Dropping client '{}'", self.username);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Event {
|
|
|
|
/// Settings were changed. The value in this variant is the previous client
|
|
|
|
/// settings.
|
|
|
|
SettingsChanged(Option<Settings>),
|
|
|
|
|
|
|
|
/// The client has moved. The values in this variant are the previous
|
|
|
|
/// position and look.
|
|
|
|
Movement {
|
2022-05-16 21:09:51 +10:00
|
|
|
position: Vec3<f64>,
|
|
|
|
yaw: f32,
|
|
|
|
pitch: f32,
|
2022-04-15 07:55:45 +10:00
|
|
|
on_ground: bool,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-04-29 17:48:41 +10:00
|
|
|
#[derive(Clone, PartialEq, Debug)]
|
2022-04-15 07:55:45 +10:00
|
|
|
pub struct Settings {
|
|
|
|
/// e.g. en_US
|
|
|
|
pub locale: String,
|
|
|
|
/// The client side render distance, in chunks.
|
|
|
|
///
|
|
|
|
/// The value is always in `2..=32`.
|
|
|
|
pub view_distance: u8,
|
|
|
|
pub chat_mode: ChatMode,
|
|
|
|
/// `true` if the client has chat colors enabled, `false` otherwise.
|
|
|
|
pub chat_colors: bool,
|
|
|
|
pub main_hand: MainHand,
|
|
|
|
pub displayed_skin_parts: DisplayedSkinParts,
|
|
|
|
pub allow_server_listings: bool,
|
|
|
|
}
|
|
|
|
|
2022-06-10 13:26:21 +10:00
|
|
|
pub use crate::packets::play::c2s::{ChatMode, DisplayedSkinParts, MainHand};
|
2022-04-15 07:55:45 +10:00
|
|
|
|
2022-06-10 13:26:21 +10:00
|
|
|
fn send_packet(send_opt: &mut Option<Sender<S2cPlayPacket>>, pkt: impl Into<S2cPlayPacket>) {
|
2022-04-15 07:55:45 +10:00
|
|
|
if let Some(send) = send_opt {
|
|
|
|
match send.try_send(pkt.into()) {
|
|
|
|
Err(TrySendError::Full(_)) => {
|
|
|
|
log::warn!("max outbound packet capacity reached for client");
|
|
|
|
*send_opt = None;
|
|
|
|
}
|
|
|
|
Err(TrySendError::Disconnected(_)) => {
|
|
|
|
*send_opt = None;
|
|
|
|
}
|
|
|
|
Ok(_) => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-21 21:55:32 +10:00
|
|
|
fn make_dimension_codec(server: &Server) -> RegistryCodec {
|
2022-04-15 07:55:45 +10:00
|
|
|
let mut dims = Vec::new();
|
2022-05-16 19:36:14 +10:00
|
|
|
for (id, dim) in server.dimensions() {
|
2022-04-15 07:55:45 +10:00
|
|
|
let id = id.0 as i32;
|
|
|
|
dims.push(DimensionTypeRegistryEntry {
|
|
|
|
name: ident!("{LIBRARY_NAMESPACE}:dimension_type_{id}"),
|
|
|
|
id,
|
|
|
|
element: to_dimension_registry_item(dim),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut biomes = Vec::new();
|
2022-05-16 19:36:14 +10:00
|
|
|
for (id, biome) in server.biomes() {
|
2022-04-15 07:55:45 +10:00
|
|
|
biomes.push(to_biome_registry_item(biome, id.0 as i32));
|
|
|
|
}
|
|
|
|
|
|
|
|
// The client needs a biome named "minecraft:plains" in the registry to
|
|
|
|
// connect. This is probably a bug.
|
|
|
|
//
|
|
|
|
// If the issue is resolved, just delete this block.
|
|
|
|
if !biomes.iter().any(|b| b.name == ident!("plains")) {
|
|
|
|
let biome = Biome::default();
|
|
|
|
assert_eq!(biome.name, ident!("plains"));
|
|
|
|
biomes.push(to_biome_registry_item(&biome, 0));
|
|
|
|
}
|
|
|
|
|
2022-06-21 21:55:32 +10:00
|
|
|
RegistryCodec {
|
2022-04-15 07:55:45 +10:00
|
|
|
dimension_type_registry: DimensionTypeRegistry {
|
|
|
|
typ: ident!("dimension_type"),
|
|
|
|
value: dims,
|
|
|
|
},
|
|
|
|
biome_registry: BiomeRegistry {
|
|
|
|
typ: ident!("worldgen/biome"),
|
|
|
|
value: biomes,
|
|
|
|
},
|
2022-06-21 21:55:32 +10:00
|
|
|
chat_type_registry: ChatTypeRegistry {
|
|
|
|
typ: ident!("chat_type"),
|
|
|
|
value: Vec::new(),
|
|
|
|
},
|
2022-04-15 07:55:45 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_dimension_registry_item(dim: &Dimension) -> DimensionType {
|
|
|
|
DimensionType {
|
|
|
|
piglin_safe: true,
|
2022-06-21 21:55:32 +10:00
|
|
|
has_raids: true,
|
|
|
|
monster_spawn_light_level: 0,
|
|
|
|
monster_spawn_block_light_limit: 0,
|
2022-04-15 07:55:45 +10:00
|
|
|
natural: dim.natural,
|
|
|
|
ambient_light: dim.ambient_light,
|
|
|
|
fixed_time: dim.fixed_time.map(|t| t as i64),
|
|
|
|
infiniburn: "#minecraft:infiniburn_overworld".into(),
|
|
|
|
respawn_anchor_works: true,
|
|
|
|
has_skylight: true,
|
|
|
|
bed_works: true,
|
|
|
|
effects: match dim.effects {
|
|
|
|
DimensionEffects::Overworld => ident!("overworld"),
|
|
|
|
DimensionEffects::TheNether => ident!("the_nether"),
|
|
|
|
DimensionEffects::TheEnd => ident!("the_end"),
|
|
|
|
},
|
|
|
|
min_y: dim.min_y,
|
|
|
|
height: dim.height,
|
|
|
|
logical_height: dim.height,
|
|
|
|
coordinate_scale: 1.0,
|
|
|
|
ultrawarm: false,
|
|
|
|
has_ceiling: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_biome_registry_item(biome: &Biome, id: i32) -> BiomeRegistryBiome {
|
|
|
|
BiomeRegistryBiome {
|
|
|
|
name: biome.name.clone(),
|
|
|
|
id,
|
|
|
|
element: BiomeProperty {
|
|
|
|
precipitation: match biome.precipitation {
|
|
|
|
BiomePrecipitation::Rain => "rain",
|
|
|
|
BiomePrecipitation::Snow => "snow",
|
|
|
|
BiomePrecipitation::None => "none",
|
|
|
|
}
|
|
|
|
.into(),
|
|
|
|
depth: 0.125,
|
|
|
|
temperature: 0.8,
|
|
|
|
scale: 0.05,
|
|
|
|
downfall: 0.4,
|
|
|
|
category: "none".into(),
|
|
|
|
temperature_modifier: None,
|
|
|
|
effects: BiomeEffects {
|
|
|
|
sky_color: biome.sky_color as i32,
|
|
|
|
water_fog_color: biome.water_fog_color as i32,
|
|
|
|
fog_color: biome.fog_color as i32,
|
|
|
|
water_color: biome.water_color as i32,
|
|
|
|
foliage_color: biome.foliage_color.map(|x| x as i32),
|
|
|
|
grass_color: None,
|
|
|
|
grass_color_modifier: match biome.grass_color_modifier {
|
|
|
|
BiomeGrassColorModifier::Swamp => Some("swamp".into()),
|
|
|
|
BiomeGrassColorModifier::DarkForest => Some("dark_forest".into()),
|
|
|
|
BiomeGrassColorModifier::None => None,
|
|
|
|
},
|
|
|
|
music: biome.music.as_ref().map(|bm| BiomeMusic {
|
|
|
|
replace_current_music: bm.replace_current_music,
|
|
|
|
sound: bm.sound.clone(),
|
|
|
|
max_delay: bm.max_delay,
|
|
|
|
min_delay: bm.min_delay,
|
|
|
|
}),
|
|
|
|
ambient_sound: biome.ambient_sound.clone(),
|
|
|
|
additions_sound: biome.additions_sound.as_ref().map(|a| BiomeAdditionsSound {
|
|
|
|
sound: a.sound.clone(),
|
|
|
|
tick_chance: a.tick_chance,
|
|
|
|
}),
|
|
|
|
mood_sound: biome.mood_sound.as_ref().map(|m| BiomeMoodSound {
|
|
|
|
sound: m.sound.clone(),
|
|
|
|
tick_delay: m.tick_delay,
|
|
|
|
offset: m.offset,
|
|
|
|
block_search_extent: m.block_search_extent,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
particle: biome.particle.as_ref().map(|p| BiomeParticle {
|
|
|
|
probability: p.probability,
|
|
|
|
options: BiomeParticleOptions { typ: p.typ.clone() },
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|