-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsoleDisplay.cpp
124 lines (100 loc) · 3.28 KB
/
ConsoleDisplay.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
#include "ConsoleDisplay.h"
// Color configuration of blocks using HEX colors
map <char, string> colorMap = {{'G', "cccccc"}, {'W', "ffffff"}, {'Z', "b20000"}, {'O', "e5e500"}, {'S', "007300"}, {'T', "b266b2"}, {'I', "00e1d0"}, {'L', "ffa500"}, {'J', "0000ff"}};
// Drawing background (lower layer)
string Highlight(string color, string text)
{
int r = stoi(color.substr(0, 2), nullptr, 16);
int g = stoi(color.substr(2, 2), nullptr, 16);
int b = stoi(color.substr(4, 2), nullptr, 16);
return "\033[48;2;" + to_string(r) + ";" + to_string(g) + ";" + to_string(b) + "m" + text + "\033[0m";
}
// Drawing text (upper layer)
string SetColor(string color, string text)
{
int r = stoi(color.substr(0, 2), nullptr, 16);
int g = stoi(color.substr(2, 2), nullptr, 16);
int b = stoi(color.substr(4, 2), nullptr, 16);
return "\033[38;2;" + to_string(r) + ";" + to_string(g) + ";" + to_string(b) + "m" + text + "\033[0m";
}
// Console configuration
void SetConsoleANSI()
{
HANDLE output = GetStdHandle(STD_OUTPUT_HANDLE);
DWORD csMode = 0;
GetConsoleMode(output, &csMode);
csMode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING;
SetConsoleMode(output, csMode);
}
// Move mouse/console pointer
void GoTo(SHORT posY, SHORT posX)
{
HANDLE hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
COORD Position;
Position.X = posX;
Position.Y = posY;
SetConsoleCursorPosition(hStdout, Position);
}
void SetWindowSize(SHORT width, SHORT height)
{
HANDLE hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
SMALL_RECT WindowSize;
WindowSize.Top = 0;
WindowSize.Left = 0;
WindowSize.Right = width - 1;
WindowSize.Bottom = height - 1;
SetConsoleWindowInfo(hStdout, 1, &WindowSize);
}
void SetScreenBufferSize(SHORT width, SHORT height)
{
HANDLE hStdout = GetStdHandle(STD_OUTPUT_HANDLE);
COORD NewSize;
NewSize.X = width;
NewSize.Y = height;
SetConsoleScreenBufferSize(hStdout, NewSize);
}
void DisableResizeWindow()
{
HWND hWnd = GetConsoleWindow();
SetWindowLong(hWnd, GWL_STYLE, GetWindowLong(hWnd, GWL_STYLE) & ~WS_SIZEBOX);
}
void ShowScrollbarOption(BOOL Show)
{
HWND hWnd = GetConsoleWindow();
ShowScrollBar(hWnd, SB_BOTH, Show);
}
void DisableCtrButton(bool Close, bool Min, bool Max)
{
HWND hWnd = GetConsoleWindow();
HMENU hMenu = GetSystemMenu(hWnd, false);
if (Close == 1) { DeleteMenu(hMenu, SC_CLOSE, MF_BYCOMMAND); }
if (Min == 1) { DeleteMenu(hMenu, SC_MINIMIZE, MF_BYCOMMAND); }
if (Max == 1) { DeleteMenu(hMenu, SC_MAXIMIZE, MF_BYCOMMAND); }
}
// Draw colored squares
void drawBlock(string color, int Y, int X)
{
GoTo(Y * 2, X * 3);
cout << Highlight(color, " ");
GoTo(Y * 2 + 1, X * 3);
cout << Highlight(color, " ");
}
void drawShadedBlock(string color, int Y, int X)
{
GoTo(Y * 2, X * 3);
// cout << Highlight(color, " ");
char c = 176;
string s(3, c);
cout << Highlight(color, s);
GoTo(Y * 2 + 1, X * 3);
// cout << Highlight(color, " ");
cout << Highlight(color, s);
}
void ShowConsoleCursor(bool showFlag)
{
HANDLE out = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_CURSOR_INFO cursorInfo;
GetConsoleCursorInfo(out, &cursorInfo);
cursorInfo.bVisible = showFlag; // set the cursor visibility
SetConsoleCursorInfo(out, &cursorInfo);
}