132 breaking releases

Uses old Rust 2015

0.132.0 May 21, 2024
0.131.0 Nov 14, 2023
0.130.0 Sep 26, 2023
0.128.0 Feb 25, 2023
0.12.0 Jul 31, 2015

#999 in Graphics APIs

Download history 3545/week @ 2024-08-13 2649/week @ 2024-08-20 2927/week @ 2024-08-27 2819/week @ 2024-09-03 2884/week @ 2024-09-10 2405/week @ 2024-09-17 3436/week @ 2024-09-24 2274/week @ 2024-10-01 716/week @ 2024-10-08 2223/week @ 2024-10-15 2266/week @ 2024-10-22 2718/week @ 2024-10-29 2106/week @ 2024-11-05 953/week @ 2024-11-12 1971/week @ 2024-11-19 2344/week @ 2024-11-26

7,693 downloads per month
Used in 75 crates (72 directly)

MIT license

25KB
306 lines

piston_window Build Status Crates.io Crates.io

The official Piston convenience window wrapper for the Piston game engine

Notice! If this is your first time visiting Piston, start here.

Piston-Window is designed for only one purpose: Convenience.

Documentation

  • Reexports everything you need to write 2D interactive applications
  • .draw_2d for drawing 2D, and .draw_3d for drawing 3D
  • Uses Gfx to work with 3D libraries in the Piston ecosystem
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_or_else(|e| { panic!("Failed to build PistonWindow: {}", e) });
    while let Some(e) = window.next() {
        window.draw_2d(&e, |_c, g, _d| {
            clear([0.5, 1.0, 0.5, 1.0], g);
        });
    }
}

PistonWindow uses Glutin as window back-end by default, but you can change to another back-end, for example SDL2 or GLFW by changing the type parameter:

let mut window: PistonWindow<Sdl2Window> = WindowSettings::new("Hello Piston!", [640, 480])
    .exit_on_esc(true).build().unwrap();

PistonWindow implements AdvancedWindow, Window and EventLoop. Nested game loops are supported, so you can have one inside another.

while let Some(e) = window.next() {
    if let Some(button) = e.press_args() {
        // Intro.
        while let Some(e) = window.next() {
            ...
        }
    }
}

Ideas or feedback? Open up an issue here.

Dependency graph

Dependencies

Dependencies

~5–19MB
~223K SLoC