pixels/examples/invaders
Jay Oster afd15436d6
Fix crash on Wayland (#251)
- Rather than setting the position and window size based on available
  screen space, this PR just creates a window with a default size and
  doesn't attempt to set the position.
- Closes #29
2022-01-08 04:57:23 -08:00
..
simple-invaders Fix crash on Wayland (#251) 2022-01-08 04:57:23 -08:00
src Fix crash on Wayland (#251) 2022-01-08 04:57:23 -08:00
Cargo.toml Update dependencies (#230) 2021-12-31 14:57:57 -08:00
README.md Fix dependency bloat (#67) 2020-04-13 10:12:18 -07:00

Pixel Invaders 👾

Pixel Invaders

The pixels have invaded!

Running

cargo run --release --package invaders

Controls

Left Right Move tank

space Fire cannon

Goal

Shoot all of the invaders before they reach Earth and begin a hostile takeover. Be careful, because the entire fleet is coordinated and acts as a hive mind. Their aggression increases as their numbers dwindle.

Architecture

Pixel Invaders uses the simple-invaders crate for all game logic and drawing. Be sure to check out that crate if you are interested in any of the inner workings of the game.

This example is simply glue code that uses winit for windowing/event handling and keyboard input. The winit event loop is used to drive the simple-invaders state and rasterize each frame. Finally, pixels takes the rasterized frame buffer and sends it to the screen, optionally through a series of render passes.