blob: f1685fd456b2614849e26efb78f93756b3076208 (
plain)
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
|
#include "input.hpp"
#include <unistd.h>
void InputHandler::listen() const noexcept
{
char character = 0;
while (read(STDIN_FILENO, &character, 1) == 1)
{
notify(character);
}
}
void InputHandler::attach(const char &key,
const std::shared_ptr<ICommand> &command) noexcept
{
auto key_index = _key_as_index(key);
_key_commands.at(key_index).push_back(command);
}
void InputHandler::notify(const char &key) const noexcept
{
auto key_index = _key_as_index(key);
for (const auto &command : _key_commands.at(key_index))
{
command->execute();
}
}
void InputHandler::enter_raw_mode() noexcept
{
if (_original_termios == nullptr)
{
_original_termios = std::make_shared<termios>();
}
tcgetattr(STDIN_FILENO, _original_termios.get());
auto raw_termios = termios(*_original_termios);
raw_termios.c_lflag &= static_cast<uint32_t>(~(ECHO | ICANON | ISIG));
tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw_termios);
}
void InputHandler::leave_raw_mode() noexcept
{
if (_original_termios == nullptr)
{
return;
}
tcsetattr(STDIN_FILENO, TCSAFLUSH, _original_termios.get());
_original_termios = nullptr;
}
InputHandler::_KeyCommandsSizeType InputHandler::_key_as_index(const char &key) noexcept
{
return static_cast<_KeyCommandsSizeType>(static_cast<uint8_t>(key));
}
|