cargo-devcade
is a helper for building and deploying devcade games with Rust!
Installation is simple:
cargo install cargo-devcade
Psst! Make sure you also have cross
installed and working too!
cargo-devcade
and bevy
!Though it's not required, I recommend you use bevy
and devcaders
to put stuff on the screen.
Once you have cargo-devcade
installed, we can make a new project:
cargo new ferris-spinner
cd ferris-spinner
Now, let's add some dependencies we'll need:
cargo add bevy devcaders
Mary Note:
Oh, and don't forget the icons! icon.png
and banner.png
should exist in the store_icons
folder of your crate root:
mkdir store_icons
curl https://placehold.it/800x450.png -Lo store_icons/banner.png
curl https://placehold.it/512x512.png -Lo store_icons/icon.png
Before we do anything else, let's do a test build to make our project is set up properly:
cargo devcade package
This should run a build, and package your app for production.
If it didn't work, maybe you hit a bug... Or more likely you set it up wrong!
Bevy is pretty neat, here's a tiny game we can try with:
``` use bevy::{prelude::*, window::WindowMode};
fn main() { App::new() .addplugins(DefaultPlugins.set(WindowPlugin { primarywindow: Some(Window { mode: WindowMode::Fullscreen, ..default() }), ..default() })) .addstartupsystem(setupsystem) .addsystem(helloworldsystem) .run(); }
fn setup_system() { println!("Welcome to ferris spin!"); }
fn helloworldsystem() { println!("hello world"); } ```
Cool, let's give it a run:
cargo run
It does... nothing! ...Except print 'hello world' a bunch of times and make a window.
That's because we're not drawing anything yet!
Let's grab some pictures from the interwebz to use in our game:
mkdir assets
curl https://rustacean.net/assets/rustacean-flat-happy.png -o assets/ferris.png
Cool! Now let's make a camera and a ferris at startup:
```
struct Ferris {}
fn setupsystem(mut commands: Commands, assetserver: Res
And now:
cargo run
Hey, this is cool, but what if we could move the crab around?
fn hello_world_system(mut sprite_position: Query<(&mut Ferris, &mut Transform)>) {
for (_, mut transform) in &mut sprite_position {
transform.translation.x -= 1.0;
}
println!("hello world");
}
But uh... What if we could actually control it?
Hmm... But how? Maybe that devcaders
library we added earlier could help us...
``` use devcaders::{DevcadeControls, Player, Button};
fn helloworldsystem( time: Res
Cool! Now our crab moves when we move the joystick.
If you don't have a controller attached, you can use the V
and N
keys instead!
For more information, or to learn more, visit bevyengine.org!
So... We should make it possible to exit.
Add these lines to our system to exit on menu button press:
if devcade_controls.pressed(Player::P1, Button::Menu)
|| devcade_controls.pressed(Player::P2, Button::Menu)
{
std::process::exit(0);
}
Publishing to devcade is easy:
cargo devcade package