-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinput.rs
More file actions
73 lines (61 loc) · 1.84 KB
/
input.rs
File metadata and controls
73 lines (61 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
use processing_glfw::GlfwContext;
use processing::prelude::*;
use processing_render::render::command::DrawCommand;
fn main() {
match sketch() {
Ok(_) => {
eprintln!("Sketch completed successfully");
exit(0).unwrap();
}
Err(e) => {
eprintln!("Sketch error: {:?}", e);
exit(1).unwrap();
}
};
}
fn sketch() -> error::Result<()> {
let width = 400;
let height = 400;
let mut glfw_ctx = GlfwContext::new(width, height)?;
init(Config::default())?;
let surface = glfw_ctx.create_surface(width, height)?;
let graphics = graphics_create(surface, width, height, TextureFormat::Rgba16Float)?;
while glfw_ctx.poll_events() {
graphics_begin_draw(graphics)?;
let mx = input_mouse_x(surface)?;
let my = input_mouse_y(surface)?;
graphics_record_command(
graphics,
DrawCommand::BackgroundColor(bevy::color::Color::srgb(0.15, 0.15, 0.2)),
)?;
if input_mouse_is_pressed()? {
graphics_record_command(
graphics,
DrawCommand::Fill(bevy::color::Color::srgb(0.25, 0.15, 0.2)),
)?;
} else {
}
if input_mouse_is_pressed()? {
graphics_record_command(
graphics,
DrawCommand::Fill(bevy::color::Color::srgb(0.55, 0.25, 0.2)),
)?;
} else {
}
graphics_record_command(
graphics,
DrawCommand::Rect {
x: mx - 25.0,
y: my - 25.0,
w: 50.0,
h: 50.0,
radii: [0.0; 4],
},
)?;
if input_key_is_pressed()? && input_key_is_down(KeyCode::Escape)? {
break;
}
graphics_end_draw(graphics)?;
}
Ok(())
}