Graphics.pm 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. package Plugins::SqueezeESP32::Graphics;
  2. use strict;
  3. use base qw(Slim::Display::Squeezebox2);
  4. use Storable qw(dclone);
  5. use Slim::Utils::Prefs;
  6. use Slim::Utils::Log;
  7. my $prefs = preferences('plugin.squeezeesp32');
  8. my $log = logger('plugin.squeezeesp32');
  9. my $VISUALIZER_NONE = 0;
  10. my $VISUALIZER_VUMETER = 1;
  11. my $VISUALIZER_SPECTRUM_ANALYZER = 2;
  12. my $VISUALIZER_WAVEFORM = 3;
  13. my $VISUALIZER_VUMETER_ESP32 = 0x11;
  14. my $VISUALIZER_SPECTRUM_ANALYZER_ESP32 = 0x12;
  15. my %SPECTRUM_DEFAULTS = (
  16. scale => 25,
  17. small => {
  18. size => 25,
  19. band => 5.33
  20. },
  21. full => {
  22. band => 8
  23. },
  24. );
  25. {
  26. #__PACKAGE__->mk_accessor('array', 'modes');
  27. __PACKAGE__->mk_accessor('rw', 'modes');
  28. __PACKAGE__->mk_accessor('rw', qw(vfdmodel));
  29. }
  30. sub new {
  31. my $class = shift;
  32. my $client = shift;
  33. my $display = $class->SUPER::new($client);
  34. my $cprefs = $prefs->client($client);
  35. $cprefs->init( {
  36. width => 128,
  37. small_VU => 15,
  38. spectrum => \%SPECTRUM_DEFAULTS,
  39. } );
  40. $prefs->migrateClient(2, sub {
  41. my ($cprefs, $client) = @_;
  42. sanitizeSpectrum($cprefs->get('spectrum'));
  43. 1;
  44. });
  45. $display->init_accessor(
  46. modes => $display->build_modes,
  47. # Only seems to matter for screensaver and update to decide font. Not
  48. # any value is acceptable, so use Boom value which seems to be best
  49. # compromise
  50. vfdmodel => 'graphic-160x32',
  51. );
  52. return $display;
  53. }
  54. =comment
  55. sub modes {
  56. return \@modes;
  57. }
  58. =cut
  59. sub nmodes {
  60. return scalar($#{shift->modes()});
  61. }
  62. sub displayWidth {
  63. my $display = shift;
  64. my $client = $display->client;
  65. # if we're showing the always-on visualizer & the current buttonmode
  66. # hasn't overridden, then use the playing display mode to index
  67. # into the display width, otherwise, it's fullscreen.
  68. my $mode = 0;
  69. if ( $display->showVisualizer() && !defined($client->modeParam('visu')) ) {
  70. my $cprefs = preferences('server')->client($client);
  71. $mode = $cprefs->get('playingDisplayModes')->[ $cprefs->get('playingDisplayMode') ];
  72. }
  73. if ($display->widthOverride) {
  74. my $artwork = $prefs->client($client)->get('artwork');
  75. if ($artwork->{'enable'} && $artwork->{'y'} < 32 && ($client->isPlaying || $client->isPaused)) {
  76. return ($artwork->{x} || $display->widthOverride) + ($display->modes->[$mode || 0]{_width} || 0);
  77. } else {
  78. return $display->widthOverride + ($display->modes->[$mode || 0]{_width} || 0);
  79. }
  80. } else {
  81. return $display->modes->[$mode || 0]{width};
  82. }
  83. }
  84. sub brightnessMap {
  85. return (0 .. 5);
  86. }
  87. =comment
  88. sub bytesPerColumn {
  89. return 4;
  90. }
  91. =cut
  92. # I don't think LMS renderer handles properly screens other than 32 pixels. It
  93. # seems that all we get is a 32 pixel-tall data with anything else padded to 0
  94. # i.e. if we try 64 pixels height, bytes 0..3 and 4..7 will contains the same
  95. # pattern than the 32 pixels version, where one would have expected bytes 4..7
  96. # to be empty
  97. sub displayHeight {
  98. return 32;
  99. }
  100. sub sanitizeSpectrum {
  101. my ($spectrum) = shift;
  102. $spectrum->{small} ||= dclone($SPECTRUM_DEFAULTS{small});
  103. $spectrum->{small}->{size} ||= $SPECTRUM_DEFAULTS{small}->{size};
  104. $spectrum->{small}->{band} ||= $SPECTRUM_DEFAULTS{small}->{band};
  105. $spectrum->{full} ||= dclone($SPECTRUM_DEFAULTS{full});
  106. $spectrum->{full}->{band} ||= $SPECTRUM_DEFAULTS{full}->{band};
  107. return $spectrum;
  108. }
  109. sub build_modes {
  110. my $client = shift->client;
  111. my $cprefs = $prefs->client($client);
  112. my $artwork = $cprefs->get('artwork');
  113. my $disp_width = $cprefs->get('width') || 128;
  114. # if artwork is in main display, reduce width but when artwork is (0,0) fake it
  115. my $width = ($artwork->{'enable'} && $artwork->{'y'} < 32 && $artwork->{'x'}) ? $artwork->{'x'} : $disp_width;
  116. my $width_low = ($artwork->{'enable'} && $artwork->{'x'} && ($artwork->{'y'} >= 32 || $disp_width - $artwork->{'x'} > 32)) ? $artwork->{'x'} : $disp_width;
  117. my $small_VU = $cprefs->get('small_VU');
  118. my $spectrum = sanitizeSpectrum($cprefs->get('sprectrum'));
  119. my $small_spectrum_pos = { x => $width - int ($spectrum->{small}->{size} * $width / 100),
  120. width => int ($spectrum->{small}->{size} * $width / 100),
  121. };
  122. my $small_VU_pos = { x => $width - int ($small_VU * $width / 100),
  123. width => int ($small_VU * $width / 100),
  124. };
  125. my @modes = (
  126. # mode 0
  127. { desc => ['BLANK'],
  128. bar => 0, secs => 0, width => $width,
  129. params => [$VISUALIZER_NONE] },
  130. # mode 1
  131. { desc => ['PROGRESS_BAR'],
  132. bar => 1, secs => 0, width => $width,
  133. params => [$VISUALIZER_NONE] },
  134. # mode 2
  135. { desc => ['ELAPSED'],
  136. bar => 0, secs => 1, width => $width,
  137. params => [$VISUALIZER_NONE] },
  138. # mode 3
  139. { desc => ['ELAPSED', 'AND', 'PROGRESS_BAR'],
  140. bar => 1, secs => 1, width => $width,
  141. params => [$VISUALIZER_NONE] },
  142. # mode 4
  143. { desc => ['REMAINING'],
  144. bar => 0, secs => -1, width => $width,
  145. params => [$VISUALIZER_NONE] },
  146. # mode 5
  147. { desc => ['CLOCK'],
  148. bar => 0, secs => 0, width => $width, clock => 1,
  149. params => [$VISUALIZER_NONE] },
  150. # mode 6
  151. { desc => ['SETUP_SHOWBUFFERFULLNESS'],
  152. bar => 0, secs => 0, width => $width, fullness => 1,
  153. params => [$VISUALIZER_NONE] },
  154. # mode 7
  155. { desc => ['VISUALIZER_VUMETER_SMALL'],
  156. bar => 0, secs => 0, width => $width, _width => -$small_VU_pos->{'width'},
  157. # extra parameters (width, height, col (< 0 = from right), row (< 0 = from bottom), left_space)
  158. params => [$VISUALIZER_VUMETER_ESP32, $small_VU_pos->{'width'}, 32, $small_VU_pos->{'x'}, 0, 2] },
  159. # mode 8
  160. { desc => ['VISUALIZER_SPECTRUM_ANALYZER_SMALL'],
  161. bar => 0, secs => 0, width => $width, _width => -$small_spectrum_pos->{'width'},
  162. # extra parameters (width, height, col (< 0 = from right), row (< 0 = from bottom), left_space, #bars, scale)
  163. params => [$VISUALIZER_SPECTRUM_ANALYZER_ESP32, $small_spectrum_pos->{width}, 32, $small_spectrum_pos->{'x'}, 0, 2, $small_spectrum_pos->{'width'} / $spectrum->{small}->{band}, $spectrum->{scale}] },
  164. # mode 9
  165. { desc => ['VISUALIZER_VUMETER'],
  166. bar => 0, secs => 0, width => $width,
  167. params => [$VISUALIZER_VUMETER_ESP32, $width_low, 0] },
  168. # mode 10
  169. { desc => ['VISUALIZER_ANALOG_VUMETER'],
  170. bar => 0, secs => 0, width => $width,
  171. params => [$VISUALIZER_VUMETER_ESP32, $width_low, 1] },
  172. # mode 11
  173. { desc => ['VISUALIZER_SPECTRUM_ANALYZER'],
  174. bar => 0, secs => 0, width => $width,
  175. # extra parameters (bars)
  176. params => [$VISUALIZER_SPECTRUM_ANALYZER_ESP32, $width_low, int ($width/$spectrum->{full}->{band}), $spectrum->{scale}] },
  177. );
  178. my @extra = (
  179. # mode E1
  180. { desc => ['VISUALIZER_VUMETER', 'AND', 'ELAPSED'],
  181. bar => 0, secs => 1, width => $width,
  182. params => [$VISUALIZER_VUMETER_ESP32, $width_low, 0] },
  183. # mode E2
  184. { desc => ['VISUALIZER_ANALOG_VUMETER', 'AND', 'ELAPSED'],
  185. bar => 0, secs => 1, width => $width,
  186. params => [$VISUALIZER_VUMETER_ESP32, $width_low, 1] },
  187. # mode E3
  188. { desc => ['VISUALIZER_SPECTRUM_ANALYZER', 'AND', 'ELAPSED'],
  189. bar => 0, secs => 1, width => $width,
  190. # extra parameters (bars)
  191. params => [$VISUALIZER_SPECTRUM_ANALYZER_ESP32, $width_low, int ($width/$spectrum->{full}->{band}), $spectrum->{scale}] },
  192. # mode E4
  193. { desc => ['VISUALIZER_VUMETER', 'AND', 'REMAINING'],
  194. bar => 0, secs => -1, width => $width,
  195. params => [$VISUALIZER_VUMETER_ESP32, $width_low, 0] },
  196. # mode E5
  197. { desc => ['VISUALIZER_ANALOG_VUMETER', 'AND', 'REMAINING'],
  198. bar => 0, secs => -1, width => $width,
  199. params => [$VISUALIZER_VUMETER_ESP32, $width_low, 1] },
  200. # mode E6
  201. { desc => ['VISUALIZER_SPECTRUM_ANALYZER', 'AND', 'REMAINING'],
  202. bar => 0, secs => -1, width => $width,
  203. # extra parameters (bars)
  204. params => [$VISUALIZER_SPECTRUM_ANALYZER_ESP32, $width_low, int ($width/$spectrum->{full}->{band}), $spectrum->{scale}] },
  205. # mode E7
  206. { desc => ['VISUALIZER_VUMETER', 'AND', 'PROGRESS_BAR', 'AND', 'REMAINING'],
  207. bar => 1, secs => -1, width => $width,
  208. params => [$VISUALIZER_VUMETER_ESP32, $width_low, 0] },
  209. # mode E8
  210. { desc => ['VISUALIZER_ANALOG_VUMETER', 'AND', 'PROGRESS_BAR', 'AND', 'REMAINING'],
  211. bar => 1, secs => -1, width => $width,
  212. params => [$VISUALIZER_VUMETER_ESP32, $width_low, 1] },
  213. # mode E9
  214. { desc => ['VISUALIZER_SPECTRUM_ANALYZER', 'AND', 'PROGRESS_BAR', 'AND', 'REMAINING'],
  215. bar => 1, secs => -1, width => $width,
  216. # extra parameters (bars)
  217. params => [$VISUALIZER_SPECTRUM_ANALYZER_ESP32, $width_low, int ($width/$spectrum->{full}->{band}), $spectrum->{scale}] },
  218. );
  219. @modes = (@modes, @extra) if $cprefs->get('height') > 32;
  220. return \@modes;
  221. }
  222. 1;