mirror of
https://github.com/MezzalunaWM/Mezzaluna.git
synced 2026-03-07 19:49:53 -05:00
112 lines
2.9 KiB
Zig
112 lines
2.9 KiB
Zig
const Input = @This();
|
|
|
|
const std = @import("std");
|
|
const zlua = @import("zlua");
|
|
const xkb = @import("xkbcommon");
|
|
const wlr = @import("wlroots");
|
|
|
|
const Keymap = @import("../types/Keymap.zig");
|
|
const Utils = @import("../Utils.zig");
|
|
const LuaUtils = @import("LuaUtils.zig");
|
|
|
|
const server = &@import("../main.zig").server;
|
|
|
|
fn parse_modkeys(modStr: []const u8) wlr.Keyboard.ModifierMask {
|
|
var it = std.mem.splitScalar(u8, modStr, '|');
|
|
var modifiers = wlr.Keyboard.ModifierMask{};
|
|
while (it.next()) |m| {
|
|
inline for (std.meta.fields(@TypeOf(modifiers))) |f| {
|
|
if (f.type == bool and std.mem.eql(u8, m, f.name)) {
|
|
@field(modifiers, f.name) = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return modifiers;
|
|
}
|
|
|
|
/// ---Create a new keymap
|
|
/// ---@param string modifiers
|
|
/// ---@param string keys
|
|
/// ---@param table options
|
|
pub fn add_keymap(L: *zlua.Lua) i32 {
|
|
var keymap: Keymap = undefined;
|
|
keymap.options.repeat = true;
|
|
|
|
const mod = L.checkString(1);
|
|
keymap.modifier = parse_modkeys(mod);
|
|
|
|
const key = L.checkString(2);
|
|
keymap.keycode = xkb.Keysym.fromName(key, .no_flags);
|
|
|
|
_ = L.pushString("press");
|
|
_ = L.getTable(3);
|
|
if (L.isFunction(-1)) {
|
|
keymap.options.lua_press_ref_idx = L.ref(zlua.registry_index) catch Utils.oomPanic();
|
|
}
|
|
|
|
_ = L.pushString("release");
|
|
_ = L.getTable(3);
|
|
if (L.isFunction(-1)) {
|
|
keymap.options.lua_release_ref_idx = L.ref(zlua.registry_index) catch Utils.oomPanic();
|
|
}
|
|
|
|
_ = L.pushString("repeat");
|
|
_ = L.getTable(3);
|
|
keymap.options.repeat = L.isNil(-1) or L.toBoolean(-1);
|
|
|
|
const hash = Keymap.hash(keymap.modifier, keymap.keycode);
|
|
server.keymaps.put(hash, keymap) catch Utils.oomPanic();
|
|
|
|
L.pushNil();
|
|
return 1;
|
|
}
|
|
|
|
/// ---Remove an existing keymap
|
|
/// ---@param string modifiers
|
|
/// ---@param string keys
|
|
pub fn del_keymap(L: *zlua.Lua) i32 {
|
|
L.checkType(1, .string);
|
|
L.checkType(2, .string);
|
|
|
|
var keymap: Keymap = undefined;
|
|
const mod = L.checkString(1);
|
|
|
|
keymap.modifier = parse_modkeys(mod);
|
|
|
|
const key = L.checkString(2);
|
|
|
|
keymap.keycode = xkb.Keysym.fromName(key, .no_flags);
|
|
_ = server.keymaps.remove(Keymap.hash(keymap.modifier, keymap.keycode));
|
|
|
|
L.pushNil();
|
|
return 1;
|
|
}
|
|
|
|
/// ---Get the repeat information
|
|
/// ---@return integer[2]
|
|
pub fn get_repeat_info(L: *zlua.Lua) i32 {
|
|
L.newTable();
|
|
|
|
L.pushInteger(server.seat.keyboard_group.keyboard.repeat_info.rate);
|
|
L.setField(-2, "rate");
|
|
L.pushInteger(server.seat.keyboard_group.keyboard.repeat_info.delay);
|
|
L.setField(-2, "delay");
|
|
|
|
return 1;
|
|
}
|
|
|
|
/// ---Set the repeat information
|
|
/// ---@param integer rate
|
|
/// ---@param integer delay
|
|
pub fn set_repeat_info(L: *zlua.Lua) i32 {
|
|
const rate = LuaUtils.coerceInteger(i32, L.checkInteger(1)) catch {
|
|
L.raiseErrorStr("The rate must be a valid number", .{});
|
|
};
|
|
const delay = LuaUtils.coerceInteger(i32, L.checkInteger(2)) catch {
|
|
L.raiseErrorStr("The delay must be a valid number", .{});
|
|
};
|
|
|
|
server.seat.keyboard_group.keyboard.setRepeatInfo(rate, delay);
|
|
return 0;
|
|
}
|