2020-07-14 02:29:34 +00:00
|
|
|
use crate::{Resources, World, executor::ArchetypeAccess};
|
2020-07-10 04:18:35 +00:00
|
|
|
use std::borrow::Cow;
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub enum ThreadLocalExecution {
|
|
|
|
Immediate,
|
|
|
|
NextFlush,
|
2020-07-10 08:37:06 +00:00
|
|
|
}
|
2020-07-10 04:18:35 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
|
|
|
|
pub struct SystemId(pub u32);
|
|
|
|
|
|
|
|
impl SystemId {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
SystemId(rand::random::<u32>())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait System: Send + Sync {
|
|
|
|
fn name(&self) -> Cow<'static, str>;
|
|
|
|
fn id(&self) -> SystemId;
|
2020-07-14 02:29:34 +00:00
|
|
|
fn update_archetype_access(&mut self, world: &World);
|
2020-07-14 21:19:17 +00:00
|
|
|
fn get_archetype_access(&self) -> &ArchetypeAccess;
|
2020-07-10 04:18:35 +00:00
|
|
|
fn thread_local_execution(&self) -> ThreadLocalExecution;
|
|
|
|
fn run(&mut self, world: &World, resources: &Resources);
|
|
|
|
fn run_thread_local(&mut self, world: &mut World, resources: &mut Resources);
|
|
|
|
fn initialize(&mut self, _resources: &mut Resources) {}
|
|
|
|
}
|