diff --git a/lab5/src/maps/README.md b/lab5/src/maps/README.md new file mode 100644 index 0000000000000000000000000000000000000000..46fd73d61630a78075b8c276a14cdac42681b66c --- /dev/null +++ b/lab5/src/maps/README.md @@ -0,0 +1,9 @@ +# Maps +A map is represented by a 21x21 pixel image. +Each pixel may represent a different element dependindg on its color in RGB +* Walls : blue pixels `0x0000FF` +* Path : black pixels `0x000000` +* Food/Score : green pixels `0x00ff00` +* Special food : white pixels `0xffffff` +* Pac man : yellow pixel `0xffff00` +* Enemies spwan zone : red pixels `0xff0000` \ No newline at end of file diff --git a/lab5/src/maps/map1.png b/lab5/src/maps/map1.png new file mode 100644 index 0000000000000000000000000000000000000000..4de1dacccaa2756703ec60c0a1a6a280a75a8f50 Binary files /dev/null and b/lab5/src/maps/map1.png differ diff --git a/lab5/src/maps/map2.png b/lab5/src/maps/map2.png new file mode 100644 index 0000000000000000000000000000000000000000..b88dbcda04883a7c266092fe2f5abbf0b1146634 Binary files /dev/null and b/lab5/src/maps/map2.png differ diff --git a/lab5/src/maps/maps3.png b/lab5/src/maps/maps3.png new file mode 100644 index 0000000000000000000000000000000000000000..b488c4f71f9f8c6132d00e62bf063b85032439be Binary files /dev/null and b/lab5/src/maps/maps3.png differ