[−][src]Crate amethyst
Amethyst is a free and open source game engine written in idiomatic Rust for building video games and interactive multimedia applications. The source code is available for download on GitHub. See the online book for a complete guide to using Amethyst.
This project is a work in progress and is very incomplete. Pardon the dust!
Example
use amethyst::prelude::*; use amethyst::winit::{Event, KeyboardInput, VirtualKeyCode, WindowEvent}; struct GameState; impl SimpleState for GameState { fn on_start(&mut self, _: StateData<'_, GameData<'_, '_>>) { println!("Starting game!"); } fn handle_event(&mut self, _: StateData<'_, GameData<'_, '_>>, event: StateEvent) -> SimpleTrans { if let StateEvent::Window(event) = &event { match event { Event::WindowEvent { event, .. } => match event { WindowEvent::KeyboardInput { input: KeyboardInput { virtual_keycode: Some(VirtualKeyCode::Escape), .. }, .. } | WindowEvent::CloseRequested => Trans::Quit, _ => Trans::None, }, _ => Trans::None, } } else { Trans::None } } fn update(&mut self, _: &mut StateData<'_, GameData<'_, '_>>) -> SimpleTrans { println!("Computing some more whoop-ass..."); Trans::Quit } } fn main() -> amethyst::Result<()> { let assets_dir = "assets/"; let mut game = Application::new(assets_dir, GameState, GameDataBuilder::default())?; game.run(); Ok(()) }
Re-exports
pub use amethyst_animation as animation; |
pub use amethyst_assets as assets; |
pub use amethyst_audio as audio; |
pub use amethyst_config as config; |
pub use amethyst_controls as controls; |
pub use amethyst_core as core; |
pub use amethyst_derive as derive; |
pub use amethyst_error as error; |
pub use amethyst_input as input; |
pub use amethyst_locale as locale; |
pub use amethyst_network as network; |
pub use amethyst_rendy as renderer; |
pub use amethyst_ui as ui; |
pub use amethyst_utils as utils; |
pub use amethyst_window as window; |
pub use winit; |
pub use crate::core::ecs; |
pub use crate::core::shred; |
pub use crate::core::shrev; |
Modules
prelude | Contains common types that can be glob-imported ( |
Structs
ApplicationBuilder |
|
CallbackQueue | A simple |
CoreApplication |
|
Error | The error type used by Amethyst. |
GameData | Default game data. |
GameDataBuilder | Builder for default game data |
Logger | Allows the creation of a custom logger with a set of custom configurations. If no custom
formatting or configuration is required [ |
LoggerConfig | Logger configuration object. |
StateData | State data encapsulates the data sent to all state functions from the application main loop. |
StateEventReader | |
StateMachine | A simple stack-based state machine (pushdown automaton). |
Enums
LogLevelFilter | An enum representing the available verbosity level filters of the logger. |
StateEvent | The enum holding the different types of event that can be received in a |
StdoutLog | An enum that contains options for logging to the terminal. |
Trans | Types of state transitions. T is the type of shared data between states. E is the type of events |
Traits
DataDispose | Allow disposing game data with access to world. |
DataInit | Initialise trait for game data |
EmptyState | An empty |
SimpleState | A simple |
State | A trait which defines game states that can be used by the state machine. |
Functions
start_logger | Starts a basic logger outputting to stdout with color on supported platforms, and/or to file. |
Type Definitions
Application | An Application is the root object of the game engine. It binds the OS event loop, state machines, timers and other core components in a central place. |
Callback | The type of a callback.
This is meant to be created from within asynchonous functions ( |
EmptyTrans | An empty |
Result | Convenience alias for use in main functions that uses Amethyst. |
SimpleTrans | A simple default |
TransEvent | Event queue to trigger state |