home · contact · privacy
492b80b1688f8ad176dd57adc7397cac11d86661
[plomrogue] / src / control.h
1 /* control.h
2  *
3  * Routines for handling control input from keyboard or record file.
4  */
5
6 #ifndef CONTROL_H
7 #define CONTROL_H
8
9 #include <stdint.h> /* for uint8_t */
10
11
12
13 /* Return keycode to action of "name" if available in current window config. */
14 extern uint16_t get_available_keycode_to_action(char * name);
15
16 /* Control the player character, either via action id "action" or pressed "key".
17  * Return 1 on success, 0 if no appropriate action to trigger was found.
18  */
19 extern uint8_t player_control_by_key(int key);
20 extern uint8_t player_control_by_id(int action);
21
22 /* Control via "key" active window's config view's geometry / keybindings. */
23 extern uint8_t wingeom_control(int key);
24 extern uint8_t winkeyb_control(int key);
25
26 /* Call via "key" further game/window management actions not influencing the
27  * player character. If "quit" is called, return 1, else 0.
28  */
29 extern uint8_t meta_control(int key);
30
31
32
33 #endif