mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
79 lines
2.2 KiB
Rust
79 lines
2.2 KiB
Rust
pub mod entity_sync;
|
|
pub mod message;
|
|
pub mod sentinel;
|
|
pub mod subscription;
|
|
pub mod terrain;
|
|
pub mod terrain_sync;
|
|
pub mod waypoint;
|
|
|
|
use specs::DispatcherBuilder;
|
|
use std::{marker::PhantomData, time::Instant};
|
|
|
|
pub type EntitySyncTimer = SysTimer<entity_sync::Sys>;
|
|
pub type MessageTimer = SysTimer<message::Sys>;
|
|
pub type SentinelTimer = SysTimer<sentinel::Sys>;
|
|
pub type SubscriptionTimer = SysTimer<subscription::Sys>;
|
|
pub type TerrainTimer = SysTimer<terrain::Sys>;
|
|
pub type TerrainSyncTimer = SysTimer<terrain_sync::Sys>;
|
|
pub type WaypointTimer = SysTimer<waypoint::Sys>;
|
|
|
|
// System names
|
|
// Note: commented names may be useful in the future
|
|
//const ENTITY_SYNC_SYS: &str = "server_entity_sync_sys";
|
|
//const SENTINEL_SYS: &str = "sentinel_sys";
|
|
//const SUBSCRIPTION_SYS: &str = "server_subscription_sys";
|
|
//const TERRAIN_SYNC_SYS: &str = "server_terrain_sync_sys";
|
|
const TERRAIN_SYS: &str = "server_terrain_sys";
|
|
const WAYPOINT_SYS: &str = "waypoint_sys";
|
|
|
|
pub fn add_server_systems(dispatch_builder: &mut DispatcherBuilder) {
|
|
dispatch_builder.add(terrain::Sys, TERRAIN_SYS, &[]);
|
|
dispatch_builder.add(waypoint::Sys, WAYPOINT_SYS, &[]);
|
|
}
|
|
|
|
pub fn run_sync_systems(ecs: &mut specs::World) {
|
|
use specs::RunNow;
|
|
|
|
// Setup for entity sync
|
|
// If I'm not mistaken, these two could be ran in parallel
|
|
sentinel::Sys.run_now(ecs);
|
|
subscription::Sys.run_now(ecs);
|
|
|
|
// Sync
|
|
terrain_sync::Sys.run_now(ecs);
|
|
entity_sync::Sys.run_now(ecs);
|
|
}
|
|
|
|
/// Used to keep track of how much time each system takes
|
|
pub struct SysTimer<S> {
|
|
pub nanos: u64,
|
|
start: Option<Instant>,
|
|
_phantom: PhantomData<S>,
|
|
}
|
|
impl<S> SysTimer<S> {
|
|
pub fn start(&mut self) {
|
|
if self.start.is_some() {
|
|
panic!("Timer already started");
|
|
}
|
|
self.start = Some(Instant::now());
|
|
}
|
|
|
|
pub fn end(&mut self) {
|
|
self.nanos = self
|
|
.start
|
|
.take()
|
|
.expect("Timer ended without starting it")
|
|
.elapsed()
|
|
.as_nanos() as u64;
|
|
}
|
|
}
|
|
impl<S> Default for SysTimer<S> {
|
|
fn default() -> Self {
|
|
Self {
|
|
nanos: 0,
|
|
start: None,
|
|
_phantom: PhantomData,
|
|
}
|
|
}
|
|
}
|