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
|
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
#include <iomanip>
#include "wizard.h"
using namespace std;
bool Duel(Wizard&w1, Wizard&w2);
bool Wizard::SetData(string name, char orgName)
{
string cursestring;
ifstream inFile;
int value; //used to check whether the name is correct
int index; //marks point in strings to get input for the struct
string dummy; //holds substrings to be read into the struct
string dummyTwo; //used to convert the substrings to ints or chars
string check;
string last;
string full;
char holder[256];
cout << "Input the Wizard's name " << endl;
cout << "Input is case sensitive. If the wizard has no last name type '[name] /n'" << endl;
cout << " " << endl;
cout << "Name: ";
cin >> name;
cin >> last;
if (name == "Voldemort")
{
last = name;
name = "Lord";
}
if (last == "/n" || last == " ")
full = name;
else
full = name + " " + last;
cout << "First initial of organization: ";
cin >> orgName;
organization = orgName;
if (organization == 'h' || organization == 'H')
{
org = "Hogwarts";
check = "hogwarts.in";
}
else if (organization == 'd' || organization == 'D')
{
org = "Death Eaters";
check = "death_eaters.in";
}
else if (organization == 'm' || organization == 'M')
{
org = "Ministry of Magic";
check = "ministry_of_magic.in";
}
else
{
cout << "Invalid Response" << endl;
return false;
}
inFile.open(check.c_str());
getline(inFile, dummy);
value = dummy.find(full);
while (value != 0 && inFile)
{
getline(inFile, dummy);
value = dummy.find(full);
}
if (inFile.eof())
{
cout << "Invalid Name" << endl;
return false;
}
index = dummy.find("#");
wizName = dummy.substr(0, index);
dummy = dummy.substr(index+1, dummy.length() - 1);
index = dummy.find("/");
dummyTwo = dummy.substr(0, index);
bMonth = atoi(dummyTwo.c_str());
dummy = dummy.substr(index+1, dummy.length() - 1);
index = dummy.find("/");
dummyTwo = dummy.substr(0, index);
bDay = atoi(dummyTwo.c_str());
dummy = dummy.substr(index+1, dummy.length() - 1);
index = dummy.find("#");
dummyTwo = dummy.substr(0, index);
bYear = atoi(dummyTwo.c_str());
dummy = dummy.substr(index+1, dummy.length() - 1);
index = dummy.find("#");
if (organization == 'h' || organization == 'H')
{
house = GetHouse(dummy, index);
dummy = dummy.substr(index+1, dummy.length() - 1);
}
else if (organization == 'm' || organization == 'M')
{
department = GetDept(dummy, index);
dummy = dummy.substr(index+1, dummy.length() - 1);
}
else
{} //nothing happens
index = dummy.find("#");
dummyTwo = dummy.substr(0, index);
determination = atoi(dummyTwo.c_str());
dummy = dummy.substr(index+1, dummy.length() - 1);
index = dummy.find("#");
dummyTwo = dummy.substr(0,index);
if (dummyTwo == "m")
{
gender = 'm';
}
else
{
gender = 'f';
}
dummy = dummy.substr(index+1, dummy.length() - 1);
index = dummy.find("#");
if (organization == 'h' || organization == 'H')
{
mentor = dummy.substr(0,index);
}
else if (organization == 'm' || organization == 'M')
{
supervisor = dummy.substr(0,index);
}
else
{
dementor = dummy.substr(0,index);
}
dummy = dummy.substr(index+1, dummy.length() - 1);
index = dummy.find("#");
rank = dummy.substr(0,index);
if (organization == 'h' || organization == 'H')
{
rankH = getRankH(rank);
}
else if (organization == 'm' || organization == 'M')
{
rankM = getRankMinistry(rank);
}
else
{
rankD = getRankDeath(rank,gender);
}
inFile.close();
cout << "Name of curse used ending with '#': ";
getline(cin, cursestring);
inFile.open("curses.in");
cin.getline(holder, 256, '#');
cursestring = holder;
value = curse.find(cursestring);
while (value != 0 && inFile)
{
getline(inFile, curse);
value = curse.find(cursestring);
}
if (inFile.eof())
return false;
else
{
index = curse.find('#');
dummy = curse;
curse = dummy.substr(0,index);
dummy = dummy.substr(index+1 , dummy.length() - 1);
index = dummy.find('#');
dummy = dummy.substr(0,index);
cursePower = atoi(dummy.c_str());
inFile.close();
EUPtotal = CurseImpact();
return true;
}
}
bool Wizard::PrintIntro(ofstream& outputStream)
{
if(!outputStream)
return false;
else
outputStream << wizName << endl;
outputStream << "Born " << bMonth << "/" << bDay << "/" << bYear
<< ", ";
if (gender == 'm')
outputStream << "he joined ";
else
outputStream << "she joined ";
if (organization == 'h' || organization == 'H')
outputStream << org;
else
outputStream << "the " << org;
outputStream << " and later reached rank " << rank << " under ";
if (organization == 'h' || organization == 'H')
outputStream << mentor << endl;
else if (organization == 'm' || organization == 'M')
outputStream << supervisor << endl;
else
outputStream << dementor << endl;
return true;
}
| |