-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
404 lines (339 loc) · 18.2 KB
/
main.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
#include <iostream>
#include <cstdlib> // For rand()
void Game() {
// Function to print the game name and menu options
std::cout << " /$$ /$$ /$$ /$$ " << std::endl;
std::cout << "| $$ /$ | $$ | $$| $$ " << std::endl;
std::cout << "| $$ /$$$| $$ /$$$$$$ /$$$$$$ /$$$$$$$| $$ /$$$$$$ " << std::endl;
std::cout << "| $$/$$ $$ $$ /$$__ $$ /$$__ $$ /$$__ $$| $$ /$$__ $$" << std::endl;
std::cout << "| $$$$_ $$$$| $$ | $$| $$ |__/| $$ | $$| $$| $$$$$$$$" << std::endl;
std::cout << "| $$$/ | $$$| $$ | $$| $$ | $$ | $$| $$| $$_____/ " << std::endl;
std::cout << "| $$/ | $$| $$$$$$/| $$ | $$$$$$$| $$| $$$$$$$ " << std::endl;
std::cout << "|__/ |__/ \\______/ |__/ |_______/|__/ |_______/ " << std::endl;
int choice;
int choiceDifficult;
do {
std::cout << "\nMain Menu:\n";
std::cout << " 1. Play\n 2. How To Play\n 3. Exit\n";
std::cout << "Enter your choice: ";
std::cin >> choice;
std::cout << "Choose difficulty:\n"; // Choose difficulty
std::cout << "\033[32m" << "1.Easy" << std::endl;
std::cout << "\033[33m" << "2.Medium" << std::endl;
std::cout << "\033[31m" << "3.Hard" << std::endl;
std::cin >> choiceDifficult;
switch (choice) {
case 1: {
// Play the game
switch (choiceDifficult) {
case 1: {
//Easy level
const char words[][140] = { "apple", "mango", "pearl", "lemon", "grape", "peach" "about", "other", "which", "their", "there", "would", "could", "these", "every", "after",
"think", "being", "those", "never", "where", "shall", "world", "under", "still", "great",
"right", "place", "again", "small", "found", "given", "white", "state", "house", "might",
"night", "often", "water", "since", "early", "until", "among", "later", "sense", "began",
"least", "human", "power", "point", "asked", "money", "study", "young", "known", "times",
"heart", "group", "whole", "words", "means", "above", "light", "white", "order", "class",
"bring", "today", "large", "story", "among", "music", "field", "worth", "works", "below",
"black", "happy", "words", "lives", "terms", "makes", "month", "clear", "truth", "quite",
"court", "mind", "heard", "learn", "south", "north", "build", "trade", "peace", "shows",
"helps", "check", "claim", "dream", "based", "reach", "event", "style", "wrong", "force",
"focus", "local", "stage", "broke", "wrote", "calls" };
const char* word = words[rand() % 130]; // Choose a random word
char guess[6]; // The player's guess
const int maxTries = 6; // Number of attempts allowed
std::cout << "\nWelcome to Wordle! You have " << maxTries << " attempts to guess the word.\n";
std::cout << "Hints: '*' means correct letter and position, '+' means correct letter but wrong position.\n";
std::cout << "Hint for the word: This is a fruit and the word starts with a capital letter.\n";
bool won = false;
for (int attempt = 1; attempt <= maxTries; ++attempt) {
std::cout << "\nAttempt " << attempt << " - Enter your 5-letter word: " << std::endl;
std::cout << "+------+" << std::endl;
std::cin >> guess;
std::cout << "+------+" << std::endl;
// Manual length check
int length = 0;
for (int i = 0; i < 6; ++i) {
if (guess[i] == '\0') {
break;
}
length++;
}
// Validate input length
if (length != 5) {
std::cout << "Please enter a valid 5-letter word.\n";
--attempt; // Don't count invalid input as an attempt
continue;
}
char feedback[6]; // Store feedback for this attempt
feedback[5] = '\0'; // Null-terminate the feedback string
bool correct = true;
// Generate feedback
for (int i = 0; i < 5; ++i) {
if (guess[i] == word[i]) {
feedback[i] = '*'; // Correct letter in correct position
}
else {
bool found = false;
for (int j = 0; j < 5; ++j) {
if (guess[i] == word[j] && i != j) {
found = true;
break;
}
}
feedback[i] = found ? '+' : '-'; // Correct letter in wrong position or not in word
if (feedback[i] != '*') {
correct = false; // The guess is not entirely correct
}
}
}
std::cout << "Feedback: ";
for (int i = 0; i < 5; ++i) {
if (feedback[i] == '*')
std::cout << "\033[1;32m" << guess[i] << "\033[0m"; // Green for correct
else if (feedback[i] == '+')
std::cout << "\033[1;33m" << guess[i] << "\033[0m"; // Yellow for misplaced
else
std::cout << "\033[1;31m" << guess[i] << "\033[0m"; // Red for incorrect
}
std::cout << std::endl;
if (correct) {
std::cout << "Congratulations! You've guessed the word: " << word << "!\n";
won = true;
break;
}
}
if (!won) {
std::cout << "Sorry! You've used all your attempts. The word was: " << word << ". Better luck next time!\n";
}
static int wins = 0, losses = 0;
if (won) {
++wins;
}
else {
++losses;
}
std::cout << "\nYour score: " << wins << " Wins, " << losses << " Losses\n";
// Adds scoring
break;
}
case 2: {
// Medium level
const char words[][140] = { "angle", "basic", "begin", "brick", "brown", "charm", "clean", "cloud", "coast", "dance",
"earth", "eagle", "flash", "glory", "happy", "humor", "image", "joint", "magic", "march",
"metal", "music", "olive", "organ", "party", "plant", "quiet", "river", "scope", "shelf",
"smart", "sound", "space", "stone", "sweet", "table", "taste", "tower", "trust", "union",
"value", "verse", "voice", "worth", "about", "above", "among", "build", "cause", "claim",
"close", "could", "dream", "early", "every", "field", "force", "found", "great", "house",
"human", "least", "light", "never", "north", "other", "peace", "place", "point", "power",
"right", "sense", "shall", "small", "south", "stage", "still", "style", "think", "times",
"under", "water", "white", "world", "young", "above", "break", "check", "court", "dream",
"fault", "glory", "heart", "ideal", "learn", "money", "shine", "words", "bring", "today",
"large", "story", "music", "field", "worth", "works", "below", "black", "happy", "lives",
"terms", "makes", "month", "clear", "truth", "quite", "court", "mind", "heard", "south",
"north", "build", "trade", "peace", "shows", "helps", "check", "claim", "based", "reach",
"event", "style", "wrong", "force", "focus", "local", "stage", "broke", "wrote", "calls" };
const char* word = words[rand() % 130]; // Choose a random word
char guess[6]; // The player's guess
const int maxTries = 6; // Number of attempts allowed
std::cout << "\nWelcome to Wordle! You have " << maxTries << " attempts to guess the word.\n";
std::cout << "Hints: '*' means correct letter and position, '+' means correct letter but wrong position.\n";
std::cout << "Hint for the word: This is a fruit and the word starts with a capital letter.\n";
bool won = false;
for (int attempt = 1; attempt <= maxTries; ++attempt) {
std::cout << "\nAttempt " << attempt << " - Enter your 5-letter word: " << std::endl;
std::cout << "+------+" << std::endl;
std::cin >> guess;
std::cout << "+------+" << std::endl;
// Manual length check
int length = 0;
for (int i = 0; i < 6; ++i) {
if (guess[i] == '\0') {
break;
}
length++;
}
// Validate input length
if (length != 5) {
std::cout << "Please enter a valid 5-letter word.\n";
--attempt; // Don't count invalid input as an attempt
continue;
}
char feedback[6]; // Store feedback for this attempt
feedback[5] = '\0'; // Null-terminate the feedback string
bool correct = true;
// Generate feedback
for (int i = 0; i < 5; ++i) {
if (guess[i] == word[i]) {
feedback[i] = '*'; // Correct letter in correct position
}
else {
bool found = false;
for (int j = 0; j < 5; ++j) {
if (guess[i] == word[j] && i != j) {
found = true;
break;
}
}
feedback[i] = found ? '+' : '-'; // Correct letter in wrong position or not in word
if (feedback[i] != '*') {
correct = false; // The guess is not entirely correct
}
}
}
std::cout << "Feedback: ";
for (int i = 0; i < 5; ++i) {
if (feedback[i] == '*')
std::cout << "\033[1;32m" << guess[i] << "\033[0m"; // Green for correct
else if (feedback[i] == '+')
std::cout << "\033[1;33m" << guess[i] << "\033[0m"; // Yellow for misplaced
else
std::cout << "\033[1;31m" << guess[i] << "\033[0m"; // Red for incorrect
}
std::cout << std::endl;
if (correct) {
std::cout << "Congratulations! You've guessed the word: " << word << "!\n";
won = true;
break;
}
}
if (!won) {
std::cout << "Sorry! You've used all your attempts. The word was: " << word << ". Better luck next time!\n";
}
static int wins = 0, losses = 0;
if (won) {
++wins;
}
else {
++losses;
}
std::cout << "\nYour score: " << wins << " Wins, " << losses << " Losses\n";
// Adds scoring
break;
}
case 3: {
// Hardest level
const char words[][140] = { "axiom", "fjord", "zephyr", "quirk", "crypt", "myths", "vapid", "gnome", "epoch", "lapse",
"plume", "shard", "chasm", "drear", "niche", "scorn", "brisk", "glint", "braid", "vital",
"rivet", "spurn", "tacit", "flint", "amend", "blitz", "abyss", "throb", "siege", "pivot",
"quell", "aloft", "ember", "guise", "hover", "joust", "prone", "smirk", "stoic", "grasp",
"crave", "bluff", "sworn", "wrung", "knack", "gleam", "cling", "bleak", "sting", "wharf",
"heist", "crisp", "girth", "mirth", "realm", "siren", "strum", "wield", "lurid", "tryst",
"aphid", "blurb", "covet", "wince", "flair", "infer", "latch", "mossy", "quash", "squib",
"taunt", "trove", "uncut", "whelp", "zonal", "brash", "hymen", "slink", "snare", "tweak",
"vista", "spurt", "prowl", "thorn", "frisk", "brine", "guise", "haunt", "quilt", "vault",
"wryly", "brood", "froth", "scowl", "vouch", "pluck", "shove", "twang", "cling", "lofty",
"slant", "blaze", "spurn", "witty", "grunt", "quash", "brawn", "brunt", "glare", "surge",
"relic", "vexed", "wrath", "swirl", "crest", "chant", "gruff", "grove", "gaunt", "spine",
"whirl", "flock", "brave", "clang", "froze", "gorge", "lurch", "pique", "shard", "verve" };
const char* word = words[rand() % 130]; // Choose a random word
char guess[6]; // The player's guess
const int maxTries = 6; // Number of attempts allowed
std::cout << "\nWelcome to Wordle! You have " << maxTries << " attempts to guess the word.\n";
std::cout << "Hints: '*' means correct letter and position, '+' means correct letter but wrong position.\n";
std::cout << "Hint for the word: This is a fruit and the word starts with a capital letter.\n";
bool won = false;
for (int attempt = 1; attempt <= maxTries; ++attempt) {
std::cout << "\nAttempt " << attempt << " - Enter your 5-letter word: " << std::endl;
std::cin >> guess;
// Manual length check
int length = 0;
for (int i = 0; i < 6; ++i) {
if (guess[i] == '\0') {
break;
}
length++;
}
// Validate input length
if (length != 5) {
std::cout << "Please enter a valid 5-letter word.\n";
--attempt; // Don't count invalid input as an attempt
continue;
}
char feedback[6]; // Store feedback for this attempt
feedback[5] = '\0'; // Null-terminate the feedback string
bool correct = true;
// Generate feedback
for (int i = 0; i < 5; ++i) {
if (guess[i] == word[i]) {
feedback[i] = '*'; // Correct letter in correct position
}
else {
bool found = false;
for (int j = 0; j < 5; ++j) {
if (guess[i] == word[j] && i != j) {
found = true;
break;
}
}
feedback[i] = found ? '+' : '-'; // Correct letter in wrong position or not in word
if (feedback[i] != '*') {
correct = false; // The guess is not entirely correct
}
}
}
std::cout << "Feedback: ";
for (int i = 0; i < 5; ++i) {
if (feedback[i] == '*')
std::cout << "\033[1;32m" << guess[i] << "\033[0m"; // Green for correct
else if (feedback[i] == '+')
std::cout << "\033[1;33m" << guess[i] << "\033[0m"; // Yellow for misplaced
else
std::cout << "\033[1;31m" << guess[i] << "\033[0m"; // Red for incorrect
}
std::cout << std::endl;
if (correct) {
std::cout << "Congratulations! You've guessed the word: " << word << "!\n";
won = true;
break;
}
}
if (!won) {
std::cout << "Sorry! You've used all your attempts. The word was: " << word << ". Better luck next time!\n";
}
static int wins = 0, losses = 0;
if (won) {
++wins;
}
else {
++losses;
}
std::cout << "\nYour score: " << wins << " Wins, " << losses << " Losses\n";
// Adds scoring
break;
break;
}
}
break;
}
case 2:
// Tutorial on how to play
std::cout << "\nHow to Play:\n";
std::cout << "1. Start with a Guess: Enter any valid 5-letter word to gather clues about the hidden word.\n";
std::cout << "2. Check the Feedback: '*' = correct position, '+' = correct letter but wrong position, '-' = not in the word.\n";
std::cout << "3. Refine Your Guesses: Use feedback to make smarter guesses; avoid repeating incorrect letters.\n";
std::cout << "4. Win or Lose: Guess the word in 6 tries to win; otherwise, the hidden word is revealed.\n";
break;
case 3:
// Exit the game
std::cout << "Goodbye! Thanks for playing.\n";
return; // Exit the menu
break;
default:
std::cout << "Invalid option. Please choose 1, 2, or 3.\n";
break;
}
} while (choice != 3);
}
int main() {
do { // Replay option
Game();
std::cout << "\nDo you want to play again? (y/n): ";
char replay;
std::cin >> replay;
if (replay != 'y' && replay != 'Y') {
break;
}
} while (true);
return 0;
}