forked from visigoth/SugarCubes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_PandaDriver.pde
338 lines (294 loc) · 10.6 KB
/
_PandaDriver.pde
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
import netP5.*;
import oscP5.*;
/**
* DOUBLE BLACK DIAMOND DOUBLE BLACK DIAMOND
*
* //\\ //\\ //\\ //\\
* ///\\\ ///\\\ ///\\\ ///\\\
* \\\/// \\\/// \\\/// \\\///
* \\// \\// \\// \\//
*
* EXPERTS ONLY!! EXPERTS ONLY!!
*
* This class implements the output function to the Panda Boards. It
* will be moved into GLucose once stabilized.
*/
public static class PandaDriver {
// IP address
public final String ip;
// Address to send to
private final NetAddress address;
// Whether board output is enabled
private boolean enabled = false;
// OSC message
private final OscMessage message;
// List of point indices that get sent to this board
private final int[] points;
// Packet data
private final byte[] packet = new byte[4*352]; // magic number, our UDP packet size
private static final int NO_POINT = -1;
public PandaDriver(String ip) {
this.ip = ip;
// Initialize our OSC output stuff
address = new NetAddress(ip, 9001);
message = new OscMessage("/shady/pointbuffer");
// Build the array of points, initialize all to nothing
points = new int[PandaMapping.PIXELS_PER_BOARD];
for (int i = 0; i < points.length; ++i) {
points[i] = NO_POINT;
}
}
private final static int FORWARD = -1;
private final static int BACKWARD = -2;
////////////////////////////////////////////////////////////////
//
// READ THIS RIGHT NOW BEFORE YOU MODIFY THE BELOW!!!!!!!!!!!!!
// READ THIS RIGHT NOW BEFORE YOU MODIFY THE BELOW!!!!!!!!!!!!!
// READ THIS RIGHT NOW BEFORE YOU MODIFY THE BELOW!!!!!!!!!!!!!
//
// The mappings below indicate the physical order of strips
// connected to a pandaboard channel. The strip numbers are a
// reflection of how the model is built.
//
// For ANYTHING in the model which is a rectangular prism,
// which means Cubes, the BassBox, and each Speaker, the
// strips are numbered incrementally by face. The first
// face is always the FRONT, which you are looking at.
// The next face is the RIGHT, then the BACK, then the LEFT.
//
// For every face, the strips are ordered numerically moving
// clockwise from the the TOP LEFT.
//
// So, for a cube:
//
// Strip 0: front face, top strip, left to right
// Strip 1: front face, right strip, top to bottom
// Strip 2: front face, bottom strip, right to left
// Strip 3: front face, left strip, bottom to top
//
// Strip 4: right face, top strip, left to right
// ... and so on
// Strip 14: left face, bottom strip, right to left
// Strip 15: left face, left strip, bottom to top
//
////////////////////////////////////////////////////////////////
/**
* These constant arrays indicate the order in which the strips of a cube
* are wired. There are four different options, depending on which bottom
* corner of the cube the data wire comes in.
*/
private final static int[][] CUBE_STRIP_ORDERINGS = new int[][] {
{ 2, 1, 0, 3, 13, 12, 15, 14, 4, 7, 6, 5, 11, 10, 9, 8 }, // FRONT_LEFT
{ 6, 5, 4, 7, 1, 0, 3, 2, 8, 11, 10, 9, 15, 14, 13, 12 }, // FRONT_RIGHT
{ 14, 13, 12, 15, 9, 8, 11, 10, 0, 3, 2, 1, 7, 6, 5, 4 }, // REAR_LEFT
{ 10, 9, 8, 11, 5, 4, 7, 6, 12, 15, 14, 13, 3, 2, 1, 0 }, // REAR_RIGHT
};
private final static int[][] BASS_STRIP_ORDERING = {
// front face, counterclockwise from bottom front left
{2, BACKWARD /* if this strip has extra pixels, you can add them here */ /*, 4 */ },
{1, BACKWARD /* if this strip is short some pixels, substract them here */ /*, -3 */ },
{0, BACKWARD },
{3, BACKWARD },
// left face, counterclockwise from bottom front left
{13, BACKWARD },
{12, BACKWARD },
{15, BACKWARD },
{14, BACKWARD },
// back face, counterclockwise from bottom rear left
{9, BACKWARD },
{8, BACKWARD },
{11, BACKWARD },
{10, BACKWARD },
// right face, counterclockwise from bottom rear right
{5, BACKWARD },
{4, BACKWARD },
{7, BACKWARD },
{6, BACKWARD },
};
private final static int[][] STRUT_STRIP_ORDERING = {
{6, BACKWARD},
{5, FORWARD},
{4, BACKWARD},
{3, FORWARD},
{2, BACKWARD},
{1, FORWARD},
{0, BACKWARD},
{7, FORWARD},
};
private final static int[][] FLOOR_STRIP_ORDERING = {
{0, FORWARD},
{1, FORWARD},
{2, FORWARD},
{3, BACKWARD},
};
// The speakers are currently configured to be wired the same
// as cubes with Wiring.FRONT_LEFT. If this needs to be changed,
// remove this null assignment and change the below to have mappings
// for the LEFT and RIGHT speaker
private final static int[][][] SPEAKER_STRIP_ORDERING = null; /* {
// Left speaker
{
// Front face, counter-clockwise from bottom left
{2, BACKWARD },
{1, BACKWARD },
{0, BACKWARD },
{3, BACKWARD },
},
// Right speaker
{
// Front face, counter-clockwise from bottom left
{2, BACKWARD },
{1, BACKWARD },
{0, BACKWARD },
{3, BACKWARD },
}
};*/
private final static int[][] LEFT_SPEAKER_STRIP_ORDERING = {
};
public PandaDriver(String ip, Model model, PandaMapping pm) {
this(ip);
// Ok, we are initialized, time to build the array if points in order to
// send out. We start at the head of our point buffer, and work our way
// down. This is the order in which points will be sent down the wire.
int ci = -1;
// Iterate through all our channels
for (ChannelMapping channel : pm.channelList) {
++ci;
int pi = ci * ChannelMapping.PIXELS_PER_CHANNEL;
switch (channel.mode) {
case ChannelMapping.MODE_CUBES:
// We have a list of cubes per channel
for (int rawCubeIndex : channel.objectIndices) {
if (rawCubeIndex < 0) {
// No cube here, skip ahead in the buffer
pi += Cube.POINTS_PER_CUBE;
} else {
// The cube exists, check which way it is wired to
// figure out the order of strips.
Cube cube = model.getCubeByRawIndex(rawCubeIndex);
int stripOrderIndex = 0;
switch (cube.wiring) {
case FRONT_LEFT: stripOrderIndex = 0; break;
case FRONT_RIGHT: stripOrderIndex = 1; break;
case REAR_LEFT: stripOrderIndex = 2; break;
case REAR_RIGHT: stripOrderIndex = 3; break;
}
// Iterate through all the strips on the cube and add the points
for (int stripIndex : CUBE_STRIP_ORDERINGS[stripOrderIndex]) {
// We go backwards here... in the model strips go clockwise, but
// the physical wires are run counter-clockwise
pi = mapStrip(cube.strips.get(stripIndex), BACKWARD, points, pi);
}
}
}
break;
case ChannelMapping.MODE_BASS:
for (int[] config : BASS_STRIP_ORDERING) {
pi = mapStrip(model.bassBox.strips.get(config[0]), config[1], points, pi);
if (config.length >= 3) pi += config[2];
}
break;
case ChannelMapping.MODE_STRUTS_AND_FLOOR:
for (int[] config : STRUT_STRIP_ORDERING) {
pi = mapStrip(model.bassBox.struts.get(config[0]), config[1], points, pi);
if (config.length >= 3) pi += config[2];
}
for (int[] config : FLOOR_STRIP_ORDERING) {
pi = mapStrip(model.boothFloor.strips.get(config[0]), config[1], points, pi);
if (config.length >= 3) pi += config[2];
}
break;
case ChannelMapping.MODE_SPEAKER:
int [][] speakerStripOrdering;
if (SPEAKER_STRIP_ORDERING == null) {
// Copy the cube strip ordering
int[] frontLeftCubeWiring = CUBE_STRIP_ORDERINGS[0];
speakerStripOrdering = new int[frontLeftCubeWiring.length][];
for (int i = 0; i < frontLeftCubeWiring.length; ++i) {
speakerStripOrdering[i] = new int[] { frontLeftCubeWiring[0], BACKWARD };
}
} else {
speakerStripOrdering = SPEAKER_STRIP_ORDERING[channel.objectIndices[0]];
}
for (int[] config : speakerStripOrdering) {
Speaker speaker = model.speakers.get(channel.objectIndices[0]);
pi = mapStrip(speaker.strips.get(config[0]), config[1], points, pi);
if (config.length >= 3) pi += config[2];
}
break;
case ChannelMapping.MODE_NULL:
// No problem, nothing on this channel!
break;
default:
throw new RuntimeException("Invalid/unhandled channel mapping mode: " + channel.mode);
}
}
}
private int mapStrip(Strip s, int direction, int[] points, int pi) {
if (direction == FORWARD) {
for (Point p : s.points) {
points[pi++] = p.index;
}
} else if (direction == BACKWARD) {
for (int i = s.points.size()-1; i >= 0; --i) {
points[pi++] = s.points.get(i).index;
}
} else {
throw new RuntimeException("Unidentified strip mapping direction: " + direction);
}
return pi;
}
public void disable() {
if (enabled) {
enabled = false;
println("PandaBoard/" + ip + ": OFF");
}
}
public void enable() {
if (!enabled) {
enabled = true;
println("PandaBoard/" + ip + ": ON");
}
}
public void toggle() {
enabled = !enabled;
println("PandaBoard/" + ip + ": " + (enabled ? "ON" : "OFF"));
}
public final void send(int[] colors) {
if (!enabled) {
return;
}
int len = 0;
int packetNum = 0;
for (int index : points) {
int c = (index < 0) ? 0 : colors[index];
byte r = (byte) ((c >> 16) & 0xFF);
byte g = (byte) ((c >> 8) & 0xFF);
byte b = (byte) ((c) & 0xFF);
packet[len++] = 0; // alpha channel, unused but makes for 4-byte alignment
packet[len++] = r;
packet[len++] = g;
packet[len++] = b;
// Flush once packet is full buffer size
if (len >= packet.length) {
sendPacket(packetNum++);
len = 0;
}
}
// Flush any remaining data
if (len > 0) {
sendPacket(packetNum++);
}
}
private void sendPacket(int packetNum) {
message.clearArguments();
message.add(packetNum);
message.add(packet.length);
message.add(packet);
try {
OscP5.flush(message, address);
} catch (Exception x) {
x.printStackTrace();
}
}
}