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-11-04 00:57:36 +00:00
|
|
|
mod mount;
|
2019-07-21 12:42:45 +00:00
|
|
|
pub mod movement;
|
2019-03-02 03:48:30 +00:00
|
|
|
pub mod phys;
|
2019-09-17 12:43:19 +00:00
|
|
|
mod projectile;
|
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-11-04 00:57:36 +00:00
|
|
|
const MOUNT_SYS: &str = "mount_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-09-17 12:43:19 +00:00
|
|
|
const PROJECTILE_SYS: &str = "projectile_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-12-31 21:37:55 +00:00
|
|
|
dispatch_builder.add(mount::Sys, MOUNT_SYS, &[AGENT_SYS]);
|
|
|
|
dispatch_builder.add(controller::Sys, CONTROLLER_SYS, &[AGENT_SYS, MOUNT_SYS]);
|
2019-09-09 19:11:40 +00:00
|
|
|
dispatch_builder.add(movement::Sys, MOVEMENT_SYS, &[]);
|
2019-10-02 19:28:35 +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-09-09 19:11:40 +00:00
|
|
|
dispatch_builder.add(
|
|
|
|
phys::Sys,
|
|
|
|
PHYS_SYS,
|
2019-11-04 00:57:36 +00:00
|
|
|
&[
|
|
|
|
CONTROLLER_SYS,
|
|
|
|
MOUNT_SYS,
|
|
|
|
MOVEMENT_SYS,
|
|
|
|
COMBAT_SYS,
|
|
|
|
STATS_SYS,
|
|
|
|
],
|
2019-09-09 19:11:40 +00:00
|
|
|
);
|
2019-10-02 19:28:35 +00:00
|
|
|
dispatch_builder.add(projectile::Sys, PROJECTILE_SYS, &[PHYS_SYS]);
|
2019-09-09 19:11:40 +00:00
|
|
|
dispatch_builder.add(cleanup::Sys, CLEANUP_SYS, &[PHYS_SYS]);
|
2019-03-02 03:48:30 +00:00
|
|
|
}
|