dualsense-tools 0.3.0

Tools to interact with the Dualsense PS5 controller
Documentation
use glam::{Quat, Vec3};

/// Describe the tilt of a controller, i.e. its orientation in terms
/// of roll (rotation around the Z axis) and pitch (rotation around the X axis).
#[derive(Clone, Copy, Default, Debug, PartialEq)]
pub struct Tilt {
    pub quat: Quat,
}

impl Tilt {
    /// Creates a Tilt instance from a raw quaternion
    pub const fn new(quat: Quat) -> Tilt {
        Tilt { quat }
    }

    /// Gets the roll component of the tilt quaternion
    pub fn get_roll_radians(&self) -> Radians {
        Radians(-self.quat.to_scaled_axis().dot(Vec3::Z))
    }

    /// Gets the pitch component of the tilt quaternion
    pub fn get_pitch_radians(&self) -> Radians {
        Radians(self.quat.to_scaled_axis().dot(Vec3::X))
    }
}

/// Represents a value in radians
#[derive(Clone, Copy, Default, Debug, PartialEq)]
pub struct Radians(f32);

impl Radians {
    /// Gets the value as a floating point number
    pub fn get_angle(&self) -> f32 {
        self.0
    }
}

impl From<f32> for Radians {
    fn from(val: f32) -> Self {
        Radians(val)
    }
}