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
|
#ifndef GUARD_GLOBALS_H
#define GUARD_GLOBALS_H
static const int MAX_COLOURS = 4;
static const int MAX_AGE = 10;
static const int MAX_MUTANT_AGE = 50;
static const int MAX_COLONY_SIZE = 1000;
static const int BORN_MUTANT_PERCENT_CHANCE = 2;
//To do: replace with vectors(?) generated from separate .txt file
static std::string maleFirstName[] =
{
"Bob",
"Nick",
"Roger",
"Tim",
"Ivan",
"John",
"Jack",
"Vincent",
"Dave",
"Donald"
};
static std::string femaleFirstName[] =
{
"Kate",
"Jane",
"Lisa",
"Kim",
"Allison",
"Sophie",
"Anna",
"Lillian",
"Sarah",
"Alexandra"
};
static std::string lastNames[] =
{
"Smith",
"Williams",
"Brown",
"von Shaft",
"Mitchell",
"O'Connor",
"Edwards",
"Harris",
"Wood",
"Cooper"
};
static std::string colourList[MAX_COLOURS] =
{
"White",
"Brown",
"Black",
"Spotted"
};
#endif // GUARD_BUNNYNODE_H
|