forked from emilytouchingcomputers/CTFium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhangman.c
305 lines (246 loc) · 5.78 KB
/
hangman.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
#include <unistd.h>
#define WORD_MAX_LEN 32
#define MAX_HP 5
#define MAX_NUM_OF_WORDS 16
#define TRUE 1
#define FALSE 0
struct hangmanGame
{
char word[WORD_MAX_LEN];
char *realWord;
char buffer[WORD_MAX_LEN];
int wordLen;
int hp;
};
unsigned int countLinesNum(char *filename)
{
FILE *file = NULL;
unsigned int count = 0;
char c;
file = fopen(filename, "r");
if (!file)
{
puts("Failed to load list of words...");
exit(1);
}
for (c = getc(file); c != EOF; c = getc(file))
{
if (c == '\n')
{
count++;
}
}
fclose(file);
return count;
}
char* getWord(char *filename, unsigned int wordMaxLen)
{
unsigned int i = 0;
unsigned int numOfWords = countLinesNum(filename);
unsigned int wordNum = rand() % numOfWords + 1;
unsigned int wordLen = 0;
FILE* file = NULL;
char *word = malloc(wordMaxLen);
file = fopen(filename, "r");
if (!file)
{
puts("Failed to load list of words...");
exit(1);
}
for (i = 0; i < wordNum && fgets(word, wordMaxLen, file); i++);
wordLen = strlen(word);
for (i = 0; i < wordLen; i++)
{
if (word[i] == '\n')
{
word[i] = '\0';
}
}
fclose(file);
return word;
}
void initHangmanGame(struct hangmanGame *game)
{
int i = 0;
int len = 0;
char* filename = "words.list";
game->hp = MAX_HP;
game->wordLen = WORD_MAX_LEN;
game->realWord = getWord(filename, WORD_MAX_LEN);
len = strlen(game->realWord);
for (i = 0; i < len; i++)
{
game->word[i] = '_';
}
game->word[i] = 0;
}
void delHangmanGame(struct hangmanGame *game)
{
free(game->realWord);
}
int guessLetter(struct hangmanGame *game)
{
int len = strlen(game->realWord);
int i = 0;
int correct = FALSE;
char letter = 0;
letter = (char)getchar();
getchar();
for (i = 0; i < len; i++)
{
if (letter == game->realWord[i])
{
correct = TRUE;
game->word[i] = letter;
}
}
if (!correct)
{
game->hp--;
}
return correct;
}
int guessWord(struct hangmanGame *game)
{
int i = 0;
int len = game->wordLen;
for (i = 0; i <= len; i++)
{
game->buffer[i] = (char)getchar();
if (game->buffer[i] == '\n')
{
break;
}
}
game->buffer[i] = 0;
fflush(stdin);
if (!strcmp(game->buffer, game->realWord))
{
strcpy(game->word, game->buffer);
return TRUE;
}
game->hp--;
return FALSE;
}
int isWordCompleted(struct hangmanGame *game)
{
int i = 0;
int len = strlen(game->word);
for (i = 0; i < len; i++)
{
if (!islower(game->word[i]))
{
return FALSE;
}
}
return TRUE;
}
int isDead(struct hangmanGame *game)
{
return game->hp < 0;
}
void printHangman()
{
puts(" ___________.._______\n"
"| .__________))______|\n"
"| | / / ||\n"
"| |/ / ||\n"
"| | / ||.-''.\n"
"| |/ |/ _ \\\n"
"| | || `/,|\n"
"| | (\\\\`_.'\n"
"| | .-`--'.\n"
"| | /Y . . Y\\\n"
"| | // | | \\\\\n"
"| | // | . | \\\\\n"
"| | ') | | (`\n"
"| | ||'||\n"
"| | || ||\n"
"| | || ||\n"
"| | || ||\n"
"| | / | | \\\n"
"\"\"\"\"\"\"\"\"\"\"|_`-' `-' |\"\"\"|\n"
"|\"|\"\"\"\"\"\"\"\\ \\ '\"|\"|\n"
"| | \\ \\ | |\n"
": : \\ \\ : :\n"
". . `' . .\n");
}
void gameLoop()
{
struct hangmanGame game;
char choice = 0;
int exit = FALSE;
initHangmanGame(&game);
do
{
printHangman();
printf("Lives: %d\n", game.hp);
printf("%s\n", game.word);
printf("\n1 - Guess letter\n2 - Guess word\n3 - Give up\n");
printf("Enter choice: ");
choice = (char)getchar();
getchar();
switch (choice)
{
case '1':
printf("Enter letter: ");
if (guessLetter(&game))
{
puts("Correct!");
}
else
{
puts("Wrong...");
}
break;
case '2':
printf("Enter word: ");
if (guessWord(&game))
{
puts("Correct!");
}
else
{
puts("Wrong...");
}
break;
case '3':
puts("Good bye! :)");
exit = TRUE;
break;
default:
puts("Invalid choice...");
break;
}
} while (!exit && !isWordCompleted(&game) && !isDead(&game));
if (isWordCompleted(&game))
{
puts("Congratulations!!!");
printf("You've guessed the word \"%s\"!!!\n", game.realWord);
puts("But it is still not enough to get a flag");
puts("Have a nice day!");
}
if (isDead(&game))
{
puts("You've been hanged!!! :/");
printf("The word you were looking for is %s\n", game.realWord);
}
delHangmanGame(&game);
}
int main(int argc, char const *argv[])
{
setvbuf(stdin, NULL, _IONBF, 0);
setvbuf(stdout, NULL, _IONBF, 0);
srand(time(NULL));
puts("Welcome to the Hangman game!!!");
puts("In this game, you have to guess the word");
puts("Else... YOU WILL BE HANGED!!!");
puts("Good Luck! UwU\n");
gameLoop();
return 0;
}