Merge pull request #577 from wheremyfoodat/hle-dsp

Optimize gyro calculation
This commit is contained in:
wheremyfoodat 2024-08-14 20:43:42 +00:00 committed by GitHub
commit e756815b51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,13 +8,10 @@
namespace Gyro::SDL {
// Convert the rotation data we get from SDL sensor events to rotation data we can feed right to HID
// Returns [pitch, roll, yaw]
static glm::vec3 convertRotation(glm::vec3 rotation) {
// Flip axes
glm::vec3 ret = -rotation;
// Convert from radians/s to deg/s and scale by the gyroscope coefficient from the HID service
ret *= 180.f / std::numbers::pi;
ret *= HIDService::gyroscopeCoeff;
return ret;
static glm::vec3 convertRotation(glm::vec3 rotation) {
// Convert the rotation from rad/s to deg/s and scale by the gyroscope coefficient in HID
constexpr float scale = 180.f / std::numbers::pi * HIDService::gyroscopeCoeff;
// The axes are also inverted, so invert scale before the multiplication.
return rotation * -scale;
}
} // namespace Gyro::SDL