rhachis

Crates.iorhachis
lib.rsrhachis
version0.11.0
sourcesrc
created_at2022-09-22 03:58:26.028228
updated_at2023-03-30 09:35:34.834082
descriptionA game framework based off wgpu and winit
homepage
repositoryhttps://github.com/SalsaGal/rhachis
max_upload_size
id671426
size485,869
SalsaGal (SalsaGal)

documentation

README

Crates.io Crates.io Docs.rs

Rhachis

Rhachis is a Rust framework primarily intended for making games. It intends to be as simple as possible, while still allowing all of the customisation you could want.

The core of the framework is its Game trait and GameData struct. The Game trait is the root of your project. Functions on it are called by the engine to perform many things like update game logic or initialise the game. A reference to the GameData struct is passed to these functions to access core components of the engine. These core components are all thread-safe, locked behind RwLocks if necessary.

Basic Usage

To start using Rhachis run cargo add rhachis to add the latest version to your Cargo.toml.

The code below shows the basic structure of a Rhachis project.

use rhachis::{graphics::EmptyRenderer, *};

// A procedural macro that starts the game from your struct.
#[run]
// The EmptyRenderer is a renderer that does nothing and acts as a placeholder.
struct Window(EmptyRenderer);

// The Game trait handles the core event loop.
impl Game for Window {
    // Called to initialise the game state after core engine starts.
    fn init() -> Self {
        Self(EmptyRenderer)
    }

    // Used to get the current renderer. It is in this function so that
    // renderers can be swapped on the fly.
    fn get_renderer(&mut self) -> &mut dyn graphics::Renderer {
        &mut self.0
    }
}

More in depth examples can be found in the repository's examples directory.

Acknowledgements

Commit count: 859

cargo fmt