Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDekiInput.cpp
More file actions
Latest commit
180 lines (154 loc) · 3.64 KB
/
Copy pathDekiInput.cpp
File metadata and controls
180 lines (154 loc) · 3.64 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#include"DekiInput.h"
#include"DekiLogSystem.h"
// Static member definitions
std::map<std::string, std::unique_ptr<IDekiInput>> DekiInput::s_ActiveInputs;
std::vector<InputEventCallback> DekiInput::s_GlobalCallbacks;
bool DekiInput::initialized = false;
bool DekiInput::s_ShouldExit = false;
boolDekiInput::SetInput(std::unique_ptr<IDekiInput> input, const std::string& name)
{
if (!input)
{
DEKI_LOG_ERROR("DekiInput::SetInput: null input");
returnfalse;
}
// Check if already registered
if (s_ActiveInputs.find(name) != s_ActiveInputs.end())
{
DEKI_LOG_INTERNAL("Input package '%s' already registered", name.c_str());
returntrue;
}
// Register internal callback to distribute events
input->RegisterEventCallback([](const InputEvent& event) {
DistributeEvent(event);
});
// Store the input
s_ActiveInputs[name] = std::move(input);
initialized = true;
DEKI_LOG_INTERNAL("DekiInput: Input '%s' set", name.c_str());
returntrue;
}
voidDekiInput::Shutdown()
{
if (!initialized)
{
return;
}
// Shutdown all active inputs
for (auto& [name, input] : s_ActiveInputs)
{
if (input)
{
input->Shutdown();
}
}
s_ActiveInputs.clear();
s_GlobalCallbacks.clear();
initialized = false;
s_ShouldExit = false;
DEKI_LOG_INTERNAL("DekiInput shutdown");
}
IDekiInput* DekiInput::GetInput(const std::string& name)
{
auto it = s_ActiveInputs.find(name);
if (it != s_ActiveInputs.end())
{
return it->second.get();
}
returnnullptr;
}
voidDekiInput::RegisterEventCallback(const InputEventCallback& callback)
{
s_GlobalCallbacks.push_back(callback);
}
voidDekiInput::ClearEventCallbacks()
{
s_GlobalCallbacks.clear();
}
voidDekiInput::Update()
{
if (!initialized)
{
return;
}
// Update all active input packages
for (auto& [name, input] : s_ActiveInputs)
{
if (input && input->IsInitialized())
{
input->Update();
}
}
}
boolDekiInput::GetPointerPosition(int32_t* x, int32_t* y)
{
if (!initialized || !x || !y)
{
returnfalse;
}
// Try to get position from first available input
for (auto& [name, input] : s_ActiveInputs)
{
if (input && input->IsInitialized())
{
if (input->GetPointerPosition(x, y))
{
returntrue;
}
}
}
returnfalse;
}
boolDekiInput::IsKeyPressed(uint32_t key)
{
if (!initialized)
{
returnfalse;
}
// Check if key is pressed in any active input
for (auto& [name, input] : s_ActiveInputs)
{
if (input && input->IsInitialized())
{
if (input->IsKeyPressed(key))
{
returntrue;
}
}
}
returnfalse;
}
boolDekiInput::ShouldExit()
{
return s_ShouldExit;
}
voidDekiInput::SetShouldExit(bool exit)
{
s_ShouldExit = exit;
}
std::vector<std::string> DekiInput::GetActiveInputs()
{
std::vector<std::string> names;
for (constauto& [name, input] : s_ActiveInputs)
{
names.push_back(name);
}
return names;
}
voidDekiInput::DistributeEvent(const InputEvent& event)
{
// Handle APP_QUIT events
if (event.type == InputEventType::APP_QUIT)
{
s_ShouldExit = true;
DEKI_LOG_INTERNAL("DekiInput: APP_QUIT event received");
}
// Distribute event to all registered global callbacks
for (constauto& callback : s_GlobalCallbacks)
{
if (callback)
{
callback(event);
}
}
}