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
|
//! Things related to converting 3D world space to 2D screen space
use legion::maybe_changed;
use na::{look_at_lh, perspective_lh_zo};
use stockton_types::{
components::{CameraSettings, CameraVPMatrix, Transform},
Vector3,
};
fn euler_to_direction(euler: &Vector3) -> Vector3 {
let pitch = euler.x;
let yaw = euler.y;
let _roll = euler.z; // TODO: Support camera roll
Vector3::new(
yaw.sin() * pitch.cos(),
pitch.sin(),
yaw.cos() * pitch.cos(),
)
}
#[system(for_each)]
#[filter(maybe_changed::<Transform>() | maybe_changed::<CameraSettings>())]
pub fn calc_vp_matrix(
transform: &Transform,
settings: &CameraSettings,
matrix: &mut CameraVPMatrix,
#[state] ratio: &mut f32,
) {
// Get look direction from euler angles
let direction = euler_to_direction(&transform.rotation);
// Converts world space to camera space
let view_matrix = look_at_lh(
&transform.position,
&(transform.position + direction),
&Vector3::new(0.0, 1.0, 0.0),
);
// Converts camera space to screen space
let projection_matrix = {
let mut temp = perspective_lh_zo(*ratio, settings.fov, settings.near, settings.far);
// Vulkan's co-ord system is different from OpenGLs
temp[(1, 1)] *= -1.0;
temp
};
// Chain them together into a single matrix
matrix.vp_matrix = projection_matrix * view_matrix;
}
|