Cupcakes collisions in PICO-8

Juna Salviati
3 min readMay 21, 2019

--

Following this article you will be able to develop a small game featuring collisions with PICO-8.

Game concept

The game is a tribute to C64 Lazy Jones’ “The Turk”. We are going to develop “The Cupcake”, same concept…different dish!

In this game, cupcakes are delivered through a conveyor belt and the player tries to get them with a spoon, while being disturbed by a wasp wandering through the screen.

Sprite design

As usual, you are going to draw sprites first. You need to draw:

  • the cupcake
  • the spoon
  • the wasp
  • the belt
  • the floor

Here’s how I designed them but feel free to draw your own!

Map design

The map is a grid of sprites and you can place sprites on map by using map editor.

The entire map is 128x128 pixels and every sprite with zoom 1x takes 8 pixels, so the map can be divided into 16 rows and 16 columns.

While x position starts from 0 at left and increases going to the right, y is 0 at top and increases going down to the map floor.

Put the floor and the belt on the map, you will place the spoon, cupcakes and the wasp programmatically on screen.

Just to follow this tutorial, the floor should be 5 tiles high and the belt should be placed 5 tiles from the top.

Game development

To keep it simple, just begin by implementing cupcakes moving on the belt, because they only goes from left to right all the time and no user interaction is required.

Define a cupcake variable to hold the cupcake sprite number and the current cupcake position on screen.

cup = {};

Init the cupcake position and sprite in a dedicated function initCup():

in the moveCup() function, you will define how the cupcakes (even if it’s a single cupcake!) are going to move:

Here, if the cupcake goes beyond the right margin of the screen is placed beyond the left side, otherwise it goes left.

To develop wasp behaviour, define a new wasp variable:

wasp = {}

The wasp will pop in a random location on screen, so you will define initwasp() this way:

wasp variable also defines two additional fields “up” and “left” which aid to control the “random” movement across the screen.

movewasp() function uses wasp position and flags to determine wasp’s next direction:

You are going to implement spoon movement last, so you are going to define the last variable “spoon”:

var spoon = {}

Since spoon has to be launched, the variable is going to have an additional flag “launched” which will prevent x-axis movement during the launch phase.

You will also define movespoon() to implement spoon behaviour:

While the spoon is on the ground, it can be moved freely along the x axis; when it has been launched, it can only go up to reach the cupcake. Additionally, when it goes beyond the ceiling, it is restored to the initial position.

You can define the _init() callback to position all the sprites to their own location:

Once all the all the movement behaviours are defined, you can also implement the _draw() callback:

map() function simply draws the map all along the screen.

Collisions

Thinking to the map as a grid, it’s simple to define where two objects collide: this happens when their grid cells are the same.

To get the current object cell just divide the sprite x and y by 8 (the size of a cell) and do some rounding:

Now everything is set, so you can develop _update() callback:

Save

Save your work by pressing “ESC” and typing “SAVE CUPCAKE”.

Run!

--

--

Juna Salviati

Full-time Human-computer interpreter. Opinions are my own.