The whole Wild Wood is snowed over! Nobody is sure how folks will deliver each other their gifts. Luckily, Bouncy got a new sled this year!

Download

Download NowName your own price

Click download now to get access to the following files:

bouncy_windows.zip 993 kB
bouncy_osx.zip 3 MB
bouncy_linux.zip 755 kB
bouncy_raspi.zip 2 MB
bouncy.p8.png 41 kB

Comments

Log in with itch.io to leave a comment.

(+1)

Great game! Very festive and polished. Love it.

I'm curious about the approach you took to generate the map for this game. I'm just starting to mess around with Pico 8 and have been thinking about efficient ways to create / manage a map. Based on your Cart, it doesn't look like you placed all the sprites directly on the map with the editor.

No need to go deep here, anything high level would be appreciated. Thanks!

Thanks!

Yes, on startup I loop over the map and convert certain tiles to game objects, set the edge tiles for ice and mud based on surrounding tiles, and throw in random decorations like grass and mushrooms. I think this sort of initialization on startup is pretty common, especially converting tiles to game objects.

If you look at my other Pico-8 projects on itch.io, you'll see a few other ways to handle the map:

  • Basil's Adventure just converts tiles to game objects.
  • Maximum Overdrive 2 is a roguelike -- it ignores the Pico-8 map and just generates map data in a Lua array.
  • Gordy and the Monster Moon uses map memory as raw bytes -- I use external tooling to edit the map and store it, compressed, in the place the map usually goes. Then on startup I decompress the map into an array and go from there. This allows the map to be much bigger than the built-in one.

I've seen some projects do fancy things to make a bigger map entirely within the Pico-8 ecosystem, like this: https://www.lexaloffle.com/bbs/?tid=46225

Hope that helps!

(+1)

Cool, thanks!

I'd always thought there were two approaches to the map - use a static map or dynamically generate a map. It sounds like your approach on Basil's Adventure is somewhere in between.