Lighters

This one's for you and me, living out our dreams
We're all right where we should be
Lift my arms out wide, I open my eyes
And now all I wanna see, Is a sky full of lighters
A sky full of lighters

Introduction

Inspired by this song, starry night skies, and a passion for creative coding, Lighters is an interactive coding experiment that resulted in a small game.

The game is created using Processing. The following sections goes over the techniques and algorithms used in the project. If you just want to see the finished work, either scroll to the bottom or follow this link.

Each section also comes with links to useful websites and resources in case you would like to explore more of a specific topic.

Procedural Map Generation

Early experiments with procedural content generation lead to a separate Procedural Dungeon Generator, check the link for detailed description of different ways to create dungeon layouts.

dungeon_basic

This program uses the Random Room algorithm, which gave us rooms with a good mix of size and shape that are connected by corridors. The Random Room algorithm in a nutshell is as follows:

A few changes had to be made when integrating the algorithm into Lighters. The first was to not allow corridors to be placed at the edge of the grid. In the original algorithm, rooms have walls while corridors do not. As a result, corridors on the edge did not get a wall sprite when rendered. This can be fixed by changing the corridor generation algorithm to create walls for corridors, however, in the interest of time, the no-corridor-on-edge shortcut is taken.

Due to the above shortcut, a new problem surfaced: since corridors no longer appear at the edge, sometimes we get disconnected rooms if a room is placed by the edge. A flood-fill algorithm was added to check for disconnected rooms. When a new map is generated, the flood-fill algorithm picks and tags a random floor tile, then recursively tag its neighbors until all neighbors are tagged. All floor tiles should be tagged if all rooms are connected, so if any floor tile remains unmarked, a new map is generated. Since the likelihood of having disconnected rooms is quite low, a good map is almost always generated on the second try.

Optimization

The original dungeon generation algorithm used a 2D array to store grid information. In Lighters, the 2D array is replaced by an 1D array.

Access data: 2D array versus 1D array
2D number = array[x][y];
1D number = array[x + y*width];

While on a technical level the cost of accessing data in a 2D array versus 1D array is the same, a 1D array *could* be more useful if you're trying to make a sized-at-runtime, multi-dimensional, but still rectangular array. In the end a 2D array is easier to understand visually, so this is really more of a matter of preference than serious optimization.

References

Tile Map and Sprites

Lighters is tile-based. After a map is generated, its features are stored in a grid, with each grid cell either marked as a floor tile, a wall tile, a candle, etc. A tile-based world simplifies keeping track of where everything is, and collision detection becomes much easier since collisions can be managed through simple Axis-Aligned Bounding Box (AABB).

sprite_map

After map generation, we go through each grid cell and renders it with a sprite based on its tile content (made easy thanks to the use of tile map). The map sprite sheet consists of several different floor tiles and wall tiles for different wall orientations.

sprite_tilemap

Each floor tile receives a random floor sprite. As for wall tiles, 1 (out of 20) wall sprite is used based on the position and number of the tile's neighbors. In the sprite sheet above, the four wall tiles with pink background represent corners with transparent background (pink pixels become invisible when the sprite is rendered).

The agent sprites are stored in an array of images. When the agent is walking, the images are displayed in sequence based on framerate to create animation. For example, if there are four frames, we use imageArray[frameCount%4] to access each frame. The modulo operator calculates the remainder when one number is divided by another, so at frame 0, 4, 8... (multiples of 4), we render the sprite stored at imageArray[0], frame 3, 6, 9, and other multiples of 3 gives us the sprite at imageArray[3], and so on.

sprite_agent

Big thanks to Salt Game for providing the base sprites for the floor and wall tiles.

Optimization

Since the map is static, a simple optimization is to generate and cache the tile map during initialization. When the player moves, we simply display the cached image of the map, the viewport simply moves in response to the player's current location.

sprite_viewport

References

Collision Detection

The orginal plan was use Box2D to handle collisions, but after a few hours of playing around with the library, it became apparent that Box2D was overkill, so a custom collision detection engine was implemented instead.

collision_wall

Since no fancy physics is needed here, a simple Axis-Aligned Bounding Box is attached to each wall tile and the agent. During gameplay, the engine checks the location of the agent bounding box against each of the wall bounding boxes using a rectangle-rectangle intersection algorithm, and determines whether a collision has occurred.

