Path: | README |
Last Update: | Sat Apr 21 15:53:18 -0400 2007 |
Rubygame is a cross-platform game-development extension and library for Ruby, inspired by Pygame. The purpose of Rubygame is to empower game developers by providing them with powerful and flexible high-level concepts. Instead of worrying about low-level technical details, you can focus your energy on more interesting things (like making a fun game).
Rubygame‘s core is written in C to bind low-level SDL functions in ruby. On top of that is a pure ruby library for higher-level behavior like event and game object management.
There are two other Ruby-SDL bindings which are worth mentioning: Ruby/SDL and RUDL. Ruby/SDL is a simple wrapper which closely mirrors SDL‘s C API, while RUDL tries to provide some high-level concepts. The main differences with Rubygame come down to a matter of priorities: a great deal of care and effort goes into making Rubygame especially clean, well-documented, powerful, and easy to use.
You will definitely need these software packages to compile Rubygame:
It‘s highly recommended that you have these packages as well, or some cool features won‘t be available!
(If you don‘t have some of those, you have to disable those features by passing some flags to the build process. See "Advanced Install", below.)
If you are compiling source on a binary-based Linux ditribution, you will also need the "dev" packages of ruby, SDL, SDL_gfx, SDL_image, SDL_mixer, and SDL_ttf. (Really, you just need the header files.)
And of course, if you are compiling the source, you will need a C compiler! These versions of gcc worked fine when I tried them; other compilers might work too:
Extract the archive and enter its top directory. Then run ($ indicates as user, # as root):
$ rake build # rake install
You can provide flags to configure how the build and install tasks run. Flags are provided in an environmental variable, RUBYGAME_CONFIG. (Yes, I know this is an ugly hack. At least you only have to do it once.)
Try this command to see all the possible configuration flags:
$ RUBYGAME_CONFIG="--help" rake
IMPORTANT: if you are missing any optional SDL_* libraries, you must specify "—no-*" flags for those libraries. For example, if you don‘t have SDL_gfx:
$ RUBYGAME_CONFIG="--no-gfx" rake build
If you don‘t disable the features, the compile will probably fail when it looks for the headers and libraries. (The build system is not smart enough to automatically disable missing features.)
You can generate documentation for Rubygame‘s API by running:
# rake rdoc
Documentation will be generated as HTML in the ‘html’ directory. Open ‘html/index.html’ in a web browser to get started.
To use Rubygame in an application, do:
require 'rubygame'
You will probably also want a display window and event queue:
screen = Rubygame::Screen.new( [640,480] ) queue = Rubygame::EventQueue.new()
For more information, see the documentation (online at rubygame.sourceforge.net, or generated locally with the ‘rake rdoc’ command). You should also take a peek at the demo applications in the ‘samples’ directory.
Rubygame is distributed under the terms of the GNU Lesser GPL. See LICENSE for more details.
Some of the sample files are distributed under other licenses than the GNU Lesser GPL. See ‘samples/README’ and ‘samples/GPL’ for more details.
John Croisant (jacius at users.sourceforge.net)