1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
|
use std::any::{type_name, Any};
use std::error::Error;
use std::fmt::Debug;
use std::ops::{Deref, DerefMut};
use seq_macro::seq;
use crate::lock::{
Error as LockError,
MappedReadGuard,
MappedWriteGuard,
ReadGuard,
WriteGuard,
};
use crate::system::Input as SystemInput;
use crate::uid::Uid;
use crate::util::Array;
use crate::{EntityComponentRef, World};
pub mod local;
pub(crate) mod storage;
pub trait Component: SystemInput + Any
{
type HandleMut<'component>: HandleFromEntityComponentRef<'component>
where
Self: Sized;
type Handle<'component>: HandleFromEntityComponentRef<'component>
where
Self: Sized;
/// Returns the ID of this component.
fn id() -> Uid
where
Self: Sized;
/// Returns the name of this component.
fn name(&self) -> &'static str;
}
impl dyn Component
{
pub fn downcast_mut<Real: 'static>(&mut self) -> Option<&mut Real>
{
(self as &mut dyn Any).downcast_mut()
}
pub fn downcast_ref<Real: 'static>(&self) -> Option<&Real>
{
(self as &dyn Any).downcast_ref()
}
pub fn is<Other: 'static>(&self) -> bool
{
(self as &dyn Any).is::<Other>()
}
}
impl Debug for dyn Component
{
fn fmt(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result
{
formatter.debug_struct("Component").finish_non_exhaustive()
}
}
/// A sequence of components.
pub trait Sequence
{
/// The number of components in this component sequence.
const COUNT: usize;
type PartsArray: Array<Parts>;
fn into_parts_array(self) -> Self::PartsArray;
}
/// A mutable or immutable reference to a component.
pub trait Ref
{
type Component: Component;
type Handle<'component>: HandleFromEntityComponentRef<'component>;
}
impl<ComponentT> Ref for &ComponentT
where
ComponentT: Component,
{
type Component = ComponentT;
type Handle<'component> = ComponentT::Handle<'component>;
}
impl<ComponentT> Ref for &mut ComponentT
where
ComponentT: Component,
{
type Component = ComponentT;
type Handle<'component> = ComponentT::HandleMut<'component>;
}
/// [`Component`] metadata.
#[derive(Debug, Clone)]
#[non_exhaustive]
pub struct Metadata
{
pub id: Uid,
}
impl Metadata
{
#[must_use]
pub fn of<ComponentT: Component>() -> Self
{
Self { id: ComponentT::id() }
}
}
pub trait HandleFromEntityComponentRef<'comp>: Sized
{
type Error: Error;
/// Creates a new handle instance from a [`EntityComponentRef`].
fn from_entity_component_ref(
entity_component_ref: Option<EntityComponentRef<'comp>>,
world: &'comp World,
) -> Result<Self, Self::Error>;
}
#[derive(Debug)]
pub struct Handle<'a, ComponentData: 'static>
{
inner: MappedReadGuard<'a, ComponentData>,
}
impl<'a, ComponentData: 'static> Handle<'a, ComponentData>
{
pub(crate) fn new(inner: ReadGuard<'a, Box<dyn Any>>) -> Self
{
Self {
inner: inner.map(|component| {
component
.downcast_ref::<ComponentData>()
.unwrap_or_else(|| {
panic!(
"Failed to downcast component to type {}",
type_name::<ComponentData>()
);
})
}),
}
}
}
impl<'comp, ComponentData: 'static> HandleFromEntityComponentRef<'comp>
for Handle<'comp, ComponentData>
{
type Error = HandleError;
fn from_entity_component_ref(
entity_component_ref: Option<EntityComponentRef<'comp>>,
_world: &'comp World,
) -> Result<Self, Self::Error>
{
let entity_comp =
entity_component_ref.ok_or(HandleError::ComponentDoesNotExist)?;
Ok(Self::new(
entity_comp
.component()
.read_nonblock()
.map_err(AcquireComponentLockFailed)?,
))
}
}
impl<ComponentData: 'static> Deref for Handle<'_, ComponentData>
{
type Target = ComponentData;
fn deref(&self) -> &Self::Target
{
&self.inner
}
}
#[derive(Debug)]
pub struct HandleMut<'a, ComponentData: 'static>
{
inner: MappedWriteGuard<'a, ComponentData>,
}
impl<'a, ComponentData: 'static> HandleMut<'a, ComponentData>
{
pub(crate) fn new(inner: WriteGuard<'a, Box<dyn Any>>) -> Self
{
Self {
inner: inner.map(|component| {
component
.downcast_mut::<ComponentData>()
.unwrap_or_else(|| {
panic!(
"Failed to downcast component to type {}",
type_name::<ComponentData>()
);
})
}),
}
}
}
impl<'comp, ComponentData: 'static> HandleFromEntityComponentRef<'comp>
for HandleMut<'comp, ComponentData>
{
type Error = HandleError;
fn from_entity_component_ref(
entity_component_ref: Option<EntityComponentRef<'comp>>,
_world: &'comp World,
) -> Result<Self, Self::Error>
{
let entity_comp =
entity_component_ref.ok_or(HandleError::ComponentDoesNotExist)?;
Ok(Self::new(
entity_comp
.component()
.write_nonblock()
.map_err(AcquireComponentLockFailed)?,
))
}
}
impl<ComponentData: 'static> Deref for HandleMut<'_, ComponentData>
{
type Target = ComponentData;
fn deref(&self) -> &Self::Target
{
&self.inner
}
}
impl<ComponentData: 'static> DerefMut for HandleMut<'_, ComponentData>
{
fn deref_mut(&mut self) -> &mut Self::Target
{
&mut self.inner
}
}
#[derive(Debug, thiserror::Error)]
pub enum HandleError
{
#[error(transparent)]
AcquireComponentLockFailed(#[from] AcquireComponentLockFailed),
#[error("Component does not exist")]
ComponentDoesNotExist,
}
#[derive(Debug, thiserror::Error)]
#[error(transparent)]
pub struct AcquireComponentLockFailed(LockError);
macro_rules! inner {
($c: tt) => {
seq!(I in 0..=$c {
impl<#(IntoCompParts~I: IntoParts,)*> Sequence for (#(IntoCompParts~I,)*)
{
const COUNT: usize = $c + 1;
type PartsArray = [Parts; $c + 1];
fn into_parts_array(self) -> Self::PartsArray
{
[#({
self.I.into_parts()
},)*]
}
}
});
};
}
seq!(C in 0..=16 {
inner!(C);
});
impl Sequence for ()
{
type PartsArray = [Parts; 0];
const COUNT: usize = 0;
fn into_parts_array(self) -> Self::PartsArray
{
[]
}
}
pub trait IntoParts
{
fn into_parts(self) -> Parts;
}
impl<ComponentT> IntoParts for ComponentT
where
ComponentT: Component,
{
fn into_parts(self) -> Parts
{
Parts::builder()
.name(type_name::<Self>())
.build(Self::id(), self)
}
}
/// The parts of a component.
#[derive(Debug)]
#[non_exhaustive]
pub struct Parts
{
id: Uid,
name: &'static str,
data: Box<dyn Any>,
}
impl Parts
{
pub fn id(&self) -> Uid
{
self.id
}
pub fn name(&self) -> &'static str
{
self.name
}
pub fn builder() -> PartsBuilder
{
PartsBuilder::default()
}
pub(crate) fn into_data(self) -> Box<dyn Any>
{
self.data
}
}
#[derive(Debug)]
pub struct PartsBuilder
{
name: &'static str,
}
impl PartsBuilder
{
pub fn name(mut self, name: &'static str) -> Self
{
self.name = name;
self
}
pub fn build<Data: 'static>(self, id: Uid, data: Data) -> Parts
{
Parts {
id,
name: self.name,
data: Box::new(data),
}
}
}
impl Default for PartsBuilder
{
fn default() -> Self
{
Self { name: "(unspecified)" }
}
}
|