drawing problem
my hangman games works but i need to get the drawings printed according if right guess or not any ideas how i could do this
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
|
#include <iostream>
#include <fstream>
#include <time.h>
using namespace std;
void drawingone();
void drawingtwo();
void drawingthree();
void drawingfour();
void drawingfive();
void drawingsix();
void drawingseven();
void guessword(string word);
int main()
{
int number;
int count = 0;
int position;
string word;
char letter;
ifstream infile;
infile.open("words.txt");
srand(time(NULL)); //initializes the random number generator
while (count < 1)
{
number = rand()%10 +1; // rand returns a random integer from 0 to maxInt
count++;
}
for (count=0;count<number;count++)
getline (infile, word);
guessword(word);
cin.ignore(255,'\n');
cin.get();
return 0;
}
void guessword(string word)
{
char letter;
int position;
int i=0;
int maxguess=6;
string blankword[4];
blankword[0] = "_ ";
blankword[1] = "_ ";
blankword[2] = "_ ";
blankword[3] = "_ ";
cout<<word;
while (i<maxguess)
{
cout << "What letter would you like to guess?";
cin >>letter;
position = word.find(letter);
if (position > word.length())
{
cout<<letter<< " is not in the word "<<endl;
}
else
{
cout<< letter << " is in the word"<<endl;
if(position==0)
{
blankword[0] = letter;
cout<<blankword[0]<<blankword[1]<<blankword[2]<<blankword[3];
}
else if(position==1)
{
blankword[1] = letter;
cout<<blankword[0]<<blankword[1]<<blankword[2]<<blankword[3];
}
else if(position==2)
{
blankword[2] = letter;
cout<<blankword[0]<<blankword[1]<<blankword[2]<<blankword[3];
}
else if (position==3)
{
blankword[3] = letter;
cout<<blankword[0]<<blankword[1]<<blankword[2]<<blankword[3];
}
}
if (blankword[0]!="_ "&&blankword[1]!="_ "&&blankword[2]!="_ "&&blankword[3]!="_ ")
{
cout<<"Congratulations, You Win!!";
break;
}
i++;
}
if (i==maxguess)
cout<<"You Lose :(";
}
void drawingone()
{
cout << " ___________"<<endl;
cout << " | }"<<endl;
cout << " | " <<endl;
cout << "_|______________"<<endl;
}
void drawingtwo()
{
cout << " ___________"<<endl;
cout << " | }"<<endl;
cout << " | \\ " <<endl;
cout << "_|______________"<<endl;
}
void drawingthree()
{
cout << " ___________"<<endl;
cout << " | }"<<endl;
cout << " | \\ 0 " <<endl;
cout << "_|______________"<<endl;
}
void drawingfour()
{
cout << " ___________"<<endl;
cout << " | }"<<endl;
cout << " | \\ 0 /" <<endl;
cout << "_|______________"<<endl;
}
void drawingfive()
{
cout << " ___________"<<endl;
cout << " | }"<<endl;
cout << " | \\ 0 /" <<endl;
cout << " | |"<<endl;
cout << "_|______________"<<endl;
}
void drawingsix()
{
cout << " ___________"<<endl;
cout << " | }"<<endl;
cout << " | \\ 0 /" <<endl;
cout << " | |"<<endl;
cout << " | / "<<endl;
cout << "_|______________"<<endl;
}
void drawingseven()
{
cout << " ___________"<<endl;
cout << " | }"<<endl;
cout << " | \\ 0 /" <<endl;
cout << " | |"<<endl;
cout << " | / \\ "<<endl;
cout << "_|______________"<<endl;
}
|
i know i probably shouldnt have a function for each drawing, can someone help please?
In previouse posts you had a single function with a switch statement, go back to that code.
In your
guessword(string word) function you have the following:
1 2 3 4 5 6 7 8
|
...
if (position > word.length())
{
cout<<letter<< " is not in the word "<<endl;
// call your drawing function here with 'i' as your input.
}
...
|
HTH
Topic archived. No new replies allowed.