Fiery Midi Revenge: A Midi Based Rhythm Game

By Matthew Watson

Idea

I always liked music games that make a level out of the song of your choosing. It makes the listening experience interactive and engrossing, and a lot more fun. For my final project, I decided to try my hand at making one of these games using midi song files. With the midi file format the onset of every note is precisely descries, and it makes it possible to make a rhythm game that precisely follows the music.

Description

Most midi files are broken up into a series of tracks. Each of these tracks usually represents and individual instrument in the song. In my midi game, you attempt to play back one track in a song by sliding the player (a little ball of fire) back and forth. If you hit the right notes you are rewarded with points! If you miss the notes the wrong notes will be played back, leaving you with a very ugly sounding rendition of the song.

The position of the fire is pretty forgiving, as long as you are generally close to a note the note will be played. The main challenge of the game is the rhythmic element. When laying out the notes for a track, some limited culling of notes will be done to make sure jumps are not totally impossible. However, some tracks are certainly harder than others to play. In the case that the onset of two or more notes occur at the same time (such as a rhythm guitar track) hitting any note will play the entire set properly.

Any midi song that is a track based midi file can be played. Some midis songs don't preserve separate track information and put all notes together in the file, these files cannot be used for the game. Generally, the main vocal tracks are the easiest to start with. To use the midi executable, call MidiGame with a midi file path as the argument.

The scoring for the game is pretty simple. Each correct note will award you 50 points. String together longer combinations of points, to unlock bonuses.

Enjoy!

Screenshots

The game menu for track selection.

An in game screenshot.

Code

There are a number of dependencies for the code of this project.
The code is organized with three main parts.

Assets

The note and pinwheel meshes I modeled myself in Maya. The space skybox I downloaded from opengameart.org. A lot of the code in the GameManager class is modeled after the example code packaged with Horde3D, which I used to learn the engine.

Download

Due to the long list of dependencies, I'm going to try and make a cmake version of my project that can build on any system. Look for this soon!