X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fcore%2Fcontroller.rs;h=9d23257f5a0a567e3f9651c719ed7aaeb588579b;hb=eca2559123ae3c7ef184bf42ec60680fcddb38f6;hp=832480d6830686956003345f53c0fd0d63f0fa66;hpb=05ba09764d251b4dbf3d6572e1fe54bcbc154dda;p=kaka%2Frust-sdl-test.git diff --git a/src/core/controller.rs b/src/core/controller.rs index 832480d..9d23257 100644 --- a/src/core/controller.rs +++ b/src/core/controller.rs @@ -1,5 +1,5 @@ use common::Point2D; -use hashmap; +use {hashmap, point}; use common::Radians; use sdl2::HapticSubsystem; use sdl2::JoystickSubsystem; @@ -68,7 +68,6 @@ pub struct Stick { pub x: f32, pub y: f32, pub a: Radians, - pub len: f32, } impl Stick { @@ -82,11 +81,6 @@ impl Stick { Err(_) => panic!("invalid y axis {}", self.idy), }; self.a = Radians(self.y.atan2(self.x) as f64); - self.len = { - let x = (self.x / self.y).abs().min(1.0); - let y = (self.y / self.x).abs().min(1.0); - (self.x.powi(2) + self.y.powi(2)).sqrt() / (x.powi(2) + y.powi(2)).sqrt() - } } #[inline(always)] #[allow(dead_code)] fn up(&self) -> bool { self.y > 0.99 } @@ -94,15 +88,17 @@ impl Stick { #[inline(always)] #[allow(dead_code)] fn left(&self) -> bool { self.x < -0.99 } #[inline(always)] #[allow(dead_code)] fn right(&self) -> bool { self.x > 0.99 } - pub fn to_point(&self) -> Point2D { - Point2D { - x: self.x as f64, - y: self.y as f64, - } + pub fn to_axis_point(&self) -> Point2D { + point!(self.x as f64, self.y as f64) } - pub fn to_adjusted_point(&self) -> Point2D { - Point2D::from(self.a) * self.len as f64 + pub fn to_point(&self) -> Point2D { + let p = point!(self.x as f64, self.y as f64); + if p.length() > 1.0 { + p.normalize() + } else { + p + } } }