From c1cf1b779e66e985774dad29867a57733947b0e8 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 18 Mar 2025 14:35:11 +0100 Subject: refactor(ecs): remove Component::self_id method --- ecs/src/component.rs | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) (limited to 'ecs/src/component.rs') diff --git a/ecs/src/component.rs b/ecs/src/component.rs index 77046d0..dc60995 100644 --- a/ecs/src/component.rs +++ b/ecs/src/component.rs @@ -39,9 +39,6 @@ pub trait Component: SystemInput + Any + TypeName where Self: Sized; - /// The ID of the component `self`. Returns the same value as [`Component::id`]. - fn self_id(&self) -> Uid; - /// Returns the component UID of a component event for this component. fn get_event_uid(&self, event_kind: ComponentEventKind) -> Uid; @@ -116,11 +113,6 @@ where ComponentT::id() } - fn self_id(&self) -> Uid - { - Self::id() - } - fn get_event_uid(&self, event_kind: ComponentEventKind) -> Uid { match event_kind { @@ -167,7 +159,7 @@ pub trait Sequence /// The number of components in this component sequence. const COUNT: usize; - type Array: Array>; + type Array: Array<(Uid, Box)>; fn into_array(self) -> Self::Array; @@ -234,15 +226,6 @@ impl Metadata Self { id, is_optional: false } } - #[must_use] - pub fn get(component: &ComponentT) -> Self - { - Self { - id: component.self_id(), - is_optional: component.self_is_optional(), - } - } - #[must_use] pub fn of() -> Self { @@ -291,11 +274,11 @@ macro_rules! inner { { const COUNT: usize = $c + 1; - type Array = [Box; $c + 1]; + type Array = [(Uid, Box); $c + 1]; fn into_array(self) -> Self::Array { - [#(Box::new(self.I) as Box,)*] + [#((Comp~I::id(), Box::new(self.I) as Box),)*] } fn metadata() -> impl Array @@ -372,7 +355,7 @@ seq!(C in 0..=16 { impl Sequence for () { - type Array = [Box; 0]; + type Array = [(Uid, Box); 0]; const COUNT: usize = 0; -- cgit v1.2.3-18-g5258