Log In  
Follow
Dennis Au
[ :: Read More :: ]

Cart #15800 | 2015-10-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
15

3/4 Music Hack (also works for 5/4, 7/8, etc)

By default, music patterns in PICO-8 are 32 notes long. This makes writing music in time signatures other than 4/4 quite difficult. So writing in 3/4 can be quite difficult as 3 doesn't go evenly into 32.

Luckily, we can use the loop function in the sfx editor to cut 32 notes down to 24.

e.g.

but this will loop the first 8 notes again if we play it by itself.

The trick is to use a "empty master" pattern set at so that it plays its 32 empty notes in the time that our 24 actual notes play. Doing some maths, this just requires an empty pattern of SPD 12.

i.e.

Adding in more parts, etc, we end up with something like this:

That's it! This trick does use up one of our channels with an empty track, but since we probably need one channel for actual SFX anyways, this is okay.

You can also use this trick to get 5/4 or 7/8 using 30 or 28 notes respectively with a master of SPD 15 or 14. Experiment! The sky's the limit when it comes to weird time signatures!

Here's a 13/8:

Cart #15817 | 2015-10-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
15

Let me know if this comes in helpful, and/or if I should write this up a bit more for the PICO-Zine!

P#15802 2015-10-24 21:02 ( Edited 2015-10-25 15:51)

[ :: Read More :: ]

Cart #15791 | 2015-10-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

INCO-8
My attempt at a PICO-8 shmup.

So far I've got the basic framework in place with some enemy types, movement patterns, bullet patterns etc.
But obviously I haven't really worked on the waves or any type of progression yet.

Very, very WIP.

P#15792 2015-10-24 18:37 ( Edited 2015-10-29 18:00)