forked from pcsx-redux/nugget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvector.hh
241 lines (227 loc) · 7.15 KB
/
vector.hh
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
/*
MIT License
Copyright (c) 2023 PCSX-Redux authors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#pragma once
#include <concepts>
#include <type_traits>
#include "psyqo/fixed-point.hh"
#include "psyqo/primitives/common.hh"
namespace psyqo {
template <unsigned N, unsigned precisionBits = 12, std::integral T = int32_t>
requires((N >= 2) && (N <= 4))
struct Vector {
typedef FixedPoint<precisionBits, T> FixedPointType;
FixedPoint<precisionBits, T> x, y;
struct EmptyZ {};
[[no_unique_address]] std::conditional_t<(N > 2), FixedPoint<precisionBits, T>, EmptyZ> z;
struct EmptyW {};
[[no_unique_address]] std::conditional_t<(N > 3), FixedPoint<precisionBits, T>, EmptyW> w;
constexpr FixedPointType& get(unsigned i) {
if constexpr (N == 2) {
return (i == 0) ? x : y;
} else if constexpr (N == 3) {
return (i == 0) ? x : (i == 1) ? y : z;
} else if constexpr (N == 4) {
return (i == 0) ? x : (i == 1) ? y : (i == 2) ? z : w;
}
}
constexpr const FixedPointType& get(unsigned i) const {
if constexpr (N == 2) {
return (i == 0) ? x : y;
} else if constexpr (N == 3) {
return (i == 0) ? x : (i == 1) ? y : z;
} else if constexpr (N == 4) {
return (i == 0) ? x : (i == 1) ? y : (i == 2) ? z : w;
}
}
constexpr FixedPointType& operator[](unsigned i) { return get(i); }
constexpr operator Vertex() const
requires((N == 2) && std::is_signed<T>::value)
{
return {{.x = x.template integer<int16_t>(), .y = y.template integer<int16_t>()}};
}
constexpr Vector& operator+=(const Vector& rhs) {
for (unsigned i = 0; i < N; i++) {
get(i) += rhs.get(i);
}
return *this;
}
constexpr Vector& operator-=(const Vector& rhs) {
for (unsigned i = 0; i < N; i++) {
get(i) -= rhs.get(i);
}
return *this;
}
constexpr Vector& operator*=(const FixedPointType& rhs) {
for (unsigned i = 0; i < N; i++) {
get(i) *= rhs;
}
return *this;
}
constexpr Vector& operator/=(const FixedPointType& rhs) {
for (unsigned i = 0; i < N; i++) {
get(i) /= rhs;
}
return *this;
}
template <std::integral U>
constexpr Vector& operator*=(U rhs) {
for (unsigned i = 0; i < N; i++) {
get(i) *= rhs;
}
return *this;
}
template <std::integral U>
constexpr Vector& operator/=(U rhs) {
for (unsigned i = 0; i < N; i++) {
get(i) /= rhs;
}
return *this;
}
constexpr Vector operator-() const {
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = -get(i);
}
return result;
}
constexpr Vector operator+(const Vector& rhs) const {
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = get(i) + rhs.get(i);
}
return result;
}
constexpr Vector operator-(const Vector& rhs) const {
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = get(i) - rhs.get(i);
}
return result;
}
constexpr Vector operator*(const FixedPointType& rhs) const {
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = get(i) * rhs;
}
return result;
}
constexpr Vector operator/(const FixedPointType& rhs) const {
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = get(i) / rhs;
}
return result;
}
template <std::integral U>
constexpr Vector operator*(U rhs) const {
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = get(i) * rhs;
}
return result;
}
template <std::integral U>
constexpr Vector operator/(U rhs) const {
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = get(i) / rhs;
}
return result;
}
static constexpr Vector ZERO()
requires(N <= 3)
{
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = FixedPointType(0.0);
}
return result;
}
static constexpr Vector ONE()
requires(N <= 3)
{
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = FixedPointType(1.0);
}
return result;
}
static constexpr Vector UP()
requires(N <= 3)
{
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = (i == 1) ? FixedPointType(1.0) : FixedPointType(0.0);
}
return result;
}
static constexpr Vector DOWN()
requires(N <= 3)
{
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = (i == 1) ? -FixedPointType(1.0) : FixedPointType(0.0);
}
return result;
}
static constexpr Vector LEFT()
requires(N <= 3)
{
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = (i == 0) ? -FixedPointType(1.0) : FixedPointType(0.0);
}
return result;
}
static constexpr Vector RIGHT()
requires(N <= 3)
{
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = (i == 0) ? FixedPointType(1.0) : FixedPointType(0.0);
}
return result;
}
static constexpr Vector FORWARD()
requires(N == 3)
{
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = (i == 2) ? FixedPointType(1.0) : FixedPointType(0.0);
}
return result;
}
static constexpr Vector BACKWARD()
requires(N == 3)
{
Vector result;
for (unsigned i = 0; i < N; i++) {
result.get(i) = (i == 2) ? -FixedPointType(1.0) : FixedPointType(0.0);
}
return result;
}
};
typedef Vector<2> Vec2;
typedef Vector<3> Vec3;
typedef Vector<4> Vec4;
static_assert(sizeof(Vec2) == 8);
static_assert(sizeof(Vec3) == 12);
static_assert(sizeof(Vec4) == 16);
} // namespace psyqo