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.

121 lines
4.6 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_glow.h"
  16. #include "animations/anim_pixiedust.h"
  17. #include "animations/anim_randcyc.h"
  18. #include "animations/anim_run.h"
  19. #include "animations/anim_salut.h"
  20. #include "animations/anim_sparkr.h"
  21. #include "animations/anim_spread.h"
  22. #include "animations/anim_stars.h"
  23. #include "animations/anim_start.h"
  24. class Adafruit_NeoPixel;
  25. class Palette;
  26. class Scene {
  27. public:
  28. Scene(Adafruit_NeoPixel* pixels);
  29. void setPalette(Palette* palette);
  30. void setBrightness(byte brightness);
  31. byte getBrightness();
  32. void setSpeed(byte speed);
  33. byte getSpeed();
  34. void setDefault();
  35. void setAnim(Anim* anim) { _anim = anim; }
  36. void run();
  37. void setup();
  38. bool finishedAnimCycle() { return _anim ? _anim->finishedycle() : true; }
  39. unsigned long getAvgCalcTime();
  40. unsigned long getAvgPixlTime();
  41. unsigned long getAvgShowTime();
  42. int getNumShows() { return numShows; }
  43. private:
  44. Adafruit_NeoPixel* _pixels = nullptr;
  45. uint16_t _numLeds;
  46. //Color arrays - two for making transition
  47. std::vector<Color> _leds1;
  48. std::vector<Color> _leds2;
  49. // array of Colorfor anim to currently work with
  50. Color* _leds = nullptr;
  51. Anim* _anim = nullptr;
  52. //auxiliary colors array for mutual usage of anims
  53. std::vector<Color> _ledstmp;
  54. std::vector<byte> _seq;
  55. Palette* _palette = nullptr;
  56. // millis to transition end
  57. unsigned long transms;
  58. byte brightness = 0;
  59. // cycleFactor is actually number of cycles to calculate and draw one animation step
  60. // if cycleFactor is 2 or more, than calculation and drawing made in different cycles
  61. // cycleFactor is float. For example cycleFactor=2.5 gives one step 2 than next 3 cycles per anim step
  62. // Recommended values: 1 < cycleFactor < 4
  63. float cycleFactor = 2.0;
  64. // speed is reverse to cycleFactor. For forward direction control of animation speed.
  65. // Recommended values: 30 < speed < 60.
  66. // Correspondence:
  67. // speed=60, cycleFactor=1
  68. // speed=30, cycleFactor=4
  69. byte speed = 50;
  70. float cycleTail = 0;
  71. int cyclesRemain = 0;
  72. enum State {
  73. Calculate,
  74. Transition,
  75. Show
  76. } state = Calculate;
  77. int numShows = 0;
  78. //whether to call SetUp on palette change
  79. //(some animations require full transition with fade, otherwise the colors would change in a step, some not)
  80. bool setUpOnPalChange = true;
  81. unsigned long sum_calc_time = 0;
  82. unsigned long sum_pixl_time = 0;
  83. unsigned long sum_show_time = 0;
  84. unsigned int calc_num = 0;
  85. unsigned int show_num = 0;
  86. unsigned int pixl_num = 0;
  87. 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,
  88. 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,
  89. 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,
  90. 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,
  91. 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,
  92. 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,
  93. 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,
  94. 111, 113, 115, 117, 119, 121, 122, 124, 126, 129, 131, 133, 135, 137, 139, 142, 144, 146, 149, 151, 153, 156,
  95. 158, 161, 163, 166, 169, 171, 174, 177, 180, 183, 186, 189, 192, 195, 198, 201, 204, 208, 211, 214, 218, 221,
  96. 225, 228, 232, 236, 239, 243, 247, 251, 255}};
  97. void setupImpl();
  98. };
  99. #endif // GARLAND_SUPPORT