vex_sdk/
touch.rs

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
//! Brain Screen Touchscreen

#[cfg(any(target_env = "v5", target_env = "exp"))]
use crate::map_jump_table;

#[repr(transparent)]
#[derive(Default, Debug, Copy, Clone, Eq, PartialEq)]
pub struct V5_TouchEvent(pub core::ffi::c_uchar);

impl V5_TouchEvent {
    pub const kTouchEventRelease: Self = Self(0);
    pub const kTouchEventPress: Self = Self(1);
    pub const kTouchEventPressAuto: Self = Self(2);
}

#[repr(C)]
#[derive(Default, Copy, Clone, Eq, PartialEq, Debug)]
pub struct V5_TouchStatus {
    pub lastEvent: V5_TouchEvent,
    pub lastXpos: i16,
    pub lastYpos: i16,
    pub pressCount: i32,
    pub releaseCount: i32,
}

#[cfg(any(target_env = "v5", target_env = "exp"))]
map_jump_table! {
    0x960 => pub fn vexTouchUserCallbackSet(callback: unsafe extern "C" fn(V5_TouchEvent, i32, i32)),
    0x964 => pub fn vexTouchDataGet(status: *mut V5_TouchStatus),
}