├── CMakeLists.txt ├── Dockerfile ├── Fonts ├── VpPixel.ttf └── emulogic.ttf ├── Headers ├── Blinky.hpp ├── Board.hpp ├── Clyde.hpp ├── Entity.hpp ├── Fruit.hpp ├── Game.hpp ├── Ghost.hpp ├── Globals.hpp ├── Inky.hpp ├── Pac.hpp ├── Pinky.hpp ├── Position.hpp ├── Sound.hpp ├── Texture.hpp └── Timer.hpp ├── HighScore.txt ├── Project.dev ├── Project.ico ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_mixer.dll ├── SDL2_ttf.dll ├── Sounds ├── EatFruit.wav ├── ExtraLife.wav ├── GhostDeath.wav ├── Intro.wav ├── PacDeath.wav ├── ScatterGhost.wav └── Waka.wav ├── Textures ├── Door.png ├── Energizer24.png ├── Fruit32.png ├── GameOver32.png ├── GhostBody32.png ├── GhostEyes32.png ├── Lives32.png ├── Map24.png ├── PacMan32.png └── Pellet24.png ├── cmake └── sdl2 │ ├── Copyright.txt │ ├── FindSDL2.cmake │ ├── FindSDL2_gfx.cmake │ ├── FindSDL2_image.cmake │ ├── FindSDL2_mixer.cmake │ ├── FindSDL2_net.cmake │ ├── FindSDL2_ttf.cmake │ └── README.md ├── libfreetype-6.dll ├── libpng16-16.dll ├── main.cpp ├── readme.md └── zlib1.dll /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Dockerfile -------------------------------------------------------------------------------- /Fonts/VpPixel.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Fonts/VpPixel.ttf -------------------------------------------------------------------------------- /Fonts/emulogic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Fonts/emulogic.ttf -------------------------------------------------------------------------------- /Headers/Blinky.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Blinky.hpp -------------------------------------------------------------------------------- /Headers/Board.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Board.hpp -------------------------------------------------------------------------------- /Headers/Clyde.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Clyde.hpp -------------------------------------------------------------------------------- /Headers/Entity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Entity.hpp -------------------------------------------------------------------------------- /Headers/Fruit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Fruit.hpp -------------------------------------------------------------------------------- /Headers/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Game.hpp -------------------------------------------------------------------------------- /Headers/Ghost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Ghost.hpp -------------------------------------------------------------------------------- /Headers/Globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Globals.hpp -------------------------------------------------------------------------------- /Headers/Inky.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Inky.hpp -------------------------------------------------------------------------------- /Headers/Pac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Pac.hpp -------------------------------------------------------------------------------- /Headers/Pinky.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Pinky.hpp -------------------------------------------------------------------------------- /Headers/Position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Position.hpp -------------------------------------------------------------------------------- /Headers/Sound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Sound.hpp -------------------------------------------------------------------------------- /Headers/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Texture.hpp -------------------------------------------------------------------------------- /Headers/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Headers/Timer.hpp -------------------------------------------------------------------------------- /HighScore.txt: -------------------------------------------------------------------------------- 1 | 1010 -------------------------------------------------------------------------------- /Project.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Project.dev -------------------------------------------------------------------------------- /Project.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Project.ico -------------------------------------------------------------------------------- /SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/SDL2.dll -------------------------------------------------------------------------------- /SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/SDL2_image.dll -------------------------------------------------------------------------------- /SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/SDL2_mixer.dll -------------------------------------------------------------------------------- /SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/SDL2_ttf.dll -------------------------------------------------------------------------------- /Sounds/EatFruit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Sounds/EatFruit.wav -------------------------------------------------------------------------------- /Sounds/ExtraLife.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Sounds/ExtraLife.wav -------------------------------------------------------------------------------- /Sounds/GhostDeath.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Sounds/GhostDeath.wav -------------------------------------------------------------------------------- /Sounds/Intro.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Sounds/Intro.wav -------------------------------------------------------------------------------- /Sounds/PacDeath.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Sounds/PacDeath.wav -------------------------------------------------------------------------------- /Sounds/ScatterGhost.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Sounds/ScatterGhost.wav -------------------------------------------------------------------------------- /Sounds/Waka.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Sounds/Waka.wav -------------------------------------------------------------------------------- /Textures/Door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/Door.png -------------------------------------------------------------------------------- /Textures/Energizer24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/Energizer24.png -------------------------------------------------------------------------------- /Textures/Fruit32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/Fruit32.png -------------------------------------------------------------------------------- /Textures/GameOver32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/GameOver32.png -------------------------------------------------------------------------------- /Textures/GhostBody32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/GhostBody32.png -------------------------------------------------------------------------------- /Textures/GhostEyes32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/GhostEyes32.png -------------------------------------------------------------------------------- /Textures/Lives32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/Lives32.png -------------------------------------------------------------------------------- /Textures/Map24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/Map24.png -------------------------------------------------------------------------------- /Textures/PacMan32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/PacMan32.png -------------------------------------------------------------------------------- /Textures/Pellet24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/Textures/Pellet24.png -------------------------------------------------------------------------------- /cmake/sdl2/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/cmake/sdl2/Copyright.txt -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/cmake/sdl2/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_gfx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/cmake/sdl2/FindSDL2_gfx.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/cmake/sdl2/FindSDL2_image.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_mixer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/cmake/sdl2/FindSDL2_mixer.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_net.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/cmake/sdl2/FindSDL2_net.cmake -------------------------------------------------------------------------------- /cmake/sdl2/FindSDL2_ttf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/cmake/sdl2/FindSDL2_ttf.cmake -------------------------------------------------------------------------------- /cmake/sdl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/cmake/sdl2/README.md -------------------------------------------------------------------------------- /libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/libfreetype-6.dll -------------------------------------------------------------------------------- /libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/libpng16-16.dll -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/main.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/readme.md -------------------------------------------------------------------------------- /zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaFeggi/PacMan_SDL/HEAD/zlib1.dll --------------------------------------------------------------------------------