btop/src/btop_input.cpp

102 lines
2.3 KiB
C++
Raw Normal View History

2021-05-09 06:37:36 +12:00
/* Copyright 2021 Aristocratos (jakob@qvantnet.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
indent = tab
tab-size = 4
*/
#include <string>
2021-05-29 12:32:36 +12:00
#include <robin_hood.h>
2021-05-09 06:37:36 +12:00
#include <iostream>
2021-06-20 08:48:31 +12:00
#include <btop_input.hpp>
#include <btop_tools.hpp>
2021-05-09 06:37:36 +12:00
2021-05-29 12:32:36 +12:00
using std::string, robin_hood::unordered_flat_map, std::cin;
using namespace Tools;
2021-05-09 06:37:36 +12:00
2021-05-15 04:54:37 +12:00
namespace Input {
namespace {
//* Map for translating key codes to readable values
2021-05-29 12:32:36 +12:00
const unordered_flat_map<string, string> Key_escapes = {
2021-05-15 04:54:37 +12:00
{"\033", "escape"},
{"\n", "enter"},
{" ", "space"},
{"\x7f", "backspace"},
{"\x08", "backspace"},
{"[A", "up"},
{"OA", "up"},
{"[B", "down"},
{"OB", "down"},
{"[D", "left"},
{"OD", "left"},
{"[C", "right"},
{"OC", "right"},
{"[2~", "insert"},
{"[3~", "delete"},
{"[H", "home"},
{"[F", "end"},
{"[5~", "page_up"},
{"[6~", "page_down"},
{"\t", "tab"},
{"[Z", "shift_tab"},
{"OP", "f1"},
{"OQ", "f2"},
{"OR", "f3"},
{"OS", "f4"},
{"[15~", "f5"},
{"[17~", "f6"},
{"[18~", "f7"},
{"[19~", "f8"},
{"[20~", "f9"},
{"[21~", "f10"},
{"[23~", "f11"},
{"[24~", "f12"}
};
}
2021-05-09 06:37:36 +12:00
string last = "";
2021-06-20 08:48:31 +12:00
bool poll(int timeout){
2021-05-15 04:54:37 +12:00
if (timeout < 1) return cin.rdbuf()->in_avail() > 0;
2021-06-05 11:41:24 +12:00
while (timeout > 0) {
2021-05-09 06:37:36 +12:00
if (cin.rdbuf()->in_avail() > 0) return true;
2021-06-05 11:41:24 +12:00
sleep_ms(timeout < 10 ? timeout : 10);
timeout -= 10;
2021-05-09 06:37:36 +12:00
}
return false;
}
2021-06-26 09:58:19 +12:00
string get(){
2021-05-09 10:18:51 +12:00
string key;
2021-06-22 08:52:55 +12:00
while (cin.rdbuf()->in_avail() > 0 and key.size() < 100) key += cin.get();
2021-06-26 09:58:19 +12:00
if (not key.empty()){
2021-05-09 06:37:36 +12:00
if (key.substr(0,2) == Fx::e) key.erase(0, 1);
if (Key_escapes.contains(key)) key = Key_escapes.at(key);
else if (ulen(key) > 1) key = "";
2021-05-15 04:54:37 +12:00
last = key;
2021-05-09 06:37:36 +12:00
}
return key;
}
2021-06-26 09:58:19 +12:00
string wait(){
2021-05-31 03:01:57 +12:00
while (cin.rdbuf()->in_avail() < 1) sleep_ms(10);
2021-06-26 09:58:19 +12:00
return get();
2021-05-31 03:01:57 +12:00
}
2021-05-15 04:54:37 +12:00
void clear(){
last.clear();
2021-05-09 06:37:36 +12:00
}
}