forked from jupyter-xeus/cpp-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.cpp
128 lines (120 loc) · 4.02 KB
/
menu.cpp
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
#include "cpp-terminal/color.hpp"
#include "cpp-terminal/exception.hpp"
#include "cpp-terminal/input.hpp"
#include "cpp-terminal/io.hpp"
#include "cpp-terminal/key.hpp"
#include "cpp-terminal/screen.hpp"
#include "cpp-terminal/style.hpp"
#include "cpp-terminal/terminal.hpp"
#include "cpp-terminal/tty.hpp"
void render(int rows, int cols, int menuheight, int menuwidth, int menupos)
{
Term::terminal << Term::clear_screen() << std::flush;
std::string scr;
scr.reserve(16 * 1024);
scr.append(Term::cursor_move(1, 1));
int menux0 = (cols - menuwidth) / 2;
int menuy0 = (rows - menuheight) / 2;
for(int j = 1; j <= menuy0; j++) { scr.append("\n"); }
for(int j = 1; j <= menux0; j++) { scr.append(" "); }
scr.append("┌");
for(int j = 1; j <= menuwidth; j++) { scr.append("─"); }
scr.append("┐");
scr.append(" \n");
for(int i = 1; i <= menuheight; i++)
{
for(int j = 1; j <= menux0; j++) { scr.append(" "); }
scr.append("│");
if(i == menupos)
{
scr.append(Term::color_fg(Term::Color::Name::Red));
scr.append(Term::color_bg(Term::Color::Name::Gray));
scr.append(Term::style(Term::Style::BOLD));
}
else
{
scr.append(Term::color_fg(Term::Color::Name::Blue));
scr.append(Term::color_bg(Term::Color::Name::Green));
}
std::string s = std::to_string(i) + ": item";
scr.append(s);
for(std::size_t j = 1; j <= menuwidth - s.size(); j++) { scr.append(" "); }
scr.append(Term::color_bg(Term::Color::Name::Default));
scr.append(Term::color_fg(Term::Color::Name::Default));
scr.append(Term::style(Term::Style::RESET));
scr.append("│");
scr.append(" \n");
}
for(int j = 1; j <= menux0; j++) { scr.append(" "); }
scr.append("└");
for(int j = 1; j <= menuwidth; j++) { scr.append("─"); }
scr.append("┘");
scr.append(" \n");
scr.append(Term::cursor_move(menuy0 + menuheight + 5, 1));
scr.append("Selected item: " + std::to_string(menupos) + " \n");
scr.append("Menu width: " + std::to_string(menuwidth) + " \n");
scr.append("Menu height: " + std::to_string(menuheight) + " \n");
Term::terminal << scr << std::flush;
}
int main()
{
try
{
// check if the terminal is capable of handling input
Term::terminal.setOptions(Term::Option::ClearScreen, Term::Option::NoSignalKeys, Term::Option::NoCursor, Term::Option::Raw);
if(!Term::is_stdin_a_tty()) throw Term::Exception("The terminal is not attached to a TTY and therefore can't catch user input. Exiting...");
Term::Screen term_size = Term::screen_size();
int pos = 5;
int h = 10;
std::size_t w{10};
bool on = true;
while(on)
{
render(term_size.rows(), term_size.columns(), h, w, pos);
Term::Event event = Term::read_event();
switch(event.type())
{
case Term::Event::Type::Key:
switch(Term::Key(event))
{
case Term::Key::ARROW_LEFT:
if(w > 10) w--;
break;
case Term::Key::ARROW_RIGHT:
if(w < (term_size.columns() - 5)) w++;
break;
case Term::Key::ARROW_UP:
if(pos > 1) pos--;
break;
case Term::Key::ARROW_DOWN:
if(pos < h) pos++;
break;
case Term::Key::HOME: pos = 1; break;
case Term::Key::END: pos = h; break;
case Term::Key::q:
case Term::Key::ESC:
case Term::Key::CTRL_C: on = false; break;
default: break;
}
break;
case Term::Event::Type::Screen:
term_size = Term::Screen(event);
Term::terminal << Term::clear_screen() << std::flush;
render(term_size.rows(), term_size.columns(), h, w, pos);
break;
default: break;
}
}
}
catch(const Term::Exception& re)
{
Term::terminal << "cpp-terminal error: " << re.what() << std::endl;
return 2;
}
catch(...)
{
Term::terminal << "Unknown error." << std::endl;
return 1;
}
return 0;
}