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
use gl;
use gl::types::*;
use na::{Point3, Matrix4};
use resource::{BufferType, AllocationType, GPUVec, Shader, ShaderAttribute, ShaderUniform};
use camera::Camera;
#[path = "error.rs"]
mod error;
pub struct LineRenderer {
shader: Shader,
pos: ShaderAttribute<Point3<f32>>,
color: ShaderAttribute<Point3<f32>>,
view: ShaderUniform<Matrix4<f32>>,
lines: GPUVec<Point3<GLfloat>>
}
impl LineRenderer {
pub fn new() -> LineRenderer {
let mut shader = Shader::new_from_str(LINES_VERTEX_SRC, LINES_FRAGMENT_SRC);
shader.use_program();
LineRenderer {
lines: GPUVec::new(Vec::new(), BufferType::Array, AllocationType::StreamDraw),
pos: shader.get_attrib::<Point3<f32>>("position").unwrap(),
color: shader.get_attrib::<Point3<f32>>("color").unwrap(),
view: shader.get_uniform::<Matrix4<f32>>("view").unwrap(),
shader: shader
}
}
pub fn needs_rendering(&self) -> bool {
self.lines.len() != 0
}
pub fn draw_line(&mut self, a: Point3<GLfloat>, b: Point3<GLfloat>, color: Point3<GLfloat>) {
for lines in self.lines.data_mut().iter_mut() {
lines.push(a);
lines.push(color);
lines.push(b);
lines.push(color);
}
}
pub fn render(&mut self, pass: usize, camera: &mut Camera) {
if self.lines.len() == 0 { return }
self.shader.use_program();
self.pos.enable();
self.color.enable();
camera.upload(pass, &mut self.view);
self.color.bind_sub_buffer(&mut self.lines, 1, 1);
self.pos.bind_sub_buffer(&mut self.lines, 1, 0);
verify!(gl::DrawArrays(gl::LINES, 0, (self.lines.len() / 2) as i32));
self.pos.disable();
self.color.disable();
for lines in self.lines.data_mut().iter_mut() {
lines.clear()
}
}
}
pub static LINES_VERTEX_SRC: &'static str = A_VERY_LONG_STRING;
pub static LINES_FRAGMENT_SRC: &'static str = ANOTHER_VERY_LONG_STRING;
const A_VERY_LONG_STRING: &'static str =
"#version 120
attribute vec3 position;
attribute vec3 color;
varying vec3 Color;
uniform mat4 view;
void main() {
gl_Position = view * vec4(position, 1.0);
Color = color;
}";
const ANOTHER_VERY_LONG_STRING: &'static str =
"#version 120
varying vec3 Color;
void main() {
gl_FragColor = vec4(Color, 1.0);
}";