kubi/kubi-server/src/world.rs

165 lines
4.8 KiB
Rust
Raw Normal View History

2023-03-08 20:30:37 -06:00
use shipyard::{Unique, UniqueView, UniqueViewMut, Workload, IntoWorkload, AllStoragesView, View, Get, NonSendSync};
2023-03-06 21:50:06 -06:00
use glam::IVec3;
use hashbrown::HashMap;
2023-03-08 20:30:37 -06:00
use kubi_shared::networking::{
messages::{ClientToServerMessage, ServerToClientMessage, C_CHUNK_SUB_REQUEST},
channels::CHANNEL_WORLD,
client::Client,
};
use uflow::{
server::Event as ServerEvent,
SendMode
};
2023-03-06 21:50:06 -06:00
use crate::{
2023-03-08 20:30:37 -06:00
server::{UdpServer, ServerEvents, IsMessageOfType},
2023-03-06 21:50:06 -06:00
config::ConfigTable,
2023-03-08 20:30:37 -06:00
client::{ClientAddress, ClientIdMap, ClientAddressMap},
2023-03-06 21:50:06 -06:00
};
pub mod chunk;
pub mod tasks;
use chunk::Chunk;
2023-03-06 21:56:51 -06:00
use self::{tasks::{ChunkTaskManager, ChunkTask, ChunkTaskResponse, init_chunk_task_manager}, chunk::ChunkState};
2023-03-06 21:50:06 -06:00
#[derive(Unique, Default)]
pub struct ChunkManager {
pub chunks: HashMap<IVec3, Chunk>
}
impl ChunkManager {
pub fn new() -> Self {
Self::default()
}
}
fn process_chunk_requests(
2023-03-08 20:30:37 -06:00
mut server: NonSendSync<UniqueViewMut<UdpServer>>,
2023-03-06 21:50:06 -06:00
events: UniqueView<ServerEvents>,
mut chunk_manager: UniqueViewMut<ChunkManager>,
task_manager: UniqueView<ChunkTaskManager>,
2023-03-08 20:30:37 -06:00
config: UniqueView<ConfigTable>,
addr_map: UniqueView<ClientAddressMap>,
clients: View<Client>
2023-03-06 21:50:06 -06:00
) {
for event in &events.0 {
2023-03-08 20:30:37 -06:00
let ServerEvent::Receive(client_addr, data) = event else{
continue
};
if !event.is_message_of_type::<C_CHUNK_SUB_REQUEST>() {
continue
}
let Some(client) = server.0.client(client_addr) else {
log::error!("Client doesn't exist");
continue
};
let Some(&entity_id) = addr_map.0.get(client_addr) else {
log::error!("Client not authenticated");
continue
};
let Ok(&Client(client_id)) = (&clients).get(entity_id) else {
log::error!("Entity ID is invalid");
continue
};
let Ok(parsed_message) = postcard::from_bytes(data) else {
log::error!("Malformed message");
continue
};
let ClientToServerMessage::ChunkSubRequest { chunk: chunk_position } = parsed_message else {
unreachable!()
};
if let Some(chunk) = chunk_manager.chunks.get_mut(&chunk_position) {
chunk.subscriptions.insert(client_id);
//TODO Start task here if status is "Nothing"
if let Some(blocks) = &chunk.blocks {
client.borrow_mut().send(
postcard::to_allocvec(&ServerToClientMessage::ChunkResponse {
chunk: chunk_position,
2023-03-06 21:50:06 -06:00
data: blocks.clone(),
queued: Vec::with_capacity(0)
2023-03-08 20:30:37 -06:00
}).unwrap().into_boxed_slice(),
CHANNEL_WORLD,
SendMode::Reliable,
);
2023-03-06 21:50:06 -06:00
}
2023-03-08 20:30:37 -06:00
} else {
let mut chunk = Chunk::new(chunk_position);
chunk.state = ChunkState::Loading;
chunk.subscriptions.insert(client_id);
chunk_manager.chunks.insert(chunk_position, chunk);
task_manager.spawn_task(ChunkTask::LoadChunk {
position: chunk_position,
seed: config.world.seed,
});
2023-03-06 21:50:06 -06:00
}
}
}
fn process_finished_tasks(
2023-03-08 20:30:37 -06:00
mut server: NonSendSync<UniqueViewMut<UdpServer>>,
2023-03-06 21:50:06 -06:00
task_manager: UniqueView<ChunkTaskManager>,
mut chunk_manager: UniqueViewMut<ChunkManager>,
2023-03-08 20:30:37 -06:00
id_map: UniqueView<ClientIdMap>,
client_addr: View<ClientAddress>,
2023-03-06 21:50:06 -06:00
) {
2023-03-07 14:29:05 -06:00
let mut limit: usize = 8;
2023-03-08 20:30:37 -06:00
'outer: while let Some(res) = task_manager.receive() {
2023-03-06 21:50:06 -06:00
let ChunkTaskResponse::ChunkLoaded { chunk_position, blocks, queue } = res;
let Some(chunk) = chunk_manager.chunks.get_mut(&chunk_position) else {
log::warn!("Chunk discarded: Doesn't exist");
continue
};
if chunk.state != ChunkState::Loading {
log::warn!("Chunk discarded: Not Loading");
continue
}
chunk.state = ChunkState::Loaded;
chunk.blocks = Some(blocks.clone());
2023-03-07 14:29:05 -06:00
log::debug!("Chunk {chunk_position} loaded, {} subs", chunk.subscriptions.len());
2023-03-08 20:30:37 -06:00
for &subscriber in &chunk.subscriptions {
let Some(&entity_id) = id_map.0.get(&subscriber) else {
log::error!("Invalid subscriber client id");
continue 'outer;
};
let Ok(&ClientAddress(client_addr)) = (&client_addr).get(entity_id) else {
log::error!("Invalid subscriber entity id");
continue 'outer;
};
let Some(client) = server.0.client(&client_addr) else {
log::error!("Client not connected");
continue 'outer;
};
client.borrow_mut().send(
postcard::to_allocvec(&ServerToClientMessage::ChunkResponse {
chunk: chunk_position,
data: blocks.clone(),
queued: queue.clone()
}).unwrap().into_boxed_slice(),
CHANNEL_WORLD,
SendMode::Reliable,
);
2023-03-07 14:29:05 -06:00
}
2023-03-06 21:50:06 -06:00
}
}
fn init_chunk_manager(
storages: AllStoragesView
) {
storages.add_unique(ChunkManager::new());
}
pub fn init_world() -> Workload {
(
2023-03-06 21:56:51 -06:00
init_chunk_manager,
init_chunk_task_manager,
2023-03-06 21:50:06 -06:00
).into_workload()
}
pub fn update_world() -> Workload {
(
process_chunk_requests,
process_finished_tasks,
).into_workload()
}