A modular game engine written in Rust
Maintainers of Piston core libraries: @bvssvni
- Guide
- Overview
- Examples
- Tutorials
- Features
- List of games made with Piston
- Piston online docs
- How to contribute
- Discussion forum
- Twitter - @PistonDeveloper
- FAQ - Frequently Asked Questions
You should know how to build "hello world" with Rust, see http://www.rust-lang.org/.
Note; Being under active development, we use Rust nightly. If your compilation fails, try building with Rust nightly.
Add piston_window to your Cargo.toml, for example:
[dependencies]
piston_window = "0.70.0"
In "src/main.rs", type the following code:
extern crate piston_window;
use piston_window::*;
fn main() {
let mut window: PistonWindow =
WindowSettings::new("Hello Piston!", [640, 480])
.exit_on_esc(true).build().unwrap();
while let Some(event) = window.next() {
window.draw_2d(&event, |context, graphics| {
clear([1.0; 4], graphics);
rectangle([1.0, 0.0, 0.0, 1.0], // red
[0.0, 0.0, 100.0, 100.0],
context.transform,
graphics);
});
}
}
Use cargo run
to start the application. It should clear the screen in white color and draw a red rectangle.
The Piston project is a large collaboration among many developers. There are libraries for 2D, 3D, event programming, AI, image processing etc. By sharing the maintenance, we get more time to build new stuff.
Piston is as much a community project as it is a collection of libraries. Writing and maintaining code is expensive, and by sharing this cost we reach our goals faster. We believe that seeking personal goals and ambitions, while helping each other, results in higher quality.
- Our main goal is to free up time for maintainers and the people involved
- ... such that we can create new amazing stuff and reach our personal goals
- ... by making more people use Rust for game development and become engaged in open source
In addition we do research or plan to in the following areas:
- Graphics, 2D and 3D
- GUI
- Idiomatic Rust game design
- Interactive applications
- AI programming
- Animation, 2D and 3D
- Sound and music
- Network