summaryrefslogtreecommitdiff
path: root/src/tom.rs
blob: 8a55f44608cb2c4718b1b2bb0f276fda2e618d36 (plain)
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
use luminance::context::GraphicsContext;
use luminance::framebuffer::Framebuffer;
use luminance::pipeline::PipelineState;
use luminance::render_state::RenderState;
use luminance::shader::program::Program;
use luminance::tess::{Mode, Tess, TessBuilder, TessSliceIndex};
use luminance::texture::Dim2;

use crate::constants;
use crate::vertex::{Vertex, VertexPosition, VertexRGB, VertexSemantics};

fn gen_rectangle(x1: f32, y1: f32, x2: f32, y2: f32, color: [u8; 3]) -> Vec<Vertex> {
    let mut vertices: Vec<Vertex> = Vec::new();

    vertices.push(Vertex {
        position: VertexPosition::new([x1, y1]),
        color: VertexRGB::new(color),
    });

    vertices.push(Vertex {
        position: VertexPosition::new([x1, y2]),
        color: VertexRGB::new(color),
    });

    vertices.push(Vertex {
        position: VertexPosition::new([x2, y2]),
        color: VertexRGB::new(color),
    });

    vertices.push(Vertex {
        position: VertexPosition::new([x2, y1]),
        color: VertexRGB::new(color),
    });

    vertices
}

fn gen_border() -> Vec<Vec<Vertex>> {
    let mut vertices: Vec<Vec<Vertex>> = Vec::new();

    vertices.push(gen_rectangle(-1.0, -1.0, 1.0, -0.9, constants::C64_RED));

    vertices.push(gen_rectangle(-1.0, -1.0, -0.9, 1.0, constants::C64_GREEN));

    vertices.push(gen_rectangle(-1.0, 1.0, 1.0, 0.9, constants::C64_BLUE));

    vertices.push(gen_rectangle(0.9, 1.0, 1.0, -1.0, constants::C64_VIOLET));

    vertices
}

fn relative(x: f32, in_min: f32, in_max: f32, out_min: f32, out_max: f32) -> f32 {
    (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min
}

#[derive(Default)]
pub struct Tom {
    border: Vec<Vec<Vertex>>,
    wave: Vec<Vertex>,
    last_x: usize,
    waveform: Vec<i16>,
    tessalations: Vec<Tess>,
}

impl Tom {
    pub fn new(waveform: Vec<i16>) -> Tom {
        Tom {
            waveform,
            border: gen_border(),
            wave: Vec::new(),
            last_x: 0,
            tessalations: Vec::new(),
        }
    }

    pub fn update<T: GraphicsContext>(&mut self, mut surface: T) -> T {
        self.tessalations.clear();

        self.update_wave();

        for vertices in self.border.iter() {
            self.tessalations.push(
                TessBuilder::new(&mut surface)
                    .add_vertices(vertices)
                    .set_mode(Mode::TriangleFan)
                    .build()
                    .unwrap(),
            );
        }

        self.tessalations.push(
            TessBuilder::new(&mut surface)
                .add_vertices(&self.wave)
                .set_mode(Mode::LineStrip)
                .build()
                .unwrap(),
        );

        surface
    }

    pub fn draw<T: GraphicsContext>(
        &self,
        mut surface: T,
        back_buffer: &Framebuffer<Dim2, (), ()>,
        program: &Program<VertexSemantics, (), ()>,
        pipeline_state: &PipelineState,
    ) -> T {
        surface.pipeline_builder().pipeline(
            &back_buffer,
            &pipeline_state,
            |_pipeline, mut shd_gate| {
                shd_gate.shade(&program, |_, mut rdr_gate| {
                    rdr_gate.render(&RenderState::default(), |mut tess_gate| {
                        for tessalation in self.tessalations.iter() {
                            tess_gate.render(tessalation.slice(..));
                        }
                    });
                });
            },
        );

        surface
    }

    fn update_wave(&mut self) {
        self.wave.clear();

        let start = self.last_x;
        let end = start + 3000;

        let max_y = *self.waveform.iter().max().unwrap() as f32;
        let min_y = *self.waveform.iter().min().unwrap() as f32;
        for x in start..end {
            self.wave.push(Vertex {
                position: VertexPosition::new([
                    relative(x as f32, start as f32, end as f32, -0.9, 0.9),
                    relative(self.waveform[x] as f32, min_y, max_y, -0.9, 0.9),
                ]),
                color: VertexRGB::new(constants::C64_GREEN),
            });
        }

        self.last_x += constants::SAMPLE_RATE / 60;
    }
}