2017-09-19 03:59:20 +00:00
|
|
|
#include "amuse/Listener.hpp"
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
namespace amuse {
|
2017-09-19 03:59:20 +00:00
|
|
|
|
2019-09-08 00:19:47 +00:00
|
|
|
static constexpr Vector3f Cross(const Vector3f& a, const Vector3f& b) {
|
|
|
|
return {
|
|
|
|
a[1] * b[2] - a[2] * b[1],
|
|
|
|
a[2] * b[0] - a[0] * b[2],
|
|
|
|
a[0] * b[1] - a[1] * b[0],
|
|
|
|
};
|
2017-09-19 03:59:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
void Listener::setVectors(const float* pos, const float* dir, const float* heading, const float* up) {
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
|
|
|
m_pos[i] = pos[i];
|
|
|
|
m_dir[i] = dir[i];
|
|
|
|
m_heading[i] = heading[i];
|
|
|
|
m_up[i] = up[i];
|
|
|
|
}
|
2017-09-20 09:22:46 +00:00
|
|
|
|
2019-09-08 00:19:47 +00:00
|
|
|
m_heading = Normalize(m_heading);
|
|
|
|
m_up = Normalize(m_up);
|
|
|
|
m_right = Normalize(Cross(m_heading, m_up));
|
2018-12-08 05:20:09 +00:00
|
|
|
m_dirty = true;
|
2017-09-19 03:59:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 05:20:09 +00:00
|
|
|
} // namespace amuse
|