2019-11-30 14:48:36 +00:00
|
|
|
#include "th04/hardware/inputvar.h"
|
|
|
|
|
|
|
|
// Resets and updates [key_det].
|
|
|
|
void input_reset_sense();
|
|
|
|
|
|
|
|
// ORs the current keyboard and joystick state into [key_det], and sets
|
|
|
|
// [shiftkey].
|
|
|
|
void input_sense();
|
|
|
|
|
2019-11-29 22:57:35 +00:00
|
|
|
// Input sense function used in UIs
|
|
|
|
#define input_reset_sense_interface input_reset_sense
|
|
|
|
|
2019-11-30 14:48:36 +00:00
|
|
|
// Waits ≥1 frames for all held inputs to be released, then waits the given
|
|
|
|
// number of [frames] for an input to be pressed. Set [frames] to 0 or 9999
|
|
|
|
// to wait forever.
|
|
|
|
void pascal input_wait_for_change(int frames);
|