-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorange_ghost.cpp
152 lines (144 loc) · 4.76 KB
/
orange_ghost.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
#include "orange_ghost.h"
Object_type Orange::who() {
return ORANGE_GHOST;
}
Coord Orange::exit_house()
{
swap(world[coord.y][coord.x], world[5][8]);
coord.y = 5;
coord.x = 8;
exithouse = true;
return coord;
}
Coord Orange::move(Coord player) {
playerloc = player;
Coord target;
target.x = playerloc.x+1 - coord.x;
target.y = playerloc.y+1 - coord.y;
if (target.x > 0) {
//try to Move right
if ((coord.x + 1 < BOARD_WIDTH) && (world[coord.y][coord.x + 1]->who() != WALL)) {
if ((world[coord.y][coord.x + 1]->who() == PLAYER))
{
world[coord.y][coord.x + 1]->set_lives(world[coord.y][coord.x + 1]->get_lives() - 1);
return coord;
}
swap(world[coord.y][coord.x], world[coord.y][coord.x + 1]);
coord.x++;
return coord;
}
}
if (target.x < 0) {
// try to Move left
if ((coord.x > 0) && (world[coord.y][coord.x - 1]->who() != WALL)) {
if ((world[coord.y][coord.x - 1]->who() == PLAYER))
{
world[coord.y][coord.x - 1]->set_lives(world[coord.y][coord.x - 1]->get_lives() - 1);
return coord;
}
swap(world[coord.y][coord.x], world[coord.y][coord.x - 1]);
coord.x--;
return coord;
}
}
if (target.y < 0) {
// try to move up
if ((coord.y > 0) && (world[coord.y - 1][coord.x]->who() != WALL)) {
if ((world[coord.y - 1][coord.x]->who() == PLAYER))
{
world[coord.y - 1][coord.x]->set_lives(world[coord.y - 1][coord.x]->get_lives() - 1);
return coord;
}
swap(world[coord.y][coord.x], world[coord.y - 1][coord.x]);
coord.y--;
return coord;
}
}
if (target.y > 0) {
// try to move down
if ((coord.y + 1 < BOARD_HEIGHT) && (world[coord.y + 1][coord.x]->who() != WALL)) {
if ((world[coord.y + 1][coord.x]->who() == PLAYER))
{
world[coord.y + 1][coord.x]->set_lives(world[coord.y + 1][coord.x]->get_lives() - 1);
return coord;
}
swap(world[coord.y][coord.x], world[coord.y + 1][coord.x]);
coord.y++;
return coord;
}
}
// Choose a random direction
srand(time(NULL));
int choice = rand() % 5;
switch (choice)
{
case UP:
if ((coord.y > 0) && (world[coord.y - 1][coord.x]->who() != WALL))
{
dir = UP;
if ((world[coord.y - 1][coord.x]->who() == PLAYER))
{
world[coord.y - 1][coord.x]->set_lives(world[coord.y - 1][coord.x]->get_lives() - 1);
return coord;
}
swap(world[coord.y][coord.x], world[coord.y - 1][coord.x]);
coord.y--;
}
break;
case LEFT:
if ((coord.x > 0) && (world[coord.y][coord.x - 1]->who() != WALL))
{
dir = LEFT;
if ((world[coord.y][coord.x - 1]->who() == PLAYER))
{
world[coord.y][coord.x - 1]->set_lives(world[coord.y][coord.x - 1]->get_lives() - 1);
return coord;
}
swap(world[coord.y][coord.x], world[coord.y][coord.x - 1]);
coord.x--;
}
break;
case RIGHT:
if ((coord.x + 1 < BOARD_WIDTH) && (world[coord.y][coord.x + 1]->who() != WALL))
{
dir = RIGHT;
if ((world[coord.y][coord.x + 1]->who() == PLAYER))
{
world[coord.y][coord.x + 1]->set_lives(world[coord.y][coord.x + 1]->get_lives() - 1);
return coord;
}
swap(world[coord.y][coord.x], world[coord.y][coord.x + 1]);
coord.x++;
}
break;
case DOWN:
if ((coord.y + 1 < BOARD_HEIGHT) && (world[coord.y + 1][coord.x]->who() != WALL))
{
dir = DOWN;
if ((world[coord.y + 1][coord.x]->who() == PLAYER))
{
world[coord.y + 1][coord.x]->set_lives(world[coord.y + 1][coord.x]->get_lives() - 1);
return coord;
}
swap(world[coord.y][coord.x], world[coord.y + 1][coord.x]);
coord.y++;
}
break;
}
return coord;
}
void Orange::display(sf::RenderWindow& window) {
sf::Sprite sprite;
sprite.setTexture(texture);
sprite.setScale(0.06, 0.06);
sprite.setOrigin((sf::Vector2f)texture.getSize() / 2.0f);
sf::Vector2f display_position;
display_position.x = coord.x * 21.7;
display_position.y = coord.y * 20.6;
sprite.setPosition(display_position);
if (dir == LEFT)
{
sprite.setScale(-0.06f, 0.06f);
}
window.draw(sprite);
}