2022-09-14 11:30:45 +10:00
|
|
|
use std::net::SocketAddr;
|
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
|
|
|
|
2022-10-21 22:54:32 +11:00
|
|
|
use valence::prelude::*;
|
2022-09-14 11:30:45 +10:00
|
|
|
|
|
|
|
pub fn main() -> ShutdownResult {
|
2022-11-17 13:22:44 +11:00
|
|
|
tracing_subscriber::fmt().init();
|
2022-09-14 11:30:45 +10:00
|
|
|
|
|
|
|
valence::start_server(
|
|
|
|
Game {
|
|
|
|
player_count: AtomicUsize::new(0),
|
|
|
|
},
|
|
|
|
ServerState { player_list: None },
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Game {
|
|
|
|
player_count: AtomicUsize,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ServerState {
|
|
|
|
player_list: Option<PlayerListId>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
struct ClientState {
|
|
|
|
entity_id: EntityId,
|
|
|
|
}
|
|
|
|
|
|
|
|
const MAX_PLAYERS: usize = 10;
|
|
|
|
|
2022-11-29 22:37:32 +11:00
|
|
|
const SIZE_X: i32 = 100;
|
|
|
|
const SIZE_Z: i32 = 100;
|
2022-09-14 11:30:45 +10:00
|
|
|
|
|
|
|
#[async_trait]
|
|
|
|
impl Config for Game {
|
|
|
|
type ServerState = ServerState;
|
|
|
|
type ClientState = ClientState;
|
|
|
|
type EntityState = ();
|
|
|
|
type WorldState = ();
|
|
|
|
type ChunkState = ();
|
|
|
|
type PlayerListState = ();
|
2022-11-29 22:37:32 +11:00
|
|
|
type InventoryState = ();
|
2022-09-14 11:30:45 +10:00
|
|
|
|
|
|
|
fn dimensions(&self) -> Vec<Dimension> {
|
|
|
|
vec![Dimension {
|
|
|
|
fixed_time: Some(6000),
|
|
|
|
..Dimension::default()
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn server_list_ping(
|
|
|
|
&self,
|
|
|
|
_server: &SharedServer<Self>,
|
|
|
|
_remote_addr: SocketAddr,
|
|
|
|
_protocol_version: i32,
|
|
|
|
) -> ServerListPing {
|
|
|
|
ServerListPing::Respond {
|
|
|
|
online_players: self.player_count.load(Ordering::SeqCst) as i32,
|
|
|
|
max_players: MAX_PLAYERS as i32,
|
|
|
|
player_sample: Default::default(),
|
|
|
|
description: "Hello Valence!".color(Color::AQUA),
|
|
|
|
favicon_png: Some(include_bytes!("../assets/logo-64x64.png").as_slice().into()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn init(&self, server: &mut Server<Self>) {
|
|
|
|
let world = server.worlds.insert(DimensionId::default(), ()).1;
|
|
|
|
server.state.player_list = Some(server.player_lists.insert(()).0);
|
|
|
|
|
|
|
|
// initialize chunks
|
2022-11-29 22:37:32 +11:00
|
|
|
for z in 0..SIZE_Z {
|
|
|
|
for x in 0..SIZE_X {
|
|
|
|
world
|
2022-09-14 11:30:45 +10:00
|
|
|
.chunks
|
2022-11-29 22:37:32 +11:00
|
|
|
.set_block_state([x, 0, z], BlockState::GRASS_BLOCK);
|
2022-09-14 11:30:45 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update(&self, server: &mut Server<Self>) {
|
|
|
|
let (world_id, world) = server.worlds.iter_mut().next().unwrap();
|
|
|
|
|
|
|
|
let spawn_pos = [SIZE_X as f64 / 2.0, 1.0, SIZE_Z as f64 / 2.0];
|
|
|
|
|
|
|
|
server.clients.retain(|_, client| {
|
|
|
|
if client.created_this_tick() {
|
|
|
|
if self
|
|
|
|
.player_count
|
|
|
|
.fetch_update(Ordering::SeqCst, Ordering::SeqCst, |count| {
|
|
|
|
(count < MAX_PLAYERS).then_some(count + 1)
|
|
|
|
})
|
|
|
|
.is_err()
|
|
|
|
{
|
|
|
|
client.disconnect("The server is full!".color(Color::RED));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
match server
|
|
|
|
.entities
|
|
|
|
.insert_with_uuid(EntityKind::Player, client.uuid(), ())
|
|
|
|
{
|
2022-11-29 22:37:32 +11:00
|
|
|
Some((id, entity)) => {
|
|
|
|
entity.set_world(world_id);
|
|
|
|
client.entity_id = id
|
|
|
|
}
|
2022-09-14 11:30:45 +10:00
|
|
|
None => {
|
|
|
|
client.disconnect("Conflicting UUID");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-29 22:37:32 +11:00
|
|
|
client.respawn(world_id);
|
2022-09-14 11:30:45 +10:00
|
|
|
client.set_flat(true);
|
|
|
|
client.teleport(spawn_pos, 0.0, 0.0);
|
|
|
|
client.set_player_list(server.state.player_list.clone());
|
|
|
|
|
|
|
|
if let Some(id) = &server.state.player_list {
|
|
|
|
server.player_lists.get_mut(id).insert(
|
|
|
|
client.uuid(),
|
|
|
|
client.username(),
|
|
|
|
client.textures().cloned(),
|
|
|
|
client.game_mode(),
|
|
|
|
0,
|
|
|
|
None,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
client.set_game_mode(GameMode::Creative);
|
|
|
|
client.send_message("Welcome to Valence! Build something cool.".italic());
|
|
|
|
}
|
|
|
|
|
2022-11-29 22:37:32 +11:00
|
|
|
let player = server.entities.get_mut(client.entity_id).unwrap();
|
2022-09-14 11:30:45 +10:00
|
|
|
|
2022-11-29 22:37:32 +11:00
|
|
|
while let Some(event) = client.next_event() {
|
|
|
|
event.handle_default(client, player);
|
2022-09-14 11:30:45 +10:00
|
|
|
match event {
|
2022-11-29 22:37:32 +11:00
|
|
|
ClientEvent::StartDigging { position, .. } => {
|
|
|
|
// Allows clients in creative mode to break blocks.
|
|
|
|
if client.game_mode() == GameMode::Creative {
|
|
|
|
world.chunks.set_block_state(position, BlockState::AIR);
|
2022-09-14 11:30:45 +10:00
|
|
|
}
|
|
|
|
}
|
2022-11-29 22:37:32 +11:00
|
|
|
ClientEvent::FinishDigging { position, .. } => {
|
|
|
|
// Allows clients in survival mode to break blocks.
|
|
|
|
world.chunks.set_block_state(position, BlockState::AIR);
|
|
|
|
}
|
|
|
|
ClientEvent::UseItemOnBlock { .. } => {
|
|
|
|
// TODO: reimplement when inventories are re-added.
|
|
|
|
/*
|
2022-09-14 11:30:45 +10:00
|
|
|
if hand == Hand::Main {
|
2022-10-16 13:47:02 +11:00
|
|
|
if let Some(stack) = client.held_item() {
|
2022-10-21 22:55:15 +11:00
|
|
|
if let Some(held_block_kind) = stack.item.to_block_kind() {
|
|
|
|
let block_to_place = BlockState::from_kind(held_block_kind);
|
|
|
|
|
2022-11-02 13:31:28 +11:00
|
|
|
if client.game_mode() == GameMode::Creative
|
|
|
|
|| client.consume_held_item(1).is_ok()
|
2022-10-21 22:55:15 +11:00
|
|
|
{
|
2022-11-02 13:31:28 +11:00
|
|
|
if world
|
|
|
|
.chunks
|
2022-11-29 22:37:32 +11:00
|
|
|
.block_state(position)
|
2022-11-02 13:31:28 +11:00
|
|
|
.map(|s| s.is_replaceable())
|
|
|
|
.unwrap_or(false)
|
|
|
|
{
|
2022-11-29 22:37:32 +11:00
|
|
|
world.chunks.set_block_state(position, block_to_place);
|
2022-11-02 13:31:28 +11:00
|
|
|
} else {
|
2022-11-29 22:37:32 +11:00
|
|
|
let place_at = position.get_in_direction(face);
|
2022-11-02 13:31:28 +11:00
|
|
|
world.chunks.set_block_state(place_at, block_to_place);
|
|
|
|
}
|
2022-10-16 13:47:02 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-14 11:30:45 +10:00
|
|
|
}
|
2022-11-29 22:37:32 +11:00
|
|
|
*/
|
2022-09-14 11:30:45 +10:00
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-29 22:37:32 +11:00
|
|
|
if client.is_disconnected() {
|
|
|
|
self.player_count.fetch_sub(1, Ordering::SeqCst);
|
|
|
|
server.entities.remove(client.entity_id);
|
|
|
|
if let Some(id) = &server.state.player_list {
|
|
|
|
server.player_lists.get_mut(id).remove(client.uuid());
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if client.position().y <= -20.0 {
|
|
|
|
client.teleport(spawn_pos, client.yaw(), client.pitch());
|
|
|
|
}
|
|
|
|
|
2022-09-14 11:30:45 +10:00
|
|
|
true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|