back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/field.h
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-04-14 21:18:36 +0300
committerscratko <m@scratko.xyz>2024-04-14 21:18:36 +0300
commit0cf5dfed3e492608d044a5fc90c1815fab506fd7 (patch)
treed1efa942e89ab4f064324fcee4c623173abc5298 /field.h
parent91583d5699503e981105beecc51d37b59dc1842e (diff)
downloadpacman-0cf5dfed3e492608d044a5fc90c1815fab506fd7.tar.gz
pacman-0cf5dfed3e492608d044a5fc90c1815fab506fd7.tar.bz2
pacman-0cf5dfed3e492608d044a5fc90c1815fab506fd7.zip
Capture and liberation of ghosts
Fixed coordinate in field_has_coin. Added marks on the field for the liberation zone (1 in front of #). Prison parameters for the ghost are set. Fixed condition in BFS search (additionally exclude the current point in the loop, dx == 0 && dy == 0).
Diffstat (limited to 'field.h')
-rw-r--r--field.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/field.h b/field.h
index ecf8c9a..56921d6 100644
--- a/field.h
+++ b/field.h
@@ -64,4 +64,7 @@ void change_point_if_outside_tunnel(struct coordinates *point);
void clear_energizer(game_space field, struct coordinates point);
+int is_equal_points(struct coordinates first_point, struct coordinates
+ second_point);
+
#endif