-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHangman (Windows).CPP
279 lines (263 loc) · 5.85 KB
/
Hangman (Windows).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
#include<iostream>
#include<iomanip>
#include<conio.h>
struct element
{
char data;
struct element *next;
};
typedef struct element node;
class hangman
{
int j,n,miss,correct,h,u,p1,p2;
char name1[15],name2[15];
node *a,*b,*r;
void display();
void game();
void result();
void deadman();
void clue();
public: hangman()
{a=NULL,b=NULL,r=NULL,miss=0,u=0,correct=0,h=0;}
void creation();
void highscore();
};
void hangman::creation()
{
a=NULL;
b=NULL;
r=NULL;
int o;
clrscr();
cout<<"\nPlayer 1 will put up the word for Player 2 to solve.";
cout<<"\nPlayer 1 enter your name: ";
cin>>name1;
cout<<"\nPlayer 2 enter your name: ";
cin>>name2;
clrscr();
cout<<"\n"<<name1<<" enter the number of alphabets in your word: ";
cin>>n;
if(a==NULL) {
a=new node;
a->next=NULL;
cout<<"\nEnter the word in lower case. ";
cin>>a->data;
}
if(b==NULL) {
b=new node;
b->next=NULL;
b->data='_';
}
node *p=a,*temp,*q=b,*t;
for(int i=1;i<=n-1;i++)
{
temp=new node;
temp->next=NULL;
cin>>temp->data;
p->next=temp;
p=temp;
t=new node;
t->next=NULL;
t->data='_';
q->next=t;
q=t;
if(temp->data=='_'){t->data='/';u++;}
}
cout<<endl<<"\n\n"<<name1<<" do you want show some alphabets as a clue?\n1:Yes 2:No:";
cin>>o;
if(o==1)clue();
game();
}
void hangman::game()
{
clrscr();
correct=0;
miss=0;
cout<<"\n\t\t\t\tHaNgMaN BeGiNs";
int w,l,c=1;
char x;
node *p=a,*q=b,*p1,*q1,*p3=r,*e;
display();
while(miss!=10)
{
cout<<"\n\n-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=";
cout<<"\n\n\n"<<name2<<" guess the character ( 1 character in lower case only): ";
cin>>x;
cout<<endl<<endl;
p=a;
l=0;
c=1;
w=0;
while(p!=NULL)
{
q=b;
if(p->data==x) {
w=1;
if(l==0){
cout<<x<<" was correct.\n\nMistakes: "<<miss;
l++;
}
if(c==1){q->data=x;}
else {
for(int i=1;i<=c-1;i++)
q=q->next;
q->data=x;
}
}
c++;
p=p->next;
}
p1=a;
q1=b;
for(int k=1,correct=0;k<=n;k++)
{
if(p1->data==q1->data)correct++;
p1=p1->next;
q1=q1->next;
}
if(w==0){
miss++;
cout<<x<<" was incorrect.\n\nMistakes: "<<miss;
if(r==NULL){
r=new node;
r->next=NULL;
r->data=x;
p3=r;
}
else
{
e=new node;
e->next=NULL;
e->data=x;
p3->next=e;
p3=e;
}
}
display();
deadman();
if(correct+u==n) {h=1;break;}
if(miss==10) {h=2;break;}
}
result();
}
void hangman::result()
{
if(h==1){
clrscr();
cout<<endl<<"\n\t\t\t\tYOU WON.";
cout<<"\nThe word was ";
node *temp;
temp=a;
while(temp!=NULL)
{
cout<<temp->data;
temp=temp->next;
}
cout<<".";
cout<<endl<<name2<<" you made "<<miss<<" mistakes."<<endl<<"\nCONGRACTS.";
if(miss<=3)cout<<endl<<name2<<" you are a LEGEND at HANGMAN.";
else if(miss>3 && miss<=5)cout<<endl<<name2<<" you are a PRO at HANGMAN.";
else if(miss>5 && miss<=7)cout<<endl<<name2<<" you are a BEGGINER at HANGMAN.";
else if(miss>7 && miss<=10)cout<<endl<<name2<<" you are a DISGRACE at HANGMAN.";
}
if(h==2){
int g;
clrscr();
cout<<endl<<"\n\t\t\t\tYOU LOST."<<endl;
cout<<"_________"<<endl<<"| |"<<endl<<"| _0_"<<endl<<"| | | |"<<endl<<"| _/|_ "<<endl<<"|________ ";
cout<<endl<<endl<<name2<<" do you want to see the word?\n\t\t1:YES\t2:NO"<<endl;
cin>>g;
if(g=='y'){cout<<"\nThe word or phrase was ";
node *temp;
temp=a;
while(temp!=NULL)
{
cout<<temp->data;
temp=temp->next;
}
cout<<".";
}
cout<<"\nBetter Luck Next Time.";
}
}
void hangman::display()
{
cout<<"\n\n";
node *temp;
temp=b;
while(temp!=NULL)
{
cout<<temp->data<<" ";
temp=temp->next;
}
cout<<"\n\nIncorrect Alphabets: ";
node *temp1;
temp1=r;
while(temp1!=NULL)
{
cout<<temp1->data<<" ";
temp1=temp1->next;
}
}
void hangman::deadman()
{
cout<<endl<<endl;
if(miss==1)cout<<"_________";
if(miss==2)cout<<"_________"<<endl<<"|"<<endl<<"|"<<endl<<"|"<<endl<<"|"<<endl<<"|";
if(miss==3)cout<<"_________"<<endl<<"|"<<endl<<"|"<<endl<<"|"<<endl<<"|"<<endl<<"|________ ";
if(miss==4)cout<<"_________"<<endl<<"| |"<<endl<<"|"<<endl<<"|"<<endl<<"|"<<endl<<"|________ ";
if(miss==5)cout<<"_________"<<endl<<"| |"<<endl<<"| _0_"<<endl<<"|"<<endl<<"|"<<endl<<"|________ ";
if(miss==6)cout<<"_________"<<endl<<"| |"<<endl<<"| _0_"<<endl<<"| |"<<endl<<"|"<<endl<<"|________ ";
if(miss==7)cout<<"_________"<<endl<<"| |"<<endl<<"| _0_"<<endl<<"| | |"<<endl<<"|"<<endl<<"|________ ";
if(miss==8)cout<<"_________"<<endl<<"| |"<<endl<<"| _0_"<<endl<<"| | | |"<<endl<<"|"<<endl<<"|________ ";
if(miss==9)cout<<"_________"<<endl<<"| |"<<endl<<"| _0_"<<endl<<"| | | |"<<endl<<"| _/"<<endl<<"|________ ";
if(miss==10)cout<<"_________"<<endl<<"| |"<<endl<<"| _0_"<<endl<<"| | | |"<<endl<<"| _/|_ "<<endl<<"|________ ";
}
void hangman::clue()
{
int o;
char s;
node *t1,*t2;
do
{
clrscr();
cout<<"\n\n\t\t\t\t1:Give Clue\n\t\t\t\t2:Continue With The Game";
cin>>o;
switch(o)
{
case 1:{
cout<<"\n\n"<<name1<<" enter the alphabet that you want to give "<<name2<<" as a clue: ";
cin>>s;
t1=a;
t2=b;
while(t1!=NULL)
{
if(t1->data==s)t2->data=s;
t1=t1->next;
t2=t2->next;
}
break;
}
}
}
while(o!=2);
}
int main()
{
clrscr();
int x;
hangman z;
do
{
cout<<"\n\n\t\t\t\tMAIN MENU\n\n\t\t\t\t1:Start Game\n\t\t\t\t2:How To Play\n\t\t\t\t3:Credits\n\t\t\t\t4:Exit\n";
cin>>x;
switch(x)
{
case 1:{clrscr();z.creation();break;}
case 2:{clrscr();cout<<"\n\n\t\t\t\tHow To Play Hangman\n\nOne player puts up a word for another player to guess in the less than 10 wrong guesses.";break;}
case 3:{clrscr();cout<<endl<<"\n\n\t\t\tTHANK YOU FOR PLAYING HANGMAN.\n\t\t\t\tGOD BLESS YOU ALL.\n\n\n\n\n\n\t\tCoded & Created By Vishal Robertson & Yvens Pinto\n\n\t\t\t\tPeAcE OuT\n\n\n";}
}
}
while(x!=4);
return 0;
}