Skip to content

masonhale/Starfighter-Gosu-Tutorial

Repository files navigation

This is another ruby tutorial for the awesome Gosu game library. (http://www.libgosu.org)

This tutorial builds on the Ruby Tutorial example that is included in the game library. As a project to help teach my teenage son Ruby programming, we dissected the original Gosu Ruby Tutorial and put it back to together in steps to learn the basics of game programming and to make a game of our own. This tutorial borrows heavily from the media assets of the Gosu examples.

Running

First, you need to install the gosu gem:

$ gem install gosu

Please note: the gosu gem depends on the SDL2 library. You may need to install the SDL2 library on your system. On a Mac, you can use Homebrew to install SDL2:

$ brew install sdl2

Run the Main.rb file to see the final game:

$ ruby Main.rb

Background

The original Ruby Tutorial featured Asteroids-style navigation where left and right arrow keys rotate the ship, and the up and down keys control thrust and brake. The objective of the tutorial was to fly around the screen collecting stars.

This tutorial features "Galaga-style" fixed-angle navigation, where left and right move the ship along the x-axis and up and down move the ship along the y-axis.

More importantly we added weapons! The weapons include single-shot (Space Key) and double-shot (Option/Alt Key) lasers, a "super shot" cannon (Control Key) that fires slowly but destroys anything in its path, and finally a nuke (N Key) that clears all obstacles from the screen when detonated. The nuke is only available if the ship's power level is full.

While in the original tutorial flying over a star would "collect" the star, in this tutorial hitting a star with your ship destroys the ship with an appropriately gratuitous explosion. To protect your ship you have a shield (Shift Key) that can be activated provided the ship's energy tank is not empty.

Tutorial Steps

This tutorial is broken into 6 steps:

01_basic_window.rb

Demonstrates Gosu::Window and its update/draw loop

02_graphics.rb

Demonstrates loading images and drawing to the window

Screenshot: 02_graphics.rb

03_basic_control.rb

Demonstrates input with a Ship that can fly around the screen

Screenshot: 03_basic_control.rb

04_sounds_and_weaponry.rb

Adds weapons and sounds to 03_basic_control

Screenshot: 04_sounds_and_weaponry.rb

05_collisions.rb

Add Stars as obstacles with simple collision detection

Screenshot: 05_collisions.rb

Main.rb

Complete game with user interface, life counting, pause, etc.

Classes are organized into separate files in lib directory

Starfighter game: Main.rb

Pressing 'P' will pause the game and display the various controls. There are cheat codes available on the pause screen, but you will have to look through the source code to discover what those are.

About

Another Ruby Gosu Game Library Tutorial

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages