2025-01-02 20:57:00 -05:00
|
|
|
#ifndef _FD_INPUT_
|
|
|
|
#define _FD_INPUT_
|
|
|
|
|
2025-01-03 20:58:02 -05:00
|
|
|
typedef struct Input Input;
|
|
|
|
|
|
|
|
#include <raylib.h>
|
2025-01-02 20:57:00 -05:00
|
|
|
#include "game.h"
|
2024-08-30 06:27:14 -04:00
|
|
|
#include "log.h"
|
2024-08-28 17:27:35 -04:00
|
|
|
#define INPUT_BUFFER_MAX_LENGTH 80
|
|
|
|
|
2025-01-03 20:58:02 -05:00
|
|
|
struct Input {
|
2025-01-03 21:24:56 -05:00
|
|
|
char command; // Don't move this
|
2024-08-28 17:27:35 -04:00
|
|
|
char input_buffer[INPUT_BUFFER_MAX_LENGTH];
|
|
|
|
int input_length;
|
2024-08-30 06:27:14 -04:00
|
|
|
Vector2 position;
|
|
|
|
Log *log;
|
2025-01-04 04:45:44 -05:00
|
|
|
Game *g;
|
2025-01-03 20:58:02 -05:00
|
|
|
};
|
2024-08-28 17:27:35 -04:00
|
|
|
|
|
|
|
void handle_pressed_keys(Input*);
|
2024-08-30 06:27:14 -04:00
|
|
|
void draw_text(Input*);
|
|
|
|
Input *create_input(Vector2);
|
2025-01-02 20:57:00 -05:00
|
|
|
void free_input(Input*);
|
|
|
|
|
|
|
|
#endif
|