chuniio-yubideck/chuniio/src/lib.rs

429 lines
12 KiB
Rust
Raw Normal View History

2024-01-02 04:27:10 +00:00
#![allow(clippy::missing_safety_doc)]
2023-12-23 20:39:58 +00:00
mod configuration;
use std::{
2024-01-02 04:27:10 +00:00
ffi::c_void,
rc::Rc,
2023-12-23 20:39:58 +00:00
sync::{
atomic::Ordering,
2024-01-02 04:27:10 +00:00
Mutex,
2023-12-23 20:39:58 +00:00
},
};
2023-12-23 21:05:51 +00:00
use ::log::error;
2024-01-02 04:27:10 +00:00
use shared_memory::Shmem;
2023-12-23 20:39:58 +00:00
use winapi::{
shared::{
minwindef::{BOOL, DWORD, HINSTANCE, LPVOID, TRUE},
winerror::{E_FAIL, S_OK},
},
2024-01-02 04:27:10 +00:00
um::winnt::{DLL_PROCESS_ATTACH, HRESULT},
2023-12-23 21:05:51 +00:00
};
2024-01-02 04:27:10 +00:00
use yubideck_common::{create_shared_memory, init_logger, INPUT_SHMEM_SIZE, OUTPUT_SHMEM_SIZE};
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
static mut INPUT_SHMEM: Option<Rc<Shmem>> = None;
static mut OUTPUT_SHMEM: Option<Rc<Mutex<Shmem>>> = None;
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
cfg_if::cfg_if! {
if #[cfg(any(chuni, chusanapp))] {
use std::{
sync::{OnceLock, atomic::AtomicBool},
2024-01-02 04:27:10 +00:00
thread::{self, JoinHandle},
time::Duration,
};
2023-12-23 20:39:58 +00:00
2024-01-02 04:54:08 +00:00
use anyhow::{anyhow, Result};
2024-01-02 04:27:10 +00:00
use ::log::info;
use rusb::{DeviceHandle, GlobalContext};
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
type SliderCallbackFn = unsafe extern "C" fn(data: *const u8);
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
const TIMEOUT: Duration = Duration::from_millis(20);
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
static DEVICE: OnceLock<DeviceHandle<GlobalContext>> = OnceLock::new();
static mut SLIDER_THREAD: OnceLock<JoinHandle<()>> = OnceLock::new();
static SLIDER_ACTIVE: AtomicBool = AtomicBool::new(false);
}
}
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
cfg_if::cfg_if! {
if #[cfg(any(chuni, amdaemon))] {
use std::{ffi::{c_int, CString}, sync::atomic::AtomicU16};
use lazy_static::lazy_static;
use winapi::um::{winuser::GetAsyncKeyState, winbase::GetPrivateProfileIntA};
use crate::configuration::Configuration;
static COIN_COUNT: AtomicU16 = AtomicU16::new(0);
static mut COIN_PRESSED: bool = false;
2024-01-02 04:27:10 +00:00
lazy_static! {
static ref CONFIGURATION: Configuration = {
let io3 = CString::new("io3").unwrap();
let test = CString::new("test").unwrap();
let service = CString::new("service").unwrap();
let coin = CString::new("coin").unwrap();
let cfg_file = CString::new(".\\segatools.ini").unwrap();
unsafe {
Configuration {
test_key: GetPrivateProfileIntA(
io3.as_ptr(),
test.as_ptr(),
0x31,
cfg_file.as_ptr(),
),
service_key: GetPrivateProfileIntA(
io3.as_ptr(),
service.as_ptr(),
0x32,
cfg_file.as_ptr(),
),
coin_key: GetPrivateProfileIntA(
io3.as_ptr(),
coin.as_ptr(),
0x33,
cfg_file.as_ptr(),
),
}
}
};
2023-12-23 20:39:58 +00:00
}
2024-01-02 04:27:10 +00:00
}
2023-12-23 20:39:58 +00:00
}
#[no_mangle]
extern "system" fn DllMain(_dll_module: HINSTANCE, call_reason: DWORD, _reserved: LPVOID) -> BOOL {
2024-01-02 04:27:10 +00:00
if call_reason == DLL_PROCESS_ATTACH {
init_logger()
2023-12-23 20:39:58 +00:00
}
TRUE
}
#[no_mangle]
pub extern "C" fn chuni_io_get_api_version() -> u16 {
2023-12-25 17:01:16 +00:00
0x0102
2023-12-23 20:39:58 +00:00
}
#[no_mangle]
pub extern "C" fn chuni_io_jvs_init() -> HRESULT {
2024-01-02 04:27:10 +00:00
match create_shared_memory("YubideckInput", INPUT_SHMEM_SIZE, true) {
Ok(s) => unsafe { INPUT_SHMEM = Some(Rc::new(s)) },
Err(e) => {
error!("Could not acquire shared memory for YubiDeck input: {e:#?}");
return E_FAIL;
}
}
match create_shared_memory("YubideckOutput", OUTPUT_SHMEM_SIZE, true) {
Ok(s) => unsafe { OUTPUT_SHMEM = Some(Rc::new(Mutex::new(s))) },
Err(e) => {
error!("Could not obtain shared memory for YubiDeck output: {e:#?}");
return E_FAIL;
}
}
#[cfg(not(amdaemon))]
2023-12-23 21:05:51 +00:00
{
2023-12-23 20:39:58 +00:00
if let Err(e) = yubideck_init() {
error!("Could not initialize YubiDeck: {e:#?}");
return E_FAIL;
}
}
S_OK
}
#[no_mangle]
#[cfg(any(chuni, amdaemon))]
2024-01-02 04:27:10 +00:00
pub unsafe extern "C" fn chuni_io_jvs_poll(opbtn: *mut u8, beams: *mut u8) {
2023-12-23 20:39:58 +00:00
if opbtn.is_null() || beams.is_null() {
return;
}
let Some(input_shmem) = (unsafe { &INPUT_SHMEM }) else {
return;
};
let input = unsafe { input_shmem.as_slice() };
let ir_value = input[0];
let mut buttons = input[1] & 3; // Buttons are in order: coin, service, test. We take the last 2 bits
2024-01-02 04:27:10 +00:00
if GetAsyncKeyState(CONFIGURATION.test_key as c_int) != 0 {
buttons |= 1;
}
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
if GetAsyncKeyState(CONFIGURATION.service_key as c_int) != 0 {
buttons |= 2;
2023-12-23 20:39:58 +00:00
}
2024-01-02 04:27:10 +00:00
*opbtn = buttons;
// Swap adjacent bit pairs
*beams = ((ir_value & 0xAA) >> 1) | ((ir_value & 0x55) << 1);
2023-12-23 20:39:58 +00:00
}
#[no_mangle]
#[cfg(chusanapp)]
2023-12-23 20:39:58 +00:00
pub extern "C" fn chuni_io_jvs_poll(_opbtn: *mut u8, _beams: *mut u8) {}
#[no_mangle]
#[cfg(any(chuni, amdaemon))]
2024-01-02 04:27:10 +00:00
pub unsafe extern "C" fn chuni_io_jvs_read_coin_counter(total: *mut u16) {
2023-12-23 20:39:58 +00:00
if total.is_null() {
return;
}
let Some(input_shmem) = &INPUT_SHMEM else {
2023-12-23 20:39:58 +00:00
return;
};
let input = unsafe { input_shmem.as_slice() };
let coin_pressed = (input[1] & 4) != 0;
if coin_pressed || unsafe { GetAsyncKeyState(CONFIGURATION.coin_key as c_int) } != 0 {
if !COIN_PRESSED {
COIN_PRESSED = true;
2023-12-23 20:39:58 +00:00
COIN_COUNT.fetch_add(1, Ordering::Relaxed);
}
} else {
COIN_PRESSED = false;
2023-12-23 20:39:58 +00:00
}
2024-01-02 04:27:10 +00:00
*total = COIN_COUNT.load(Ordering::Relaxed);
2023-12-23 20:39:58 +00:00
}
#[no_mangle]
#[cfg(chusanapp)]
2023-12-23 20:39:58 +00:00
pub extern "C" fn chuni_io_jvs_read_coin_counter(_total: *mut u16) {}
#[no_mangle]
2024-01-02 04:27:10 +00:00
pub extern "C" fn chuni_io_slider_init() -> HRESULT {
#[cfg(any(chuni, chusanapp))]
{
let Some(out_shmem) = (unsafe { &OUTPUT_SHMEM }) else {
error!("OUTPUT_SHMEM is unset.");
2023-12-23 20:39:58 +00:00
return E_FAIL;
2024-01-02 04:27:10 +00:00
};
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
let Ok(mut out_shmem) = out_shmem.lock() else {
error!("Could not acquire mutex of output shared memory");
return E_FAIL;
};
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
let buf = unsafe { out_shmem.as_slice_mut() };
2023-12-23 20:39:58 +00:00
2024-01-02 04:27:10 +00:00
buf[0] = 0;
buf[61] = 1;
}
2023-12-23 20:39:58 +00:00
S_OK
}
#[no_mangle]
#[cfg(any(chuni, chusanapp))]
2023-12-23 20:39:58 +00:00
pub unsafe extern "C" fn chuni_io_slider_start(callback: *const c_void) {
if callback.is_null() {
return;
}
if SLIDER_THREAD.get().is_some() {
return;
}
SLIDER_ACTIVE.store(true, Ordering::Relaxed);
let callback = std::mem::transmute::<_, SliderCallbackFn>(callback);
let thread = thread::spawn(move || {
let Some(input_shmem) = (unsafe { &INPUT_SHMEM }) else {
return;
};
let usb_in = input_shmem.as_slice();
let mut pressure = [0u8; 32];
while SLIDER_ACTIVE.load(Ordering::Relaxed) {
2024-01-02 04:27:10 +00:00
for (i, p) in usb_in.iter().skip(2).take(32).enumerate() {
pressure[if i % 2 == 0 { 30 - i } else { 32 - i }] = *p
2023-12-23 20:39:58 +00:00
}
callback(pressure.as_ptr());
thread::sleep(Duration::from_nanos(1_000_000));
}
});
SLIDER_THREAD.set(thread).unwrap();
}
#[no_mangle]
#[cfg(amdaemon)]
2023-12-23 20:39:58 +00:00
pub extern "C" fn chuni_io_slider_start(_callback: *const c_void) {}
#[no_mangle]
#[cfg(any(chuni, chusanapp))]
2023-12-23 20:39:58 +00:00
pub extern "C" fn chuni_io_slider_stop() {
let Some(thread) = (unsafe { SLIDER_THREAD.take() }) else {
return;
};
SLIDER_ACTIVE.store(false, Ordering::Relaxed);
thread.join().expect("Couldn't join slider input thread");
}
#[no_mangle]
#[cfg(amdaemon)]
2023-12-23 20:39:58 +00:00
pub extern "C" fn chuni_io_slider_stop() {}
#[no_mangle]
#[cfg(any(chuni, chusanapp))]
2023-12-23 20:39:58 +00:00
pub unsafe extern "C" fn chuni_io_slider_set_leds(rgb: *const u8) {
if rgb.is_null() {
return;
}
let Some(device) = DEVICE.get() else { return };
let Some(out_shmem) = &OUTPUT_SHMEM else {
error!("OUTPUT_SHMEM is unset.");
return;
};
let Ok(mut out_shmem) = out_shmem.lock() else {
error!("Could not acquire mutex of output shared memory");
return;
};
let buf = out_shmem.as_slice_mut();
let ground = std::slice::from_raw_parts(rgb, 93);
for (buf_chunk, state_chunk) in buf[1..61]
.chunks_mut(3)
2024-01-02 04:54:08 +00:00
.zip(ground.chunks(3).take(20))
2023-12-23 20:39:58 +00:00
{
buf_chunk[0] = state_chunk[1];
buf_chunk[1] = state_chunk[2];
buf_chunk[2] = state_chunk[0];
2023-12-23 20:39:58 +00:00
}
for (buf_chunk, state_chunk) in buf[62..95]
.chunks_mut(3)
2024-01-02 04:54:08 +00:00
.zip(ground.chunks(3).skip(20).take(11))
2023-12-23 20:39:58 +00:00
{
buf_chunk[0] = state_chunk[1];
buf_chunk[1] = state_chunk[2];
buf_chunk[2] = state_chunk[0];
2023-12-23 20:39:58 +00:00
}
2024-01-02 04:27:10 +00:00
if let Err(e) = device.write_interrupt(0x02, &buf[0..61], TIMEOUT) {
2023-12-23 20:39:58 +00:00
error!("Error writing first batch of output data: {e:#?}");
}
2024-01-02 04:27:10 +00:00
if let Err(e) = device.write_interrupt(0x02, &buf[61..122], TIMEOUT) {
2023-12-23 20:39:58 +00:00
error!("Error writing second batch of output data: {e:#?}");
}
}
#[no_mangle]
#[cfg(amdaemon)]
2023-12-23 20:39:58 +00:00
pub extern "C" fn chuni_io_slider_set_leds(_rgb: *const u8) {}
#[no_mangle]
pub extern "C" fn chuni_io_led_init() -> HRESULT {
S_OK
}
#[no_mangle]
#[cfg(any(chuni, chusanapp))]
2023-12-23 20:39:58 +00:00
pub unsafe extern "C" fn chuni_io_led_set_colors(board: u8, rgb: *const u8) {
let Some(device) = DEVICE.get() else { return };
let Some(out_shmem) = &OUTPUT_SHMEM else {
error!("OUTPUT_SHMEM is unset.");
return;
};
let Ok(mut out_shmem) = out_shmem.lock() else {
error!("Could not acquire mutex of output shared memory");
return;
};
let buf = out_shmem.as_slice_mut();
let data = std::slice::from_raw_parts(rgb, 183);
match board {
0 => {
// left air
buf[95] = data[150];
buf[96] = data[151];
buf[97] = data[152];
}
1 => {
// right air
buf[98] = data[180];
buf[99] = data[181];
buf[100] = data[182];
}
_ => {}
}
2024-01-02 04:27:10 +00:00
if let Err(e) = device.write_interrupt(0x02, &buf[61..122], TIMEOUT) {
2023-12-23 20:39:58 +00:00
error!("Error writing second batch of output data: {e:#?}");
}
}
#[no_mangle]
#[cfg(amdaemon)]
2023-12-23 20:39:58 +00:00
pub extern "C" fn chuni_io_led_set_colors(_rgb: *const u8) {}
#[cfg(any(chuni, chusanapp))]
2023-12-23 20:39:58 +00:00
fn yubideck_init() -> Result<()> {
let Some(mut device) = rusb::open_device_with_vid_pid(0x1973, 0x2001) else {
return Err(anyhow!("YubiDeck not found."));
};
device.set_active_configuration(1)?;
device.claim_interface(0)?;
DEVICE
.set(device)
.map_err(|e| anyhow!("Cannot store device handle: {e:#?}"))?;
thread::spawn(input_thread_proc);
Ok(())
}
#[cfg(any(chuni, chusanapp))]
2024-01-02 04:27:10 +00:00
fn input_thread_proc() {
2023-12-23 20:39:58 +00:00
info!("Input thread started");
2024-01-02 04:27:10 +00:00
let device = DEVICE.get().unwrap();
let mut input_shmem = match create_shared_memory("YubideckInput", INPUT_SHMEM_SIZE, true) {
2023-12-23 20:39:58 +00:00
Ok(s) => s,
Err(e) => {
error!("Could not obtain shared memory for YubiDeck input: {e:#}");
return;
}
};
2024-01-02 04:27:10 +00:00
let usb_in = unsafe { input_shmem.as_slice_mut() };
let mut output_shmem = match create_shared_memory("YubideckOutput", OUTPUT_SHMEM_SIZE, true) {
Ok(s) => s,
Err(e) => {
error!("Could not obtain shared memory for YubiDeck output: {e:#?}");
return;
}
};
let usb_out = unsafe { output_shmem.as_slice_mut() };
2023-12-23 20:39:58 +00:00
loop {
2024-01-02 04:27:10 +00:00
if let Err(e) = device.read_interrupt(0x81, usb_in, TIMEOUT) {
2023-12-23 20:39:58 +00:00
error!("Failed to read data from YubiDeck: {e:#}");
}
2024-01-02 04:27:10 +00:00
// Update reader LED data
if usb_out[122] == 1 {
usb_out[122] = 0;
if let Err(e) = device.write_interrupt(0x02, &usb_out[61..122], TIMEOUT) {
error!("Error writing second batch of output data: {e:#?}");
}
}
2023-12-23 20:39:58 +00:00
}
}