15个版本 (6个破坏性)
0.8.0 | 2022年12月29日 |
---|---|
0.7.1 | 2022年12月23日 |
0.6.0 | 2022年12月2日 |
0.5.5 | 2022年11月27日 |
0.0.9 | 2019年9月10日 |
#507 in 游戏开发
每月78次下载
用于 pixel_engine_console
170KB
4K SLoC
pixel_engine
用rust重写的旧PixelGameEngine(by OneLoneCoder)的复制品。此crate分为3个crate
pixel_engine_backend
这是提供wgpu的包装。它处理贴图绘制和主屏幕
pixel_engine_draw
此crate提供处理绘制的特质。您只需要实现一个特质(SmartDrawing特质),其他特质只是超特质,因此您可以免费使用它们
pixel_engine
这是项目的核心,它是主库,旨在供用户使用。它提供Engine结构体
如何使用
在examples
文件夹中有大量示例。您只需要运行cargo run --bin=<NAME>
,或者访问https://maix.me以获取示例代码列表。
extern crate pixel_engine as px;
use px::traits::*;
fn main() {
px::launch(async move { // the launch function is just a utility function to block on async, even on the web
let game = px::EngineWrapper::new("Lines".to_owned(), (25, 25, 20));
let mut start = (0, 0);
let mut end = (5i32, 5i32);
game.run(move |game: &mut engine::Engine| {
// Drawing to the screen:
game.clear([0, 0, 0].into());
game.draw_line(
start,
end,
[1.0, 1.0, 1.0].into(),
);
game.draw(start, [0, 255, 0].into());
game.draw(end, [255, 0, 0].into());
some_failible_function()?; // You can return errors, but it will crash the program and print the error message
// Handling inputs
game.get_key(px::inputs::Keycodes::Escape).any() {
return Ok(false); // Returning Ok(false) is the only way to do a clean shutdown
}
Ok(true) // Continue to next frame
});
});
}
这是line
示例的简化代码。有些示例实际上并不很有用(如input.rs
)。它们在这里是为了确保我不会破坏任何东西。
依赖项
~22–36MB
~408K SLoC