X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=_PandaDriver.pde;fp=_PandaDriver.pde;h=2c8b96c43653502ed1632cee9a6e73a1989cef7c;hb=e28f168cec8ae5a8c25cae159af94f5b0aa7b342;hp=d2998a729cdcc22342a5e02899d886cbc4e1d691;hpb=6702151ac6a806d916403b2a60e3dc1e52b712aa;p=SugarCubes.git diff --git a/_PandaDriver.pde b/_PandaDriver.pde index d2998a7..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 @@ -295,13 +323,18 @@ public static class PandaDriver { } 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); @@ -323,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(); } } } -