1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! Orientation tracking for accelerometer-equipped devices.

mod tracker;

pub use self::tracker::Tracker;

/// Device orientation as computed from accelerometer data
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Orientation {
    /// Unable to determine the orientation from current data
    Unknown,

    /// Device is in portrait mode in whatever way is considered "up"
    PortraitUp,

    /// Device is in portrait mode in whatever way is considered "down"
    PortraitDown,

    /// Device is in landscape mode in whatever way is considered "up"
    LandscapeUp,

    /// Device is in landscape mode in whatever way is considered "down"
    LandscapeDown,

    /// Device is parallel to the ground, facing up
    FaceUp,

    /// Device is parallel to the ground, facing down
    FaceDown,
}

impl Orientation {
    /// Is this orientation considered to be flat?
    pub fn is_flat(self) -> bool {
        match self {
            Orientation::FaceUp | Orientation::FaceDown => true,
            _ => false,
        }
    }

    /// Is the device in a landscape orientation?
    pub fn is_landscape(self) -> bool {
        match self {
            Orientation::LandscapeUp | Orientation::LandscapeDown => true,
            _ => false,
        }
    }

    /// Is the device in a portrait orientation?
    pub fn is_portrait(self) -> bool {
        match self {
            Orientation::PortraitUp | Orientation::PortraitDown => true,
            _ => false,
        }
    }
}