mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 06:35:40 +12:00
Merge pull request #577 from wheremyfoodat/hle-dsp
Optimize gyro calculation
This commit is contained in:
commit
e756815b51
1 changed files with 5 additions and 8 deletions
|
@ -8,13 +8,10 @@
|
||||||
namespace Gyro::SDL {
|
namespace Gyro::SDL {
|
||||||
// Convert the rotation data we get from SDL sensor events to rotation data we can feed right to HID
|
// Convert the rotation data we get from SDL sensor events to rotation data we can feed right to HID
|
||||||
// Returns [pitch, roll, yaw]
|
// Returns [pitch, roll, yaw]
|
||||||
static glm::vec3 convertRotation(glm::vec3 rotation) {
|
static glm::vec3 convertRotation(glm::vec3 rotation) {
|
||||||
// Flip axes
|
// Convert the rotation from rad/s to deg/s and scale by the gyroscope coefficient in HID
|
||||||
glm::vec3 ret = -rotation;
|
constexpr float scale = 180.f / std::numbers::pi * HIDService::gyroscopeCoeff;
|
||||||
// Convert from radians/s to deg/s and scale by the gyroscope coefficient from the HID service
|
// The axes are also inverted, so invert scale before the multiplication.
|
||||||
ret *= 180.f / std::numbers::pi;
|
return rotation * -scale;
|
||||||
ret *= HIDService::gyroscopeCoeff;
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
} // namespace Gyro::SDL
|
} // namespace Gyro::SDL
|
Loading…
Add table
Reference in a new issue