logo
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
use cgmath::Point3;
use std::mem;

use crate::{
    foundation::colorspace::Color,
    platform::core::{
        traits::{VertexAttributesLayout, VertexBufferLayout},
        BufferAddress, VertexAttribute, VertexFormat, VertexStepMode,
    },
    prelude::color,
};

// Vertex3p3n4c:
// @pos: The actual position component of the position attribute
// @color: The actual color component of the color attribute
//
// A convenience vertex definition that can be used with
// primitive_new_p3c4().
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct P3N3C4 {
    pub pos: Point3<f32>,
    pub nor: Point3<f32>,
    pub color: Color,
}

impl Default for P3N3C4 {
    fn default() -> Self {
        Self {
            pos: Point3 {
                x: 0.0,
                y: 0.0,
                z: 0.0,
            },
            nor: Point3 {
                x: 0.0,
                y: 0.0,
                z: 0.0,
            },
            color: color::BLACK,
        }
    }
}

impl P3N3C4 {
    pub fn new(pos: Point3<f32>, nor: Point3<f32>, color: Color) -> Self {
        Self { pos, nor, color }
    }

    pub fn from_components(pos: [f32; 3], nor: [f32; 3], color: [f32; 4]) -> Self {
        Self {
            pos: Point3 {
                x: pos[0],
                y: pos[1],
                z: pos[2],
            },
            nor: Point3 {
                x: nor[0],
                y: nor[1],
                z: nor[2],
            },
            color: Color {
                red: color[0],
                green: color[1],
                blue: color[2],
                alpha: color[3],
            },
        }
    }
}

impl VertexAttributesLayout for P3N3C4 {
    fn layout() -> &'static VertexBufferLayout<'static> {
        &VertexBufferLayout {
            array_stride: mem::size_of::<P3N3C4>() as BufferAddress,
            step_mode: VertexStepMode::Vertex,
            attributes: &[
                VertexAttribute {
                    offset: 0,
                    shader_location: 0,
                    format: VertexFormat::Float32x3,
                },
                VertexAttribute {
                    offset: mem::size_of::<[f32; 3]>() as BufferAddress, // size of previous parts
                    shader_location: 1,
                    format: VertexFormat::Float32x3,
                },
                VertexAttribute {
                    offset: mem::size_of::<[f32; 6]>() as BufferAddress, // size of previous parts
                    shader_location: 2,
                    format: VertexFormat::Float32x4,
                },
            ],
        }
    }
}