Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
4.1 KiB

  1. /*
  2. Part of the GARLAND MODULE
  3. Copyright (C) 2020 by Dmitry Blinov <dblinov76 at gmail dot com>
  4. Inspired by https://github.com/Vasil-Pahomov/ArWs2812 (currently https://github.com/Vasil-Pahomov/Liana)
  5. */
  6. #pragma once
  7. #if GARLAND_SUPPORT
  8. #include <array>
  9. #include <vector>
  10. #include "anim.h"
  11. #include "animations/anim_assemble.h"
  12. #include "animations/anim_comets.h"
  13. #include "animations/anim_dolphins.h"
  14. #include "animations/anim_fly.h"
  15. #include "animations/anim_pixiedust.h"
  16. #include "animations/anim_randcyc.h"
  17. #include "animations/anim_run.h"
  18. #include "animations/anim_salut.h"
  19. #include "animations/anim_sparkr.h"
  20. #include "animations/anim_spread.h"
  21. #include "animations/anim_stars.h"
  22. #include "animations/anim_start.h"
  23. class Adafruit_NeoPixel;
  24. class Palette;
  25. class Scene {
  26. public:
  27. Scene(Adafruit_NeoPixel* pixels);
  28. void setPalette(Palette* palette);
  29. void setBrightness(byte brightness);
  30. byte getBrightness();
  31. void setSpeed(byte speed);
  32. byte getSpeed();
  33. void setDefault();
  34. void setAnim(Anim* anim) { _anim = anim; }
  35. void run();
  36. void setup();
  37. bool finishedAnimCycle() { return _anim ? _anim->finishedycle() : true; }
  38. unsigned long getAvgCalcTime();
  39. unsigned long getAvgPixlTime();
  40. unsigned long getAvgShowTime();
  41. int getNumShows() { return numShows; }
  42. private:
  43. Adafruit_NeoPixel* _pixels = nullptr;
  44. uint16_t _numLeds;
  45. //Color arrays - two for making transition
  46. std::vector<Color> _leds1;
  47. std::vector<Color> _leds2;
  48. // array of Colorfor anim to currently work with
  49. Color* _leds = nullptr;
  50. Anim* _anim = nullptr;
  51. //auxiliary colors array for mutual usage of anims
  52. std::vector<Color> _ledstmp;
  53. std::vector<byte> _seq;
  54. Palette* _palette = nullptr;
  55. // millis to transition end
  56. unsigned long transms;
  57. byte brightness = 0;
  58. // Reverse to speed. If more convenient to calculate in this way.
  59. // 1 < cycleFactor < 4
  60. byte speed = 50;
  61. float cycleFactor = 2.0;
  62. float cycleTail = 0;
  63. int cyclesRemain = 0;
  64. enum State {
  65. Calculate,
  66. Transition,
  67. Show
  68. } state = Calculate;
  69. int numShows = 0;
  70. //whether to call SetUp on palette change
  71. //(some animations require full transition with fade, otherwise the colors would change in a step, some not)
  72. bool setUpOnPalChange = true;
  73. unsigned long sum_calc_time = 0;
  74. unsigned long sum_pixl_time = 0;
  75. unsigned long sum_show_time = 0;
  76. unsigned int calc_num = 0;
  77. unsigned int show_num = 0;
  78. unsigned int pixl_num = 0;
  79. std::array<byte, 256> bri_lvl = {{0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
  80. 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 9, 9, 9, 9, 10,
  81. 10, 10, 10, 10, 11, 11, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 15, 15, 15, 15, 16, 16, 16, 17, 17,
  82. 17, 18, 18, 19, 19, 19, 20, 20, 20, 21, 21, 22, 22, 22, 23, 23, 24, 24, 25, 25, 26, 26, 27, 27, 28, 28, 29,
  83. 29, 30, 30, 31, 31, 32, 32, 33, 34, 34, 35, 35, 36, 37, 37, 38, 39, 39, 40, 41, 42, 42, 43, 44, 45, 45, 46,
  84. 47, 48, 49, 49, 50, 51, 52, 53, 54, 55, 56, 57, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73,
  85. 74, 75, 76, 78, 79, 80, 82, 83, 84, 86, 87, 89, 90, 91, 93, 94, 96, 98, 99, 101, 102, 104, 106, 108, 109,
  86. 111, 113, 115, 117, 119, 121, 122, 124, 126, 129, 131, 133, 135, 137, 139, 142, 144, 146, 149, 151, 153, 156,
  87. 158, 161, 163, 166, 169, 171, 174, 177, 180, 183, 186, 189, 192, 195, 198, 201, 204, 208, 211, 214, 218, 221,
  88. 225, 228, 232, 236, 239, 243, 247, 251, 255}};
  89. void setupImpl();
  90. };
  91. #endif // GARLAND_SUPPORT