-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plusterm.cpp
319 lines (286 loc) · 10.7 KB
/
Plusterm.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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
//This file is part of the Iarb Plusterm source code.
//You can find the Iarb Plusterm source code at https://github.com/yarb00/iarb_plusterm
#include "Plusterm.h"
#include <cctype>
#include <iosfwd>
#include <iostream>
#include <locale.h>
#include <sstream>
#include <string>
#include <Windows.h>
void Plusterm::start()
{
this->plusterm_main();
}
void Plusterm::plusterm_main()
{
system("cls");
setlocale(LC_ALL, "ru-RU");
system("chcp 1251 > nul 2>&1");
this->set_static_color("output_default");
system("title PlusTerm");
system("cls");
this->print_title("title");
for (int i{ 0 }; true; i++)
{
std::string user_input{}, user_input_command{}, user_input_text{};
std::cout << std::endl;
this->set_static_color("input_default");
std::cout << "PT |>>> ";
std::getline(std::cin, user_input);
std::stringstream ss(user_input);
ss >> user_input_command;
std::getline(ss, user_input_text);
size_t strBegin = user_input_text.find_first_not_of(' ');
size_t strEnd = user_input_text.find_last_not_of(' ');
user_input_text.erase(strEnd + 1, user_input_text.size() - strEnd);
user_input_text.erase(0, strBegin);
for (int i{ 0 }; i < user_input_command.length(); i++)
{
user_input_command[i] = tolower(user_input_command[i]);
}
this->run(user_input_command, user_input_text);
if (is_exit)
{
break;
}
}
system("cls");
system("exit");
}
void Plusterm::run(std::string _command, std::string _text)
{
this->set_static_color("output_default");
if (_command == "" || _command == "_plusterm?empty_") {}
else if (_command == "_plusterm?undefined_")
{
this->info("error", _command, _command);
}
else if (_command == "exit" || _command == "quit")
{
system("cls");
system("exit");
is_exit = true;
}
else if (_command == "help" || _command == "?")
{
if (_text != "")
{
this->info("warning", "Команда help не принимает параметров", _command);
}
std::cout << "Список команд:" << std::endl << std::endl;
std::cout << "команда [опции] (параметры) ||| Описание" << std::endl << "Доступные опции: доступная опция комманды ; ещё одна доступная опция комманды" << std::endl << "Пример: пример комманды ; другой пример комманды" << std::endl << std::endl;
this->help();
}
else if (_command == "clear" || _command == "cls")
{
system("cls");
this->set_static_color("output_default");
this->print_title();
}
else if (_command == "print" || _command == "say")
{
if (_text != "")
{
std::cout << _text << std::endl;
}
else
{
this->info("error", "Вы не ввели не какого текста для вывода", _command);
}
}
else if (_command == "get_date" || _command == "date")
{
if (_text != "")
{
this->info("warning", "Команда get_date не принимает параметров", _command);
}
system("echo %date%");
}
else if (_command == "get_time" || _command == "time")
{
if (_text != "")
{
this->info("warning", "Команда get_time не принимает параметров", _command);
}
system("echo %time%");
}
else if (_command == "square_root" || _command == "sqrt")
{
/*
char pStr[]{ 0 };
for (int i{ 0 }; i < _command.length(); i++)
{
pStr[i] = _command[i];
}
for (int i = 0; i < strlen(pStr); i++)
{
if (!isdigit(pStr[i]))
{
this->info("error", "То, что вы ввели - не число", _command);
}
else if (i == _command.length() - 1 && isdigit(pStr[i]))
{
std::cout << "Квадратный корень из " << _text << ": " << sqrt(std::stoi(_text)) << std::endl;
}
}
*/
if (_text != "")
{
std::cout << "Квадратный корень из " << _text << ": " << sqrt(std::stoi(_text)) << std::endl;
}
else
{
this->info("error", "Вы не ввели число", _command);
}
}
else if (_command == "version" || _command == "ver")
{
if (_text != "")
{
this->info("warning", "Команда plusterm_version не принимает параметров", _command);
}
print_title("version");
}
else if (_command == "cmd")
{
if (_text != "")
{
this->info("info", "Отправляем комманду в CMD...", _command);
std::cout << std::endl;
system(_text.c_str());
std::cout << std::endl;
this->info("info", "Команда CMD выполнена!", _command);
}
else
{
std::cout << "Сейчас будет запущен сеанс 'CMD.exe'! Чтобы выйти обратно в PlusTerm, введите команду 'exit'." << std::endl;
std::cout << "Внимание! CMD - это не PlusTerm, и CMD не принимает комманды PlusTerm." << std::endl << std::endl;
system("cmd");
}
}
/*
else if (_command == "plusterm" || _command == "pt")
{
if (_text.find("/*") != std::string::npos)
{
system("iarb_plusterm.exe");
}
else
{
this->info("warning", "Похоже, что экзэмпляр PlusTerm уже запущен. Если вы всё равно хотите запустить ещё один экзэмпляр PlusTerm поверх этого, выполните комманду с параметром /*", _command);
}
}
*/
else if (_command == "about")
{
this->set_static_color("title_name");
std::cout << "PlusTerm";
this->set_static_color("output_default");
std::cout << std::endl << "Автор PlusTerm`a - yarb00." << std::endl << "Discord: @yarb00" << std::endl << "Telegram: @yarb000" << std::endl;
}
else if (_command == "web")
{
if (_text != "")
{
std::string com_{ "start https://\"" + _text + "\"" };
system(com_.c_str());
}
else
{
system("start https://\"github.com/yarb00\"");
}
}
else
{
this->info("error", "Неизвестная команда");
std::cout << "Чтобы вывести справку по коммандам, выполните комманду \"help\"." << std::endl;
}
}
void Plusterm::help()
{
std::cout << "exit ||| Выйти из PlusTerm" << std::endl << "Доступные опции: нет" << std::endl << "Пример: exit" << std::endl << std::endl;
std::cout << "help ||| Вывести список команд (этот список)" << std::endl << "Доступные опции: нет" << std::endl << "Пример: help" << std::endl << std::endl;
std::cout << "clear ||| Очистить экран" << std::endl << "Доступные опции: нет" << std::endl << "Пример: clear" << std::endl << std::endl;
std::cout << "print (текст) ||| Вывести сообщение на экран" << std::endl << "Доступные опции: нет" << std::endl << "Пример: print ЫЫЫЫ теест!" << std::endl << std::endl;
std::cout << "date ||| Вывести текущую дату на экран" << std::endl << "Доступные опции: нет" << std::endl << "Пример: date" << std::endl << std::endl;
std::cout << "time ||| Вывести текущее время на экран" << std::endl << "Доступные опции: нет" << std::endl << "Пример: time" << std::endl << std::endl;
std::cout << "sqrt (число) ||| Вывести квадратный корень из числа на экран" << std::endl << "Доступные опции: нет" << std::endl << "Пример: sqrt 9" << std::endl << std::endl;
std::cout << "ver ||| Вывести версию PlusTerm на экран" << std::endl << "Доступные опции: нет" << std::endl << "Пример: pt_ver" << std::endl << std::endl;
std::cout << "cmd (команда CMD) ||| Выполнить команду CMD из параметра, или, без параметров запустить сеанс CMD (классической командной строки)" << std::endl << "Доступные опции: нет" << std::endl << "Пример: cmd ; cmd echo Hello, world!" << std::endl << std::endl;
//std::cout << "pt [опции] ||| Запустить экзэмпляр PlusTerm" << std::endl << "Доступные опции: /* - подтвердить запуск" << std::endl << "Пример: pt ; pt /*" << std::endl << std::endl;
std::cout << "about ||| О Plusterm и его авторе" << std::endl << "Доступные опции: нет" << std::endl << "Пример: about" << std::endl << std::endl;
std::cout << "web (адрес сайта без протокола https) ||| Открывает сайт в браузере по умолчанию" << std::endl << "Доступные опции: нет" << std::endl << "Пример: web google.com" << std::endl << std::endl;
}
void Plusterm::print_title(std::string _mode)
{
if (_mode == "title")
{
set_static_color("title_name");
std::cout << "PlusTerm";
set_static_color("output_default");
std::cout << std::endl << "от yarb00\t(подробнее: \"about\")" << std::endl << std::endl << "ВЕРСИЯ { |" << this->plusterm_version << "| }" << std::endl << std::endl << "-----" << std::endl;
}
else if (_mode == "version")
{
std::cout << "КАНАЛ РАЗРАБОТКИ { | " << this->plusterm_version_channel << " | }\t|||\tВЕРСИЯ { | " << this->plusterm_version << " | }" << std::endl;
}
}
void Plusterm::info(std::string _info_level, std::string _info_text, std::string _input_command)
{
if (_info_level == "error")
{
this->set_static_color("output_error");
std::cout << "ОШИБКА [" << _input_command << " / " << _info_text << "] !" << std::endl;
}
else if (_info_level == "warning")
{
this->set_static_color("output_warning");
std::cout << "ПРЕДУПРЕЖДЕНИЕ [" << _input_command << " / " << _info_text << "] !" << std::endl;
}
else if (_info_level == "info")
{
this->set_static_color("light_blue");
std::cout << "СООБЩЕНИЕ [" << _input_command << " / " << _info_text << "] !" << std::endl;
}
set_static_color();
}
/*
template<int txt = 7, int bg = 0>
std::ostream& set_color(std::ostream& _text)
{
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(hStdOut, (WORD)((bg << 4) | txt));
return _text;
}
*/
void Plusterm::set_static_color(std::string _color_mode)
{
int _text_color{}, _background_color{ 1 };
if (_color_mode == "input_default")
{
_text_color = 7;
}
else if (_color_mode == "title_name")
{
_text_color = 1;
_background_color = 7;
}
else if (_color_mode == "output_default")
{
_text_color = 15;
}
else if (_color_mode == "output_error")
{
_text_color = 4;
}
else if (_color_mode == "output_warning")
{
_text_color = 6;
}
else if ("light_blue")
{
_text_color = 11;
}
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), (WORD)((_background_color << 4) | _text_color));
}