forked from microsoft/DirectXMath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectXMatrixStack.h
241 lines (201 loc) · 7.45 KB
/
DirectXMatrixStack.h
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
//-------------------------------------------------------------------------------------
// DirectXMatrixStack.h -- DirectXMath C++ Matrix Stack
//
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//
// http://go.microsoft.com/fwlink/?LinkID=615560
//-------------------------------------------------------------------------------------
#pragma once
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <memory>
#include <new>
#ifdef _WIN32
#include <malloc.h>
#endif
#include <DirectXMath.h>
namespace DirectX
{
class MatrixStack
{
public:
MatrixStack(size_t startSize = 16) noexcept(false) :
m_stackSize(0),
m_current(0),
m_stack(nullptr)
{
assert(startSize > 0);
Allocate(startSize);
LoadIdentity();
}
MatrixStack(MatrixStack&&) = default;
MatrixStack& operator= (MatrixStack&&) = default;
MatrixStack(MatrixStack const&) = delete;
MatrixStack& operator= (MatrixStack const&) = delete;
const XMMATRIX XM_CALLCONV Top() const noexcept { return m_stack[m_current]; }
const XMMATRIX* GetTop() const noexcept { return &m_stack[m_current]; }
size_t Size() const noexcept { return (m_current + 1); }
void Pop()
{
if (m_current > 0)
{
--m_current;
}
}
void Push()
{
++m_current;
if (m_current >= m_stackSize)
{
Allocate(m_stackSize * 2);
}
// Replicate the original top of the matrix stack.
m_stack[m_current] = m_stack[m_current - 1];
}
// Loads identity into the top of the matrix stack.
void LoadIdentity() noexcept
{
m_stack[m_current] = XMMatrixIdentity();
}
// Load a matrix into the top of the matrix stack.
void XM_CALLCONV LoadMatrix(FXMMATRIX matrix) noexcept
{
m_stack[m_current] = matrix;
}
// Multiply a matrix by the top of the stack, store result in top.
void XM_CALLCONV MultiplyMatrix(FXMMATRIX matrix) noexcept
{
m_stack[m_current] = XMMatrixMultiply(m_stack[m_current], matrix);
}
// Pre-multiplies a matrix by the top of the stack, store result in top.
void XM_CALLCONV MultiplyMatrixLocal(FXMMATRIX matrix) noexcept
{
m_stack[m_current] = XMMatrixMultiply(matrix, m_stack[m_current]);
}
// Add a rotation about X to stack top.
void XM_CALLCONV RotateX(float angle) noexcept
{
XMMATRIX mat = XMMatrixRotationX(angle);
m_stack[m_current] = XMMatrixMultiply(m_stack[m_current], mat);
}
void XM_CALLCONV RotateXLocal(float angle) noexcept
{
XMMATRIX mat = XMMatrixRotationX(angle);
m_stack[m_current] = XMMatrixMultiply(mat, m_stack[m_current]);
}
// Add a rotation about Y to stack top.
void XM_CALLCONV RotateY(float angle) noexcept
{
XMMATRIX mat = XMMatrixRotationY(angle);
m_stack[m_current] = XMMatrixMultiply(m_stack[m_current], mat);
}
void XM_CALLCONV RotateYLocal(float angle) noexcept
{
XMMATRIX mat = XMMatrixRotationY(angle);
m_stack[m_current] = XMMatrixMultiply(mat, m_stack[m_current]);
}
// Add a rotation about Z to stack top.
void XM_CALLCONV RotateZ(float angle) noexcept
{
XMMATRIX mat = XMMatrixRotationZ(angle);
m_stack[m_current] = XMMatrixMultiply(m_stack[m_current], mat);
}
void XM_CALLCONV RotateZLocal(float angle) noexcept
{
XMMATRIX mat = XMMatrixRotationZ(angle);
m_stack[m_current] = XMMatrixMultiply(mat, m_stack[m_current]);
}
// Add a rotation around an axis to stack top.
void XM_CALLCONV RotateAxis(FXMVECTOR axis, float angle) noexcept
{
XMMATRIX mat = XMMatrixRotationAxis(axis, angle);
m_stack[m_current] = XMMatrixMultiply(m_stack[m_current], mat);
}
void XM_CALLCONV RotateAxisLocal(FXMVECTOR axis, float angle) noexcept
{
XMMATRIX mat = XMMatrixRotationAxis(axis, angle);
m_stack[m_current] = XMMatrixMultiply(mat, m_stack[m_current]);
}
// Add a rotation by roll/pitch/yaw to the stack top.
void RotateRollPitchYaw(float pitch, float yaw, float roll) noexcept
{
XMMATRIX mat = XMMatrixRotationRollPitchYaw(pitch, yaw, roll);
m_stack[m_current] = XMMatrixMultiply(m_stack[m_current], mat);
}
void RotateRollPitchYawLocal(float pitch, float yaw, float roll) noexcept
{
XMMATRIX mat = XMMatrixRotationRollPitchYaw(pitch, yaw, roll);
m_stack[m_current] = XMMatrixMultiply(mat, m_stack[m_current]);
}
// Add a rotation by a quaternion stack top.
void XM_CALLCONV RotateByQuaternion(FXMVECTOR quat) noexcept
{
XMMATRIX mat = XMMatrixRotationQuaternion(quat);
m_stack[m_current] = XMMatrixMultiply(m_stack[m_current], mat);
}
void XM_CALLCONV RotateByQuaternionLocal(FXMVECTOR quat) noexcept
{
XMMATRIX mat = XMMatrixRotationQuaternion(quat);
m_stack[m_current] = XMMatrixMultiply(mat, m_stack[m_current]);
}
// Add a scale to the stack top.
void Scale(float x, float y, float z) noexcept
{
XMMATRIX mat = XMMatrixScaling(x, y, z);
m_stack[m_current] = XMMatrixMultiply(m_stack[m_current], mat);
}
void ScaleLocal(float x, float y, float z) noexcept
{
XMMATRIX mat = XMMatrixScaling(x, y, z);
m_stack[m_current] = XMMatrixMultiply(mat, m_stack[m_current]);
}
// Add a translation to the stack top.
void Translate(float x, float y, float z) noexcept
{
XMMATRIX mat = XMMatrixTranslation(x, y, z);
m_stack[m_current] = XMMatrixMultiply(m_stack[m_current], mat);
}
void TranslateLocal(float x, float y, float z) noexcept
{
XMMATRIX mat = XMMatrixTranslation(x, y, z);
m_stack[m_current] = XMMatrixMultiply(mat, m_stack[m_current]);
}
private:
struct matrix_deleter
{
void operator()(void* p) noexcept
{
#ifdef _WIN32
_aligned_free(p);
#else
free(p);
#endif
}
};
void Allocate(size_t newSize)
{
#ifdef _WIN32
void* ptr = _aligned_malloc(newSize * sizeof(XMMATRIX), 16);
#else
// This C++17 Standard Library function is currently NOT
// implemented for the Microsoft Standard C++ Library.
void* ptr = aligned_alloc(16, newSize * sizeof(XMMATRIX));
#endif
if (!ptr)
throw std::bad_alloc();
if (m_stack)
{
assert(newSize >= m_stackSize);
memcpy(ptr, m_stack.get(), sizeof(XMMATRIX) * m_stackSize);
}
m_stack.reset(reinterpret_cast<XMMATRIX*>(ptr));
m_stackSize = newSize;
}
size_t m_stackSize;
size_t m_current;
std::unique_ptr<XMMATRIX[], matrix_deleter> m_stack;
};
} // namespace DirectX