public
Description: A simple clone of Asteroids written in Ruby using the Gosu game development framework
Homepage:
Clone URL: git://github.com/robc/gosu-asteroids.git
name age message
file .DS_Store Sat Jun 21 22:52:51 -0700 2008 Initial Commit [robc]
file .gitignore Sat Nov 01 04:19:22 -0700 2008 Filtering out .DS_Store files (sigh) [robc]
file asteroid.rb Sun Nov 02 00:04:33 -0700 2008 Refactoring the GameObject classes to include t... [robc]
file asteroid_manager.rb Thu Nov 06 02:02:52 -0800 2008 Tweaked velocities for asteroids to change depe... [robc]
file asteroids_game_window.rb Sun Nov 16 04:33:30 -0800 2008 Title of Window changed. [robc]
file bounds.rb Sat Nov 01 21:32:09 -0700 2008 Modifying algorithm used to position the astero... [robc]
file bullet.rb Sun Nov 02 00:04:33 -0700 2008 Refactoring the GameObject classes to include t... [robc]
file bullet_manager.rb Sun Nov 02 00:04:33 -0700 2008 Refactoring the GameObject classes to include t... [robc]
file conversions.rb Sat Jun 21 22:52:51 -0700 2008 Initial Commit [robc]
file game_constants.rb Sun Nov 16 04:21:23 -0800 2008 Tweaks to player max velocity & acceleration. ... [robc]
file game_object.rb Sun Nov 02 00:04:33 -0700 2008 Refactoring the GameObject classes to include t... [robc]
directory lib/ Sat Nov 15 15:28:07 -0800 2008 Refactoring the code to separate the logic into... [robc]
directory media/ Sat Nov 01 23:29:24 -0700 2008 Adding Large & Small asteroid images (NB: These... [robc]
file player.rb Sun Nov 16 04:21:23 -0800 2008 Tweaks to player max velocity & acceleration. ... [robc]
file readme.txt Sat Nov 01 04:17:43 -0700 2008 Making some notes in the readme for running on ... [robc]
file runme.bat Wed Sep 03 03:18:21 -0700 2008 - Adding a .gitignore to filter out OS X .DS_St... [robc]
directory screens/ Thu Nov 27 00:35:41 -0800 2008 minor simplification of some tests for the game... [robc]
readme.txt
== Asteroids Game ==

Requirements:
  * Ruby 1.8.6 - I've tested this against OS X's default Ruby (in 10.5), plus the latest Ruby One-Click Installer on 
  Windows.

Prerequisites:
  * Gosu - sudo gem install gosu (sudo not required for Windows of course)

To Play:
  * ruby asteroids_game_window.rb (or runme.bat on Windows)

Controls:
* Left Arrow    - Turn Left
* Right Arrow   - Turn Right
* Up Arrow      - Move Forward
* Space         - Fire Bullet
* Left Shift    - Hyperspace (randomly relocates you on screen)


== Improvements ==

a) Positioning of text labels
b) Adding high-scores
c) Sound effects
d) Introduce more graphical effects