-
Notifications
You must be signed in to change notification settings - Fork 0
/
zoo.cpp
455 lines (376 loc) · 10.7 KB
/
zoo.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
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/**********************************************************************
* Program Name: zoo.cpp
* Author Name: George Lenz
* Date: 2/4/2018
* Description: Implementation file for zoo class
* ********************************************************************/
#include "zoo.hpp"
#include "tiger.hpp"
#include "penguin.hpp"
#include "turtle.hpp"
#include "animal.hpp"
#include <iostream>
#include <stdlib.h>
#include <time.h>
#include "validate.hpp"
using namespace std;
//constructor
Zoo::Zoo()
{
this->tigerList = new Animal*[10];
this->penguinList = new Animal*[10];
this->turtleList = new Animal*[10];;
this->bank = 100000;
this->day = 0;
this->tigerListSize = 10;
this->penguinListSize = 10;
this->turtleListSize = 10;
}
//destructor
Zoo::~Zoo(){};
Animal** Zoo::getTigerList()
{
return this->tigerList;
}
Animal** Zoo::getPenguinList()
{
return this->penguinList;
}
Animal** Zoo::getTurtleList()
{
return this->turtleList;
}
int Zoo::getBank()
{
return this->bank;
}
int Zoo::getDay()
{
return this->day;
}
//resizes an array
void Zoo::reSizeArray(Animal** rhs, int size)
{
Animal** tempArray = new Animal*[size*2];
for (int i=0; i<size; i++)
{
tempArray[i] = rhs[i];
}
rhs=nullptr;
rhs = tempArray;
for(int i=0; i<size; i++)
{
rhs[i] = tempArray[i];
}
}
//adds an animal to the list
void Zoo::growList(Animal** list, int amount)
{
if (list == this->tigerList)
{
for(int i=0; i<amount; i++)
{
int count = Tiger::tigerCount;
if(Tiger::tigerCount == 0)
{
this->tigerList[count] = new Tiger();
}
else if((count%10) == 0)
{
reSizeArray(tigerList, count);
this->tigerList[count] = new Tiger();
}
else
{
this->tigerList[count] = new Tiger();
}
}
}
else if (list == this->penguinList)
{
for(int i=0; i<amount; i++)
{
int count = Penguin::penguinCount;
if(count == 0)
{
this->penguinList[count] = new Penguin();
}
else if((count%10) == 0)
{
reSizeArray(this->penguinList, count);
this->penguinList[count] = new Penguin();
}
else
{
this->penguinList[count] = new Penguin();
}
}
}
else if (list == this->turtleList)
{
for(int i=0; i<amount; i++)
{
int count = Turtle::turtleCount;
if(count == 0)
{
this->turtleList[count] = new Turtle();
}
else if((count%10) == 0)
{
reSizeArray(this->turtleList, count);
this->turtleList[count] = new Turtle();
}
else
{
this->turtleList[count] = new Turtle();
}
}
}
}
//subtracts the feeding cost of an animal
int Zoo::subFeedCost()
{
int tigerSize = Tiger::tigerCount;
int turtleSize = Turtle::turtleCount;
int penguinSize = Penguin::penguinCount;
int tigerDebt = 0;
int penguinDebt = 0;
int turtleDebt= 0;
int total =0;
if (Tiger::tigerCount !=0)
{
tigerDebt = tigerSize * tigerList[0]->getFoodCost();
}
if (Penguin::penguinCount !=0)
{
penguinDebt = penguinSize * penguinList[0]->getFoodCost();
}
if (Turtle::turtleCount !=0)
{
turtleDebt = turtleSize * turtleList[0]->getFoodCost();
}
total = tigerDebt + penguinDebt + turtleDebt;
this->bank = this->bank - total;
return total;
}
//increments the current day
void Zoo::incDay()
{
this->day = this->day + 1;
for(int i=0; i<Tiger::tigerCount; i++)
{
this->tigerList[i]->incAge();
}
for(int i=0; i<Penguin::penguinCount; i++)
{
this->penguinList[i]->incAge();
}
for(int i=0; i<Turtle::turtleCount; i++)
{
this->turtleList[i]->incAge();
}
}
//creates a random event
void Zoo::randomEvent()
{
srand(time(NULL));
int randNum = (1 + (rand() % 4));
switch(randNum)
{
case 1:
{
int randomAnimal = 1+ (rand()%3);
if(randomAnimal == 1)
{
cout << "OH NO! One of your tigers has become sick and died\n"
<< endl;
delete this->tigerList[Tiger::tigerCount-1];
Tiger::tigerCount = Tiger::tigerCount - 1;
}
else if(randomAnimal == 2)
{
cout << "OH NO! One of your penguins has become sick and died\n"
<< endl;
delete this->penguinList[Penguin::penguinCount-1];
Penguin::penguinCount = Penguin::penguinCount - 1;
}
else if(randomAnimal == 3)
{
cout << "OH NO! One of your turtles has become sick and died\n"
<< endl;
delete this->turtleList[Turtle::turtleCount-1];
Turtle::turtleCount = Turtle::turtleCount - 1;
}
}
break;
case 2:
{
int num = (250 + (rand()%250));
cout << "Attendance is booming! Profits are way up today! \n\n";
cout << "You've received a $" << (Tiger::tigerCount * num)
<< " bonus today!!\n\n";
this->bank = bank + (Tiger::tigerCount * num);
}
break;
case 3:
{
int randomAnimal = 1+ (rand()%3);
if(randomAnimal == 1)
{
for(int i=0; i<Tiger::tigerCount; i++)
{
if(tigerList[i]->isAdult())
{
cout << "One of your tigers has had a baby!\n"
<< endl;
this->growList(tigerList, 1);
break;
}
else
{
if(i == Tiger::tigerCount - 1)
{
cout << "Your tigers are growing fast!\n" << endl;
break;
}
else
{
continue;
}
}
}
}
else if(randomAnimal == 2)
{
for(int i=0; i<Penguin::penguinCount; i++)
{
if(penguinList[i]->isAdult())
{
cout << "One of your penguins has had 5 babies!\n"
<< endl;
this->growList(penguinList, 5);
break;
}
else
{ if(i == Penguin::penguinCount - 1)
{
cout << "Your penguins are growing fast!\n" << endl;
}
else
{
continue;
}
}
}
}
else if(randomAnimal == 3)
{
for(int i=0; i<Turtle::turtleCount; i++)
{
if(turtleList[i]->isAdult())
{
cout << "One of your turtles has had 10 babies!\n"
<< endl;
this->growList(turtleList, 10);
break;
}
else
{
if(i == Turtle::turtleCount - 1)
{
cout << "Your turtles are growing fast!\n" << endl;
}
else
{
continue;
}
}
}
}
}
break;
case 4:
{
cout << "Just a typical day in the zoo, nothing special has happened today. \n";
}
break;
}
}
//allows the user to buy a new animal
void Zoo::buyAnimal()
{
int input;
cout << "What type of animal would you like to buy? \n";
cout << endl << "1. Tiger\n2. Penguin\n3. Turtle\n" << endl;
cout << "\nSelect animal: ";
validate(&input, 1, 3);
switch(input)
{
case 1:
{
growList(tigerList, 1);
this->bank = this->bank - tigerList[0]->getCost();
}
break;
case 2:
{
growList(penguinList, 1);
this->bank = this->bank - penguinList[0]->getCost();
}
break;
case 3:
{
growList(turtleList, 1);
this->bank = this->bank - turtleList[0]->getCost();
}
break;
}
}
//deletes all memory
void Zoo::deleteAll()
{
int tiger = Tiger::tigerCount;
int penguin = Penguin::penguinCount;
int turtle = Turtle::turtleCount;
for (int i=0; i<tiger; i++)
{
delete tigerList[i];
}
delete [] tigerList;
for (int i=0; i<penguin; i++)
{
delete penguinList[i];
}
delete [] penguinList;
for (int i=0; i<turtle; i++)
{
delete turtleList[i];
}
delete [] turtleList;
}
//decreases cost of an animal from the bank
void Zoo::decCost(Animal** list)
{
this->bank = this->bank - list[0]->getCost();
}
//adds up total profits of animals
int Zoo::sumProfits()
{
int tigerProfit = 0;
int penguinProfit = 0;
int turtleProfit = 0;
if (Tiger::tigerCount != 0)
{
tigerProfit = Tiger::tigerCount * tigerList[0]->getPayOff();
}
if (Penguin::penguinCount != 0)
{
penguinProfit = Penguin::penguinCount * penguinList[0]->getPayOff();
}
if (Turtle::turtleCount != 0)
{
turtleProfit = Turtle::turtleCount * turtleList[0]->getPayOff();
}
this->bank = this->bank + (tigerProfit + penguinProfit + turtleProfit);
return tigerProfit + turtleProfit + penguinProfit;
}