-
Notifications
You must be signed in to change notification settings - Fork 0
/
RetroGames.cpp
389 lines (369 loc) · 11.8 KB
/
RetroGames.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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
#include <iostream>
#include <string>
#include <filesystem>
#include <cstring>
#include <fstream>
#include <chrono>
#include <thread>
// detecting system type
#ifdef __APPLE__
bool macos = true;
#endif
#ifdef __WIN64__
bool macos = false;
#endif
#ifdef __WIN32__
bool macos = false;
#endif
using namespace std;
using filesystem::current_path;
using filesystem::directory_iterator;
// gets list of installed packages
bool check_game_installed(string game)
{
for (directory_iterator it(current_path()); it != directory_iterator(); ++it)
{
if (it->path().filename().string() == game)
{
return true;
}
}
return false;
}
int main()
{
using namespace std::this_thread; // sleep_for, sleep_until
using namespace std::chrono; // nanoseconds, system_clock, seconds
auto path = std::filesystem::current_path(); //getting path
current_path(path); //setting path
cout << "Retro Games Client v1.4.0";
if (macos)
{
cout << " - MacOS" << endl;
}
else
{
cout << " - Windows" << endl;
}
// get list of installed games
string installed_games[5];
string game_exec[5];
bool snake = check_game_installed("SnakeGame");
bool dodger = check_game_installed("DodgerGame");
bool tictactoe = check_game_installed("TicTacToe");
bool wordle = check_game_installed("wordle");
bool platformer = check_game_installed("Platformer2000");
// check if any games are installed
if (snake)
{
installed_games[0] = "SnakeGame";
game_exec[0] = "python ./SnakeGame/turtlesnake.py";
}
else
{
installed_games[0] = "";
}
if (dodger)
{
installed_games[1] = "DodgerGame";
game_exec[1] = "python ./DodgerGame/dodger.py";
}
else
{
installed_games[1] = "";
}
if (tictactoe)
{
installed_games[2] = "TicTacToe";
game_exec[2] = "start ./TicTacToe/TicTacToe-vs-AI.exe";
}
else
{
installed_games[2] = "";
}
if (wordle)
{
installed_games[3] = "wordle";
game_exec[3] = "lua ./wordle/main.lua";
}
else
{
installed_games[3] = "";
}
if (platformer)
{
installed_games[4] = "Platformer2000";
game_exec[4] = "start ./Platformer2000/Hello-Unity_Win64.exe";
}
else
{
installed_games[4] = "";
}
cout << "Installed Games: \n"
<< "- " << installed_games[0] << endl
<< "- " << installed_games[1] << endl
<< "- " << installed_games[2] << endl
<< "- " << installed_games[3] << endl
<< "- " << installed_games[4] << endl;
// user interfacing
string options = "1 - Play Game\n2 - Install Game\n3 - Uninstall Game\n4 - Refresh installed list\n5 - Exit";
int choice;
bool running = true;
while (running)
{
cout << options << endl;
cin >> choice;
// play game
switch (choice)
{
case 1:
if (installed_games[0] == "" && installed_games[1] == "" && installed_games[2] == "" && installed_games[3] == "" && installed_games[4] == "")
{
cout << "You have no installed games." << endl;
}
else
{
cout << "Your game slots: \n"
<< "1 - " << installed_games[0] << endl
<< "2 - " << installed_games[1] << endl
<< "3 - " << installed_games[2] << endl
<< "4 - " << installed_games[3] << endl
<< "5 - " << installed_games[4] << endl;
cout << "Enter game number: ";
int game_choice;
cin >> game_choice;
try
{
system(game_exec[game_choice - 1].c_str());
}
catch (...)
{
cout << "Invalid game choice" << endl;
}
}
break;
case 2:
cout << "Your game slots: \n"
<< "1 - " << installed_games[0] << endl
<< "2 - " << installed_games[1] << endl
<< "3 - " << installed_games[2] << endl
<< "4 - " << installed_games[3] << endl
<< "5 - " << installed_games[4] << endl;
cout << "Enter game to install: ";
cout << "\n1 - SnakeGame\n2 - DodgerGame\n3 - TicTacToe\n4 - Wordle\n5 - Platformer 2000 (Windows Only)" << endl;
int slot_choice;
cin >> slot_choice;
if (slot_choice == 1)
{
if (installed_games[0] == "")
{
system("pip install pygame");
system("git clone https://github.com/AviationSFO/SnakeGame.git");
cout << endl
<< endl
<< "Restart client for changes to take effect" << endl;
}
else
{
cout << "Game slot 1 is already occupied" << endl;
}
}
else if (slot_choice == 2)
{
if (installed_games[1] == "")
{
system("pip install pygame");
system("git clone https://github.com/AviationSFO/DodgerGame.git");
cout << endl
<< endl
<< "Restart client for changes to take effect" << endl;
}
else
{
cout << "Game slot 2 is already occupied" << endl;
}
}
else if (slot_choice == 3)
{
if (installed_games[2] == "")
{
system("git clone https://github.com/AviationSFO/TicTacToe.git");
}
else
{
cout << "Game slot 3 is already occupied" << endl;
}
}
else if (slot_choice == 4)
{
if (installed_games[3] == "")
{
system("git clone -b client-use https://github.com/AviationSFO/wordle");
cout << endl
<< endl
<< "WARNING: A Lua interpreter is required to run the game," << endl
<< "please install one if you do not already!" << endl;
}
else
{
cout << "Game slot 4 is already occupied" << endl;
}
}
else if (slot_choice == 5)
{
if (!macos)
{
if (installed_games[4] == "")
{
system("powershell -ExecutionPolicy Bypass -F installP2K.ps1");
}
}
else
{
cout << "Platformer 2000 is not supported on MacOS" << endl;
}
}
else
{
cout << "Invalid game choice" << endl;
}
break;
case 3:
if (installed_games[0] == "" && installed_games[1] == "" && installed_games[2] == "" && installed_games[3] == "" && installed_games[4] == "")
{
cout << "You have no installed games." << endl;
}
else
{
cout << "Installed Games: \n"
<< installed_games[0] << endl
<< installed_games[1] << endl
<< installed_games[2] << endl
<< installed_games[3] << endl
<< installed_games[4] << endl;
cout << "Enter slot game to uninstall: " << endl;
if (snake)
{
cout << "1 - SnakeGame" << endl;
}
if (dodger)
{
cout << "2 - DodgerGame" << endl;
}
if (tictactoe)
{
cout << "3 - TicTacToe" << endl;
}
if (wordle)
{
cout << "4 - Wordle" << endl;
}
if (platformer)
{
cout << "5 - Platformer 2000" << endl;
}
int uninstall_choice;
cin >> uninstall_choice;
if (uninstall_choice == 1 && snake)
{
system("rmdir /s SnakeGame");
cout << endl
<< endl
<< "Restart client for changes to take effect" << endl;
}
else if (uninstall_choice == 2 && dodger)
{
system("rmdir /s DodgerGame");
cout << endl
<< endl
<< "Restart client for changes to take effect" << endl;
}
else if (uninstall_choice == 3 && tictactoe)
{
system("rmdir /s TicTacToe");
cout << endl
<< endl
<< "Restart client for changes to take effect" << endl;
}
else if (uninstall_choice == 4 && wordle)
{
system("rmdir /s wordle");
cout << endl
<< endl
<< "Restart client for changes to take effect" << endl;
}
else if (uninstall_choice == 5 && platformer)
{
system("rmdir /s Platformer2000");
cout << endl
<< endl
<< "Restart client for changes to take effect" << endl;
}
else
{
cout << "Invalid game choice" << endl;
}
}
break;
case 4:
snake = check_game_installed("SnakeGame");
dodger = check_game_installed("DodgerGame");
tictactoe = check_game_installed("TicTacToe");
wordle = check_game_installed("wordle");
platformer = check_game_installed("Platformer2000");
if (snake)
{
installed_games[0] = "SnakeGame";
game_exec[0] = "python ./SnakeGame/turtlesnake.py";
}
else
{
installed_games[0] = "";
}
if (dodger)
{
installed_games[1] = "DodgerGame";
game_exec[1] = "python ./DodgerGame/dodger.py";
}
else
{
installed_games[1] = "";
}
if (tictactoe)
{
installed_games[2] = "TicTacToe";
game_exec[2] = "start ./TicTacToe/TicTacToe-vs-AI.exe";
}
else
{
installed_games[2] = "";
}
if (wordle)
{
installed_games[3] = "wordle";
game_exec[3] = "lua ./wordle/main.lua";
}
else
{
installed_games[3] = "";
}
if (platformer)
{
installed_games[4] = "Platformer2000";
game_exec[4] = "start ./Platformer2000/Hello-Unity_Win64.exe";
}
else
{
installed_games[4] = "";
}
break;
case 5:
running = false;
break;
default:
cout << "Invalid choice" << endl;
break;
}
}
return 0;
}