mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
103 lines
2.9 KiB
C++
103 lines
2.9 KiB
C++
#include "console/Console.hpp"
|
|
#include "console/EventHandlers.hpp"
|
|
#include "console/Screen.hpp"
|
|
#include "event/Event.hpp"
|
|
#include <cstdint>
|
|
|
|
void PasteInInputLine(const char* inputLine);
|
|
void ResetHighlight();
|
|
void SetHighlightState(HIGHLIGHTSTATE state);
|
|
|
|
namespace {
|
|
|
|
int32_t OnChar(const EVENT_DATA_CHAR* data, void* param) {
|
|
if (EventIsKeyDown(ConsoleGetHotKey()) && ConsoleAccessGetEnabled()) {
|
|
return 0;
|
|
}
|
|
|
|
if (!ConsoleGetActive()) {
|
|
return 1;
|
|
}
|
|
|
|
char inputLine[2];
|
|
inputLine[0] = data->ch;
|
|
inputLine[1] = '\0';
|
|
|
|
PasteInInputLine(inputLine);
|
|
|
|
ResetHighlight();
|
|
|
|
return 0;
|
|
}
|
|
|
|
int32_t OnIdle(const EVENT_DATA_IDLE* data, void* param) {
|
|
// TODO repeat buffer logic
|
|
|
|
ConsoleScreenAnimate(data->elapsedSec);
|
|
|
|
return 1;
|
|
}
|
|
|
|
int32_t OnKeyDown(const EVENT_DATA_KEY* data, void* param) {
|
|
if (data->key == ConsoleGetHotKey() && ConsoleAccessGetEnabled()) {
|
|
// Toggle the console on/off if the console hotkey is pressed down
|
|
// and the console access is enabled for the client
|
|
ConsoleSetActive(!ConsoleGetActive());
|
|
|
|
// Reset the highlight when toggled off
|
|
if (!ConsoleGetActive()) {
|
|
ResetHighlight();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
if (EventIsKeyDown(ConsoleGetHotKey()) || !ConsoleGetActive()) {
|
|
return 1;
|
|
}
|
|
|
|
// TODO handle other keys
|
|
|
|
return 0;
|
|
}
|
|
|
|
int32_t OnKeyDownRepeat(const EVENT_DATA_KEY* data, void* param) {
|
|
// TODO
|
|
return 1;
|
|
}
|
|
|
|
int32_t OnKeyUp(const EVENT_DATA_KEY* data, void* param) {
|
|
return (data->key != ConsoleGetHotKey() || !ConsoleAccessGetEnabled()) && !ConsoleGetActive();
|
|
}
|
|
|
|
int32_t OnMouseDown(const EVENT_DATA_MOUSE* data, void* param) {
|
|
// TODO
|
|
return 1;
|
|
}
|
|
|
|
int32_t OnMouseMove(const EVENT_DATA_MOUSE* data, void* param) {
|
|
// TODO
|
|
return 1;
|
|
}
|
|
|
|
int32_t OnMouseUp(const EVENT_DATA_MOUSE* data, void* param) {
|
|
if (!EventIsKeyDown(ConsoleGetHotKey()) && ConsoleGetActive()) {
|
|
SetHighlightState(HS_ENDHIGHLIGHT);
|
|
ConsoleSetResizeState(CS_NONE);
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
}
|
|
|
|
void RegisterHandlers() {
|
|
EventRegisterEx(EVENT_ID_CHAR, reinterpret_cast<EVENTHANDLERFUNC>(OnChar), nullptr, 7.0f);
|
|
EventRegisterEx(EVENT_ID_IDLE, reinterpret_cast<EVENTHANDLERFUNC>(OnIdle), nullptr, 7.0f);
|
|
EventRegisterEx(EVENT_ID_KEYDOWN, reinterpret_cast<EVENTHANDLERFUNC>(OnKeyDown), nullptr, 7.0f);
|
|
EventRegisterEx(EVENT_ID_KEYUP, reinterpret_cast<EVENTHANDLERFUNC>(OnKeyUp), nullptr, 7.0f);
|
|
EventRegisterEx(EVENT_ID_KEYDOWN_REPEATING, reinterpret_cast<EVENTHANDLERFUNC>(OnKeyDownRepeat), nullptr, 7.0f);
|
|
EventRegisterEx(EVENT_ID_MOUSEDOWN, reinterpret_cast<EVENTHANDLERFUNC>(OnMouseDown), nullptr, 7.0f);
|
|
EventRegisterEx(EVENT_ID_MOUSEUP, reinterpret_cast<EVENTHANDLERFUNC>(OnMouseUp), nullptr, 7.0f);
|
|
EventRegisterEx(EVENT_ID_MOUSEMOVE, reinterpret_cast<EVENTHANDLERFUNC>(OnMouseMove), nullptr, 7.0f);
|
|
}
|