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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
use embedded_graphics::{
prelude::*,
pixelcolor::Rgb565,
};
use embedded_hal::{
digital::v2::OutputPin,
blocking::{
spi,
},
};
use st7735_lcd::ST7735;
type MaxRowSize = heapless::consts::U50;
type MaxBlockSize = heapless::consts::U100;
type RowColors = heapless::Vec::<u16, MaxRowSize>;
type BlockColors = heapless::Vec::<u16, MaxBlockSize>;
#[derive(Debug, Clone)]
pub struct RowIterator<P: Iterator<Item = Pixel<Rgb565>>> {
pixels: P,
x_left: u8,
x_right: u8,
y: u8,
colors: RowColors,
first_pixel: bool,
}
#[derive(Debug, Clone)]
pub struct BlockIterator<R: Iterator<Item = PixelRow>> {
rows: R,
x_left: u8,
x_right: u8,
y_top: u8,
y_bottom: u8,
colors: BlockColors,
first_row: bool,
}
pub struct PixelRow {
pub x_left: u8,
pub x_right: u8,
pub y: u8,
pub colors: RowColors,
}
pub struct PixelBlock {
pub x_left: u8,
pub x_right: u8,
pub y_top: u8,
pub y_bottom: u8,
pub colors: BlockColors,
}
#[allow(dead_code)]
pub fn draw_blocks<SPI, DC, RST, T>(display: &mut ST7735<SPI, DC, RST>, item_pixels: T) -> Result<(),()>
where
SPI: spi::Write<u8>,
DC: OutputPin,
RST: OutputPin,
T: IntoIterator<Item = Pixel<Rgb565>>, {
let pixels = item_pixels.into_iter();
let rows = to_rows(pixels);
let blocks = to_blocks(rows);
for PixelBlock { x_left, x_right, y_top, y_bottom, colors, .. } in blocks {
display.set_pixels(
x_left as u16,
y_top as u16,
x_right as u16,
y_bottom as u16,
colors) ? ;
}
Ok(())
}
fn to_rows<P>(pixels: P) -> RowIterator<P>
where
P: Iterator<Item = Pixel<Rgb565>>, {
RowIterator::<P> {
pixels,
x_left: 0,
x_right: 0,
y: 0,
colors: RowColors::new(),
first_pixel: true,
}
}
fn to_blocks<R>(rows: R) -> BlockIterator<R>
where
R: Iterator<Item = PixelRow>, {
BlockIterator::<R> {
rows,
x_left: 0,
x_right: 0,
y_top: 0,
y_bottom: 0,
colors: BlockColors::new(),
first_row: true,
}
}
impl<P: Iterator<Item = Pixel<Rgb565>>> Iterator for RowIterator<P> {
type Item = PixelRow;
fn next(&mut self) -> Option<Self::Item> {
loop {
let next_pixel = self.pixels.next();
match next_pixel {
None => {
if self.first_pixel {
return None;
}
let row = PixelRow {
x_left: self.x_left,
x_right: self.x_right,
y: self.y,
colors: self.colors.clone(),
};
self.colors.clear();
self.first_pixel = true;
return Some(row);
}
Some(Pixel(coord, color)) => {
let x = coord.0 as u8;
let y = coord.1 as u8;
let color = color.0;
if self.first_pixel {
self.first_pixel = false;
self.x_left = x;
self.x_right = x;
self.y = y;
self.colors.clear();
self.colors.push(color)
.expect("never");
continue;
}
if x == self.x_right + 1 && y == self.y {
if self.colors.push(color).is_ok() {
self.x_right = x;
continue;
}
}
let row = PixelRow {
x_left: self.x_left,
x_right: self.x_right,
y: self.y,
colors: self.colors.clone(),
};
self.x_left = x;
self.x_right = x;
self.y = y;
self.colors.clear();
self.colors.push(color)
.expect("never");
return Some(row);
}
}
}
}
}
impl<R: Iterator<Item = PixelRow>> Iterator for BlockIterator<R> {
type Item = PixelBlock;
fn next(&mut self) -> Option<Self::Item> {
loop {
let next_row = self.rows.next();
match next_row {
None => {
if self.first_row {
return None;
}
let row = PixelBlock {
x_left: self.x_left,
x_right: self.x_right,
y_top: self.y_top,
y_bottom: self.y_bottom,
colors: self.colors.clone(),
};
self.colors.clear();
self.first_row = true;
return Some(row);
}
Some(PixelRow { x_left, x_right, y, colors, .. }) => {
if self.first_row {
self.first_row = false;
self.x_left = x_left;
self.x_right = x_right;
self.y_top = y;
self.y_bottom = y;
self.colors.clear();
self.colors.extend_from_slice(&colors)
.expect("never");
continue;
}
if y == self.y_bottom + 1 && x_left == self.x_left && x_right == self.x_right {
if self.colors.extend_from_slice(&colors).is_ok() {
self.y_bottom = y;
continue;
}
}
let row = PixelBlock {
x_left: self.x_left,
x_right: self.x_right,
y_top: self.y_top,
y_bottom: self.y_bottom,
colors: self.colors.clone(),
};
self.x_left = x_left;
self.x_right = x_right;
self.y_top = y;
self.y_bottom = y;
self.colors.clear();
self.colors.extend_from_slice(&colors)
.expect("never");
return Some(row);
}
}
}
}
}