1个不稳定版本
使用旧的Rust 2015
0.1.0 | 2018年9月7日 |
---|
#2201 in 游戏开发
53KB
1.5K SLoC
提供图形、音频和输入的2D游戏引擎。
它处于开发中,因此会不断变化。计划中的功能包括
- 更高效的纹理和动态字体渲染
- 着色器
- 3D图形
不包括物理。您可以使用任何库,或者不使用。
示例
#[macro_use]
extern crate darkengine;
use darkengine::app::*;
use darkengine::window::*;
use darkengine::graphics::Texture;
use darkengine::input::{InputEvent, Key};
use darkengine::audio::{SoundStream, Sound};
struct Game {
tex: Option<Texture>,
music: Option<SoundStream>,
x: i32
}
impl App for Game {
fn load(&mut self, args: LoadArgs) {
self.tex = Some(Texture::load(canon_str!("assets/test.png"), args.display).unwrap());
let mut music = SoundStream::load(canon_str!("assets/music.ogg"), args.audio).unwrap();
music.play(args.audio);
self.music = Some(music);
}
fn update(&mut self, args: UpdateArgs) {
if args.window.is_key_pressed(Key::A) {
self.x -= 10;
}
if args.window.is_key_pressed(Key::D) {
self.x += 10;
}
}
fn render(&mut self, args: RenderArgs) {
args.renderer.draw_texture(self.tex.as_ref().unwrap(), 300 + self.x, 100);
args.renderer.draw_text("Example", 20, 20, 1.0, 1.0, 1.0, 1.0);
}
fn input(&mut self, args: InputArgs) {
match args.event {
InputEvent::KeyDown(Key::Escape) => {
args.window.stop();
},
_ => {}
}
}
fn close(&mut self, args: CloseArgs) {
args.window.stop();
}
}
fn main() {
let mut window = Window::new(WindowDef {
title: "Example".to_owned(),
width: 640,
height: 480,
.. Default::default()
});
window.main_loop(&mut Game {tex: None, music: None, x: 0});
}
依赖项
~22–33MB
~392K SLoC