#include "effect_matrix.h" #include "my_color_palettes.h" #include "functions.h" MatrixEffectColumn::MatrixEffectColumn() { } MatrixEffectColumn::MatrixEffectColumn(Window* win, int xPos) : MatrixEffectColumn() { window = win; x = xPos; start(); y = random8(0, window->height); } void MatrixEffectColumn::start() { y=-1; length = random8(EFFECT_MATRIX_LENGTH_MIN, EFFECT_MATRIX_LENGTH_MAX); running = true; speed = random8(EFFECT_MATRIX_SPEED_MIN, EFFECT_MATRIX_SPEED_MAX); } void MatrixEffectColumn::advance() { y++; if (y-length > window->height) running = false; } void MatrixEffectColumn::draw() { for(int i=0; isetPixel(x, y-i, &color); } } void MatrixEffectColumn::loop() { if (!running) { if (random8() < 20) { // Start the column again. start(); } } else { if (millis() - last_move > speed) { advance(); last_move = millis(); } draw(); } } CRGB MatrixEffectColumn::_getColor(uint8_t i) { CRGB color; if (i==0) { color = CRGB(255, 255, 255); } else { color = CHSV(83, 255, 255 * (length - i) / length); } return color; } CRGB RainbowMatrixEffectColumn::_getColor(uint8_t i) { CRGB color; if (i==0) { color = CRGB(255, 255, 255); } else { color = CHSV(255 * x / window->width, 255, 255 * (length - i) / length); } return color; } CRGB RandomMatrixEffectColumn::_getColor(uint8_t i) { CRGB color; //Serial.print("RandomMatrixEffectColumn::_getColor, hue="); Serial.println(_hue); if (i==0) { color = CRGB(255, 255, 255); } else { color = CHSV(_hue, 255, 255 * (length - i) / length); } return color; } void RandomMatrixEffectColumn::start() { MatrixEffectColumn::start(); _hue = random8(); } boolean MatrixEffect::can_be_shown_with_clock() { return true; }; MatrixEffect::MatrixEffect() { } void MatrixEffect::start() { _columns = new MatrixEffectColumn* [window->width]; for (int i=0; iwidth; i++) _columns[i] = new MatrixEffectColumn(window, i); } void RandomMatrixEffect::start() { _columns = new MatrixEffectColumn* [window->width]; for (int i=0; iwidth; i++) _columns[i] = new RandomMatrixEffectColumn(window, i); } void RainbowMatrixEffect::start() { _columns = new MatrixEffectColumn* [window->width]; for (int i=0; iwidth; i++) _columns[i] = new RainbowMatrixEffectColumn(window, i); } void MatrixEffect::stop() { for (int i=0; iwidth; i++) { delete _columns[i]; } delete[] _columns; } void MatrixEffect::loop() { window->clear(); for (int i=0; iwidth; i++) _columns[i]->loop(); }