display.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. /*
  2. * (c) Philippe G. 2019, philippe_44@outlook.com
  3. *
  4. * This software is released under the MIT License.
  5. * https://opensource.org/licenses/MIT
  6. *
  7. */
  8. #include <string.h>
  9. #include <ctype.h>
  10. #include <stdint.h>
  11. #include <arpa/inet.h>
  12. #include "esp_log.h"
  13. #include "globdefs.h"
  14. #include "tools.h"
  15. #include "accessors.h"
  16. #include "display.h"
  17. #include "services.h"
  18. #include "gds.h"
  19. #include "gds_default_if.h"
  20. #include "gds_draw.h"
  21. #include "gds_text.h"
  22. #include "gds_font.h"
  23. #include "gds_image.h"
  24. #include "Configurator.h"
  25. static const char *TAG = "display";
  26. #define min(a,b) (((a) < (b)) ? (a) : (b))
  27. #define max(a,b) (((a) > (b)) ? (a) : (b))
  28. #define DISPLAYER_STACK_SIZE (3*1024)
  29. #define SCROLLABLE_SIZE 384
  30. #define HEADER_SIZE 64
  31. #define DEFAULT_SLEEP 3600
  32. #define ARTWORK_BORDER 1
  33. extern const uint8_t default_artwork[] asm("_binary_note_jpg_start");
  34. static EXT_RAM_ATTR struct {
  35. TaskHandle_t task;
  36. SemaphoreHandle_t mutex;
  37. int pause, speed, by;
  38. enum { DISPLAYER_DOWN, DISPLAYER_IDLE, DISPLAYER_ACTIVE } state;
  39. char header[HEADER_SIZE + 1];
  40. char string[SCROLLABLE_SIZE + 1];
  41. int offset, boundary;
  42. sys_Metadata *metadata_config;
  43. bool timer, refresh;
  44. uint32_t elapsed;
  45. struct {
  46. uint32_t value;
  47. char string[8]; // H:MM:SS
  48. bool visible;
  49. } duration;
  50. struct {
  51. bool enable, active;
  52. bool fit;
  53. bool updated;
  54. int tick;
  55. int offset;
  56. } artwork;
  57. TickType_t tick;
  58. } displayer;
  59. static void displayer_task(void *args);
  60. static void display_sleep(void);
  61. struct GDS_Device *display;
  62. extern GDS_DetectFunc SSD1306_Detect, SSD132x_Detect, SH1106_Detect, SSD1675_Detect, SSD1322_Detect, SSD1351_Detect, ST77xx_Detect, ILI9341_Detect;
  63. GDS_DetectFunc *drivers[] = { SH1106_Detect, SSD1306_Detect, SSD132x_Detect, SSD1675_Detect, SSD1322_Detect, SSD1351_Detect, ST77xx_Detect, ILI9341_Detect, NULL };
  64. /****************************************************************************************
  65. *
  66. */
  67. void display_init(char *welcome) {
  68. bool init = false;
  69. int width = -1, height = -1, backlight_pin = -1, RST_pin = -1;
  70. sys_Display * sys_display;
  71. sys_DispCommon * common;
  72. if(!SYS_DISPLAY(sys_display) || !SYS_DISPLAY_COMMON(common)){
  73. return;
  74. }
  75. // // so far so good
  76. if( common->width == 0 || common->height == 0){
  77. ESP_LOGE(TAG,"Misconfigured display missing data");
  78. return;
  79. }
  80. ESP_LOGI(TAG, "Trying to configure display type %s, driver: %s",
  81. sys_DeviceTypeEnum_name(sys_display->type),
  82. sys_DisplayDriverEnum_name(common->driver));
  83. if (common->has_back && common->back.pin >= 0) {
  84. struct GDS_BacklightPWM PWMConfig = { .Channel = pwm_system.base_channel++, .Timer = pwm_system.timer, .Max = pwm_system.max, .Init = false };
  85. display = GDS_AutoDetect(sys_display, drivers, &PWMConfig);
  86. } else {
  87. display = GDS_AutoDetect(sys_display, drivers, NULL);
  88. }
  89. if (display) {
  90. if(common->has_reset){
  91. RST_pin = common->reset.pin;
  92. }
  93. if(common->has_back){
  94. backlight_pin = common->back.pin;
  95. }
  96. width = common->width;
  97. height = common->height;
  98. // Detect driver interface
  99. if (sys_display->which_dispType == sys_Display_i2c_tag && i2c_system_port != -1){
  100. int address = 0x3C;
  101. address = sys_display->dispType.i2c.address;
  102. init = true;
  103. GDS_I2CInit( i2c_system_port, -1, -1, i2c_system_speed ) ;
  104. GDS_I2CAttachDevice( display, width, height, address, RST_pin, backlight_pin );
  105. ESP_LOGI(TAG, "Display is I2C on port %u", address);
  106. } else if (sys_display->which_dispType == sys_Display_spi_tag && spi_system_host != -1) {
  107. int CS_pin = -1, speed = 0, mode = 0;
  108. if(sys_display->dispType.spi.has_cs){
  109. CS_pin = sys_display->dispType.spi.cs.pin;
  110. }
  111. speed = sys_display->dispType.spi.speed;
  112. //todo: what is mode?
  113. // PARSE_PARAM(config, "mode", '=', mode);
  114. // todo: need to handle display offsets
  115. init = true;
  116. GDS_SPIInit( spi_system_host, spi_system_dc_gpio );
  117. GDS_SPIAttachDevice( display, width, height, CS_pin, RST_pin, backlight_pin, speed, mode );
  118. ESP_LOGI(TAG, "Display is SPI host %u with cs:%d", spi_system_host, CS_pin);
  119. } else {
  120. display = NULL;
  121. ESP_LOGI(TAG, "Unsupported display interface or serial link not configured");
  122. }
  123. }
  124. if (init) {
  125. static DRAM_ATTR StaticTask_t xTaskBuffer __attribute__ ((aligned (4)));
  126. static EXT_RAM_ATTR StackType_t xStack[DISPLAYER_STACK_SIZE] __attribute__ ((aligned (4)));
  127. struct GDS_Layout Layout = {
  128. .HFlip = platform->dev.display.common.HFlip,
  129. .VFlip = platform->dev.display.common.VFlip,
  130. .Rotate = platform->dev.display.common.rotate,
  131. .Invert = platform->dev.display.common.invert,
  132. .ColorSwap = platform->dev.display.common.colow_swap
  133. };
  134. GDS_SetLayout(display, &Layout);
  135. GDS_SetFont(display, Font_line_2);
  136. GDS_TextPos(display, GDS_FONT_DEFAULT, GDS_TEXT_CENTERED, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, welcome);
  137. // start the task that will handle scrolling & counting
  138. displayer.mutex = xSemaphoreCreateMutex();
  139. displayer.by = 2;
  140. displayer.pause = 3600;
  141. displayer.speed = 33;
  142. displayer.task = xTaskCreateStatic( (TaskFunction_t) displayer_task, "common_displayer", DISPLAYER_STACK_SIZE, NULL, ESP_TASK_PRIO_MIN + 1, xStack, &xTaskBuffer);
  143. // set lines for "fixed" text mode
  144. GDS_TextSetFontAuto(display, 1, GDS_FONT_LINE_1, -3);
  145. GDS_TextSetFontAuto(display, 2, GDS_FONT_LINE_2, -3);
  146. if(platform->has_services && platform->services.has_metadata){
  147. displayer.metadata_config = &platform->services.metadata;
  148. // leave room for artwork is display is horizontal-style
  149. if (displayer.metadata_config->has_artwork && displayer.metadata_config->artwork.enabled) {
  150. // todo : check for resize flag
  151. displayer.artwork.enable = true;
  152. displayer.artwork.fit = true;
  153. if (height <= 64 && width > height * 2)
  154. displayer.artwork.offset = width - height - ARTWORK_BORDER;
  155. }
  156. }
  157. // and finally register ourselves to power off upon deep sleep
  158. services_sleep_setsuspend(display_sleep);
  159. }
  160. }
  161. /****************************************************************************************
  162. *
  163. */
  164. static void display_sleep(void) {
  165. GDS_DisplayOff(display);
  166. }
  167. /****************************************************************************************
  168. * This is not thread-safe as displayer_task might be in the middle of line drawing
  169. * but it won't crash (I think) and making it thread-safe would be complicated for a
  170. * feature which is secondary (the LMS version of scrolling is thread-safe)
  171. */
  172. static void displayer_task(void *args) {
  173. int scroll_sleep = 0, timer_sleep;
  174. while (1) {
  175. // suspend ourselves if nothing to do
  176. if (displayer.state < DISPLAYER_ACTIVE) {
  177. if (displayer.state == DISPLAYER_IDLE) GDS_TextLine(display, 2, 0, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, displayer.string);
  178. vTaskSuspend(NULL);
  179. scroll_sleep = 0;
  180. GDS_ClearExt(display, true);
  181. GDS_TextLine(display, 1, GDS_TEXT_LEFT, GDS_TEXT_UPDATE, displayer.header);
  182. } else if (displayer.refresh) {
  183. // little trick when switching master while in IDLE and missing it
  184. GDS_TextLine(display, 1, GDS_TEXT_LEFT, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, displayer.header);
  185. displayer.refresh = false;
  186. }
  187. // we have been waken up before our requested time
  188. if (scroll_sleep <= 10) {
  189. // something to scroll (or we'll wake-up every pause ms ... no big deal)
  190. if (*displayer.string && displayer.state == DISPLAYER_ACTIVE) {
  191. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  192. // need to work with local copies as we don't want to suspend caller
  193. int offset = -displayer.offset;
  194. char *string = strdup(displayer.string);
  195. scroll_sleep = displayer.offset ? displayer.speed : displayer.pause;
  196. displayer.offset = displayer.offset >= displayer.boundary ? 0 : (displayer.offset + min(displayer.by, displayer.boundary - displayer.offset));
  197. xSemaphoreGive(displayer.mutex);
  198. // now display using safe copies, can be lengthy
  199. GDS_TextLine(display, 2, offset, GDS_TEXT_CLEAR | GDS_TEXT_UPDATE, string);
  200. free(string);
  201. } else {
  202. scroll_sleep = DEFAULT_SLEEP;
  203. }
  204. }
  205. // handler elapsed track time
  206. if (displayer.timer && displayer.state == DISPLAYER_ACTIVE) {
  207. char line[19] = "-", *_line = line + 1; // [-]H:MM:SS / H:MM:SS
  208. TickType_t tick = xTaskGetTickCount();
  209. uint32_t elapsed = (tick - displayer.tick) * portTICK_PERIOD_MS;
  210. if (elapsed >= 1000) {
  211. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  212. displayer.tick = tick;
  213. elapsed = displayer.elapsed += elapsed / 1000;
  214. xSemaphoreGive(displayer.mutex);
  215. // when we have duration but no space, display remaining time
  216. if (displayer.duration.value && !displayer.duration.visible) elapsed = displayer.duration.value - elapsed;
  217. if (elapsed < 3600) sprintf(_line, "%u:%02u", elapsed / 60, elapsed % 60);
  218. else sprintf(_line, "%u:%02u:%02u", (elapsed / 3600) % 100, (elapsed % 3600) / 60, elapsed % 60);
  219. // concatenate if we have room for elapsed / duration
  220. if (displayer.duration.visible) {
  221. strcat(_line, "/");
  222. strcat(_line, displayer.duration.string);
  223. } else if (displayer.duration.value) {
  224. _line--;
  225. }
  226. // just re-write the whole line it's easier
  227. GDS_TextLine(display, 1, GDS_TEXT_LEFT, GDS_TEXT_CLEAR, displayer.header);
  228. GDS_TextLine(display, 1, GDS_TEXT_RIGHT, GDS_TEXT_UPDATE, _line);
  229. // if we have not received artwork after 5s, display a default icon
  230. if (displayer.artwork.active && !displayer.artwork.updated && tick - displayer.artwork.tick > pdMS_TO_TICKS(5000)) {
  231. ESP_LOGI(TAG, "no artwork received, setting default");
  232. displayer_artwork((uint8_t*) default_artwork);
  233. }
  234. timer_sleep = 1000;
  235. } else timer_sleep = max(1000 - elapsed, 0);
  236. } else timer_sleep = DEFAULT_SLEEP;
  237. // then sleep the min amount of time
  238. int sleep = min(scroll_sleep, timer_sleep);
  239. ESP_LOGD(TAG, "timers s:%d t:%d", scroll_sleep, timer_sleep);
  240. scroll_sleep -= sleep;
  241. vTaskDelay(sleep / portTICK_PERIOD_MS);
  242. }
  243. }
  244. /****************************************************************************************
  245. *
  246. */
  247. void displayer_artwork(uint8_t *data) {
  248. if (!displayer.artwork.active) return;
  249. int x = displayer.artwork.offset ? displayer.artwork.offset + ARTWORK_BORDER : 0;
  250. int y = x ? 0 : 32;
  251. GDS_ClearWindow(display, x, y, -1, -1, GDS_COLOR_BLACK);
  252. if (data) {
  253. displayer.artwork.updated = true;
  254. GDS_DrawJPEG(display, data, x, y, GDS_IMAGE_CENTER | (displayer.artwork.fit ? GDS_IMAGE_FIT : 0));
  255. } else {
  256. displayer.artwork.updated = false;
  257. displayer.artwork.tick = xTaskGetTickCount();
  258. }
  259. }
  260. /****************************************************************************************
  261. *
  262. */
  263. bool displayer_can_artwork(void) {
  264. return displayer.artwork.active;
  265. }
  266. /****************************************************************************************
  267. *
  268. */
  269. void displayer_metadata(char *artist, char *album, char *title) {
  270. char *string = displayer.string, *p;
  271. int len = SCROLLABLE_SIZE;
  272. // need a display!
  273. if (!display) return;
  274. // just do title if there is no config set
  275. if (!displayer.metadata_config) {
  276. strncpy(displayer.string, title ? title : "", SCROLLABLE_SIZE);
  277. return;
  278. }
  279. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  280. // format metadata parameters and write them directly
  281. if (strlen(displayer.metadata_config->format)>0) {
  282. char token[16], *q;
  283. int space = len;
  284. bool skip = false;
  285. displayer.string[0] = '\0';
  286. p = strchr(displayer.metadata_config->format, '=');
  287. while (p++) {
  288. // find token and copy what's after when reaching last one
  289. if (sscanf(p, "%*[^%%]%%%[^%]%%", token) < 0) {
  290. q = strchr(p, ',');
  291. strncat(string, p, q ? min(q - p, space) : space);
  292. break;
  293. }
  294. // copy what's before token (be safe)
  295. if ((q = strchr(p, '%')) == NULL) break;
  296. // skip whatever is after a token if this token is empty
  297. if (!skip) {
  298. strncat(string, p, min(q - p, space));
  299. space = len - strlen(string);
  300. }
  301. // then copy token's content
  302. if (!strncasecmp(q + 1, "artist", 6) && artist) strncat(string, p = artist, space);
  303. else if (!strncasecmp(q + 1, "album", 5) && album) strncat(string, p = album, space);
  304. else if (!strncasecmp(q + 1, "title", 5) && title) strncat(string, p = title, space);
  305. space = len - strlen(string);
  306. // flag to skip the data following an empty field
  307. if (*p) skip = false;
  308. else skip = true;
  309. // advance to next separator
  310. p = strchr(q + 1, '%');
  311. }
  312. } else {
  313. strncpy(string, title ? title : "", SCROLLABLE_SIZE);
  314. }
  315. if(displayer.metadata_config->speed <=0) displayer.metadata_config->speed= displayer.speed;
  316. if(displayer.metadata_config->pause <=0) displayer.metadata_config->pause= displayer.pause;
  317. displayer.metadata_config->speed = displayer.speed;
  318. displayer.offset = 0;
  319. utf8_decode(displayer.string);
  320. ESP_LOGI(TAG, "playing %s", displayer.string);
  321. displayer.boundary = GDS_TextStretch(display, 2, displayer.string, SCROLLABLE_SIZE);
  322. xSemaphoreGive(displayer.mutex);
  323. }
  324. /****************************************************************************************
  325. *
  326. */
  327. void displayer_scroll(char *string, int speed, int pause) {
  328. // need a display!
  329. if (!display) return;
  330. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  331. if (speed) displayer.speed = speed;
  332. if (pause) displayer.pause = pause;
  333. displayer.offset = 0;
  334. strncpy(displayer.string, string, SCROLLABLE_SIZE);
  335. displayer.string[SCROLLABLE_SIZE] = '\0';
  336. displayer.boundary = GDS_TextStretch(display, 2, displayer.string, SCROLLABLE_SIZE);
  337. xSemaphoreGive(displayer.mutex);
  338. }
  339. /****************************************************************************************
  340. *
  341. */
  342. void displayer_timer(enum displayer_time_e mode, int elapsed, int duration) {
  343. // need a display!
  344. if (!display) return;
  345. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  346. if (displayer.timer) displayer.tick = xTaskGetTickCount();
  347. if (elapsed >= 0) displayer.elapsed = elapsed / 1000;
  348. if (duration > 0) {
  349. displayer.duration.visible = true;
  350. displayer.duration.value = duration / 1000;
  351. if (displayer.duration.value > 3600) sprintf(displayer.duration.string, "%u:%02u:%02u", (displayer.duration.value / 3600) % 10,
  352. (displayer.duration.value % 3600) / 60, displayer.duration.value % 60);
  353. else sprintf(displayer.duration.string, "%u:%02u", displayer.duration.value / 60, displayer.duration.value % 60);
  354. char *buf;
  355. asprintf(&buf, "%s %s/%s", displayer.header, displayer.duration.string, displayer.duration.string);
  356. if (GDS_GetTextWidth(display, 1, 0, buf) > GDS_GetWidth(display)) {
  357. ESP_LOGW(TAG, "Can't fit duration %s (%d) on screen using elapsed only", buf, GDS_GetTextWidth(display, 1, 0, buf));
  358. displayer.duration.visible = false;
  359. }
  360. free(buf);
  361. } else if (!duration) {
  362. displayer.duration.visible = false;
  363. displayer.duration.value = 0;
  364. }
  365. xSemaphoreGive(displayer.mutex);
  366. }
  367. /****************************************************************************************
  368. * See above comment
  369. */
  370. void displayer_control(enum displayer_cmd_e cmd, ...) {
  371. va_list args;
  372. if (!display) return;
  373. va_start(args, cmd);
  374. xSemaphoreTake(displayer.mutex, portMAX_DELAY);
  375. switch(cmd) {
  376. case DISPLAYER_ACTIVATE: {
  377. char *header = va_arg(args, char*);
  378. displayer.artwork.active = displayer.artwork.enable && va_arg(args, int);
  379. strncpy(displayer.header, header, HEADER_SIZE);
  380. displayer.header[HEADER_SIZE] = '\0';
  381. displayer.state = DISPLAYER_ACTIVE;
  382. displayer.timer = false;
  383. displayer.refresh = true;
  384. displayer.string[0] = '\0';
  385. displayer.elapsed = displayer.duration.value = 0;
  386. displayer.duration.visible = false;
  387. displayer.offset = displayer.boundary = 0;
  388. display_bus(&displayer, DISPLAY_BUS_TAKE);
  389. if (displayer.artwork.active) GDS_SetTextWidth(display, displayer.artwork.offset);
  390. vTaskResume(displayer.task);
  391. break;
  392. }
  393. case DISPLAYER_SUSPEND:
  394. // task will display the line 2 from beginning and suspend
  395. displayer.state = DISPLAYER_IDLE;
  396. displayer_artwork(NULL);
  397. display_bus(&displayer, DISPLAY_BUS_GIVE);
  398. break;
  399. case DISPLAYER_SHUTDOWN:
  400. // let the task self-suspend (we might be doing i2c_write)
  401. GDS_SetTextWidth(display, 0);
  402. displayer_artwork(NULL);
  403. displayer.state = DISPLAYER_DOWN;
  404. display_bus(&displayer, DISPLAY_BUS_GIVE);
  405. break;
  406. case DISPLAYER_TIMER_RUN:
  407. if (!displayer.timer) {
  408. display_bus(&displayer, DISPLAY_BUS_TAKE);
  409. displayer.timer = true;
  410. displayer.tick = xTaskGetTickCount();
  411. }
  412. break;
  413. case DISPLAYER_TIMER_PAUSE:
  414. displayer.timer = false;
  415. break;
  416. default:
  417. break;
  418. }
  419. xSemaphoreGive(displayer.mutex);
  420. va_end(args);
  421. }