2024-12-08 15:11:55 +01:00
|
|
|
#include "rain.h"
|
|
|
|
#include "constants.h"
|
|
|
|
#include "overlay.h"
|
|
|
|
|
2024-12-11 10:21:43 +01:00
|
|
|
#define COLOR_HIGHLIGHT_R 128
|
|
|
|
#define COLOR_HIGHLIGHT_G 255
|
|
|
|
#define COLOR_HIGHLIGHT_B 128
|
|
|
|
|
|
|
|
#define COLOR_DEFAULT_R 0
|
2024-12-11 14:42:15 +01:00
|
|
|
#define COLOR_DEFAULT_G 255
|
2024-12-11 10:21:43 +01:00
|
|
|
#define COLOR_DEFAULT_B 0
|
|
|
|
|
2024-12-08 15:11:55 +01:00
|
|
|
typedef struct {
|
|
|
|
bool reached_bottom = false;
|
|
|
|
int y;
|
|
|
|
int length;
|
|
|
|
int speed;
|
|
|
|
unsigned long last_moved;
|
|
|
|
} Raindrop;
|
|
|
|
|
2024-12-11 14:16:46 +01:00
|
|
|
// TODO: Use a dynamic vector instead
|
2024-12-08 15:11:55 +01:00
|
|
|
Raindrop raindrops[PANEL_WIDTH];
|
|
|
|
bool rain_initialized = false;
|
2024-12-11 10:21:43 +01:00
|
|
|
uint16_t color_highlight;
|
|
|
|
uint16_t color_default;
|
2024-12-08 15:11:55 +01:00
|
|
|
|
2024-12-13 18:26:57 +01:00
|
|
|
void setup_rain(MatrixPanel_I2S_DMA *matrix) {
|
2024-12-11 10:21:43 +01:00
|
|
|
color_highlight = matrix->color565(
|
|
|
|
COLOR_HIGHLIGHT_R,
|
|
|
|
COLOR_HIGHLIGHT_G,
|
|
|
|
COLOR_HIGHLIGHT_B
|
|
|
|
);
|
|
|
|
color_default = matrix->color565(
|
|
|
|
COLOR_DEFAULT_R,
|
|
|
|
COLOR_DEFAULT_B,
|
|
|
|
COLOR_DEFAULT_G
|
|
|
|
);
|
2024-12-08 15:11:55 +01:00
|
|
|
for (int i = 0; i<PANEL_WIDTH; i++) {
|
2024-12-11 10:21:43 +01:00
|
|
|
raindrops[i].y = 0 - random(24);
|
|
|
|
raindrops[i].length = random(20, 28);
|
|
|
|
raindrops[i].speed = random(25, 100);
|
|
|
|
raindrops[i].last_moved = millis();
|
2024-12-08 15:11:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void draw_rain(MatrixPanel_I2S_DMA *matrix, Mode mode) {
|
|
|
|
//matrix ->drawBitmap(0, 0, overlay, 64, 32, matrix->color565(64, 0, 0));
|
|
|
|
if (!rain_initialized) {
|
2024-12-13 18:26:57 +01:00
|
|
|
setup_rain(matrix);
|
2024-12-08 15:11:55 +01:00
|
|
|
rain_initialized = true;
|
|
|
|
}
|
|
|
|
unsigned long timestamp = millis();
|
|
|
|
for (int x = 0; x < PANEL_WIDTH; x++) {
|
|
|
|
if ((timestamp - raindrops[x].last_moved) > raindrops[x].speed) {
|
|
|
|
// step down a pixel
|
|
|
|
raindrops[x].y++;
|
|
|
|
raindrops[x].last_moved = timestamp;
|
|
|
|
}
|
|
|
|
if (raindrops[x].y > PANEL_HEIGHT) {
|
|
|
|
raindrops[x].y = 0;
|
|
|
|
raindrops[x].reached_bottom = true;
|
|
|
|
}
|
|
|
|
if (raindrops[x].y >= 0) {
|
|
|
|
//draw our pixel
|
|
|
|
matrix->drawPixel(x, raindrops[x].y, matrix->color565(128, 255, 128));
|
|
|
|
// draw our trail
|
|
|
|
for (int trail_offset = 1; trail_offset < raindrops[x].length; trail_offset++) {
|
|
|
|
int trail_y = raindrops[x].y - trail_offset;
|
2024-12-13 18:26:57 +01:00
|
|
|
float brightness = ((raindrops[x].length - trail_offset) / (float)raindrops[x].length);
|
2024-12-11 10:21:43 +01:00
|
|
|
uint16_t fade_color = matrix->color565(
|
|
|
|
COLOR_DEFAULT_R * brightness,
|
|
|
|
COLOR_DEFAULT_G * brightness,
|
|
|
|
COLOR_DEFAULT_B * brightness
|
|
|
|
);
|
|
|
|
|
2024-12-11 14:16:46 +01:00
|
|
|
if (trail_y < 0) {
|
|
|
|
if (not raindrops[x].reached_bottom) {
|
2024-12-13 18:26:57 +01:00
|
|
|
break;
|
2024-12-08 15:11:55 +01:00
|
|
|
}
|
2024-12-11 14:16:46 +01:00
|
|
|
// we need to count from the bottom up
|
2024-12-13 18:26:57 +01:00
|
|
|
trail_y = PANEL_HEIGHT + trail_y;
|
2024-12-11 14:16:46 +01:00
|
|
|
}
|
2024-12-08 15:11:55 +01:00
|
|
|
|
2024-12-11 14:16:46 +01:00
|
|
|
int pixel_num = (trail_y * PANEL_WIDTH) + x;
|
|
|
|
if (overlay[pixel_num / 8] & (1 << (7 - (pixel_num % 8))) and mode != Stealth) {
|
|
|
|
if (mode == HighVis) {
|
|
|
|
matrix->drawPixel(x, trail_y, color_highlight);
|
2024-12-08 15:11:55 +01:00
|
|
|
} else {
|
2024-12-11 14:16:46 +01:00
|
|
|
matrix->drawPixel(x, trail_y, matrix->color565(
|
|
|
|
COLOR_HIGHLIGHT_R * brightness,
|
|
|
|
COLOR_HIGHLIGHT_G * brightness,
|
|
|
|
COLOR_HIGHLIGHT_B * brightness
|
|
|
|
));
|
2024-12-08 15:11:55 +01:00
|
|
|
}
|
2024-12-11 14:16:46 +01:00
|
|
|
} else {
|
|
|
|
matrix->drawPixel(x, trail_y, fade_color);
|
2024-12-08 15:11:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|