#pragma once #include #include #include #include #include #include #include #include #include "fumotris.h" #define IO_BUF_SIZE 16 enum CtrlType { KEY, AXIS, JOYSTICK, ESCAPE }; struct CtrlRecord { u16 id; u8 type; union { struct { bool is_down; } key; struct { u64 value; } axis; struct { u32 x; u32 y; } joystick; } data; struct timespec timestamp; }; struct RecordBuffer { struct CtrlRecord records[IO_BUF_SIZE]; size_t count; pthread_mutex_t mutex; }; struct RecordBuffer NewInputBuffer(); struct Axis { union { struct { u32 value; u32 is_down : 1; u32 is_up : 1; } key; struct { u64 value; } axis; struct { u32 x; u32 y; } joystick; } data; struct timespec last_pressed; struct timespec last_released; }; enum CtrlCode { LEFT, RIGHT, SOFT_DROP, HARD_DROP, ROTATE_CCW, ROTATE_CW, ROTATE_180, SWAP, ESC, VSCROLL, HSCROLL, MOUSE }; typedef u32 hashtype; struct bkt { hashtype hash; u16 value; u8 type; struct Axis *axis; }; struct dict { size_t capacity; size_t filled; struct bkt *bkts; }; struct Ctrl { struct dict codes; struct dict binds; pthread_t thread; pthread_mutex_t mutex; }; typedef struct Ctrl Ctrl; Ctrl NewCtrl(struct dict *codes, struct dict *binds, struct Axis *axes); bool CtrlMap(Ctrl *ctrl, u16f code, u16f bind, u8f type); struct Axis *CtrlGet(Ctrl *ctrl, u16f code, u8f type); bool CtrlPoll(Ctrl *ctrl, struct RecordBuffer *buf);