1
0
Fork 0

Committed forgotten file necessary for gamepad inputs

This commit is contained in:
Julien Dessaux 2022-09-25 23:06:32 +02:00
parent 2b9c6f8533
commit c9539b4cb4
Signed by: adyxax
GPG key ID: F92E51B86E07177E

27
src/inputs.zig Normal file
View file

@ -0,0 +1,27 @@
const std = @import("std");
const w4 = @import("wasm4.zig");
// This packed struct matches the buttons definitions in wasm4.zig
// so that a bitCast can give us named fields
pub const Buttons = packed struct {
x: bool = false,
y: bool = false,
_: u2,
left: bool = false,
right: bool = false,
up: bool = false,
down: bool = false,
};
pub const Gamepad = struct {
held: Buttons = .{},
pressed: Buttons = .{},
released: Buttons = .{},
pub fn update(self: *Gamepad, buttons: u8) void {
var previous = @bitCast(u8, self.held);
self.held = @bitCast(Buttons, buttons);
self.pressed = @bitCast(Buttons, buttons & (buttons ^ previous));
self.released = @bitCast(Buttons, previous & (buttons ^ previous));
}
};