blob: c909b77fa2c4271de0c966e45a4fdbdcca35d9c1 (
plain)
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
|
# Description
- A very basic Pacman clone done in python using pygame library
# Run
- Open your favourite terminal
```bash
cd src
python3 macpan.py
```
# TODO
## Must DO
- [X] Setup the basic player movement mechanics
- [X] Replace the yellow circle with a pacman sprite
- [X] Setup the sprite animation for pacman
- [X] Setup collision with walls
- [ ] Load the proper sprites for the map
- [ ] Add the ghosts in the game
- [ ] Develop an algorithm to make the ghosts find pacman in the map(BFS, A*)
- [ ] Setup the sprite animation for the ghosts
## Optional
- [ ] Setup a menu for the game
- [ ] Setup a proper sfx/audio for the game
- [ ] Add powerups
|