-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcamera_controllers.rs
More file actions
97 lines (85 loc) · 3 KB
/
camera_controllers.rs
File metadata and controls
97 lines (85 loc) · 3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
use processing_glfw::GlfwContext;
use bevy::math::Vec3;
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 = 800;
let height = 600;
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)?;
let box_geo = geometry_box(100.0, 100.0, 100.0)?;
graphics_mode_3d(graphics)?;
graphics_orbit_camera(graphics)?;
let dir_light =
light_create_directional(graphics, bevy::color::Color::srgb(1.0, 0.98, 0.95), 1_500.0)?;
transform_set_position(dir_light, Vec3::new(300.0, 400.0, 300.0))?;
transform_look_at(dir_light, Vec3::ZERO)?;
let mut angle: f32 = 0.0;
let mut mode = 0u8;
while glfw_ctx.poll_events() {
if input_key_just_pressed(KeyCode::Digit1)? {
graphics_mode_3d(graphics)?;
graphics_orbit_camera(graphics)?;
mode = 0;
}
if input_key_just_pressed(KeyCode::Digit2)? {
graphics_mode_3d(graphics)?;
graphics_free_camera(graphics)?;
mode = 1;
}
if input_key_just_pressed(KeyCode::Digit3)? {
graphics_mode_2d(graphics)?;
graphics_pan_camera(graphics)?;
mode = 2;
}
graphics_begin_draw(graphics)?;
graphics_record_command(
graphics,
DrawCommand::BackgroundColor(bevy::color::Color::srgb(0.05, 0.05, 0.07)),
)?;
if mode < 2 {
graphics_record_command(
graphics,
DrawCommand::Fill(bevy::color::Color::srgb(1.0, 0.85, 0.57)),
)?;
graphics_record_command(graphics, DrawCommand::Roughness(0.3))?;
graphics_record_command(graphics, DrawCommand::Metallic(0.8))?;
graphics_record_command(graphics, DrawCommand::PushMatrix)?;
graphics_record_command(graphics, DrawCommand::Rotate { angle })?;
graphics_record_command(graphics, DrawCommand::Geometry(box_geo))?;
graphics_record_command(graphics, DrawCommand::PopMatrix)?;
} else {
graphics_record_command(
graphics,
DrawCommand::Fill(bevy::color::Color::srgb(0.8, 0.3, 0.2)),
)?;
graphics_record_command(
graphics,
DrawCommand::Rect {
x: 300.0,
y: 200.0,
w: 200.0,
h: 200.0,
radii: [0.0; 4],
},
)?;
}
graphics_end_draw(graphics)?;
angle += 0.02;
}
Ok(())
}