-
Notifications
You must be signed in to change notification settings - Fork 0
/
console.cpp
266 lines (253 loc) · 9.82 KB
/
console.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
//Copyright © 2023 Charles Kerr. All rights reserved.
#include "console.hpp"
#include <iostream>
#include <stdexcept>
#if defined(_WIN32)
#include <windows.h>
#endif
#include "strutil.hpp"
using namespace std::string_literals ;
//=========================================================================================
namespace util{
namespace console {
//=========================================================================================
auto moveCursorBy(direction_t direction,int amount) ->std::string{
const auto command = "\x1b[%i%s"s ;
auto cmd = "A"s;
switch (direction) {
case direction_t::up:{
cmd = "A"s;
break;
}
case direction_t::down:{
cmd = "B"s;
break;
}
case direction_t::forward:{
cmd = "C"s;
break;
}
case direction_t::backward:{
cmd = "D"s;
break;
}
}
return util::format(command,amount,cmd.c_str());
}
//=========================================================================================
auto setCursorTo(int row, int col) ->std::string {
const auto command = "\x1b[%i;%iH"s ;
return util::format(command,row,col);
}
//=========================================================================================
auto setCursorTo(axis_t axis, int position) ->std::string {
const auto command = "\x1b[%i%s"s;
auto cmd = "G"s ;
if (axis == axis_t::vertical){
cmd = "d"s;
}
return util::format(command,position,cmd.c_str());
}
//=========================================================================================
auto saveCursorPosition() ->std::string {
return "\x1b[s"s ;
}
//=========================================================================================
auto restoreCursorPosition()->std::string{
return "\x1b[u"s ;
}
//=========================================================================================
auto enableBlinking(bool state)->std::string{
auto cmd = "\x1b[?12h"s;
if (!state){
cmd = "\x1b[?12l"s;
}
return cmd ;
}
//=========================================================================================
auto hideCusor(bool state)->std::string{
auto cmd = "\x1b[?25h"s;
if (!state){
cmd = "\x1b[?25l"s;
}
return cmd ;
}
//=========================================================================================
auto setCursorShape(shape_t shape,bool blinking) ->std::string{
auto cmd = std::string();
switch(shape){
case shape_t::user:{
cmd = "\0x1b[0 q"s;
break;
}
case shape_t::block:{
cmd = "\0x1b[2 q"s;
if (blinking){
cmd = "\0x1b[1 q"s;
}
break;
}
case shape_t::underline:{
cmd = "\0x1b[4 q"s;
if (blinking){
cmd = "\0x1b[3 q"s;
}
break;
}
case shape_t::bar:{
cmd = "\0x1b[6 q"s;
if (blinking){
cmd = "\0x1b[5 q"s;
}
break;
}
}
return cmd ;
}
//=========================================================================================
auto scrollUp(int amount) ->std::string {
const auto cmd = "\x1b[%iS"s;
return util::format(cmd, amount);
}
//=========================================================================================
auto scrollDown(int amount) ->std::string {
const auto cmd = "\x1b[%iT"s;
return util::format(cmd, amount);
}
//=========================================================================================
auto insertCharacter(int amount ) ->std::string {
const auto cmd = "\x1b[%i@"s ;
return util::format(cmd,amount) ;
}
//=========================================================================================
auto deleteCharacter(int amount ) ->std::string {
const auto cmd = "\x1b[%iP"s ;
return util::format(cmd,amount) ;
}
//=========================================================================================
auto eraseCharacter(int amount ) ->std::string {
const auto cmd = "\x1b[%iX"s ;
return util::format(cmd,amount) ;
}
//=========================================================================================
auto insertLine(int amount ) ->std::string {
const auto cmd = "\x1b[%iL"s ;
return util::format(cmd,amount) ;
}
//=========================================================================================
auto deleteLine(int amount ) ->std::string {
const auto cmd = "\x1b[%iM"s ;
return util::format(cmd,amount) ;
}
//=========================================================================================
auto erase(scope_t scope,position_t position) -> std::string{
auto cmd = "\x1b[%i"s;
if (scope == scope_t::line){
cmd +="K"s;
}
else {
cmd +="J"s;
}
auto range = 0 ;
switch (position){
case position_t::beginning:{
range = 1;
break;
}
case position_t::end:{
range = 0 ;
break;
}
case position_t::entire:{
range = 2;
break;
}
}
return util::format(cmd,range);
}
//=========================================================================================
auto setAttribute(attr_t attr,bool enable) ->std::string {
const auto cmd = "\x1b[%im"s ;
auto value = 0 ;
switch(attr) {
case attr_t::normal:{
value = 0 ;
break;
}
case attr_t::bold:{
value = 22 ;
if (!enable){
value = 1 ;
}
break;
}
case attr_t::underline:{
value = 24 ;
if (!enable){
value = 4 ;
}
break;
}
case attr_t::inverse:{
value = 7 ;
if (!enable){
value = 27 ;
}
break;
}
}
return util::format(cmd,value) ;
}
//=========================================================================================
auto setColor(color_t color,bool bright,layer_t layer) ->std::string {
const auto cmd = "\x1b[%im"s ;
auto value = static_cast<int>(color) ;
if (layer == layer_t::background){
value += 10;
}
if (bright) {
value +=60 ;
}
return util::format(cmd,value);
}
//=========================================================================================
auto setScrollMargins(int top,int bottom) ->std::string {
const auto cmd ="\x1b[%i;%ir"s;
return util::format(cmd,top,bottom);
}
//=========================================================================================
auto setWindowTitle(const std::string &title) ->std::string {
const auto cmd ="\x1b]0;%s\x07"s;
return util::format(cmd,title.c_str());
}
//=========================================================================================
auto setBuffer(buffer_t buffer) ->std::string {
auto cmd = "\x1b[?1049l"s;
if (buffer == buffer_t::secondary){
cmd = "\x1b[?1049h"s ;
}
return cmd;
}
//=========================================================================================
auto resetConsole() ->std::string {
return "\x1b[!p"s ;
}
//=========================================================================================
auto setVirtualTerminal() ->void {
#if defined(_WIN32)
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
if (hOut == INVALID_HANDLE_VALUE){
throw std::runtime_error("Unable to obtain handle to set virtual terminal");
}
DWORD dwMode = 0;
if (!GetConsoleMode(hOut, &dwMode)){
throw std::runtime_error("Unable to obtain current mode to set virtual terminal");
}
dwMode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING;
if (!SetConsoleMode(hOut, dwMode)){
throw std::runtime_error("Unable to set virtual terminal");
}
#endif
}
}
}