revert changed them to scancodes
Milk.H 2024-05-07 11:06:08 +02:00
parent ec8b0ccf75
commit 8c74c0f771
1 changed files with 12 additions and 13 deletions

View File

@ -20,24 +20,24 @@ pub struct InputConfigs {}
#[derive(Deserialize, Serialize)]
pub struct KeyboardConfig {
// directionals
Up: ScanCodes,
Down: ScanCodes,
Right: ScanCodes,
Left: ScanCodes,
Up: u32,
Down: u32,
Right: u32,
Left: u32,
// the punches
LightPunch: ScanCodes,
MediumPunch: ScanCodes,
HeavyPunch: ScanCodes,
LightPunch: u32,
MediumPunch: u32,
HeavyPunch: u32,
// the kicks
LightKick: ScanCodes,
MediumKick: ScanCodes,
HeavyKick: ScanCodes,
LightKick: u32,
MediumKick: u32,
HeavyKick: u32,
// Macros
PunchMacro: ScanCodes,
KickMacro: ScanCodes,
PunchMacro: u32,
KickMacro: u32,
}
impl Default for KeyboardConfig {
@ -64,7 +64,6 @@ impl Default for KeyboardConfig {
/// TODO finish this
/// UNTESTED AND UNFINISHED
#[repr(u32)]
#[derive(Deserialize, Serialize)]
pub enum ScanCodes {
Escape = 0x01,
Key1 = 0x02,