-
Notifications
You must be signed in to change notification settings - Fork 0
/
led_render.h
153 lines (99 loc) · 3.5 KB
/
led_render.h
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
#ifndef __LED_RENDER_H__
#define __LED_RENDER_H__
#include "led_array.h"
#include "led_grid.h"
#define LED_RENDER_TOTAL 8
class led_render {
public:
////////////////////////////////////////////////////////////////////////////
// ??
////////////////////////////////////////////////////////////////////////////
led_render() {
for (int i=0; i<total(); i++) {
list[i] = nullptr;
}
};
////////////////////////////////////////////////////////////////////////////
// ??
////////////////////////////////////////////////////////////////////////////
virtual ~led_render() {
for (int i=0; i<total(); i++) {
delete list[i];
list[i] = nullptr;
}
}
////////////////////////////////////////////////////////////////////////////
// RENDER ALL OF THE ARRAYS AND GRIDS WITHIN A SINGLE PASS
////////////////////////////////////////////////////////////////////////////
void render();
////////////////////////////////////////////////////////////////////////////
// ADD A LED ARRAY/GRID TO OUR RENDERING COLLECTION
////////////////////////////////////////////////////////////////////////////
bool add(led_array *item) {
for (int i=0; i<total(); i++) {
if (list[i] == nullptr) {
return !!(list[i] = item);
}
}
return false;
}
////////////////////////////////////////////////////////////////////////////
// REMOVE A LED ARRAY/GRID FROM OUR COLLECTION
////////////////////////////////////////////////////////////////////////////
bool remove(led_array *item) {
for (int i=0; i<total(); i++) {
if (list[i] == item) {
list[i] = nullptr;
return true;
}
}
return false;
}
////////////////////////////////////////////////////////////////////////////
// GET THE TOTAL NUMBER OF ARRAY SLOTS
////////////////////////////////////////////////////////////////////////////
INLINE uint8_t total() { return LED_RENDER_TOTAL; }
////////////////////////////////////////////////////////////////////////////
// GET ONE OF THE LED ARRAYS
////////////////////////////////////////////////////////////////////////////
INLINE led_array *array(uint8_t offset) {
if (offset >= total()) return nullptr;
return list[offset];
}
////////////////////////////////////////////////////////////////////////////
// GET ONE OF THE LED ARRAYS
////////////////////////////////////////////////////////////////////////////
INLINE led_grid *grid(uint8_t offset) {
if (offset >= total()) return nullptr;
if (!list[offset]) return nullptr;
if (list[offset]->type() != LED_GRID) return nullptr;
return static_cast<led_grid*>(list[offset]);
}
////////////////////////////////////////////////////////////////////////////
// CLEAR ALL ARRAYS / GRIDS
////////////////////////////////////////////////////////////////////////////
void clear() {
for (int x=0; x<total(); x++) {
if (list[x]) list[x]->clear();
}
}
////////////////////////////////////////////////////////////////////////////
// FILL ALL ARRAYS / GRIDS WITH A SINGLE COLOR
////////////////////////////////////////////////////////////////////////////
void fill(color_t color) {
for (int x=0; x<total(); x++) {
if (list[x]) list[x]->fill(color);
}
}
////////////////////////////////////////////////////////////////////////////
// FADE ALL ARRAYS / GRIDS
////////////////////////////////////////////////////////////////////////////
void fade(uint8_t amount = 0x80) {
for (int x=0; x<total(); x++) {
if (list[x]) list[x]->fade(amount);
}
}
private:
led_array *list[LED_RENDER_TOTAL];
};
#endif //__LED_RENDER_H__