Skip to content

Commit

Permalink
Add game resources and documentation
Browse files Browse the repository at this point in the history
Introduce images essential for game representation and a comprehensive README providing game description and setup instructions. Update .gitignore to exclude IDE configurations.
  • Loading branch information
srzkptrsk committed Nov 29, 2024
1 parent 948a617 commit a1b3b30
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
resources/.DS_Store
.DS_Store
compile.sh
/.idea/
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Pacbomber

Arcade game - combination of pacman and bomberman for ZX Spectrum 48K, suitable for beginners to experiment with making games for ZX Spectrum.

![title.png](resources/title.png)
![controls.png](resources/controls.png)
![firstlevel.png](resources/firstlevel.png)

To create a level, install the [Tiled](https://www.mapeditor.org) level editor Once you have created your first level, export it to CSV and then use the Python script from the tools/csv2bas.py directory.

![tiled.jpg](resources/tiled.jpg)

What are the shortcomings and wishes:
- 5 clock delay is used to organize the movement of objects, it makes sense to use a counter;
- bomb explosion may not hit the enemy Ghoul - it makes sense to add a two-dimensional array that fills and through it display blocks that have an explosion and through it to check for collision.
Binary file added resources/controls.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/firstlevel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/tiled.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/title.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a1b3b30

Please sign in to comment.