2019-05-29 22:49:54 +00:00
|
|
|
#include "functions.h"
|
|
|
|
#include "prototypes.h"
|
|
|
|
#include "my_fastled.h"
|
|
|
|
|
2019-06-05 04:27:55 +00:00
|
|
|
uint16_t XYsafe(int x, int y) {
|
2019-05-21 03:52:57 +00:00
|
|
|
if ( x >= LED_WIDTH) return 0;
|
|
|
|
if ( y >= LED_HEIGHT) return 0;
|
|
|
|
if ( x < 0) return 0;
|
|
|
|
if ( y < 0) return 0;
|
|
|
|
|
|
|
|
// Invert y
|
|
|
|
y = LED_HEIGHT - 1 - y;
|
|
|
|
|
|
|
|
if (y & 1) x = LED_WIDTH - 1 - x;
|
|
|
|
|
|
|
|
// Invert x
|
|
|
|
//x = LED_WIDTH - 1 - x;
|
|
|
|
|
|
|
|
return y*LED_WIDTH+x;
|
|
|
|
}
|
|
|
|
|
2019-05-22 04:52:41 +00:00
|
|
|
void setPixel(int x, int y, CRGB color) {
|
|
|
|
if ( x >= LED_WIDTH) return;
|
|
|
|
if ( y >= LED_HEIGHT) return;
|
|
|
|
if ( x < 0) return;
|
|
|
|
if ( y < 0) return;
|
|
|
|
|
2019-06-05 04:27:55 +00:00
|
|
|
uint16_t index = XYsafe(x, y);
|
2019-05-22 04:52:41 +00:00
|
|
|
|
2019-06-05 04:27:55 +00:00
|
|
|
leds[index] = color;
|
2019-05-22 04:52:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void setPixel(int i, CRGB color) {
|
|
|
|
int x = i % LED_WIDTH;
|
|
|
|
int y = i / LED_WIDTH;
|
|
|
|
setPixel(x, y, color);
|
|
|
|
}
|
|
|
|
|
2019-05-23 19:18:15 +00:00
|
|
|
void setPixel(Window win, int x, int y, CRGB color) {
|
|
|
|
if (x >= win.w || y >= win.h || x < 0 || y < 0) return;
|
|
|
|
setPixel(win.x + x, win.y + y, color);
|
|
|
|
}
|
|
|
|
|
2019-05-30 09:12:40 +00:00
|
|
|
void addPixelColor(int i, CRGB color) {
|
|
|
|
leds[i] += color;
|
|
|
|
}
|
|
|
|
|
2019-05-23 19:18:15 +00:00
|
|
|
void clear(Window window, CRGB color) {
|
|
|
|
for ( byte y = 0; y < window.h; y++) {
|
|
|
|
for ( byte x = 0; x < window.w; x++) {
|
|
|
|
setPixel(window, x, y, color);
|
2019-05-21 03:52:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-23 19:18:15 +00:00
|
|
|
void clear(Window window) {
|
|
|
|
clear(window, CRGB(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear() {
|
|
|
|
Window w = {0, 0, LED_WIDTH, LED_HEIGHT};
|
|
|
|
clear(w);
|
|
|
|
}
|
|
|
|
|
2019-06-05 04:27:55 +00:00
|
|
|
void blur(fract8 blur_amount) {
|
|
|
|
// Based on FastLED code
|
|
|
|
for (uint8_t i=0; i<LED_HEIGHT; i++) blur_row(i, blur_amount);
|
|
|
|
for (uint8_t i=0; i<LED_WIDTH; i++) blur_column(i, blur_amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
void blur_row(uint8_t row_index, fract8 blur_amount) {
|
|
|
|
CRGB* row = &leds[row_index * LED_WIDTH];
|
|
|
|
uint8_t keep = 255 - blur_amount;
|
|
|
|
uint8_t seep = 17; // 15 is zu wenig
|
|
|
|
CRGB carryover = CRGB::Black;
|
|
|
|
for (uint8_t x=0; x<LED_WIDTH; x++) {
|
|
|
|
CRGB currentColor = row[x];
|
|
|
|
CRGB part = currentColor;
|
|
|
|
part.nscale8(seep);
|
|
|
|
currentColor.nscale8(keep);
|
|
|
|
currentColor += carryover;
|
|
|
|
if (x>0) row[x-1]+=part;
|
|
|
|
row[x]=currentColor;
|
|
|
|
carryover = part;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void blur_column(uint8_t col_index, fract8 blur_amount) {
|
|
|
|
uint8_t keep = 255 - blur_amount;
|
|
|
|
uint8_t seep = 17;
|
|
|
|
CRGB carryover = CRGB::Black;
|
|
|
|
for (uint8_t y=0; y<LED_HEIGHT; y++) {
|
|
|
|
CRGB currentColor = leds[XYsafe(col_index, y)];
|
|
|
|
CRGB part = currentColor;
|
|
|
|
part.nscale8(seep);
|
|
|
|
currentColor.nscale8(keep);
|
|
|
|
currentColor += carryover;
|
|
|
|
if (y>0) leds[XYsafe(col_index, y-1)]+=part;
|
|
|
|
leds[XYsafe(col_index, y)]=currentColor;
|
|
|
|
carryover = part;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-21 03:52:57 +00:00
|
|
|
|
|
|
|
|
2019-05-29 22:49:54 +00:00
|
|
|
struct Matrix multiply(struct Matrix m1, struct Matrix m2) {
|
|
|
|
Matrix r = {
|
|
|
|
.a11 = m1.a11*m2.a11 + m1.a12*m2.a21,
|
|
|
|
.a12 = m1.a11*m2.a12 + m1.a12*m2.a22,
|
|
|
|
.a21 = m1.a21*m2.a11 + m1.a22*m2.a21,
|
|
|
|
.a22 = m1.a21*m2.a12 + m1.a22*m2.a22
|
|
|
|
};
|
|
|
|
return r;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Vector multiply(struct Matrix m, struct Vector v) {
|
|
|
|
Vector r = {
|
|
|
|
.x1 = (m.a11*v.x1) + (m.a12*v.x2),
|
|
|
|
.x2 = (m.a21*v.x1) + (m.a22*v.x2)
|
|
|
|
};
|
|
|
|
return r;
|
2019-05-21 03:52:57 +00:00
|
|
|
}
|
|
|
|
|
2019-05-29 22:49:54 +00:00
|
|
|
struct Vector add(struct Vector v1, struct Vector v2) {
|
|
|
|
Vector r = {
|
|
|
|
.x1 = v1.x1 + v2.x2,
|
|
|
|
.x2 = v1.x2 + v2.x2
|
|
|
|
};
|
|
|
|
return r;
|
2019-05-21 03:52:57 +00:00
|
|
|
}
|