2019-04-16 21:06:33 +00:00
|
|
|
pub mod agent;
|
2019-08-23 20:11:14 +00:00
|
|
|
mod cleanup;
|
2019-06-11 19:28:25 +00:00
|
|
|
pub mod combat;
|
2019-06-09 14:20:20 +00:00
|
|
|
pub mod controller;
|
2019-07-21 12:42:45 +00:00
|
|
|
pub mod movement;
|
2019-03-02 03:48:30 +00:00
|
|
|
pub mod phys;
|
2019-05-17 20:47:58 +00:00
|
|
|
mod stats;
|
2019-03-02 03:48:30 +00:00
|
|
|
|
|
|
|
// External
|
|
|
|
use specs::DispatcherBuilder;
|
|
|
|
|
|
|
|
// System names
|
2019-04-16 21:06:33 +00:00
|
|
|
const AGENT_SYS: &str = "agent_sys";
|
2019-06-09 14:20:20 +00:00
|
|
|
const CONTROLLER_SYS: &str = "controller_sys";
|
2019-05-16 17:40:32 +00:00
|
|
|
const PHYS_SYS: &str = "phys_sys";
|
2019-07-21 12:42:45 +00:00
|
|
|
const MOVEMENT_SYS: &str = "movement_sys";
|
2019-06-11 19:28:25 +00:00
|
|
|
const COMBAT_SYS: &str = "combat_sys";
|
2019-05-17 20:47:58 +00:00
|
|
|
const STATS_SYS: &str = "stats_sys";
|
2019-08-23 20:11:14 +00:00
|
|
|
const CLEANUP_SYS: &str = "cleanup_sys";
|
2019-03-02 03:48:30 +00:00
|
|
|
|
|
|
|
pub fn add_local_systems(dispatch_builder: &mut DispatcherBuilder) {
|
2019-04-16 21:06:33 +00:00
|
|
|
dispatch_builder.add(agent::Sys, AGENT_SYS, &[]);
|
2019-06-29 17:49:51 +00:00
|
|
|
dispatch_builder.add(controller::Sys, CONTROLLER_SYS, &[AGENT_SYS]);
|
|
|
|
dispatch_builder.add(phys::Sys, PHYS_SYS, &[CONTROLLER_SYS]);
|
2019-07-21 12:42:45 +00:00
|
|
|
dispatch_builder.add(movement::Sys, MOVEMENT_SYS, &[PHYS_SYS]);
|
2019-08-23 10:11:37 +00:00
|
|
|
dispatch_builder.add(combat::Sys, COMBAT_SYS, &[CONTROLLER_SYS]);
|
2019-06-11 19:28:25 +00:00
|
|
|
dispatch_builder.add(stats::Sys, STATS_SYS, &[COMBAT_SYS]);
|
2019-08-28 13:55:35 +00:00
|
|
|
dispatch_builder.add(cleanup::Sys, CLEANUP_SYS, &[STATS_SYS, MOVEMENT_SYS]);
|
2019-03-02 03:48:30 +00:00
|
|
|
}
|