-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreature.h
56 lines (41 loc) · 1.43 KB
/
creature.h
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
#ifndef CREATURE_H
#define CREATURE_H
#include <iostream>
#include "constants.h"
#include "coords.h"
#include <vector>
class creature
{
public:
creature();
creature(char creatureType, coords position, bool hasMoved);
creature(char creatureType, int x, int y, bool hasMoved);
~creature();
//accessors
char get_creatureType();
coords get_position();
bool get_hasMoved();
//mutators
void set_creatureType(char creatureType);
void set_hasMoved(bool hasMoved);
void set_position(coords xy);
void set_position(int x, int y);
//functions
//creature now knows what the world is because it is passed on in the arguments.
//Don't forget to check if creature has moved already.
// when moving update the address, delete the old one, then REMEMBER to update the xy coordinates!!!
void move(creature* board[][ROWS]);
void die(creature* board[][ROWS]);
void breed(creature* board[][ROWS]);
std::vector<creature*> surroundings(creature* board[][ROWS], coords target);
//operators
creature& operator =(const creature& other);
private:
char _creatureType; //stores what kind of creature it is
bool _hasMoved; //starts as false, changes to true when moved. Remember to reset to true after everything has moved.
coords _position;
int _age;
//3 types of creatures: Predator, prey, wall
//Creatures can: can eat, starve, breed, move
};
#endif // CREATURE_H