(WIP) Playdate: Battle of the Bands
playdate
type
Post
summary
Working on my first game for the playdate console
status
Published
tags
playdate
edited
Jul 13, 2024 07:42 PM
slug
playdate-dev-one
date
Jun 12, 2024
Making a rhythm game for the playdate console! Code is private at the moment but, feel free to reach out to be added to the repo.
The game is âBop-Itâ mixed w âhot potatoâ. Player 1 creates a sequence of notes, then passes the console to Player 2 who needs to repeat the sequence in rhythm. Repeat back and forth, while tempo gets faster and faster!
Â
Day 1:
- Recommend this vscode extension + these type definitions (thanks to @notpeter)
- Made a title screen!
- If this ever gets released Iâd like 0 AI generated assets, but wow was OpenAI helpful to make title art. Glad it exists for prototyping.
- âGenerate an image in the style of gameboy artâ
- Made an animation by creating an animator, and moving the image on each sprite update function, by using the animator value as an offset
- Created a solution for scene management using meta-programming to call a sceenâs update function using global state. Commit
- I really donât know much about lua. Waiting till I run into problems that require me to step back and do some reading.
- What is a table? Is that just a map? idk.
Â
Day 2
- Refactored all the animations to use geometry, instead of leaning on
currentValue()
so much. Made making animation adjustments / writing new animation ideas so much easier, really happy with this approach. - Animations are generated relative to a sprites position - Commit
- Moved a lot of update logic into their relative sprites, leaving each sceneâs update method pretty empty for the moment.
- Learned more about drawing sprites vs generating them from an image.
- Added a sequencer, which is working great to draw a timed beat indication! But it doesnât make sound yet. Stuck on that.
If youâre drawing a sprite, use setSize, or itâs âdrawâ method will never be called, even if you called
:add()
! (Or setBoundary which does size + position)Â
Â
Day 3
Sound library madness.
- If a sequence is setup to loop infinitely, itâs provided âfinishCallbackâ isnât called until the sequence is stopped.
Â
Day 4:
- If you switch your audio output while the playdate simulator is open, restart the simulator! Spent a while trying to hear sound, and it wasnât my codes fault.
- You can load adpcm audio into a sample, just use
:decompress
(docs) and know it will take up ~4x more memory than the adpcm file.
Â