X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fkaka%2Fcakelight%2FLedFrame.java;h=18b8f226e8de066e062bec118410586fc9fa847d;hb=a276d5abce63f4d7b54ae59a026730fdf7591b85;hp=f739e388935daa81b3553cf70a76418a98658bab;hpb=242486dc84c4f5b0c1bfad9807099355246f4ee2;p=kaka%2Fcakelight.git diff --git a/src/kaka/cakelight/LedFrame.java b/src/kaka/cakelight/LedFrame.java index f739e38..18b8f22 100644 --- a/src/kaka/cakelight/LedFrame.java +++ b/src/kaka/cakelight/LedFrame.java @@ -1,19 +1,99 @@ package kaka.cakelight; +import java.util.Arrays; + public class LedFrame { - private Color[] leds; + private Configuration config; + private byte[] bytes; + private int stride; + private int roff, goff, boff; // RGB offsets + /** + * @return a frame initiated to black + */ public static LedFrame from(Configuration config) { LedFrame frame = new LedFrame(); - frame.leds = new Color[config.leds.cols * 2 + config.leds.rows * 2]; + frame.config = config; + switch (config.leds.type) { + /* + * The WS2801 strip takes its input as a plain list of 24-bit colors in RBG order (at least mine did). + */ + case WS2801: + frame.stride = 3; + frame.roff = 0; + frame.goff = 2; + frame.boff = 1; + frame.bytes = new byte[config.leds.getCount() * frame.stride]; + break; + + /* + * The APA102 strip takes its input as: + *
    + *
  1. a start frame of 4 bytes (all zeroes)
  2. + *
  3. a frame of 4 bytes for each LED (111 (3 bits) + global illumination (5 bits) + BGR)
  4. + *
  5. an (optional) end frame of 4 bytes (all ones)
  6. + *
+ */ + case APA102: + frame.stride = 4; + frame.roff = 3 + 4; + frame.goff = 2 + 4; + frame.boff = 1 + 4; + frame.bytes = new byte[4 + config.leds.getCount() * frame.stride + 4]; + Arrays.fill(frame.bytes, 4, frame.bytes.length - 5, (byte)(0b11100000 | config.leds.brightness)); // Initiate the first byte of each LED + Arrays.fill(frame.bytes, frame.bytes.length - 5, frame.bytes.length - 1, (byte)0xff); // Initiate the end frame with ones + break; + } return frame; } + public void fillColor(int r, int g, int b) { + fillColor(Color.rgb(r, g, b)); + } + + public void fillColor(Color color) { + byte r = (byte)color.r(), g = (byte)color.g(), b = (byte)color.b(); // Gamma corrected values + for (int i = 0; i < bytes.length; i += stride) { + bytes[i + roff] = r; + bytes[i + goff] = g; + bytes[i + boff] = b; + } + } + public void setLedColor(int led, Color color) { - leds[led] = color; + int offset = led * stride; + bytes[offset + roff] = (byte)color.r(); + bytes[offset + goff] = (byte)color.g(); + bytes[offset + boff] = (byte)color.b(); } public Color getLedColor(int led) { - return leds[led]; + int offset = led * stride; + return Color.rgb( + bytes[offset + roff] & 0xff, + bytes[offset + goff] & 0xff, + bytes[offset + boff] & 0xff + ); + } + + public byte[] getBytes() { + return bytes; + } + + // TODO this needs to be improved + /** The x position of the led from 0.0-1.0. */ + public double xOf(int led) { + /* left */ if (led >= config.leds.cols * 2 + config.leds.rows) return 0; + /* top */ if (led >= config.leds.cols + config.leds.rows) return 1 - (double)(led - config.leds.cols - config.leds.rows) / config.leds.cols; + /* right */ if (led >= config.leds.cols) return 1; + /* bottom */ return (double)led / config.leds.cols; + } + + /** The y position of the led from 0.0-1.0. */ + public double yOf(int led) { + /* left */ if (led >= config.leds.cols * 2 + config.leds.rows) return (double)(led - config.leds.cols * 2 - config.leds.rows) / config.leds.rows; + /* top */ if (led >= config.leds.cols + config.leds.rows) return 0; + /* right */ if (led >= config.leds.cols) return 1 - (double)(led - config.leds.cols) / config.leds.rows; + /* bottom */ return 1; } }