X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=_PandaDriver.pde;h=26ac3d74c49aedfdb306290417044f9119ec7baf;hb=8777eaa26ac3cb626aa8ab7bed2dc880da39f039;hp=2c8b96c43653502ed1632cee9a6e73a1989cef7c;hpb=d33c2d1d64234dd5f54942a9b76afaec3833c206;p=SugarCubes.git diff --git a/_PandaDriver.pde b/_PandaDriver.pde index 2c8b96c..26ac3d7 100644 --- a/_PandaDriver.pde +++ b/_PandaDriver.pde @@ -1,10 +1,6 @@ import netP5.*; import oscP5.*; -//import hypermedia.net.*; - - - /** * DOUBLE BLACK DIAMOND DOUBLE BLACK DIAMOND @@ -19,32 +15,31 @@ import oscP5.*; * This class implements the output function to the Panda Boards. It * will be moved into GLucose once stabilized. */ -public static class PandaDriver extends Thread{ - int lastSeen; - void start(){super.start();} - void run(){ - while(true){ - if(queue.size()>0) { - for(int i=0; i queue; - - public PandaDriver(String ip, Model model, PandaMapping pm) { - this(ip); + public PandaDriver(String ip) { + this.ip = ip; - queue = new ArrayList(); - + // Initialize our OSC output stuff + address = new NetAddress(ip, 779); + message = new OscMessage("/shady/pointbuffer"); + + try { + socket = new DatagramSocket(); + } catch (Exception x) { + throw new RuntimeException(x); + } + + // 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; + } + } + + public PandaDriver(String ip, Model model, PandaMapping _pm) { + this(ip); + pm = _pm; + _model = model; // 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 + // Iterate through all our channelq s for (ChannelMapping channel : pm.channelList) { ++ci; int pi = ci * ChannelMapping.PIXELS_PER_CHANNEL; @@ -230,6 +230,9 @@ public static class PandaDriver extends Thread{ case REAR_RIGHT: stripOrderIndex = 3; break; } + // TODO(mcslee): clean up, ordering always consistent now + stripOrderIndex = 2; + // 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 @@ -289,12 +292,20 @@ public static class PandaDriver extends Thread{ } private int mapStrip(Strip s, int direction, int[] points, int pi) { + return mapStrip(s, direction, points, pi, s.points.size()); + } + + private int mapStrip(Strip s, int direction, int[] points, int pi, int len) { if (direction == FORWARD) { - for (Point p : s.points) { + int i = 0; + for (LXPoint p : s.points) { points[pi++] = p.index; + if (++i >= len) { + break; + } } } else if (direction == BACKWARD) { - for (int i = s.points.size()-1; i >= 0; --i) { + for (int i = len-1; i >= 0; --i) { points[pi++] = s.points.get(i).index; } } else { @@ -303,68 +314,123 @@ public static class PandaDriver extends Thread{ return pi; } - public void disable() { - if (enabled) { - enabled = false; - println("PandaBoard/" + ip + ": OFF"); + public PandaDriver setListener(Listener listener) { + this.listener = listener; + return this; + } + + public void setEnabled(boolean enabled) { + if (this.enabled != enabled) { + this.enabled = enabled; + println("PandaBoard/" + ip + ": " + (enabled ? "ON" : "OFF")); + if (listener != null) { + listener.onToggle(enabled); + } } } + public boolean isEnabled() { + return this.enabled; + } + + public void disable() { + setEnabled(false); + } + public void enable() { - if (!enabled) { - enabled = true; - println("PandaBoard/" + ip + ": ON"); - } + setEnabled(true); } public void toggle() { - enabled = !enabled; - println("PandaBoard/" + ip + ": " + (enabled ? "ON" : "OFF")); + setEnabled(!enabled); } + private final int[] GRIZZLY_STRIP_ORDERING = new int[] { 9, 8, 11, 5, 4, 7, 6, 10, 14, 2, 1, 0, 3, 13, 12, 15 }; + public final void send(int[] colors) { - queue.add(colors); - } - public final void sendNow(int[] colors) { - if (!enabled || colors==null) { + if (!enabled) { return; } + frameNum++; int len = 0; int packetNum = 0; - if(points==null) { return; } - for (int index: points) { - int c = 0; - if(index>0) { c= 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; + for (ChannelMapping channel : pm.channelList) { + for (int rawCubeIndex : channel.objectIndices) { + if (rawCubeIndex > 0) { + Cube cube = _model.getCubeByRawIndex(rawCubeIndex); + + // TODO(mcslee): clean this up, precompute paths + for (int stripIndex : GRIZZLY_STRIP_ORDERING) { + Strip strip = cube.strips.get(stripIndex); + int stripLen = ((stripIndex == 9) || (stripIndex == 16)) ? 15 : 16; + for (int i = stripLen-1; i >= 0; --i) { + int c = colors[strip.points.get(i).index]; + byte r = (byte) ((c >> 16) & 0xFF); + byte g = (byte) ((c >> 8) & 0xFF); + byte b = (byte) ((c) & 0xFF); + packet[len++] = (byte) 0; // alpha channel, unused but makes for 4-byte alignment + packet[len++] = (byte) r; + packet[len++] = (byte) g; + packet[len++] = (byte) b; + } + } + +// for (LXPoint p : cube.points) { +// int c = (p.index < 0) ? 0 : colors[p.index]; +// byte r = (byte) ((c >> 16) & 0xFF); +// byte g = (byte) ((c >> 8) & 0xFF); +// byte b = (byte) ((c) & 0xFF); +// packet[len++] = (byte) 0; // alpha channel, unused but makes for 4-byte alignment +// packet[len++] = (byte) r; +// packet[len++] = (byte) g; +// packet[len++] = (byte) b; +// } + } } + // println("Packet number: " + packetNum); + sendPacket(frameNum, packetNum++); + len = 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 any remaining data - if (len > 0) { - sendPacket(packetNum++); - } + // // 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) { + private void sendPacket(int frameNum, int packetNum) { + // println("Sending frame #" + frameNum + ", channel # " + packetNum); message.clearArguments(); + message.add(frameNum); + message.add(0xDEADBEEF); message.add(packetNum); + message.add(0xFEEDBEEF); message.add(packet.length); message.add(packet); + message.add(0xBEFFFFEB); + try { - //udp.send(packet, "10.200.1.29", 9001); - OscP5.flush(message, address); + // OscP5.flush(message, address); // new DatagramSocket every time, no thanks + byte[] bytes = message.getBytes(); + DatagramPacket packet = new DatagramPacket(bytes, bytes.length, address.inetaddress(), PORT); + socket.send(packet); } catch (Exception x) { x.printStackTrace(); }