veloren/server/src/rtsim/mod.rs

136 lines
4.0 KiB
Rust
Raw Normal View History

2020-11-23 15:39:03 +00:00
#![allow(dead_code)] // TODO: Remove this when rtsim is fleshed out
mod chunks;
mod entity;
2020-11-11 11:42:22 +00:00
mod load_chunks;
mod tick;
2020-11-23 15:39:03 +00:00
mod unload_chunks;
2020-11-10 15:27:52 +00:00
use self::chunks::Chunks;
use common::{
2020-11-23 15:39:03 +00:00
comp,
rtsim::{Memory, RtSimController, RtSimEntity, RtSimId},
terrain::TerrainChunk,
vol::RectRasterableVol,
};
use common_ecs::{dispatch, System};
2021-04-06 15:47:03 +00:00
use common_state::State;
use rand::prelude::*;
2020-11-23 15:39:03 +00:00
use slab::Slab;
use specs::{DispatcherBuilder, WorldExt};
use vek::*;
2020-11-11 11:42:22 +00:00
pub use self::entity::Entity;
2020-11-11 11:42:22 +00:00
pub struct RtSim {
tick: u64,
chunks: Chunks,
entities: Slab<Entity>,
2020-11-11 11:42:22 +00:00
}
impl RtSim {
pub fn new(world_chunk_size: Vec2<u32>) -> Self {
Self {
tick: 0,
chunks: Chunks::new(world_chunk_size),
entities: Slab::new(),
2020-11-11 11:42:22 +00:00
}
}
pub fn hook_load_chunk(&mut self, key: Vec2<i32>) {
if let Some(chunk) = self.chunks.chunk_mut(key) {
2020-11-11 11:42:22 +00:00
if !chunk.is_loaded {
chunk.is_loaded = true;
self.chunks.chunks_to_load.push(key);
2020-11-11 11:42:22 +00:00
}
}
}
pub fn hook_unload_chunk(&mut self, key: Vec2<i32>) {
if let Some(chunk) = self.chunks.chunk_mut(key) {
2020-11-11 11:42:22 +00:00
if chunk.is_loaded {
chunk.is_loaded = false;
self.chunks.chunks_to_unload.push(key);
2020-11-11 11:42:22 +00:00
}
}
}
pub fn assimilate_entity(&mut self, entity: RtSimId) {
2020-11-14 01:12:47 +00:00
// tracing::info!("Assimilated rtsim entity {}", entity);
self.entities.get_mut(entity).map(|e| e.is_loaded = false);
}
pub fn reify_entity(&mut self, entity: RtSimId) {
2020-11-14 01:12:47 +00:00
// tracing::info!("Reified rtsim entity {}", entity);
self.entities.get_mut(entity).map(|e| e.is_loaded = true);
2020-11-11 11:42:22 +00:00
}
pub fn update_entity(&mut self, entity: RtSimId, pos: Vec3<f32>) {
self.entities.get_mut(entity).map(|e| e.pos = pos);
}
pub fn destroy_entity(&mut self, entity: RtSimId) {
2020-11-14 01:12:47 +00:00
// tracing::info!("Destroyed rtsim entity {}", entity);
self.entities.remove(entity);
}
pub fn get_entity(&self, entity: RtSimId) -> Option<&Entity> { self.entities.get(entity) }
pub fn insert_entity_memory(&mut self, entity: RtSimId, memory: Memory) {
self.entities
.get_mut(entity)
.map(|entity| entity.brain.add_memory(memory));
}
2021-03-29 14:47:42 +00:00
2021-07-14 15:26:29 +00:00
pub fn forget_entity_enemy(&mut self, entity: RtSimId, name: &str) {
if let Some(entity) = self.entities.get_mut(entity) {
entity.brain.forget_enemy(name);
}
}
2021-03-29 14:47:42 +00:00
pub fn set_entity_mood(&mut self, entity: RtSimId, memory: Memory) {
self.entities
.get_mut(entity)
.map(|entity| entity.brain.set_mood(memory));
}
}
2020-11-11 11:42:22 +00:00
pub fn add_server_systems(dispatch_builder: &mut DispatcherBuilder) {
dispatch::<unload_chunks::Sys>(dispatch_builder, &[]);
dispatch::<load_chunks::Sys>(dispatch_builder, &[&unload_chunks::Sys::sys_name()]);
dispatch::<tick::Sys>(dispatch_builder, &[
&load_chunks::Sys::sys_name(),
&unload_chunks::Sys::sys_name(),
]);
2020-11-11 11:42:22 +00:00
}
2020-11-25 04:55:44 +00:00
pub fn init(state: &mut State, #[cfg(feature = "worldgen")] world: &world::World) {
#[cfg(feature = "worldgen")]
let mut rtsim = RtSim::new(world.sim().get_size());
2020-11-25 04:55:44 +00:00
#[cfg(not(feature = "worldgen"))]
let mut rtsim = RtSim::new(Vec2::new(40, 40));
#[cfg(feature = "worldgen")]
for _ in 0..world.sim().get_size().product() / 400 {
2020-11-23 15:39:03 +00:00
let pos = rtsim
.chunks
.size()
.map2(TerrainChunk::RECT_SIZE, |sz, chunk_sz| {
2021-01-26 20:23:18 +00:00
thread_rng().gen_range(0..sz * chunk_sz) as i32
2020-11-23 15:39:03 +00:00
});
rtsim.entities.insert(Entity {
is_loaded: false,
pos: Vec3::from(pos.map(|e| e as f32)),
seed: thread_rng().gen(),
controller: RtSimController::default(),
last_tick: 0,
brain: Default::default(),
});
}
state.ecs_mut().insert(rtsim);
2020-11-11 11:42:22 +00:00
state.ecs_mut().register::<RtSimEntity>();
tracing::info!("Initiated real-time world simulation");
2020-11-10 15:27:52 +00:00
}