Fumofumotris/source/fumoengine/input/ctrl.h

60 lines
996 B
C
Raw Normal View History

2024-03-25 05:34:59 +00:00
#pragma once
2024-05-08 22:07:31 +00:00
#include "dictionary.h"
2024-04-30 21:41:31 +00:00
#include "fumocommon.h"
2024-04-18 05:04:44 +00:00
#include "input.h"
2024-04-16 22:14:53 +00:00
2024-04-30 21:41:31 +00:00
2024-05-08 22:07:31 +00:00
struct ControlMapping {
u16 code;
u16 bind;
u16 type;
};
2024-05-09 05:32:58 +00:00
struct InputAxis {
2024-05-07 03:29:10 +00:00
nsec last_pressed;
nsec last_released;
2024-04-11 19:57:22 +00:00
2024-03-25 05:34:59 +00:00
union {
2024-04-10 14:03:57 +00:00
struct Button but;
struct Axis axis;
struct Joystick js;
2024-04-11 19:57:22 +00:00
union InputData data;
2024-04-09 22:10:30 +00:00
};
2024-05-09 05:32:58 +00:00
u16 type;
2024-04-23 20:33:32 +00:00
2024-05-09 05:32:58 +00:00
bool is_down;
bool is_held;
bool is_up;
2024-03-25 05:34:59 +00:00
};
struct Controller {
2024-05-09 05:32:58 +00:00
struct InputAxis *pending[IO_BUF_SIZE];
usize pending_len;
struct InputAxis *axes;
usize axes_len;
2024-05-08 22:07:31 +00:00
struct Dictionary binds;
2024-05-02 22:17:37 +00:00
};
2024-03-25 05:34:59 +00:00
2024-05-02 22:17:37 +00:00
bool CreateController(struct Controller *ctrl);
2024-05-08 12:47:46 +00:00
2024-05-02 22:17:37 +00:00
void FreeController(struct Controller *ctrl);
2024-03-25 05:34:59 +00:00
2024-05-09 05:32:58 +00:00
struct InputAxis *ControllerMap(
2024-05-08 22:07:31 +00:00
struct Controller *ctrl,
struct ControlMapping *map
);
2024-04-19 06:38:45 +00:00
2024-05-07 22:10:15 +00:00
bool ControllerMapMulti(
struct Controller *ctrl,
2024-05-08 12:47:46 +00:00
usize n,
2024-05-08 22:07:31 +00:00
struct ControlMapping *maps,
2024-05-09 05:32:58 +00:00
struct InputAxis **axis_ptrs
2024-05-07 22:10:15 +00:00
);
2024-05-02 22:17:37 +00:00
void ControllerPoll(struct Controller *ctrl, struct RecordBuffer *recs);
2024-04-19 06:38:45 +00:00