Game Jam Video Game



During my first term at WPI, I participated in a 48-hour game jam, where I worked on a video game with a group of two other students (Harry and Geoffery). While the game was nothing impressive (all of us were very new), it was a very fun and enriching experience.




Click here to download the video game




The Experience

I came into the game-jam without a group but was able to find some others to work with. The theme was to pick a user-submitted phrase and make a game out of it. Our chosen phrase was "If you stick 3 quail eggs and a vial of Redbull in your TV remote you can shut down the government "birds" in a flash". Considering the time frame and our experience levels, we decided to create a silly platformer, where the player was a TV remote that had to dodge birds and collect the 3 eggs and the Redbull. Upon collecting the components, the user was able to shoot lasers at the birds. I worked on developing the idea along with level-design. I also did the bulk of the coding, including handling lives, the laser, enemies, collecting the components, and other nuances. However, as I was unfamiliar with art and music, other members of the group tackled that task and ended up producing key pieces to the project. Another programmer also implemented the TV remote's jumping along with a few other nuances.


While the project was quite rudimentary and far from complete (the second level was rushed out), the game was still a blast to show off and play with the other participants of the jam. At the end of the game-jam, we also got to see other people's projects, most of which were very impressive. I hope that next time I participate in a game-jam to use the experiences learned in my prior one along with knowledge learned in my classes to build a more polished project. And even if it ends up a mess like this game, I hope to have a good time like earlier.


Source Code Samples


Below are three scripts used in the project. The first is the script used for the player, controlling mechanics such as moving and jumping. The second script is for the game manager, which handles ongoing tasks in the video game. Examples of tasks handled by the game manager are obtaining the number of lives, setting the current score, transitioning between levels, and setting up a new game. The final script handles enemy movement and collision with the player. This code was created by myself and one of our group members, Geoffery.


Player Script

It appears you don't have a PDF plugin for this browser. You can click here to download the PDF file.

Game Manager Script

It appears you don't have a PDF plugin for this browser. You can click here to download the PDF file.

Enemy Script

It appears you don't have a PDF plugin for this browser. You can click here to download the PDF file.