A Rust library to create a Good Game Easily.
It is built on SDL2, and aims to implement an API quite similar to (a simplified version of) the Love2D game engine. This means it will contain basic and portable drawing and sound, resource loading and event handling.
It's not meant to be everything to everyone, but rather a good base upon which to build. However, eventually there should be a ggez-goodies crate that implements higher-level systems atop this, such as a resource cache, basic GUI/debugger, scene manager, and more sophisticated drawing tools such as sprites, layered and tiled maps, etc.
See example/imageview.rs
To run, you have to copy (or symlink) the resources
directory to a
place the running game can find it. Cargo does not have an easy way
of doing this itself at the moment, so the procedure is (on Linux):
cargo build --example imageview
cp -R resources target/debug/
cargo run --example imageview
Either way, if it can't find the resources it will give you an error
along the lines of ResourceNotFound("'resources' directory not
found! Should be in "/home/foo/src/ggez/target/debug/resources")
.
Just copy the resources
directory to where the error says it's
looking.
It would be nice to have a full OpenGL-y backend like Love2D does, with things like shaders, render targets,
etc. gfx
might be the best option there, maaaaaaybe. Right now the API is mostly limited to Love2D 0.7 or so. Using OpenAL (through the ears
crate perhaps?)
for sound would get us positional audio too.