hangman

okay i need any ideas you guys can provide. I'm making a hangman game and while i know it is overly complicated, i don't care about that just yet. Running it, it allows you to guess a letter, then displays that letter with the other letters concealed (if its a correct guess), but on the next run through, the first concealed letter will of course be covered up again, and another correct guess will show up instead if entered. How do i maintain the first letter and show a second one?

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
  #include <iostream>
#include <cstdlib>
#include <Windows.h>
#include <fstream>
#include <ctime>
#include <string>
using namespace std;
//hangman
/*
display area
pick word randomly
ask for input
handle input
display new area
prompt user again
handle drawing
handle win
handle loss


*/


//prototyping----------------------
void startScreen(int wordsize, string chosenWord);
void pickWord();
void guessCheck(string chosenWord, int wordsize);
void updateMan(int counter);

//let choose color of text

int main()
{
	system("cls");


	//setting text color //needs to handle errors in text color input. some return to main w/ else statement i guess.
	string color;
	cout << "Hi. Enter the color you'd like to use: ";
	cin >> color;
	system("cls");

	if (color == "blue" || color == "Blue" || color == "BLUE")
	{
		HANDLE hConsole;
		hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
		SetConsoleTextAttribute(hConsole, FOREGROUND_BLUE | FOREGROUND_INTENSITY);

	}


	else if (color == "red" || color == "Red" || color == "RED")
	{
		HANDLE hConsole;
		hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
		SetConsoleTextAttribute(hConsole, FOREGROUND_RED | FOREGROUND_INTENSITY);

	}


	else if (color == "green" || color == "Green" || color == "GREEN")
	{
		HANDLE hConsole;
		hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
		SetConsoleTextAttribute(hConsole, FOREGROUND_GREEN | FOREGROUND_INTENSITY);


	}









	string choice;

	cout << "Hello. enter 'play' to play a new game" << endl;
	cin >> choice;
	if (choice == "PLAY" || choice == "Play" || choice == "play")
	{
		pickWord();

	}
	else
	{
		cout << "what..?" << endl;
		main();
	}





	cout << endl;
	system("pause");
}







void startScreen(int wordsize, string chosenWord)
{


	cout << " ________" << endl;
	cout << "|       |" << endl;
	cout << "|       |" << endl;
	cout << "|" << endl;
	cout << "|" << endl;
	cout << "|" << endl;
	cout << "|" << endl;
	cout << "|" << endl;
	cout << endl;












	for (int k = 0; k < wordsize; k++)
	{
		cout << '*';

	}



	//run the function that asks for inputs(guesses)
	guessCheck(chosenWord, wordsize);



	//in case i need an alternate, yet faulty method for the stars
	/*char k = wordsize;
	//char stars[wordsize];
	char wordToGuess[k];



	for (int j = 0; j < wordsize; j++)
	{
	wordToGuess[k] = chosenWord.at(j);

	}

	*/
}


















void pickWord()
{
	//open dictionary file
	ifstream dictionary;
	dictionary.open("dictionary.txt");


	//check for error
	if (dictionary.fail())
	{
		cerr << "Failure loading dictionary." << endl;
		system("pause");
		exit(0);
	}


	//pick random word from dictionary------------------------------
	srand(time(0));
	string word[8000];
	cout << "loading dictionary...\n";
	for (int i = 0; i < 8000; i++)
	{
		dictionary >> word[i];
	}



	int choice = 1 + (rand() % 8000);
	string chosenWord = word[choice];

	cout << endl << chosenWord << endl;

	int wdsz = chosenWord.length();

	startScreen(wdsz, chosenWord);
}




void guessCheck(string chosenWord, int wordsize)
{
	char guess;

	


	cout <<endl<< "please make a guess: "; //store the guess, then check its validity. this could be enclosed in a loop of some sort. do while?
	cin >> guess;

	int visitToManCounter = 0; //counts how many times the user has guessed incorrectly
	bool x = false;
	char found[15];
	

		for (int l = 0; l < wordsize; l++)
		{
			if (chosenWord.at(l) == guess)
			{
				cout << chosenWord.at(l);
				found[l] = chosenWord.at(l);				//could use a vector here
				x = true;
				
			}
			else //except the prior discovered letters...how do i handle this?
			{
					cout << '*';
			}
			
		}



		if (x == true)
		{
			guessCheck(chosenWord, wordsize);
		}
		else if (x == false)
		{
			visitToManCounter++;
			updateMan(visitToManCounter);
		}

}



void updateMan(int counter)
{
	switch (counter)
	{

	case 1:
		cout << " ________" << endl;
		cout << "|       |" << endl;
		cout << "|       |" << endl;
		cout << "|       O" << endl;
		cout << "|" << endl;
		cout << "|" << endl;
		cout << "|" << endl;
		cout << "|" << endl;
		cout << endl;
		break;

	case 2:
		cout << " ________" << endl;
		cout << "|       |" << endl;
		cout << "|       |" << endl;
		cout << "|       O" << endl;
		cout << "|       |" << endl;
		cout << "|" << endl;
		cout << "|" << endl;
		cout << "|" << endl;
		cout << endl;
		break;


	case 3:
		cout << " ________" << endl;
		cout << "|       |" << endl;
		cout << "|       |" << endl;
		cout << "|       O" << endl;
		cout << "|       |" << endl;
		cout << "|      /" << endl;
		cout << "|" << endl;
		cout << "|" << endl;
		cout << endl;
		break;


	case 4:
		cout << " ________" << endl;
		cout << "|       |" << endl;
		cout << "|       |" << endl;
		cout << "|       O" << endl;
		cout << "|       |" << endl;
		cout << "|      / \\" << endl;
		cout << "|" << endl;
		cout << "|" << endl;
		cout << endl;
		break;


	case 5:
		cout << " ________" << endl;
		cout << "|       |" << endl;
		cout << "|       |" << endl;
		cout << "|       O" << endl;
		cout << "|      \|" << endl;
		cout << "|      / \\" << endl;
		cout << "|" << endl;
		cout << "|" << endl;
		cout << endl;
		break;


	case 6:
		cout << " ________" << endl;
		cout << "|       |" << endl;
		cout << "|       |" << endl;
		cout << "|       O" << endl;
		cout << "|      \|/" << endl;
		cout << "|      / \\" << endl;
		cout << "|" << endl;
		cout << "|" << endl;
		cout << endl;
		break;
		
	}
	cout << "You lose!";
	exit(0); //needs to handle replays
}
Your biggest problem is this

i know it is overly complicated, i don't care about that just yet.


Start off by getting rid of the colors or at least give a prompt for a real choice. What if the user enters r, y, yellow, purple, black ...?

If you want someone to test it for you, hard code a couple words in instead of having a 8000 word .txt file that no one else has.

Then narrow down your problem to a lot less than 350 lines.

Of course once you do that you might be able to answer your own question.

Topic archived. No new replies allowed.