From fd42ca5a25f8bab3ea66252f8bc0db02604f70dd Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 1 Aug 2024 16:11:15 +0200 Subject: feat(ecs): add relationships --- ecs/src/component.rs | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'ecs/src/component.rs') diff --git a/ecs/src/component.rs b/ecs/src/component.rs index 67ae453..057b5ff 100644 --- a/ecs/src/component.rs +++ b/ecs/src/component.rs @@ -6,7 +6,7 @@ use seq_macro::seq; use crate::lock::WriteGuard; use crate::system::{ComponentRefMut, Input as SystemInput}; use crate::type_name::TypeName; -use crate::EntityComponent; +use crate::{EntityComponent, WorldData}; pub mod local; @@ -36,6 +36,12 @@ pub trait Component: SystemInput + Any + TypeName { false } + + fn prepare(_world_data: &WorldData) + where + Self: Sized, + { + } } impl dyn Component @@ -144,6 +150,8 @@ pub trait Sequence fn from_components<'component>( components: impl Iterator, ) -> Self::Refs<'component>; + + fn prepare(_world_data: &WorldData); } /// [`Component`] metadata. @@ -254,6 +262,13 @@ macro_rules! inner { Comp~I::RefMut::from_optional_component(comp_~I), )*) } + + fn prepare(world_data: &WorldData) + { + #( + Comp~I::prepare(world_data); + )* + } } }); }; -- cgit v1.2.3-18-g5258