2019-01-07 00:10:35 +08:00
|
|
|
#include "ftxui/component/event.hpp"
|
2019-06-23 23:47:33 +08:00
|
|
|
#include "ftxui/screen/string.hpp"
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
namespace ftxui {
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-06-23 23:47:33 +08:00
|
|
|
// static
|
|
|
|
Event Event::Character(const std::string& input) {
|
|
|
|
Event event;
|
|
|
|
event.input_ = input;
|
|
|
|
event.is_character_ = true;
|
|
|
|
event.character_ = to_wstring(input)[0];
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
Event Event::Character(char c) {
|
|
|
|
return Character(wchar_t(c));
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
Event Event::Character(wchar_t c) {
|
|
|
|
Event event;
|
|
|
|
event.input_ = {(char)c};
|
|
|
|
event.is_character_ = true;
|
|
|
|
event.character_ = c;
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
Event Event::Special(const std::string& input) {
|
|
|
|
Event event;
|
|
|
|
event.input_ = std::move(input);
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
Event ParseUTF8(std::function<char()>& getchar, std::string& input) {
|
|
|
|
if ((input[0] & 0b11000000) == 0b11000000)
|
|
|
|
input += getchar();
|
|
|
|
if ((input[0] & 0b11100000) == 0b11100000)
|
|
|
|
input += getchar();
|
|
|
|
if ((input[0] & 0b11110000) == 0b11110000)
|
|
|
|
input += getchar();
|
|
|
|
return Event::Character(input);
|
|
|
|
}
|
|
|
|
|
|
|
|
Event ParseCSI(std::function<char()> getchar, std::string& input) {
|
|
|
|
while (1) {
|
|
|
|
char c = getchar();
|
|
|
|
input += c;
|
|
|
|
|
|
|
|
if (c >= ' ' && c <= '/')
|
|
|
|
return Event::Special(input);
|
|
|
|
|
|
|
|
// Invalid ESC in CSI.
|
|
|
|
if (c == '\e')
|
|
|
|
return Event::Special(input);
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2019-06-23 23:47:33 +08:00
|
|
|
if (c >= '@' && c <= 'v')
|
|
|
|
return Event::Special(input);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Event ParseDCS(std::function<char()> getchar, std::string& input) {
|
|
|
|
// Parse until the string terminator ST.
|
|
|
|
while (1) {
|
|
|
|
input += getchar();
|
|
|
|
if (input.back() != '\e')
|
|
|
|
continue;
|
|
|
|
input += getchar();
|
|
|
|
if (input.back() != '\\')
|
|
|
|
continue;
|
|
|
|
return Event::Special(input);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Event ParseOSC(std::function<char()> getchar, std::string& input) {
|
|
|
|
// Parse until the string terminator ST.
|
|
|
|
while (1) {
|
|
|
|
input += getchar();
|
|
|
|
if (input.back() != '\e')
|
|
|
|
continue;
|
|
|
|
input += getchar();
|
|
|
|
if (input.back() != '\\')
|
|
|
|
continue;
|
|
|
|
return Event::Special(input);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Event ParseESC(std::function<char()> getchar, std::string& input) {
|
|
|
|
input += getchar();
|
|
|
|
switch (input.back()) {
|
|
|
|
case 'P':
|
|
|
|
return ParseDCS(getchar, input);
|
|
|
|
case '[':
|
|
|
|
return ParseCSI(getchar, input);
|
|
|
|
case ']':
|
|
|
|
return ParseOSC(getchar, input);
|
|
|
|
default:
|
|
|
|
input += getchar();
|
|
|
|
return Event::Special(input);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
Event Event::GetEvent(std::function<char()> getchar) {
|
|
|
|
std::string input;
|
|
|
|
input += getchar();
|
|
|
|
|
|
|
|
switch (input[0]) {
|
|
|
|
case 24: // CAN
|
|
|
|
case 26: // SUB
|
|
|
|
return Event(); // Ignored.
|
|
|
|
|
|
|
|
case 'P':
|
|
|
|
return ParseDCS(getchar, input);
|
|
|
|
|
|
|
|
case '\e':
|
|
|
|
return ParseESC(getchar, input);
|
|
|
|
}
|
|
|
|
|
2019-06-23 23:59:34 +08:00
|
|
|
if (input[0] >= 0 && input[0] < 32) // C0
|
2019-06-23 23:47:33 +08:00
|
|
|
return Event::Special(input);
|
|
|
|
|
|
|
|
return ParseUTF8(getchar, input);
|
2018-10-19 04:58:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- Arrow ---
|
2019-06-23 23:47:33 +08:00
|
|
|
Event Event::ArrowLeft = Event::Special("\e[D");
|
|
|
|
Event Event::ArrowRight = Event::Special("\e[C");
|
|
|
|
Event Event::ArrowUp = Event::Special("\e[A");
|
|
|
|
Event Event::ArrowDown = Event::Special("\e[B");
|
|
|
|
Event Event::Backspace = Event::Special({127});
|
|
|
|
Event Event::Delete = Event::Special("\e[3~");
|
|
|
|
Event Event::Escape = Event::Special("\e");
|
|
|
|
Event Event::Return = Event::Special({10});
|
|
|
|
Event Event::F1 = Event::Special("\e[OP");
|
|
|
|
Event Event::F2 = Event::Special("\e[OQ");
|
|
|
|
Event Event::F3 = Event::Special("\e[OR");
|
|
|
|
Event Event::F4 = Event::Special("\e[OS");
|
|
|
|
Event Event::F5 = Event::Special("\e[15~");
|
|
|
|
Event Event::F6 = Event::Special("\e[17~");
|
|
|
|
Event Event::F7 = Event::Special("\e[18~");
|
|
|
|
Event Event::F8 = Event::Special("\e[19~");
|
|
|
|
Event Event::F9 = Event::Special("\e[20~");
|
|
|
|
Event Event::F10 = Event::Special("\e[21~");
|
|
|
|
Event Event::F11 = Event::Special("\e[21~"); // Doesn't exist
|
|
|
|
Event Event::F12 = Event::Special("\e[24~");
|
|
|
|
Event Event::Custom = Event::Special({0});
|
|
|
|
|
|
|
|
} // namespace ftxui
|