float rowSize = 9f * BLOCK / config.leds.rows;
// DropShadow shadow = new DropShadow(BlurType.ONE_PASS_BOX, Color.RED, colSize * 2, colSize, 0, 0);
for (int x = 0; x < config.leds.cols; x++) {
- gc.setFill(getLedColor(frame, x + config.leds.rows));
+ // Top
+ gc.setFill(getLedColor(frame, config.leds.cols * 2 + config.leds.rows - x - 1));
gc.fillRect(GUTTER + x * colSize, GUTTER - ledLength, colSize, ledLength);
- gc.setFill(getLedColor(frame, config.leds.rows * 2 + config.leds.cols * 2 - 1 - x));
+ // Bottom
+ gc.setFill(getLedColor(frame, x));
gc.fillRect(GUTTER + x * colSize, GUTTER + 9 * BLOCK, colSize, ledLength);
}
for (int y = 0; y < config.leds.rows; y++) {
- gc.setFill(getLedColor(frame, config.leds.rows - 1 - y));
+ // Left
+ gc.setFill(getLedColor(frame, config.leds.cols * 2 + config.leds.rows + y));
gc.fillRect(GUTTER - ledLength, GUTTER + y * rowSize, ledLength, rowSize);
- gc.setFill(getLedColor(frame, y + config.leds.rows + config.leds.cols));
+ // Right
+ gc.setFill(getLedColor(frame, config.leds.rows + config.leds.cols - y - 1));
gc.fillRect(GUTTER + 16 * BLOCK, GUTTER + y * rowSize, ledLength, rowSize);
}
}
package kaka.cakelight;
public class LedFrame {
- private Color[] leds;
+ private byte[] bytes;
+ private int roff = 0, goff = 2, boff = 1; // Color values are stored as RBG, which is what the LED list takes.
public static LedFrame from(Configuration config) {
LedFrame frame = new LedFrame();
- frame.leds = new Color[config.leds.cols * 2 + config.leds.rows * 2];
+ frame.bytes = new byte[config.leds.getCount() * 3];
return frame;
}
+ public void fillColor(int r, int g, int b) {
+ for (int i = 0; i < bytes.length; i += 3) {
+ bytes[i + roff] = (byte)r;
+ bytes[i + goff] = (byte)g;
+ bytes[i + boff] = (byte)b;
+ }
+ }
+
+ public void fillColor(Color color) {
+ fillColor(color.r(), color.g(), color.b());
+ }
+
public void setLedColor(int led, Color color) {
- leds[led] = color;
+ int offset = led * 3;
+ 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 * 3;
+ return Color.rgb(
+ bytes[offset + roff] & 0xff,
+ bytes[offset + goff] & 0xff,
+ bytes[offset + boff] & 0xff
+ );
+ }
+
+ public byte[] getBytes() {
+ return bytes;
}
}