display.c 16 KB

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