// Reexports pub use sphynx::Uid; use crate::{ comp, msg::EcsPacket, sys, terrain::{TerrainChunk, TerrainMap}, }; use shred::{Fetch, FetchMut}; use specs::{ saveload::{MarkedBuilder, MarkerAllocator}, storage::{MaskedStorage as EcsMaskedStorage, Storage as EcsStorage}, Builder, Component, DispatcherBuilder, Entity as EcsEntity, EntityBuilder as EcsEntityBuilder, }; use sphynx; use std::{collections::HashSet, time::Duration}; use vek::*; /// How much faster should an in-game day be compared to a real day? // TODO: Don't hard-code this const DAY_CYCLE_FACTOR: f64 = 24.0 * 60.0; /// A resource to store the time of day struct TimeOfDay(f64); /// A resource to store the tick (i.e: physics) time struct Time(f64); /// A resource used to store the time since the last tick #[derive(Default)] pub struct DeltaTime(pub f64); pub struct Changes { pub new_chunks: HashSet>, pub changed_chunks: HashSet>, pub removed_chunks: HashSet>, } impl Changes { pub fn default() -> Self { Self { new_chunks: HashSet::new(), changed_chunks: HashSet::new(), removed_chunks: HashSet::new(), } } pub fn cleanup(&mut self) { self.new_chunks.clear(); self.changed_chunks.clear(); self.removed_chunks.clear(); } } /// A type used to represent game state stored on both the client and the server. This includes /// things like entity components, terrain data, and global state like weather, time of day, etc. pub struct State { ecs: sphynx::World, changes: Changes, } impl State { /// Create a new `State`. pub fn new() -> Self { Self { ecs: sphynx::World::new(specs::World::new(), Self::setup_sphynx_world), changes: Changes::default(), } } /// Create a new `State` from an ECS state package pub fn from_state_package(state_package: sphynx::StatePackage) -> Self { Self { ecs: sphynx::World::from_state_package( specs::World::new(), Self::setup_sphynx_world, state_package, ), changes: Changes::default(), } } // Create a new Sphynx ECS world fn setup_sphynx_world(ecs: &mut sphynx::World) { // Register synced components ecs.register_synced::(); ecs.register_synced::(); // Register unsynched (or synced by other means) components ecs.register::(); ecs.register::(); ecs.register::(); ecs.register::(); ecs.register::(); ecs.register::(); // Register resources used by the ECS ecs.add_resource(TimeOfDay(0.0)); ecs.add_resource(Time(0.0)); ecs.add_resource(DeltaTime(0.0)); ecs.add_resource(TerrainMap::new()); } /// Register a component with the state's ECS pub fn with_component(mut self) -> Self where ::Storage: Default, { self.ecs.register::(); self } /// Write a component attributed to a particular entity pub fn write_component(&mut self, entity: EcsEntity, comp: C) { let _ = self.ecs.write_storage().insert(entity, comp); } /// Read a component attributed to a particular entity pub fn read_component_cloned(&self, entity: EcsEntity) -> Option { self.ecs.read_storage().get(entity).cloned() } /// Get a read-only reference to the storage of a particular component type pub fn read_storage(&self) -> EcsStorage>> { self.ecs.read_storage::() } /// Get a reference to the internal ECS world pub fn ecs(&self) -> &sphynx::World { &self.ecs } /// Get a mutable reference to the internal ECS world pub fn ecs_mut(&mut self) -> &mut sphynx::World { &mut self.ecs } /// Get a reference to the `Changes` structure of the state. This contains /// information about state that has changed since the last game tick. pub fn changes(&self) -> &Changes { &self.changes } /// Get the current in-game time of day. /// /// Note that this should not be used for physics, animations or other such localised timings. pub fn get_time_of_day(&self) -> f64 { self.ecs.read_resource::().0 } /// Get the current in-game time. /// /// Note that this does not correspond to the time of day. pub fn get_time(&self) -> f64 { self.ecs.read_resource::