2024-04-18 21:20:44 +00:00
|
|
|
#include "ctrl.h"
|
2024-04-29 20:01:48 +00:00
|
|
|
#include "ringbuffer.h"
|
|
|
|
|
2024-04-19 20:23:11 +00:00
|
|
|
#define INIT_SIZE 16
|
|
|
|
|
2024-04-30 21:41:31 +00:00
|
|
|
|
2024-05-08 22:07:31 +00:00
|
|
|
DictT CODES_T = DICT_T(struct ControlAxis);
|
|
|
|
DictT BINDS_T = DICT_T(struct ControlAxis *);
|
|
|
|
|
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
bool CreateController(struct Controller *ctrl)
|
2024-03-25 05:34:59 +00:00
|
|
|
{
|
2024-05-08 22:07:31 +00:00
|
|
|
if (!CreateDictionary(CODES_T, &ctrl->codes))
|
|
|
|
return false;
|
2024-04-09 07:00:48 +00:00
|
|
|
|
2024-05-08 22:07:31 +00:00
|
|
|
if (!CreateDictionary(BINDS_T, &ctrl->binds))
|
2024-04-09 07:00:48 +00:00
|
|
|
return false;
|
|
|
|
|
2024-05-08 22:07:31 +00:00
|
|
|
*ctrl = (struct Controller) { .pending.len = 0 };
|
|
|
|
|
2024-04-09 07:00:48 +00:00
|
|
|
return true;
|
2024-03-25 05:34:59 +00:00
|
|
|
}
|
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
void FreeController(struct Controller *ctrl)
|
2024-04-09 07:00:48 +00:00
|
|
|
{
|
2024-05-08 22:07:31 +00:00
|
|
|
FreeDictionary(&ctrl->codes);
|
|
|
|
FreeDictionary(&ctrl->binds);
|
2024-03-25 05:34:59 +00:00
|
|
|
}
|
|
|
|
|
2024-05-08 12:47:46 +00:00
|
|
|
struct ControlAxis *find_axis(struct ctrl_dict *dict, union InputID id)
|
2024-03-25 05:34:59 +00:00
|
|
|
{
|
2024-04-18 21:20:44 +00:00
|
|
|
struct ctrl_bkt *bkt = find(dict, id);
|
2024-04-01 22:39:21 +00:00
|
|
|
if (bkt == nullptr)
|
|
|
|
return nullptr;
|
2024-03-25 05:34:59 +00:00
|
|
|
|
2024-04-01 22:39:21 +00:00
|
|
|
return bkt->axis;
|
2024-03-25 05:34:59 +00:00
|
|
|
}
|
|
|
|
|
2024-05-08 22:07:31 +00:00
|
|
|
struct ControlAxis *ControllerMap(
|
|
|
|
struct Controller *ctrl,
|
|
|
|
struct ControlMapping *map
|
|
|
|
) {
|
|
|
|
struct ControlAxis *axis = DictionarySet(CODES_T, &ctrl->codes, map->code);
|
|
|
|
struct ctrl_bkt *bind_bkt = set(&ctrl->binds, map->bind, map->type);
|
2024-04-01 22:39:21 +00:00
|
|
|
|
2024-04-18 21:20:44 +00:00
|
|
|
if (code_bkt->axis == nullptr)
|
|
|
|
code_bkt->axis = &ctrl->axis_vec.axes[ctrl->axis_vec.len++];
|
|
|
|
else if (code_bkt->axis == bind_bkt->axis)
|
2024-05-08 22:07:31 +00:00
|
|
|
return nullptr;
|
2024-04-01 22:39:21 +00:00
|
|
|
|
|
|
|
bind_bkt->axis = code_bkt->axis;
|
2024-05-08 22:07:31 +00:00
|
|
|
code_bkt->axis->id.type = map->type;
|
2024-05-08 12:47:46 +00:00
|
|
|
|
2024-05-08 22:07:31 +00:00
|
|
|
return code_bkt->axis;
|
2024-03-25 05:34:59 +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,
|
|
|
|
struct ControlAxis **axis_ptrs
|
2024-05-07 22:10:15 +00:00
|
|
|
) {
|
2024-05-08 12:47:46 +00:00
|
|
|
for (usize i = 0; i < n; i++) {
|
2024-05-08 22:07:31 +00:00
|
|
|
struct ControlAxis *axis = ControllerMap(ctrl, maps + i);
|
2024-05-08 12:47:46 +00:00
|
|
|
|
2024-05-08 22:07:31 +00:00
|
|
|
if (axis == nullptr)
|
2024-05-07 22:10:15 +00:00
|
|
|
return false;
|
2024-05-08 22:07:31 +00:00
|
|
|
|
|
|
|
axis_ptrs[i] = axis;
|
2024-05-07 22:10:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-05-08 12:47:46 +00:00
|
|
|
struct ControlAxis *ControllerGet(struct Controller *ctrl, u16f code, u16f type)
|
2024-03-25 05:34:59 +00:00
|
|
|
{
|
2024-04-29 20:01:48 +00:00
|
|
|
struct ctrl_bkt *code_bkt = find(&ctrl->codes, as_id(code, type));
|
2024-03-25 05:34:59 +00:00
|
|
|
if (code_bkt == nullptr)
|
|
|
|
return nullptr;
|
|
|
|
|
2024-04-01 22:39:21 +00:00
|
|
|
return code_bkt->axis;
|
2024-03-25 05:34:59 +00:00
|
|
|
}
|
|
|
|
|
2024-05-08 12:47:46 +00:00
|
|
|
void dispatch_update(struct ControlAxis *axis, struct InputRecord *rec)
|
2024-03-25 05:34:59 +00:00
|
|
|
{
|
2024-04-11 19:57:22 +00:00
|
|
|
if (rec->is_down and !axis->is_held) {
|
|
|
|
axis->is_down = true;
|
|
|
|
axis->is_held = true;
|
2024-04-18 21:20:44 +00:00
|
|
|
axis->last_pressed = rec->time;
|
2024-04-11 19:57:22 +00:00
|
|
|
} else if (rec->is_up) {
|
|
|
|
axis->is_up = true;
|
|
|
|
axis->is_held = false;
|
2024-04-18 21:20:44 +00:00
|
|
|
axis->last_released = rec->time;
|
2024-04-09 22:10:30 +00:00
|
|
|
}
|
|
|
|
|
2024-04-11 19:57:22 +00:00
|
|
|
axis->data = rec->data;
|
2024-03-25 05:34:59 +00:00
|
|
|
}
|
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
void ControllerPoll(struct Controller *ctrl, struct RecordBuffer *recs)
|
2024-03-25 05:34:59 +00:00
|
|
|
{
|
2024-05-08 22:07:31 +00:00
|
|
|
for (usize i = 0; i < ctrl->pending.len; i++) {
|
|
|
|
struct ControlAxis *axis = ctrl->pending.buf[i];
|
2024-04-10 14:03:57 +00:00
|
|
|
|
2024-04-11 19:57:22 +00:00
|
|
|
axis->is_up = false;
|
|
|
|
axis->is_down = false;
|
2024-04-10 14:03:57 +00:00
|
|
|
}
|
2024-05-06 05:52:30 +00:00
|
|
|
|
2024-05-08 22:07:31 +00:00
|
|
|
ctrl->pending.len = 0;
|
2024-05-02 22:17:37 +00:00
|
|
|
|
2024-05-08 12:47:46 +00:00
|
|
|
for (usize i = 0; i < recs->head.len; i++) {
|
2024-04-30 21:41:31 +00:00
|
|
|
struct InputRecord *rec = &recs->buf[i];
|
2024-04-11 19:57:22 +00:00
|
|
|
|
2024-05-08 12:47:46 +00:00
|
|
|
struct ControlAxis *axis = find_axis(&ctrl->binds, rec->id);
|
2024-04-01 22:39:21 +00:00
|
|
|
if (axis == nullptr)
|
|
|
|
continue;
|
|
|
|
|
2024-04-11 19:57:22 +00:00
|
|
|
dispatch_update(axis, rec);
|
2024-05-08 22:07:31 +00:00
|
|
|
ctrl->pending.buf[ctrl->pending.len++] = axis;
|
2024-04-11 19:57:22 +00:00
|
|
|
}
|
2024-04-22 22:13:13 +00:00
|
|
|
|
2024-04-30 21:41:31 +00:00
|
|
|
recs->head.len = 0;
|
2024-04-11 19:57:22 +00:00
|
|
|
}
|
|
|
|
|
2024-04-19 20:23:11 +00:00
|
|
|
/*int main()
|
2024-04-11 19:57:22 +00:00
|
|
|
{
|
|
|
|
struct Controller ctrl;
|
2024-05-02 22:17:37 +00:00
|
|
|
if (!CreateController(&ctrl))
|
2024-04-11 19:57:22 +00:00
|
|
|
return 1;
|
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
ControllerMap(&ctrl, 123, 111, BUTTON);
|
|
|
|
ControllerMap(&ctrl, 0, 8, BUTTON);
|
2024-04-11 19:57:22 +00:00
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
struct RecordBuffer recs = { .head.len = 0, .head.start = 0 };
|
|
|
|
|
|
|
|
recs.buf[recs.head.len++] = (struct InputRecord) {
|
|
|
|
.but.value = 69,
|
|
|
|
|
2024-04-11 19:57:22 +00:00
|
|
|
.is_down = true,
|
2024-05-02 22:17:37 +00:00
|
|
|
|
|
|
|
.id.bind = 111,
|
|
|
|
.id.type = BUTTON
|
2024-04-11 19:57:22 +00:00
|
|
|
};
|
2024-05-02 22:17:37 +00:00
|
|
|
recs.buf[recs.head.len++] = (struct InputRecord) {
|
|
|
|
.but.value = 1000,
|
|
|
|
|
2024-04-18 21:20:44 +00:00
|
|
|
.is_down = true,
|
2024-05-02 22:17:37 +00:00
|
|
|
|
|
|
|
.id.bind = 8,
|
|
|
|
.id.type = BUTTON
|
2024-04-18 21:20:44 +00:00
|
|
|
};
|
2024-04-11 19:57:22 +00:00
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
ControllerPoll(&ctrl, &recs);
|
2024-04-11 19:57:22 +00:00
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
struct InputAxis *a = ControllerGet(&ctrl, 123, BUTTON);
|
2024-04-11 19:57:22 +00:00
|
|
|
printf("%u\n", a->but.value);
|
2024-04-18 21:20:44 +00:00
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
struct InputAxis *b = ControllerGet(&ctrl, 0, BUTTON);
|
2024-04-18 21:20:44 +00:00
|
|
|
printf("%u\n", b->but.value);
|
2024-04-11 19:57:22 +00:00
|
|
|
|
|
|
|
printf("success");
|
|
|
|
return 0;
|
2024-04-19 20:23:11 +00:00
|
|
|
}*/
|