5 个不稳定版本
0.3.1 | 2024 年 3 月 8 日 |
---|---|
0.3.0 | 2023 年 12 月 10 日 |
0.2.0 | 2023 年 10 月 21 日 |
0.1.1 | 2023 年 5 月 8 日 |
0.1.0 | 2023 年 3 月 29 日 |
#907 in 游戏开发
565KB
4K SLoC
Bottomless-pit(工作标题)
Bottomless-pit 是一个简单的 2D 游戏引擎,仍在开发中。这个库略微受到 Raylib 和其他基于 Rust 的游戏引擎(如 GGEZ)的启发。目前 Bottomless-pit 做的事情是处理键盘和鼠标输入,同时提供一种简单的方法将对象绘制到屏幕上。形状和纹理渲染器是自行编写的,但文本渲染由 glyphon 提供。要开始,请为任何你喜欢的结构实现 Game 特性
use bottomless_pit::Game;
use bottomless_pit::engine_handle::{Engine, EngineBuilder};
use bottomless_pit::render::RenderInformation;
fn main() {
let engine = EngineBuilder::new()
.build()
.expect("Failed to crate the engine!");
let game = CoolGame::new(&mut engine);
engine.run(game);
}
struct CoolGame {
// put whatever you want here
}
impl CoolGame {
pub fn new(engine_handle: &mut Engine) {
// you can even load assets before the game opens
}
}
impl Game for CoolGame {
fn render<'pass, 'others>(&'others mut self, mut render_handle: RenderInformation<'pass, 'others>) where 'others: 'pass {
// render what ever you want
}
fn update(&mut self, engine_handle: &mut Engine) {
// this is where all your logic should go
}
}
依赖关系
~29–67MB
~1M SLoC