X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=_PandaDriver.pde;h=2c8b96c43653502ed1632cee9a6e73a1989cef7c;hb=a7c8d80aea0abed745934ffcc723b7a7f542d6d0;hp=cd85e9b05e9738d051492aef097ec123dae857a3;hpb=29674806c55d6280e15e3b92eb40266685a414b7;p=SugarCubes.git diff --git a/_PandaDriver.pde b/_PandaDriver.pde index cd85e9b..2c8b96c 100644 --- a/_PandaDriver.pde +++ b/_PandaDriver.pde @@ -1,6 +1,11 @@ import netP5.*; import oscP5.*; +//import hypermedia.net.*; + + + + /** * DOUBLE BLACK DIAMOND DOUBLE BLACK DIAMOND * @@ -14,7 +19,23 @@ import oscP5.*; * This class implements the output function to the Panda Boards. It * will be moved into GLucose once stabilized. */ -public static class PandaDriver { +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); + + queue = new ArrayList(); // 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 @@ -163,19 +243,37 @@ public static class PandaDriver { 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_FLOOR: + 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: - for (int[] config : SPEAKER_STRIP_ORDERING) { + 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; @@ -205,19 +303,38 @@ public static class PandaDriver { 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) { + queue.add(colors); + } + public final void sendNow(int[] colors) { + if (!enabled || colors==null) { return; } int len = 0; int packetNum = 0; - for (int index : points) { - int c = (index < 0) ? 0 : colors[index]; + 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); @@ -239,16 +356,17 @@ public static class PandaDriver { } } + private void sendPacket(int packetNum) { message.clearArguments(); message.add(packetNum); message.add(packet.length); message.add(packet); try { + //udp.send(packet, "10.200.1.29", 9001); OscP5.flush(message, address); } catch (Exception x) { x.printStackTrace(); } } } -