Skip to content

Commit

Permalink
time gentlemen
Browse files Browse the repository at this point in the history
  • Loading branch information
blex-max committed Jan 5, 2025
1 parent 2c53146 commit 31f5116
Show file tree
Hide file tree
Showing 9 changed files with 225 additions and 94 deletions.
2 changes: 2 additions & 0 deletions pacrunner/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
GAMEOVER = 3
SCORES = 4
NAME = 5
PAUSE = 6
MANUAL = 7

TITLE = r"""
__________ __________ ._.
Expand Down
308 changes: 214 additions & 94 deletions pacrunner/main.py

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions pacrunner/visobj.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,15 @@ def clear(self,
self.px,
repch)

def clearall(self,
repch = cst.GRIDCH):
self.__stdscr_ref.addch(self.py,
self.px,
repch)
self.__stdscr_ref.addch(self.y,
self.x,
repch)

def update(self):
if self.__ticker_ref.mod(self.anim_freq):
if not self.__anim_block:
Expand Down
Binary file added sound/gameover.wav
Binary file not shown.
Binary file added sound/intro.wav
Binary file not shown.
Binary file added sound/mainloop.wav
Binary file not shown.
Binary file added sound/pacman_eatfruit.wav
Binary file not shown.
Binary file added sound/pacman_eatghost.wav
Binary file not shown.
Binary file added sound/youcannotyomyom.wav
Binary file not shown.

0 comments on commit 31f5116

Please sign in to comment.