X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=sidebyside;f=src%2Fcontrol.h;h=889bdbfd366394f1d7a44e29eed7853b8fde05c4;hb=7290dec4219eaa2325aa00ef6139f715743dba3a;hp=79e5976e7b5010019df474c994ac4fa25dea2e91;hpb=4ca4f2fc97bd592bcbbef5ed2b21b320c7336425;p=plomrogue diff --git a/src/control.h b/src/control.h index 79e5976..889bdbf 100644 --- a/src/control.h +++ b/src/control.h @@ -6,25 +6,35 @@ #ifndef CONTROL_H #define CONTROL_H +#include /* for uint8_t */ -#include /* for uint8_t */ -struct World; + +/* Return keycode to action of "name" if available in current window config. */ +extern uint16_t get_available_keycode_to_action(char * name); /* Control the player character, either via recorded "action" or pressed "key". */ -extern void record_control(int action, struct World * world); -extern uint8_t player_control(int key, struct World * world); +extern void record_control(int action); +extern uint8_t player_control(int key); + + + +/* Control via "key" active window's geometry / keybindings in respective config + * view. + */ +extern uint8_t wingeom_control(int key); +extern uint8_t winkeyb_control(int key); -/* Call by "key" game / window management actions that don't influence the - * player character. If the "quit" action is called, return 1 (instead of +/* Call by "key" further game / window management actions that don't influence + * the player character. If the "quit" action is called, return 1 (instead of * exiting directly). */ -extern uint8_t meta_control(int key, struct World * world); +extern uint8_t meta_control(int key);