-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.rs
109 lines (87 loc) · 2.63 KB
/
context.rs
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
use std::any::Any;
use octoon_math::float2;
#[derive(Debug, Clone)]
pub struct DrawVert{
pos:float2,
uv:float2,
color:u32,
}
impl DrawVert{
pub fn new() -> DrawVert{
pos:float2::new(0.0, 0.0),
uv:float2::new(0.0, 0.0),
color:0
}
}
pub type DrawIdx = u16;
#[derive(Debug, Clone)]
struct DrawCmd{
element_count:u32,
clip_rect:float4,
texture_id:Any,
user_callback:fn(),
user_callback_data:Any,
}
#[derive(Debug, Clone)]
pub struct DrawList{
cmd_buffer:Vec<DrawCmd>,
vert_buffer:Vec<DrawVert>,
idx_buffer:Vec<DrawIdx>,
}
impl DrawList{
/*
pub fn new() -> DrawList{
DrawList{
cmd_buffer:Vec::new(),
vert_buffer:Vec::new(),
idx_buffer:Vec::new()
}
}
*/
pub reserve(&mut self, idx_count:i32, vtx_count:i32){
if let Some(cmd) = self.cmd_buffer.last(){
cmd.element_count += idx_count;
let vtx_buffer_old_size = self.vert_buffer.len();
self.vert_buffer.resize(vtx_buffer_old_size + vtx_count, DrawVert::new());
let idx_buffer_old_size = self.idx_buffer.len();
self.idx_buffer.resize(idx_buffer_old_size + idx_count, 0);
}
}
pub fn add_line(&mut self, a:&float2, b:&float2, color:u32, thickness:f32) -> &mut Self{
self
}
pub fn add_rect(&mut self) -> &mut Self{
self
}
pub fn add_convex_poly_filled(&mut self, points:&[float2], color:u32) -> &mut Self{
let mut path = Path::new();
let points_count = points.len();
let idx_count = (points_count-2)*3;
let vtx_count = points_count;
if let Some(cmd) = self.cmd_buffer.last(){
cmd.element_count += idx_count;
}
let vtx_buffer_old_size = self.vert_buffer.len();
self.vert_buffer.resize(vtx_buffer_old_size + vtx_count, DrawVert::new());
let idx_buffer_old_size = self.idx_buffer.len();
self.idx_buffer.resize(idx_buffer_old_size + idx_count, 0);
for i in 0..vtx_count{
self.vert_buffer[vtx_buffer_old_size + i] = DrawVert{
pos:points[i],
uv:float2::new(0,0),
color:color
};
}
let mut writer_idx = idx_buffer_old_size;
for i in 2..points_count{
self.idx_buffer[writer_idx] = vtx_buffer_old_size;
self.idx_buffer[writer_idx + 1] = vtx_buffer_old_size + i - 1;
self.idx_buffer[writer_idx + 2] = vtx_buffer_old_size + i;
writer_idx += 3;
}
self
}
}
#[derive(Debug, Clone)]
pub struct Context{
}