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-19 20:23:11 +00:00
|
|
|
#include <pthread.h>
|
2024-04-30 21:41:31 +00:00
|
|
|
#include "fumocommon.h"
|
2024-04-25 20:08:24 +00:00
|
|
|
#include "ringbuffer.h"
|
2024-03-25 05:34:59 +00:00
|
|
|
|
2024-04-18 05:04:44 +00:00
|
|
|
#define IO_BUF_SIZE 16
|
2024-04-23 20:33:32 +00:00
|
|
|
#define STR_BUF_SIZE (IO_BUF_SIZE * 4)
|
2024-03-26 20:11:58 +00:00
|
|
|
|
2024-04-30 21:41:31 +00:00
|
|
|
|
2024-04-18 05:04:44 +00:00
|
|
|
enum InputType {
|
|
|
|
BUTTON,
|
|
|
|
AXIS,
|
|
|
|
JOYSTICK,
|
|
|
|
ESCAPE
|
2024-04-10 20:05:56 +00:00
|
|
|
};
|
|
|
|
|
2024-04-18 05:04:44 +00:00
|
|
|
struct Button {
|
|
|
|
u64 value;
|
|
|
|
};
|
2024-04-30 21:41:31 +00:00
|
|
|
|
2024-04-18 05:04:44 +00:00
|
|
|
struct Axis {
|
|
|
|
i64 value;
|
|
|
|
};
|
2024-04-30 21:41:31 +00:00
|
|
|
|
2024-04-18 05:04:44 +00:00
|
|
|
struct Joystick {
|
|
|
|
i32 x;
|
|
|
|
i32 y;
|
|
|
|
};
|
2024-04-19 06:38:45 +00:00
|
|
|
|
2024-04-18 05:04:44 +00:00
|
|
|
union InputData {
|
2024-05-10 07:38:08 +00:00
|
|
|
struct Button but;
|
|
|
|
struct Axis axis;
|
|
|
|
struct Joystick js;
|
2024-04-18 05:04:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct InputRecord {
|
2024-05-07 03:29:10 +00:00
|
|
|
nsec time;
|
2024-04-18 05:04:44 +00:00
|
|
|
|
2024-05-10 07:38:08 +00:00
|
|
|
union InputData data;
|
2024-04-18 21:20:44 +00:00
|
|
|
|
2024-05-10 07:38:08 +00:00
|
|
|
u16 code;
|
2024-05-09 05:32:58 +00:00
|
|
|
u16 type;
|
2024-04-23 20:33:32 +00:00
|
|
|
|
2024-05-10 07:38:08 +00:00
|
|
|
bool is_down;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct InputAxis {
|
|
|
|
nsec last_pressed;
|
|
|
|
nsec last_released;
|
|
|
|
|
|
|
|
union InputData data;
|
|
|
|
|
|
|
|
u16 type;
|
|
|
|
|
2024-05-09 05:32:58 +00:00
|
|
|
bool is_down;
|
|
|
|
bool is_held;
|
|
|
|
bool is_up;
|
2024-04-23 20:33:32 +00:00
|
|
|
};
|
2024-04-18 21:20:44 +00:00
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
struct RecordBuffer {
|
|
|
|
struct RingBufferHead head;
|
|
|
|
struct InputRecord buf[IO_BUF_SIZE];
|
|
|
|
};
|
2024-04-23 20:33:32 +00:00
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
struct StringBuffer {
|
|
|
|
struct RingBufferHead head;
|
|
|
|
char buf[STR_BUF_SIZE];
|
2024-04-18 05:04:44 +00:00
|
|
|
};
|
|
|
|
|
2024-04-29 20:01:48 +00:00
|
|
|
struct InputHandle {
|
2024-05-02 22:17:37 +00:00
|
|
|
struct RecordBuffer recs;
|
|
|
|
struct StringBuffer str;
|
2024-04-19 20:23:11 +00:00
|
|
|
|
|
|
|
pthread_t thread;
|
|
|
|
pthread_mutex_t mutex;
|
2024-04-29 20:01:48 +00:00
|
|
|
pthread_cond_t is_consumed;
|
2024-04-19 20:23:11 +00:00
|
|
|
|
|
|
|
int err;
|
|
|
|
bool is_terminating;
|
|
|
|
};
|
|
|
|
|
2024-05-08 22:07:31 +00:00
|
|
|
|
|
|
|
extern RingBufferT IO_BUF_T;
|
|
|
|
extern RingBufferT STR_BUF_T;
|
|
|
|
|
|
|
|
|
2024-05-07 22:10:15 +00:00
|
|
|
bool CreateInputThread(struct InputHandle *hand);
|
2024-04-19 20:23:11 +00:00
|
|
|
|
2024-05-08 22:07:31 +00:00
|
|
|
bool JoinInputThread(struct InputHandle *hand);
|
2024-04-29 20:01:48 +00:00
|
|
|
|
|
|
|
bool InputAquire(struct InputHandle *hand);
|
|
|
|
|
2024-04-30 21:41:31 +00:00
|
|
|
bool InputRelease(struct InputHandle *hand);
|
|
|
|
|
2024-05-02 22:17:37 +00:00
|
|
|
size_t InputString(struct InputHandle *hand, size_t n, char *buf);
|