Fumofumotris/source/fumoengine/input/ctrl.h

76 lines
1.3 KiB
C
Raw Normal View History

2024-03-25 05:34:59 +00:00
#pragma once
#include <iso646.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.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
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
};
union InputID id;
2024-04-23 20:33:32 +00:00
struct {
u8f is_down : 1;
u8f is_held : 1;
u8f is_up : 1;
};
2024-03-25 05:34:59 +00:00
};
2024-04-19 06:38:45 +00:00
struct ctrl_bkt {
struct InputAxis *axis;
2024-04-19 06:38:45 +00:00
union InputID id;
};
2024-04-10 14:03:57 +00:00
2024-04-19 06:38:45 +00:00
struct ctrl_dict {
struct ctrl_bkt *bkts;
u16f capacity;
u16f filled;
2024-04-01 22:39:21 +00:00
};
2024-03-25 05:34:59 +00:00
2024-04-19 06:38:45 +00:00
struct ctrl_axis_vec {
struct InputAxis *axes;
u16f size;
u16f len;
};
2024-04-10 14:03:57 +00:00
struct Controller {
2024-04-23 06:35:19 +00:00
struct {
struct InputAxis *axes[IO_BUF_SIZE];
u8f len;
} pending_buf;
2024-04-19 06:38:45 +00:00
struct ctrl_axis_vec axis_vec;
struct ctrl_dict codes;
struct ctrl_dict binds;
2024-03-25 05:34:59 +00:00
};
2024-05-02 22:17:37 +00:00
struct ControlBind {
int code;
u16 bind;
u16 type;
};
2024-03-25 05:34:59 +00:00
2024-05-02 22:17:37 +00:00
bool CreateController(struct Controller *ctrl);
void FreeController(struct Controller *ctrl);
2024-03-25 05:34:59 +00:00
2024-05-02 22:17:37 +00:00
bool ControllerMap(struct Controller *ctrl, u16f code, u16f bind, u16f type);
2024-04-19 06:38:45 +00:00
2024-05-02 22:17:37 +00:00
struct InputAxis *ControllerGet(struct Controller *ctrl, u16f code, u16f type);
2024-04-19 06:38:45 +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