One area that required some extra attention is keeping track of the direction the agent is moving towards when a collision occurs. If there is a wall to the agent's right side, the agent cannot move in that direction, but should still be able to move up, down, or left.

collision_agent

Optimization

Several checks are implemented to terminate collision processing early to save time. One optimization that was not implemented (but would help in bigger maps) is to only check bounding boxes close to the agent instead of cycling through all bounding boxes each frame.

References

Dynamic Lighting and Shadows

Lighting and shadows are two of the most important aspects of Lighters, and also took the most time to implement. For lighting, a pre-determined number of light sources (in our case candles) are placed randomly on the map. Each light source has a light radius. When rendering the tile map, pixels around the light sources are checked, if a pixel is within the light radius, a lighter version of it is drawn instead. When all pixels are processed, those within the light radius appear brighter than those out of the light's range.

To create shadows, a few extra checks are performed when a pixel is processed: if the pixel is not a floor tile (we only render shadows that appear on the floor), or if there is an object between the light source and the current pixel, then we leave the pixel as is (do not render a lighter version of it). To determine if a pixel is blocked by an object, we create a shadow volume based on positions of the wall tiles and the agent, and use a point-in-polygon algorithm to determine if a pixel is inside of that shadow volume.

light_shadow

The idea to have dynamic shadow and much of the final implementation were inspired by this tutorial. In the tutorial, shadows are drawn on top of lighted tiles. In Lighters, instead of drawing shadows, shaded pixels are simply not lit.

Optimization

A lot of optimization can be done here. Since the shadows are dynamic, the map needs to be checked constantly, if the map is large, the performance can take a big hit. Instead of iterating through all pixels at every iteration, only pixels within a specific range of the light source is checked, this cuts down the time spent on calculating lighting and shadows to the number of light sources and their light radius.

To take the above idea one step further, only light pixels within the view port are processed. This does not help if all light sources are within the viewing window. However, if only one or two light sources are within the viewport, this will save a lot of processing time.

Another point of interest is the shadow-casting edges of walls. As mentioned here:

light_leftright

[...] If you look carefully at the shadows in the demo you can see that only the lines that are facing away from the light actually influence the shape of the final shadow. This means that we're processing and drawing the shadows for many lines which we don't actually need to.

[...]

You might notice that it's the lines facing towards the lightsource that we don't need to draw shadows from. Using a little vector maths we can quite easily find which lines are facing the lightsource, and so which are worth drawing shadows for.

By doing some simple vector math and making use of dot product, we can determine which side of the edge the light source is on, cutting down the number of shadows we need to keep track of by half!

References

Light Companion

companion_light

The light companion has its own bounding box, so it casts its own shadows when it's near a light source. Also, when idle, the light companion wanders around the agent using Brownian motion, and an attraction rule is applied to make sure it does not wander too far. When the light companion lights up, it becomes a light source, complete with all the lighting rules mentioned previously.

A special "energy" variable is added to the light companion. When acting as a light source, the light companion's light radius becomes smaller as its energy slowly decreases, the energy refills over time when the light companion is not lit up. Each light source also has its own energy that decreases over time, and the light companion can seek out nearby light sources and replenish their energy. Each time a light source has been re-ignited, the rate at which its energy decreases goes up.

Optimization

The light companion checks for nearby light sources by calculating its current distance to nearby light sources, and then compares the distance to a maximum radial distance to determine whether the light source is in range. Because of this, the distance formula, which contains a costly square root function, is called very frame. By squaring both the distance formula and the maximum radial distance, the square root from the distance formula can be effectively cancelled out.

References

Miscellanea

Overall this was a fun and educational little project. A lot of time were spent on creating the map generator, the tile map and sprite engine, the collision detection engine, and dynamic lighting and shadows. Special thanks to Salt Game for giving us permission to use their floor and wall sprites, Annabelle Kennedy whose work the agent graphic is based on, and finally the song Lighters for inspiration.

Inspiration and Special Thanks
Lighters The song that started it all
Salt Game The sprites and the 2D shadow tutorial
Annabelle Kennedy The original character sprites our sprite is based on
musictomake Lighters MIDI
Shooting Star Shooting star
Flashy Programming Starry night

Results

lighters_online