glam/bool/
bvec4.rs
1#[cfg(not(target_arch = "spirv"))]
4use core::fmt;
5use core::ops::*;
6
7#[derive(Clone, Copy, PartialEq, Eq, Hash)]
9#[repr(C, align(1))]
10pub struct BVec4 {
11 pub x: bool,
12 pub y: bool,
13 pub z: bool,
14 pub w: bool,
15}
16
17const MASK: [u32; 2] = [0, 0xff_ff_ff_ff];
18
19impl BVec4 {
20 pub const FALSE: Self = Self::splat(false);
22
23 pub const TRUE: Self = Self::splat(true);
25
26 #[inline(always)]
28 #[must_use]
29 pub const fn new(x: bool, y: bool, z: bool, w: bool) -> Self {
30 Self { x, y, z, w }
31 }
32
33 #[inline]
35 #[must_use]
36 pub const fn splat(v: bool) -> Self {
37 Self::new(v, v, v, v)
38 }
39
40 #[inline]
45 #[must_use]
46 pub fn bitmask(self) -> u32 {
47 (self.x as u32) | (self.y as u32) << 1 | (self.z as u32) << 2 | (self.w as u32) << 3
48 }
49
50 #[inline]
52 #[must_use]
53 pub fn any(self) -> bool {
54 self.x || self.y || self.z || self.w
55 }
56
57 #[inline]
59 #[must_use]
60 pub fn all(self) -> bool {
61 self.x && self.y && self.z && self.w
62 }
63
64 #[inline]
68 #[must_use]
69 pub fn test(&self, index: usize) -> bool {
70 match index {
71 0 => self.x,
72 1 => self.y,
73 2 => self.z,
74 3 => self.w,
75 _ => panic!("index out of bounds"),
76 }
77 }
78
79 #[inline]
83 pub fn set(&mut self, index: usize, value: bool) {
84 match index {
85 0 => self.x = value,
86 1 => self.y = value,
87 2 => self.z = value,
88 3 => self.w = value,
89 _ => panic!("index out of bounds"),
90 }
91 }
92
93 #[inline]
94 #[must_use]
95 fn into_bool_array(self) -> [bool; 4] {
96 [self.x, self.y, self.z, self.w]
97 }
98
99 #[inline]
100 #[must_use]
101 fn into_u32_array(self) -> [u32; 4] {
102 [
103 MASK[self.x as usize],
104 MASK[self.y as usize],
105 MASK[self.z as usize],
106 MASK[self.w as usize],
107 ]
108 }
109}
110
111impl Default for BVec4 {
112 #[inline]
113 fn default() -> Self {
114 Self::FALSE
115 }
116}
117
118impl BitAnd for BVec4 {
119 type Output = Self;
120 #[inline]
121 fn bitand(self, rhs: Self) -> Self {
122 Self {
123 x: self.x & rhs.x,
124 y: self.y & rhs.y,
125 z: self.z & rhs.z,
126 w: self.w & rhs.w,
127 }
128 }
129}
130
131impl BitAndAssign for BVec4 {
132 #[inline]
133 fn bitand_assign(&mut self, rhs: Self) {
134 *self = self.bitand(rhs);
135 }
136}
137
138impl BitOr for BVec4 {
139 type Output = Self;
140 #[inline]
141 fn bitor(self, rhs: Self) -> Self {
142 Self {
143 x: self.x | rhs.x,
144 y: self.y | rhs.y,
145 z: self.z | rhs.z,
146 w: self.w | rhs.w,
147 }
148 }
149}
150
151impl BitOrAssign for BVec4 {
152 #[inline]
153 fn bitor_assign(&mut self, rhs: Self) {
154 *self = self.bitor(rhs);
155 }
156}
157
158impl BitXor for BVec4 {
159 type Output = Self;
160 #[inline]
161 fn bitxor(self, rhs: Self) -> Self {
162 Self {
163 x: self.x ^ rhs.x,
164 y: self.y ^ rhs.y,
165 z: self.z ^ rhs.z,
166 w: self.w ^ rhs.w,
167 }
168 }
169}
170
171impl BitXorAssign for BVec4 {
172 #[inline]
173 fn bitxor_assign(&mut self, rhs: Self) {
174 *self = self.bitxor(rhs);
175 }
176}
177
178impl Not for BVec4 {
179 type Output = Self;
180 #[inline]
181 fn not(self) -> Self {
182 Self {
183 x: !self.x,
184 y: !self.y,
185 z: !self.z,
186 w: !self.w,
187 }
188 }
189}
190
191#[cfg(not(target_arch = "spirv"))]
192impl fmt::Debug for BVec4 {
193 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
194 let arr = self.into_u32_array();
195 write!(
196 f,
197 "{}({:#x}, {:#x}, {:#x}, {:#x})",
198 stringify!(BVec4),
199 arr[0],
200 arr[1],
201 arr[2],
202 arr[3]
203 )
204 }
205}
206
207#[cfg(not(target_arch = "spirv"))]
208impl fmt::Display for BVec4 {
209 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
210 let arr = self.into_bool_array();
211 write!(f, "[{}, {}, {}, {}]", arr[0], arr[1], arr[2], arr[3])
212 }
213}
214
215impl From<BVec4> for [bool; 4] {
216 #[inline]
217 fn from(mask: BVec4) -> Self {
218 mask.into_bool_array()
219 }
220}
221
222impl From<BVec4> for [u32; 4] {
223 #[inline]
224 fn from(mask: BVec4) -> Self {
225 mask.into_u32_array()
226 }
227}