Small game framework using rust. Currently has systems for: - Rendering (glium) - Input (winit via volition) - Physics (nphysics) - Audio (rodio via impose)
Note: This is being used for/was created with specific game in mind so might not be ideal for use with everything.
Example of a basis for a game: ```rust extern crate caper;
use caper::types::{ RenderItemBuilder, TransformBuilder }; use caper::game::Game; use caper::mesh::gencube; use caper::imgui::Ui; use caper::input::Key; use caper::utils::handlefp_inputs;
fn main() { // crate an instance of the game struct let mut game = Game::new();
// define some items to be rendered
game.add_render_item(
RenderItemBuilder::default()
.vertices(gen_cube())
.instance_transforms(vec![
TransformBuilder::default()
.pos((-0.5, 0.0, -5.0))
.build()
.unwrap()
])
.build()
.unwrap());
loop {
// run the engine update
game.update(|_:&Ui|{ });
// update the first person inputs
handle_fp_inputs(&mut game.input, &mut game.cam);
// quit
if game.input.keys_down.contains(&Key::Escape) { break; }
}
} ```
Check out the examples and run with:
cargo run --example transforms