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
use core::any::TypeId;
use core::ops::{Deref, DerefMut};
use core::ptr::NonNull;
use crate::archetype::Archetype;
use crate::{Component, Entity, MissingComponent, Query, QueryOne};
#[derive(Copy, Clone)]
pub struct EntityRef<'a> {
archetype: &'a Archetype,
entity: Entity,
index: u32,
}
impl<'a> EntityRef<'a> {
pub(crate) unsafe fn new(archetype: &'a Archetype, entity: Entity, index: u32) -> Self {
Self {
archetype,
entity,
index,
}
}
#[inline]
pub fn entity(&self) -> Entity {
self.entity
}
pub fn has<T: Component>(&self) -> bool {
self.archetype.has::<T>()
}
pub fn get<T: Component>(&self) -> Option<Ref<'a, T>> {
Some(unsafe { Ref::new(self.archetype, self.index).ok()? })
}
pub fn get_mut<T: Component>(&self) -> Option<RefMut<'a, T>> {
Some(unsafe { RefMut::new(self.archetype, self.index).ok()? })
}
pub fn query<Q: Query>(&self) -> QueryOne<'a, Q> {
unsafe { QueryOne::new(self.archetype, self.index) }
}
pub fn component_types(&self) -> impl Iterator<Item = TypeId> + 'a {
self.archetype.types().iter().map(|ty| ty.id())
}
pub fn len(&self) -> usize {
self.archetype.types().len()
}
pub fn is_empty(&self) -> bool {
self.len() == 0
}
}
unsafe impl<'a> Send for EntityRef<'a> {}
unsafe impl<'a> Sync for EntityRef<'a> {}
#[derive(Clone)]
pub struct Ref<'a, T: Component> {
archetype: &'a Archetype,
state: usize,
target: NonNull<T>,
}
impl<'a, T: Component> Ref<'a, T> {
pub(crate) unsafe fn new(
archetype: &'a Archetype,
index: u32,
) -> Result<Self, MissingComponent> {
let state = archetype
.get_state::<T>()
.ok_or_else(MissingComponent::new::<T>)?;
let target =
NonNull::new_unchecked(archetype.get_base::<T>(state).as_ptr().add(index as usize));
archetype.borrow::<T>(state);
Ok(Self {
archetype,
state,
target,
})
}
}
unsafe impl<T: Component> Send for Ref<'_, T> {}
unsafe impl<T: Component> Sync for Ref<'_, T> {}
impl<'a, T: Component> Drop for Ref<'a, T> {
fn drop(&mut self) {
self.archetype.release::<T>(self.state);
}
}
impl<'a, T: Component> Deref for Ref<'a, T> {
type Target = T;
fn deref(&self) -> &T {
unsafe { self.target.as_ref() }
}
}
pub struct RefMut<'a, T: Component> {
archetype: &'a Archetype,
state: usize,
target: NonNull<T>,
}
impl<'a, T: Component> RefMut<'a, T> {
pub(crate) unsafe fn new(
archetype: &'a Archetype,
index: u32,
) -> Result<Self, MissingComponent> {
let state = archetype
.get_state::<T>()
.ok_or_else(MissingComponent::new::<T>)?;
let target =
NonNull::new_unchecked(archetype.get_base::<T>(state).as_ptr().add(index as usize));
archetype.borrow_mut::<T>(state);
Ok(Self {
archetype,
state,
target,
})
}
}
unsafe impl<T: Component> Send for RefMut<'_, T> {}
unsafe impl<T: Component> Sync for RefMut<'_, T> {}
impl<'a, T: Component> Drop for RefMut<'a, T> {
fn drop(&mut self) {
self.archetype.release_mut::<T>(self.state);
}
}
impl<'a, T: Component> Deref for RefMut<'a, T> {
type Target = T;
fn deref(&self) -> &T {
unsafe { self.target.as_ref() }
}
}
impl<'a, T: Component> DerefMut for RefMut<'a, T> {
fn deref_mut(&mut self) -> &mut T {
unsafe { self.target.as_mut() }
}
}