-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
242 lines (227 loc) · 6.27 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
/*
Name : Tran Thanh Son - 20021432
Major : Infomation Systems
*/
#include <iostream>
#include <ctime>
#include <cstdlib>
#include <fstream>
#include <cstring>
using namespace std;
void printHangman(int chance)
{
switch (chance)
{
case 6:
{
cout << "_____________ " << endl;
cout << "| } " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "|============ " << endl;
break;
}
case 5:
{
cout << "_____________ " << endl;
cout << "| } " << endl;
cout << "| o " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "|============ " << endl;
break;
}
case 4:
{
cout << "_____________ " << endl;
cout << "| } " << endl;
cout << "| o " << endl;
cout << "| | " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "|============ " << endl;
break;
}
case 3:
{
cout << "_____________ " << endl;
cout << "| } " << endl;
cout << "| o " << endl;
cout << "| | " << endl;
cout << "| / | " << endl;
cout << "| / | " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "|============ " << endl;
break;
}
case 2:
{
cout << "_____________ " << endl;
cout << "| } " << endl;
cout << "| o " << endl;
cout << "| | " << endl;
cout << "| / | \\ " << endl;
cout << "| / | \\ " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "| " << endl;
cout << "|============ " << endl;
break;
}
case 1:
{
cout << "_____________ " << endl;
cout << "| } " << endl;
cout << "| o " << endl;
cout << "| | " << endl;
cout << "| / | \\ " << endl;
cout << "| / | \\ " << endl;
cout << "| | " << endl;
cout << "| / " << endl;
cout << "| / " << endl;
cout << "|============ " << endl;
break;
}
case 0:
{
cout << "_____________ " << endl;
cout << "| } " << endl;
cout << "| o " << endl;
cout << "| | " << endl;
cout << "| / | \\ " << endl;
cout << "| / | \\ " << endl;
cout << "| | " << endl;
cout << "| / \\ " << endl;
cout << "| / \\ " << endl;
cout << "|============ " << endl;
break;
}
default:
{
break;
}
}
}
void getWordToDataBase(string *wordDataBase, int n)
{
string s;
ifstream file("word.txt");
file >> n;
getline(file, s);
while (!file.eof())
{
for (int i = 0; i < n; i++)
{
getline(file, wordDataBase[i]);
}
}
}
int generateRandomNumder(int n)
{
srand(time(0));
int randomNum = 0;
randomNum = rand() % n;
return randomNum;
}
int getNumderOfWord()
{
int count = 0;
ifstream file("word.txt");
file >> count;
return count;
}
int countCharacterInWord(string word)
{
return word.size();
}
bool checkAppear(string word, char c, int stringSize)
{
for (int i = 0; i < stringSize; i++)
if (word[i] == c)
return true;
return false;
}
void convertHiddenStringToAppear(string &temp, string word, char c, int stringSize, int &countCorrect)
{
for (int i = 0; i < stringSize; i++)
if (word[i] == c)
{
temp[i] = c;
countCorrect++;
}
}
void getHiddenString(string &temp, int stringSize)
{
for (int i = 0; i < stringSize; i++)
temp[i] = '_';
}
void printHiddenString(string &temp, int stringSize)
{
for (int i = 0; i < stringSize; i++)
{
cout << temp[i];
}
cout << endl;
}
int main()
{
char c;
int chance = 6;
int n = getNumderOfWord();
int randomNum = generateRandomNumder(n);
int countCorrect = 0;
string start, word, temp;
string wordDataBase[n];
getWordToDataBase(wordDataBase, n);
word = wordDataBase[randomNum];
int stringSize = countCharacterInWord(word);
getHiddenString(temp, stringSize);
cout << "Hang Man Game " << endl;
cout << "Press any key and press enter to start: " << endl;
cin >> start;
cout << "You have 6 chances" << endl;
while (chance >= 0 && countCorrect < stringSize)
{
cout << "Word: ";
printHiddenString(temp, stringSize);
cin >> c;
if (checkAppear(word, c, stringSize) == true)
{
printHangman(chance);
convertHiddenStringToAppear(temp, word, c, stringSize, countCorrect);
cout << "You have " << chance << " chances left" << endl;
printHiddenString(temp, stringSize);
}
else
{
printHangman(chance - 1);
chance--;
if (chance < 0)
break;
cout << "You were wrong " << endl;
cout << "You have " << chance << "chances left" << endl;
}
}
if (countCorrect == stringSize && chance >= 0)
cout << "Congratulations !!";
if (chance < 0)
{
cout << "You was losed !!" << endl;
cout << "The hidden word is " << word;
}
return 0;
}