-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.c
79 lines (61 loc) · 1.77 KB
/
input.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
* Melon Software Framework is Copyright (C) 2021 - 2025 Knot126
*
* =============================================================================
*
* Input event processing
*/
#include "memory.h"
#include "time.h"
#include "input.h"
void DgInputInit(DgInput *this) {
/**
* Initialise input state
*/
this->repeatTime = 0.7f;
for (size_t i = 0; i < 128; i++) {
this->key_press_time[i] = DG_INPUT_NOT_PRESSED_TIME;
}
memset(this->key_pressed, 0, 128);
}
void DgInputFrame(DgInput *this) {
/**
* Update the state per frame
*/
memset(this->key_pressed, 0, 128);
}
void DgInputKeyPressEvent(DgInput *this, uint32_t codepoint) {
/**
* Register a key press event
*/
if (codepoint < 128) {
this->key_press_time[codepoint] = DgRealTime();
this->key_pressed[codepoint] = true;
}
}
void DgInputKeyReleaseEvent(DgInput *this, uint32_t codepoint) {
/**
* Register a key release event
*/
if (codepoint < 128) {
this->key_press_time[codepoint] = DG_INPUT_NOT_PRESSED_TIME;
}
}
bool DgInputIsKeyDown(DgInput *this, uint32_t codepoint) {
return this->key_press_time[codepoint] > 0.0f;
}
bool DgInputIsKeyUp(DgInput *this, uint32_t codepoint) {
return this->key_press_time[codepoint] == DG_INPUT_NOT_PRESSED_TIME;
}
DgInputStatus DgInputIsKeyPressedEx(DgInput *this, uint32_t codepoint, bool consume, bool repeat, double repeatTime) {
if (this->key_pressed[codepoint] == true) {
if (consume) {
this->key_pressed[codepoint] = false;
}
return DG_INPUT_TRUE;
}
return (repeat && (DgRealTime() > this->key_press_time[codepoint] + repeatTime)) ? DG_INPUT_REPEATED : DG_INPUT_FALSE;
}
bool DgInputIsKeyPressed(DgInput *this, uint32_t codepoint) {
return DgInputIsKeyPressedEx(this, codepoint, true, true, this->repeatTime) != DG_INPUT_FALSE;
}