Files
Patryk Gensch df6cf2f3d3
Some checks failed
docs / deploy (push) Has been cancelled
docs / build (push) Has been cancelled
Added part of docs
2026-05-19 20:51:59 +02:00

2.9 KiB

KEYBOARD

The built-in object representing keyboard state. Available under the global name KEYBOARD from any context (see Built-in objects). Handles key-down and key-up events, including auto-repeat mode.

Methods

DISABLE

void DISABLE()

Disables keyboard event handling — key signals stop being fired.

Examples

KEYBOARD^DISABLE();

ENABLE

void ENABLE()

Enables keyboard event handling.

Examples

KEYBOARD^ENABLE();

GETLATESTKEY

STRING GETLATESTKEY()

Returns the name of the most recently pressed key.

Returns: the key name in the format accepted by ISKEYDOWN (see Supported keys).

Examples

KEYBOARD^GETLATESTKEY();

ISENABLED

BOOL ISENABLED()

Checks whether keyboard handling is enabled.

Returns: BOOLTRUE if the keyboard is responding to events.

Examples

KEYBOARD^ISENABLED();

ISKEYDOWN

BOOL ISKEYDOWN(STRING keyName)

Checks whether the given key is currently held down.

Parameters

Returns: BOOLTRUE if the key is held down. For an unknown key name, FALSE is returned.

Examples

KEYBOARD^ISKEYDOWN("UP");
KEYBOARD^ISKEYDOWN("LEFT");
KEYBOARD^ISKEYDOWN(ARRAYKEYBOARD^GET(0));

SETAUTOREPEAT

void SETAUTOREPEAT(BOOL autorepeat)

Sets whether the ONKEYDOWN signal is fired repeatedly as long as the key remains held down. Disabled by default.

Parameters

  • autorepeatTRUE to enable repeat firing.

Examples

KEYBOARD^SETAUTOREPEAT(FALSE);

Signals

ONKEYDOWN

Fired when a key is pressed. The signal is parameterised by the key name — separate handlers can be attached for each:

KEYBOARD:ONKEYDOWN^UP=BEHGOUP
KEYBOARD:ONKEYDOWN^DOWN=BEHGODOWN

When auto-repeat is enabled (SETAUTOREPEAT(TRUE)), the signal is fired on every frame in which the key remains held down.

ONKEYUP

Fired when a key is released. The signal is parameterised by the key name, analogously to ONKEYDOWN.

ONCHAR

Fired for every character produced by a keypress. The signal is parameterised by the key name.

Supported keys

The engine's keyboard recognises the following key names:

  • Function keys: F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12
  • Arrows: UP, DOWN, LEFT, RIGHT
  • Modifiers: LSHIFT, RSHIFT, LCTRL, RCTRL, LALT, RALT, CAPSLOCK
  • Special: ESC, ENTER, SPACE, TAB, INSERT, PGUP, PGDN, HOME
  • Letters: Q, W, E, R, T, U, I, O, P, A, S, D, F, G, H, J, K, L, C, V, B, N, M
  • Digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9