changed them to scancodes

Milk.H 2024-05-07 11:03:30 +02:00
parent 140908344e
commit ec8b0ccf75
Signed by: milk
GPG Key ID: 1C656AF758F96101
1 changed files with 13 additions and 12 deletions

View File

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