forked from NotAShelf/beer
input: encode keyboard events and send them to the shell
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I6ee2acd5f74575f4bcc2f41417207c626a6a6964
This commit is contained in:
parent
0df5588f02
commit
b2d656e7bd
5 changed files with 322 additions and 8 deletions
186
src/input.rs
Normal file
186
src/input.rs
Normal file
|
|
@ -0,0 +1,186 @@
|
|||
//! Keyboard encoding: translate decoded key events into the byte sequences a
|
||||
//! terminal application expects (xterm/VT-style).
|
||||
|
||||
use smithay_client_toolkit::seat::keyboard::{KeyEvent, Keysym, Modifiers};
|
||||
|
||||
/// Encode a key press into bytes for the PTY, or `None` if it produces no input.
|
||||
pub fn encode(event: &KeyEvent, mods: Modifiers, app_cursor: bool) -> Option<Vec<u8>> {
|
||||
let seq = match event.keysym {
|
||||
Keysym::Return | Keysym::KP_Enter => prefix_alt(b"\r".to_vec(), mods),
|
||||
Keysym::BackSpace => prefix_alt(b"\x7f".to_vec(), mods),
|
||||
Keysym::Tab if mods.shift => b"\x1b[Z".to_vec(),
|
||||
Keysym::Tab => b"\t".to_vec(),
|
||||
Keysym::Escape => b"\x1b".to_vec(),
|
||||
|
||||
Keysym::Up => csi_letter(b'A', mods, app_cursor),
|
||||
Keysym::Down => csi_letter(b'B', mods, app_cursor),
|
||||
Keysym::Right => csi_letter(b'C', mods, app_cursor),
|
||||
Keysym::Left => csi_letter(b'D', mods, app_cursor),
|
||||
Keysym::Home => csi_letter(b'H', mods, app_cursor),
|
||||
Keysym::End => csi_letter(b'F', mods, app_cursor),
|
||||
|
||||
Keysym::Insert => csi_tilde(2, mods),
|
||||
Keysym::Delete => csi_tilde(3, mods),
|
||||
Keysym::Page_Up => csi_tilde(5, mods),
|
||||
Keysym::Page_Down => csi_tilde(6, mods),
|
||||
|
||||
// F1-F4 are SS3-introduced; F5+ use the CSI tilde forms.
|
||||
Keysym::F1 => fkey(b'P', mods),
|
||||
Keysym::F2 => fkey(b'Q', mods),
|
||||
Keysym::F3 => fkey(b'R', mods),
|
||||
Keysym::F4 => fkey(b'S', mods),
|
||||
Keysym::F5 => csi_tilde(15, mods),
|
||||
Keysym::F6 => csi_tilde(17, mods),
|
||||
Keysym::F7 => csi_tilde(18, mods),
|
||||
Keysym::F8 => csi_tilde(19, mods),
|
||||
Keysym::F9 => csi_tilde(20, mods),
|
||||
Keysym::F10 => csi_tilde(21, mods),
|
||||
Keysym::F11 => csi_tilde(23, mods),
|
||||
Keysym::F12 => csi_tilde(24, mods),
|
||||
|
||||
// Everything else: the xkb-composed text (which already folds in Ctrl),
|
||||
// with Alt sending an ESC prefix (meta).
|
||||
_ => {
|
||||
let text = event.utf8.as_ref()?;
|
||||
if text.is_empty() {
|
||||
return None;
|
||||
}
|
||||
prefix_alt(text.as_bytes().to_vec(), mods)
|
||||
}
|
||||
};
|
||||
Some(seq)
|
||||
}
|
||||
|
||||
fn prefix_alt(bytes: Vec<u8>, mods: Modifiers) -> Vec<u8> {
|
||||
if mods.alt {
|
||||
let mut out = Vec::with_capacity(bytes.len() + 1);
|
||||
out.push(0x1b);
|
||||
out.extend_from_slice(&bytes);
|
||||
out
|
||||
} else {
|
||||
bytes
|
||||
}
|
||||
}
|
||||
|
||||
/// xterm modifier parameter: 1 + a bitfield of the held modifiers.
|
||||
fn modifier_param(mods: Modifiers) -> u8 {
|
||||
1 + u8::from(mods.shift)
|
||||
+ (u8::from(mods.alt) << 1)
|
||||
+ (u8::from(mods.ctrl) << 2)
|
||||
+ (u8::from(mods.logo) << 3)
|
||||
}
|
||||
|
||||
/// Cursor/edit keys: `ESC [ X` (or `ESC O X` in application-cursor mode), and
|
||||
/// `ESC [ 1 ; m X` when modifiers are held.
|
||||
fn csi_letter(final_byte: u8, mods: Modifiers, app_cursor: bool) -> Vec<u8> {
|
||||
let m = modifier_param(mods);
|
||||
if m == 1 {
|
||||
vec![0x1b, if app_cursor { b'O' } else { b'[' }, final_byte]
|
||||
} else {
|
||||
let mut v = format!("\x1b[1;{m}").into_bytes();
|
||||
v.push(final_byte);
|
||||
v
|
||||
}
|
||||
}
|
||||
|
||||
/// Keypad-style keys: `ESC [ n ~`, with `ESC [ n ; m ~` when modifiers are held.
|
||||
fn csi_tilde(n: u8, mods: Modifiers) -> Vec<u8> {
|
||||
let m = modifier_param(mods);
|
||||
if m == 1 {
|
||||
format!("\x1b[{n}~").into_bytes()
|
||||
} else {
|
||||
format!("\x1b[{n};{m}~").into_bytes()
|
||||
}
|
||||
}
|
||||
|
||||
fn fkey(final_byte: u8, mods: Modifiers) -> Vec<u8> {
|
||||
let m = modifier_param(mods);
|
||||
if m == 1 {
|
||||
vec![0x1b, b'O', final_byte]
|
||||
} else {
|
||||
let mut v = format!("\x1b[1;{m}").into_bytes();
|
||||
v.push(final_byte);
|
||||
v
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
fn key(keysym: Keysym, utf8: Option<&str>) -> KeyEvent {
|
||||
KeyEvent {
|
||||
time: 0,
|
||||
raw_code: 0,
|
||||
keysym,
|
||||
utf8: utf8.map(str::to_owned),
|
||||
}
|
||||
}
|
||||
|
||||
const NONE: Modifiers = Modifiers {
|
||||
ctrl: false,
|
||||
alt: false,
|
||||
shift: false,
|
||||
caps_lock: false,
|
||||
logo: false,
|
||||
num_lock: false,
|
||||
};
|
||||
|
||||
#[test]
|
||||
fn plain_text_passes_through() {
|
||||
assert_eq!(
|
||||
encode(&key(Keysym::a, Some("a")), NONE, false),
|
||||
Some(b"a".to_vec())
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn alt_prefixes_escape() {
|
||||
let mods = Modifiers { alt: true, ..NONE };
|
||||
assert_eq!(
|
||||
encode(&key(Keysym::a, Some("a")), mods, false),
|
||||
Some(b"\x1ba".to_vec())
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn arrows_respect_application_mode() {
|
||||
assert_eq!(
|
||||
encode(&key(Keysym::Up, None), NONE, false),
|
||||
Some(b"\x1b[A".to_vec())
|
||||
);
|
||||
assert_eq!(
|
||||
encode(&key(Keysym::Up, None), NONE, true),
|
||||
Some(b"\x1bOA".to_vec())
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn modified_arrow_uses_csi_param() {
|
||||
let mods = Modifiers { ctrl: true, ..NONE };
|
||||
assert_eq!(
|
||||
encode(&key(Keysym::Right, None), mods, false),
|
||||
Some(b"\x1b[1;5C".to_vec())
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn special_keys() {
|
||||
assert_eq!(
|
||||
encode(&key(Keysym::Return, None), NONE, false),
|
||||
Some(b"\r".to_vec())
|
||||
);
|
||||
assert_eq!(
|
||||
encode(&key(Keysym::BackSpace, None), NONE, false),
|
||||
Some(b"\x7f".to_vec())
|
||||
);
|
||||
assert_eq!(
|
||||
encode(&key(Keysym::Delete, None), NONE, false),
|
||||
Some(b"\x1b[3~".to_vec())
|
||||
);
|
||||
assert_eq!(
|
||||
encode(&key(Keysym::F5, None), NONE, false),
|
||||
Some(b"\x1b[15~".to_vec())
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue