A downloadable game for Windows

A (flappy bird)-like game written in pygame-ce using less than 500 characters for the TweetTweetJam8 (2023)

GitHub: https://github.com/Matiiss/FlpyBrd

Refer to the README for this info too


HOW TO RUN THE GAME

For the windows executable:

Double click FlpyBrd.exe (or run it from a shell), after it exits it will wait for your input,

in the opened console you will see your score, press enter when you want to exit (or just close the window)


For the source code:

Open terminal in this directory and run the following commands:

pip install -r requirements.txt

python flpy_brd.py


CONTROLS

Enter/return key - to start/restart the game, i.e., use it in the score screen

Space bar - during the game makes the brd jump


MORE INFO

Survive as long as possible, don't collide with the clmns and don't leave the game window, score is determined based on the time

Download

Download
FlpyBrdWindows.zip 23 MB
Download
FlpyBrdSource.zip 1 kB

Comments

Log in with itch.io to leave a comment.

Nice work! I think my favourite thing from this year's TweetTweetJam is the variety of engines being used. So cool to see you tackle the challenge using pygame. :)

had a lot of fun playing this game!! Impressive you fit this into 500 characters!! I don’t know much about PyGame, but thank you for providing the source code so we can take a peek!

(1 edit)

Thanks a lot for trying it out and glad that you enjoyed it! It was quite a bit of headache to get this V2 out (the first one was similar but score was displayed in the console and there were a bunch of balls instead of rectangles) because I constantly ended up in a situation where I thought there was nothing more that could possibly be compacted even more, yet I somehow managed to squeeze it in at the end. pygame is a Python library for general multimedia app development but mainly everyone uses it for making games. Also probably not quite as suited for the limitation of this jam as PICO-8 is, but it's what I know at least. If you ever decide to try it out I would highly recommend using the pygame-ce distribution as most of the core devs of pygame have moved over to it: https://github.com/pygame-community/pygame-ce

Such good info!! Thank you!!