valence/src/config.rs

219 lines
7.9 KiB
Rust
Raw Normal View History

2022-04-15 07:55:45 +10:00
use std::any::Any;
use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4};
use std::panic::{RefUnwindSafe, UnwindSafe};
2022-04-15 07:55:45 +10:00
use async_trait::async_trait;
use tokio::runtime::Handle as TokioHandle;
use crate::{Biome, Dimension, NewClientData, Server, SharedServer, Text, Ticks};
2022-04-15 07:55:45 +10:00
/// A trait containing callbacks which are invoked by the running Minecraft
/// server.
///
/// The config is used from multiple threads and must therefore implement
/// `Send` and `Sync`. From within a single thread, methods are never invoked
/// recursively by the library. In other words, a mutex can be aquired at
/// the beginning of a method and released at the end without risk of
/// deadlocking.
///
/// This trait uses the [async_trait](https://docs.rs/async-trait/latest/async_trait/) attribute macro.
/// This will be removed once `impl Trait` in return position in traits is
/// available in stable rust.
#[async_trait]
#[allow(unused_variables)]
pub trait Config: Any + Send + Sync + UnwindSafe + RefUnwindSafe {
/// Called once at startup to get the maximum number of connections allowed
/// to the server. Note that this includes all connections, not just those
/// past the login stage.
///
/// You will want this value to be somewhere above the maximum number of
/// players, since status pings should still succeed even when the server is
/// full.
fn max_connections(&self) -> usize;
2022-04-15 07:55:45 +10:00
/// Called once at startup to get the socket address the server will
/// be bound to.
2022-04-15 07:55:45 +10:00
///
/// # Default Implementation
/// Returns `127.0.0.1:25565`.
fn address(&self) -> SocketAddr {
SocketAddrV4::new(Ipv4Addr::new(127, 0, 0, 1), 25565).into()
2022-04-15 07:55:45 +10:00
}
/// Called once at startup to get the tick rate, which is the number of game
/// updates that should occur in one second.
2022-04-15 07:55:45 +10:00
///
/// On each game update (tick), the server is expected to update game logic
/// and respond to packets from clients. Once this is complete, the server
/// will sleep for any remaining time until a full tick has passed.
2022-04-15 07:55:45 +10:00
///
/// The tick rate must be greater than zero.
2022-04-15 07:55:45 +10:00
///
/// Note that the official Minecraft client only processes packets at 20hz,
/// so there is little benefit to a tick rate higher than 20.
///
/// # Default Implementation
/// Returns `20`, which is the same as Minecraft's official server.
fn tick_rate(&self) -> Ticks {
20
2022-04-15 07:55:45 +10:00
}
/// Called once at startup to get the "online mode" option, which determines
/// if client authentication and encryption should take place.
2022-04-15 07:55:45 +10:00
///
/// When online mode is disabled, malicious clients can give themselves any
/// username and UUID they want, potentially gaining privileges they
/// might not otherwise have. Additionally, encryption is only enabled in
/// online mode. For these reasons online mode should only be disabled
/// for development purposes and enabled on servers exposed to the
/// internet.
///
/// # Default Implementation
/// Returns `true`.
fn online_mode(&self) -> bool {
true
2022-04-15 07:55:45 +10:00
}
/// Called once at startup to get the capacity of the buffer used to
/// hold incoming packets.
2022-04-15 07:55:45 +10:00
///
/// A larger capcity reduces the chance of packet loss but increases
/// potential memory usage.
2022-04-15 07:55:45 +10:00
///
/// # Default Implementation
/// An unspecified value is returned that should be adequate in most
/// situations.
fn incoming_packet_capacity(&self) -> usize {
32
2022-04-15 07:55:45 +10:00
}
/// Called once at startup to get the capacity of the buffer used to
/// hold outgoing packets.
2022-04-15 07:55:45 +10:00
///
/// A larger capcity reduces the chance of packet loss due to a full buffer
/// but increases potential memory usage.
2022-04-15 07:55:45 +10:00
///
/// # Default Implementation
/// An unspecified value is returned that should be adequate in most
/// situations.
fn outgoing_packet_capacity(&self) -> usize {
2022-06-20 01:40:37 +10:00
2048
2022-04-15 07:55:45 +10:00
}
/// Called once at startup to get a handle to the tokio runtime the server
/// will use.
2022-04-15 07:55:45 +10:00
///
/// If a handle is not provided, the server will create its own tokio
/// runtime.
///
/// # Default Implementation
/// Returns `None`.
fn tokio_handle(&self) -> Option<TokioHandle> {
None
2022-04-15 07:55:45 +10:00
}
/// Called once at startup to get the list of [`Dimension`]s usable on the
/// server.
2022-04-15 07:55:45 +10:00
///
/// The dimensions traversed by [`Server::dimensions`] will be in the same
/// order as the `Vec` returned by this function.
///
/// The number of elements in the returned `Vec` must be in \[1, u16::MAX].
2022-04-15 07:55:45 +10:00
/// Additionally, the documented requirements on the fields of [`Dimension`]
/// must be met.
///
/// # Default Implementation
/// Returns `vec![Dimension::default()]`.
fn dimensions(&self) -> Vec<Dimension> {
vec![Dimension::default()]
2022-04-15 07:55:45 +10:00
}
/// Called once at startup to get the list of [`Biome`]s usable on the
/// server.
2022-04-15 07:55:45 +10:00
///
/// The biomes traversed by [`Server::biomes`] will be in the same
/// order as the `Vec` returned by this function.
///
/// The number of elements in the returned `Vec` must be in \[1, u16::MAX].
2022-04-15 07:55:45 +10:00
/// Additionally, the documented requirements on the fields of [`Biome`]
/// must be met.
2022-04-15 07:55:45 +10:00
///
/// # Default Implementation
/// Returns `vec![Dimension::default()]`.
fn biomes(&self) -> Vec<Biome> {
vec![Biome::default()]
2022-04-15 07:55:45 +10:00
}
/// Called when the server receives a Server List Ping query.
/// Data for the response can be provided or the query can be ignored.
2022-04-15 07:55:45 +10:00
///
/// This method is called from within a tokio runtime.
///
2022-04-15 07:55:45 +10:00
/// # Default Implementation
/// The query is ignored.
async fn server_list_ping(
&self,
shared: &SharedServer,
remote_addr: SocketAddr,
) -> ServerListPing {
ServerListPing::Ignore
}
2022-04-15 07:55:45 +10:00
/// Called asynchronously for each client after successful authentication
/// (if online mode is enabled) to determine if they can continue to join
/// the server. On success, [`Config::join`] is called with the new
/// client. If this method returns with `Err(reason)`, then the client is
/// immediately disconnected with the given reason.
2022-04-15 07:55:45 +10:00
///
/// This method is the appropriate place to perform asynchronous
/// operations such as database queries which may take some time to
/// complete.
2022-04-15 07:55:45 +10:00
///
/// This method is called from within a tokio runtime.
///
2022-04-15 07:55:45 +10:00
/// # Default Implementation
/// The client is allowed to join unconditionally.
async fn login(&self, shared: &SharedServer, ncd: &NewClientData) -> Result<(), Text> {
Ok(())
}
2022-04-15 07:55:45 +10:00
/// Called after the server is created, but prior to accepting connections
/// and entering the update loop.
2022-04-15 07:55:45 +10:00
///
/// This is useful for performing initialization work with a guarantee that
/// no connections to the server will be made until this function returns.
///
/// This method is called from within a tokio runtime.
fn init(&self, server: &mut Server) {}
2022-04-15 07:55:45 +10:00
/// Called once at the beginning of every server update (also known as
/// a "tick").
2022-04-15 07:55:45 +10:00
///
/// The frequency of server updates can be configured by `update_duration`
/// in [`ServerConfig`].
///
/// This method is called from within a tokio runtime.
2022-04-15 07:55:45 +10:00
///
/// # Default Implementation
/// The default implementation does nothing.
fn update(&self, server: &mut Server);
2022-04-15 07:55:45 +10:00
}
/// The result of the [`server_list_ping`](Handler::server_list_ping) callback.
#[derive(Debug)]
pub enum ServerListPing<'a> {
2022-04-15 07:55:45 +10:00
/// Responds to the server list ping with the given information.
Respond {
online_players: i32,
max_players: i32,
description: Text,
/// The server's icon as the bytes of a PNG image.
/// The image must be 64x64 pixels.
///
/// No icon is used if the value is `None`.
favicon_png: Option<&'a [u8]>,
2022-04-15 07:55:45 +10:00
},
/// Ignores the query and disconnects from the client.
Ignore,
}