From 6f8aeb236725f673f199bce7a6f3942eb56a8318 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 2 Mar 2024 12:00:01 +0100 Subject: feat(ecs): add event trait --- ecs/src/lib.rs | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to 'ecs/src/lib.rs') diff --git a/ecs/src/lib.rs b/ecs/src/lib.rs index a9ef2a4..e22913f 100644 --- a/ecs/src/lib.rs +++ b/ecs/src/lib.rs @@ -3,11 +3,11 @@ use std::any::{Any, TypeId}; use std::collections::{HashMap, HashSet}; use std::fmt::Debug; -use std::hash::Hash; use std::marker::PhantomData; use std::slice::{Iter as SliceIter, IterMut as SliceIterMut}; use crate::component::{Component, Sequence as ComponentSequence}; +use crate::event::{Event, Id as EventId}; use crate::system::{ NoInitParamFlag as NoInitSystemParamFlag, Param as SystemParam, @@ -17,6 +17,7 @@ use crate::system::{ use crate::tuple::FilterExclude as TupleFilterExclude; pub mod component; +pub mod event; pub mod system; pub mod tuple; @@ -29,14 +30,14 @@ struct Entity } #[derive(Debug)] -pub struct World +pub struct World { systems: Vec, - events: HashMap>, + events: HashMap>, component_storage: ComponentStorage, } -impl World +impl World { #[must_use] pub fn new() -> Self @@ -57,15 +58,17 @@ impl World .push(Entity { components: components.into_vec() }); } - pub fn register_system(&mut self, event: Event, system: TSystem) - where - Event: Hash + PartialEq + Eq, + pub fn register_system( + &mut self, + event: &impl Event, + system: TSystem, + ) where TSystem: System, { self.systems.push(system.into_type_erased()); self.events - .entry(event) + .entry(event.id()) .or_default() .push(self.systems.len() - 1); } @@ -75,11 +78,9 @@ impl World /// /// # Panics /// Will panic if a system has dissapeared. - pub fn emit(&mut self, event: &Event) - where - Event: Hash + PartialEq + Eq, + pub fn emit(&mut self, event: &impl Event) { - let Some(system_indices) = self.events.get(event).cloned() else { + let Some(system_indices) = self.events.get(&event.id()).cloned() else { return; }; @@ -98,7 +99,7 @@ impl World } } -impl Default for World +impl Default for World { fn default() -> Self { -- cgit v1.2.3-18-g5258