1use std::any::{Any, TypeId};
22use std::fmt::{Debug, Display, Formatter};
23use std::hash::{Hash, Hasher};
24use std::marker::PhantomData;
25
26use serde::{Deserialize, Serialize};
27
28use super::entity_store::get_entity_metadata_static;
29
30#[derive(Serialize, Deserialize)]
33#[serde(transparent)]
34pub struct EntityId<E: Entity>(pub(crate) usize, PhantomData<E>);
35impl<E: Entity> PartialEq for EntityId<E> {
40 fn eq(&self, other: &Self) -> bool {
41 self.0 == other.0
42 }
43}
44impl<E: Entity> Eq for EntityId<E> {}
45
46impl<E: Entity> Clone for EntityId<E> {
48 #[inline]
49 fn clone(&self) -> Self {
50 *self
51 }
52}
53
54impl<E: Entity> Copy for EntityId<E> {}
56
57impl<E: Entity> Debug for EntityId<E> {
59 fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
60 let name = format!("{}Id", E::name());
61 f.debug_tuple(name.as_str()).field(&self.0).finish()
62 }
63}
64impl<E: Entity> Display for EntityId<E> {
66 fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
67 write!(f, "{}", self.0)
68 }
69}
70
71impl<E: Entity> Hash for EntityId<E> {
73 fn hash<H: Hasher>(&self, state: &mut H) {
74 self.0.hash(state);
75 }
76}
77
78impl<E: Entity> EntityId<E> {
79 pub(crate) fn new(index: usize) -> Self {
81 Self(index, PhantomData)
82 }
83}
84
85pub trait Entity: Any + Default {
87 fn name() -> &'static str {
88 let full = std::any::type_name::<Self>();
89 full.rsplit("::").next().unwrap()
90 }
91
92 fn type_id() -> TypeId {
93 TypeId::of::<Self>()
94 }
95
96 fn property_ids() -> &'static [TypeId] {
98 let (property_ids, _) = get_entity_metadata_static(<Self as Entity>::type_id());
99 property_ids
100 }
101
102 fn required_property_ids() -> &'static [TypeId] {
104 let (_, required_property_ids) = get_entity_metadata_static(<Self as Entity>::type_id());
105 required_property_ids
106 }
107
108 fn id() -> usize;
112
113 fn new_boxed() -> Box<Self> {
115 Box::default()
116 }
117
118 fn as_any(&self) -> &dyn Any;
120 fn as_any_mut(&mut self) -> &mut dyn Any;
121}
122
123pub type BxEntity = Box<dyn Entity>;
124
125#[derive(Copy, Clone)]
130pub struct PopulationIterator<E: Entity> {
131 population: usize,
133 entity_id: usize,
135
136 _phantom: PhantomData<E>,
137}
138
139impl<E: Entity> PopulationIterator<E> {
140 pub(crate) fn new(population: usize) -> Self {
143 PopulationIterator::<E> {
144 population,
145 entity_id: 0,
146 _phantom: PhantomData,
147 }
148 }
149
150 #[must_use]
151 pub(crate) fn population(&self) -> usize {
152 self.population
153 }
154}
155
156impl<E: Entity> Iterator for PopulationIterator<E> {
157 type Item = EntityId<E>;
158
159 fn next(&mut self) -> Option<Self::Item> {
160 if self.entity_id < self.population {
161 let current_id = self.entity_id;
162 self.entity_id += 1;
164 Some(EntityId::new(current_id))
165 } else {
166 None
167 }
168 }
169
170 fn size_hint(&self) -> (usize, Option<usize>) {
172 let remaining = self.len();
173 (remaining, Some(remaining))
174 }
175
176 fn count(self) -> usize {
178 self.len()
179 }
180
181 fn nth(&mut self, n: usize) -> Option<Self::Item> {
183 self.entity_id = (self.entity_id + n).min(self.population);
185 self.next()
186 }
187}
188
189impl<E: Entity> ExactSizeIterator for PopulationIterator<E> {
190 fn len(&self) -> usize {
191 self.population - self.entity_id
193 }
194}
195impl<E: Entity> std::iter::FusedIterator for PopulationIterator<E> {}
197
198#[cfg(test)]
199mod tests {
200 use super::*;
201 use crate::define_entity;
202
203 define_entity!(DummyEntity);
204
205 #[test]
206 fn entity_id_debug_display() {
207 let entity_id = DummyEntityId::new(137);
208 assert_eq!(format!("{:?}", entity_id), "DummyEntityId(137)");
209 assert_eq!(format!("{}", entity_id), "137");
210 }
211
212 #[test]
213 fn test_entity_iterator_basic() {
214 let mut iter = PopulationIterator::<DummyEntity>::new(3);
215
216 assert_eq!(iter.len(), 3);
217 assert_eq!(iter.next(), Some(EntityId::new(0)));
218 assert_eq!(iter.len(), 2);
219 assert_eq!(iter.next(), Some(EntityId::new(1)));
220 assert_eq!(iter.len(), 1);
221 assert_eq!(iter.next(), Some(EntityId::new(2)));
222 assert_eq!(iter.len(), 0);
223 assert_eq!(iter.next(), None);
224 assert_eq!(iter.len(), 0);
225 assert_eq!(iter.next(), None); }
227
228 #[test]
229 fn test_entity_iterator_nth() {
230 let mut iter = PopulationIterator::<DummyEntity>::new(10);
231
232 assert_eq!(iter.nth(2), Some(EntityId::new(2)));
234 assert_eq!(iter.len(), 7);
235
236 assert_eq!(iter.nth(1), Some(EntityId::new(4)));
238
239 assert_eq!(iter.nth(10), None);
241 assert_eq!(iter.len(), 0);
242 assert_eq!(iter.next(), None);
243 }
244
245 #[test]
246 fn test_entity_iterator_size_hint() {
247 let mut iter = PopulationIterator::<DummyEntity>::new(5);
248 assert_eq!(iter.size_hint(), (5, Some(5)));
249
250 iter.next();
251 assert_eq!(iter.size_hint(), (4, Some(4)));
252
253 assert_eq!(iter.nth(10), None);
255 assert_eq!(iter.size_hint(), (0, Some(0)));
256 }
257
258 #[test]
259 fn test_entity_iterator_clonable() {
260 let mut iter = PopulationIterator::<DummyEntity>::new(5);
261 iter.next();
262
263 let mut cloned = iter;
264 assert_eq!(iter.next(), cloned.next());
265 assert_eq!(iter.size_hint(), cloned.size_hint());
266 }
267}