-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterminal.cpp
More file actions
72 lines (60 loc) · 2 KB
/
Copy pathterminal.cpp
File metadata and controls
72 lines (60 loc) · 2 KB
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
// Copyright (c) 2024 Shaojie Li (shaojieli.nlp@gmail.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.
#include "./terminal.h"
#include "./define.h"
#ifdef _WIN32
#include <windows.h>
#else
#include <sys/ioctl.h>
#include <unistd.h>
#endif
#define CSI "\033["
void tc::move_to(int row, int col) {
std::cout << CSI << row << ";" << col << "H";
}
void tc::set_fore_color(int id) { std::cout << CSI << "38;5;" << id << "m"; }
void tc::set_back_color(int id) { std::cout << CSI << "48;5;" << id << "m"; }
void tc::clear_screen() { std::cout << CSI << "2J"; }
void tc::reset_color() { std::cout << CSI << "0m"; }
void tc::hide_cursor() { std::cout << CSI << "?25l"; }
void tc::show_cursor() { std::cout << CSI << "?25h"; }
tc::Size tc::terminal_size() {
#ifdef _WIN32
CONSOLE_SCREEN_BUFFER_INFO info{};
if (!GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &info)) {
return {};
}
return Size{info.srWindow.Bottom - info.srWindow.Top + 1,
info.srWindow.Right - info.srWindow.Left + 1};
#else
winsize size{};
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size) == -1) {
return {};
}
return Size{static_cast<int>(size.ws_row), static_cast<int>(size.ws_col)};
#endif
}
void tc::enable_virtual_terminal() {
#ifdef _WIN32
const HANDLE output = GetStdHandle(STD_OUTPUT_HANDLE);
if (output == INVALID_HANDLE_VALUE) {
return;
}
DWORD mode = 0;
if (!GetConsoleMode(output, &mode)) {
return;
}
SetConsoleMode(output, mode | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
#endif
}