My Marlin configs for Fabrikator Mini and CTC i3 Pro B
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.

ultralcd_DOGM.cpp 25KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * lcd/dogm/ultralcd_DOGM.h
  24. *
  25. * Implementation of the LCD display routines for a DOGM128 graphic display.
  26. * by STB for ErikZalm/Marlin. Common LCD 128x64 pixel graphic displays.
  27. *
  28. * Demonstrator: https://www.reprap.org/wiki/STB_Electronics
  29. * License: https://opensource.org/licenses/BSD-3-Clause
  30. *
  31. * With the use of:
  32. * u8glib by Oliver Kraus
  33. * https://github.com/olikraus/U8glib_Arduino
  34. * License: https://opensource.org/licenses/BSD-3-Clause
  35. */
  36. #include "../../inc/MarlinConfigPre.h"
  37. #if HAS_GRAPHICAL_LCD
  38. #include "ultralcd_DOGM.h"
  39. #include "u8g_fontutf8.h"
  40. #if ENABLED(SHOW_BOOTSCREEN)
  41. #include "dogm_Bootscreen.h"
  42. #endif
  43. #include "../lcdprint.h"
  44. #include "../fontutils.h"
  45. #include "../../libs/numtostr.h"
  46. #include "../ultralcd.h"
  47. #include "../../sd/cardreader.h"
  48. #include "../../module/temperature.h"
  49. #include "../../module/printcounter.h"
  50. #if ENABLED(SDSUPPORT)
  51. #include "../../libs/duration_t.h"
  52. #endif
  53. #if ENABLED(AUTO_BED_LEVELING_UBL)
  54. #include "../../feature/bedlevel/bedlevel.h"
  55. #endif
  56. /**
  57. * Include all needed font files
  58. * (See https://marlinfw.org/docs/development/fonts.html)
  59. */
  60. #include "fontdata/fontdata_ISO10646_1.h"
  61. #if ENABLED(USE_SMALL_INFOFONT)
  62. #include "fontdata/fontdata_6x9_marlin.h"
  63. #define FONT_STATUSMENU_NAME u8g_font_6x9
  64. #else
  65. #define FONT_STATUSMENU_NAME MENU_FONT_NAME
  66. #endif
  67. U8G_CLASS u8g(U8G_PARAM);
  68. #include LANGUAGE_DATA_INCL(LCD_LANGUAGE)
  69. #if HAS_LCD_CONTRAST
  70. int16_t MarlinUI::contrast = DEFAULT_LCD_CONTRAST;
  71. void MarlinUI::set_contrast(const int16_t value) {
  72. contrast = constrain(value, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX);
  73. u8g.setContrast(contrast);
  74. }
  75. #endif
  76. void MarlinUI::set_font(const MarlinFont font_nr) {
  77. static char currentfont = 0;
  78. if (font_nr != currentfont) {
  79. switch ((currentfont = font_nr)) {
  80. case FONT_STATUSMENU : u8g.setFont(FONT_STATUSMENU_NAME); break;
  81. case FONT_EDIT : u8g.setFont(EDIT_FONT_NAME); break;
  82. default:
  83. case FONT_MENU : u8g.setFont(MENU_FONT_NAME); break;
  84. }
  85. }
  86. }
  87. bool MarlinUI::detected() { return true; }
  88. #if ENABLED(SHOW_BOOTSCREEN)
  89. #if ENABLED(SHOW_CUSTOM_BOOTSCREEN)
  90. // Draws a slice of a particular frame of the custom bootscreen, without the u8g loop
  91. void MarlinUI::draw_custom_bootscreen(const uint8_t frame/*=0*/) {
  92. constexpr u8g_uint_t left = u8g_uint_t((LCD_PIXEL_WIDTH - (CUSTOM_BOOTSCREEN_BMPWIDTH)) / 2),
  93. top = u8g_uint_t((LCD_PIXEL_HEIGHT - (CUSTOM_BOOTSCREEN_BMPHEIGHT)) / 2);
  94. #if ENABLED(CUSTOM_BOOTSCREEN_INVERTED)
  95. constexpr u8g_uint_t right = left + CUSTOM_BOOTSCREEN_BMPWIDTH,
  96. bottom = top + CUSTOM_BOOTSCREEN_BMPHEIGHT;
  97. #endif
  98. const u8g_pgm_uint8_t * const bmp =
  99. #if ENABLED(CUSTOM_BOOTSCREEN_ANIMATED)
  100. (u8g_pgm_uint8_t*)pgm_read_ptr(&custom_bootscreen_animation[frame])
  101. #else
  102. custom_start_bmp
  103. #endif
  104. ;
  105. TERN(CUSTOM_BOOTSCREEN_ANIMATED,,UNUSED(frame));
  106. u8g.drawBitmapP(left, top, CUSTOM_BOOTSCREEN_BMP_BYTEWIDTH, CUSTOM_BOOTSCREEN_BMPHEIGHT, bmp);
  107. #if ENABLED(CUSTOM_BOOTSCREEN_INVERTED)
  108. if (frame == 0) {
  109. u8g.setColorIndex(1);
  110. if (top) u8g.drawBox(0, 0, LCD_PIXEL_WIDTH, top);
  111. if (left) u8g.drawBox(0, top, left, CUSTOM_BOOTSCREEN_BMPHEIGHT);
  112. if (right < LCD_PIXEL_WIDTH) u8g.drawBox(right, top, LCD_PIXEL_WIDTH - right, CUSTOM_BOOTSCREEN_BMPHEIGHT);
  113. if (bottom < LCD_PIXEL_HEIGHT) u8g.drawBox(0, bottom, LCD_PIXEL_WIDTH, LCD_PIXEL_HEIGHT - bottom);
  114. }
  115. #endif
  116. }
  117. // Shows the custom bootscreen, with the u8g loop, animations and delays
  118. void MarlinUI::show_custom_bootscreen() {
  119. #if DISABLED(CUSTOM_BOOTSCREEN_ANIMATED)
  120. constexpr millis_t d = 0;
  121. constexpr uint8_t f = 0;
  122. #else
  123. constexpr millis_t d = CUSTOM_BOOTSCREEN_FRAME_TIME;
  124. LOOP_L_N(f, COUNT(custom_bootscreen_animation))
  125. #endif
  126. {
  127. u8g.firstPage();
  128. do { draw_custom_bootscreen(f); } while (u8g.nextPage());
  129. if (d) safe_delay(d);
  130. }
  131. #ifndef CUSTOM_BOOTSCREEN_TIMEOUT
  132. #define CUSTOM_BOOTSCREEN_TIMEOUT 2500
  133. #endif
  134. safe_delay(CUSTOM_BOOTSCREEN_TIMEOUT);
  135. }
  136. #endif // SHOW_CUSTOM_BOOTSCREEN
  137. // Two-part needed to display all info
  138. constexpr bool two_part = ((LCD_PIXEL_HEIGHT) - (START_BMPHEIGHT)) < ((MENU_FONT_ASCENT) * 2);
  139. // Draw the static Marlin bootscreen from a u8g loop
  140. // or the animated boot screen within its own u8g loop
  141. void MarlinUI::draw_marlin_bootscreen(const bool line2/*=false*/) {
  142. // Determine text space needed
  143. constexpr u8g_uint_t text_width_1 = u8g_uint_t((sizeof(SHORT_BUILD_VERSION) - 1) * (MENU_FONT_WIDTH)),
  144. text_width_2 = u8g_uint_t((sizeof(MARLIN_WEBSITE_URL) - 1) * (MENU_FONT_WIDTH)),
  145. text_max_width = _MAX(text_width_1, text_width_2),
  146. text_total_height = (MENU_FONT_HEIGHT) * 2,
  147. width = LCD_PIXEL_WIDTH, height = LCD_PIXEL_HEIGHT,
  148. rspace = width - (START_BMPWIDTH);
  149. u8g_int_t offx, offy, txt_base, txt_offx_1, txt_offx_2;
  150. // Can the text fit to the right of the bitmap?
  151. if (text_max_width < rspace) {
  152. constexpr int8_t inter = (width - text_max_width - (START_BMPWIDTH)) / 3; // Evenly distribute horizontal space
  153. offx = inter; // First the boot logo...
  154. offy = (height - (START_BMPHEIGHT)) / 2; // ...V-aligned in the full height
  155. txt_offx_1 = txt_offx_2 = inter + (START_BMPWIDTH) + inter; // Text right of the bitmap
  156. txt_base = (height + MENU_FONT_ASCENT + text_total_height - (MENU_FONT_HEIGHT)) / 2; // Text vertical center
  157. }
  158. else {
  159. constexpr int8_t inter = (height - text_total_height - (START_BMPHEIGHT)) / 3; // Evenly distribute vertical space
  160. offx = rspace / 2; // Center the boot logo in the whole space
  161. offy = inter; // V-align boot logo proportionally
  162. txt_offx_1 = (width - text_width_1) / 2; // Text 1 centered
  163. txt_offx_2 = (width - text_width_2) / 2; // Text 2 centered
  164. txt_base = offy + START_BMPHEIGHT + offy + text_total_height - (MENU_FONT_DESCENT); // Even spacing looks best
  165. }
  166. NOLESS(offx, 0);
  167. NOLESS(offy, 0);
  168. auto _draw_bootscreen_bmp = [&](const uint8_t *bitmap) {
  169. u8g.drawBitmapP(offx, offy, START_BMP_BYTEWIDTH, START_BMPHEIGHT, bitmap);
  170. set_font(FONT_MENU);
  171. if (!two_part || !line2) lcd_put_u8str_P(txt_offx_1, txt_base - (MENU_FONT_HEIGHT), PSTR(SHORT_BUILD_VERSION));
  172. if (!two_part || line2) lcd_put_u8str_P(txt_offx_2, txt_base, PSTR(MARLIN_WEBSITE_URL));
  173. };
  174. auto draw_bootscreen_bmp = [&](const uint8_t *bitmap) {
  175. u8g.firstPage(); do { _draw_bootscreen_bmp(bitmap); } while (u8g.nextPage());
  176. };
  177. #if DISABLED(BOOT_MARLIN_LOGO_ANIMATED)
  178. draw_bootscreen_bmp(start_bmp);
  179. #else
  180. constexpr millis_t d = MARLIN_BOOTSCREEN_FRAME_TIME;
  181. LOOP_L_N(f, COUNT(marlin_bootscreen_animation)) {
  182. draw_bootscreen_bmp((uint8_t*)pgm_read_ptr(&marlin_bootscreen_animation[f]));
  183. if (d) safe_delay(d);
  184. }
  185. #endif
  186. }
  187. // Show the Marlin bootscreen, with the u8g loop and delays
  188. void MarlinUI::show_marlin_bootscreen() {
  189. constexpr uint8_t pages = two_part ? 2 : 1;
  190. for (uint8_t q = pages; q--;) {
  191. draw_marlin_bootscreen(q == 0);
  192. safe_delay((BOOTSCREEN_TIMEOUT) / pages);
  193. }
  194. }
  195. void MarlinUI::show_bootscreen() {
  196. TERN_(SHOW_CUSTOM_BOOTSCREEN, show_custom_bootscreen());
  197. show_marlin_bootscreen();
  198. }
  199. #endif // SHOW_BOOTSCREEN
  200. #if ENABLED(LIGHTWEIGHT_UI)
  201. #include "status_screen_lite_ST7920.h"
  202. #endif
  203. // Initialize or re-initialize the LCD
  204. void MarlinUI::init_lcd() {
  205. #if PIN_EXISTS(LCD_BACKLIGHT)
  206. OUT_WRITE(LCD_BACKLIGHT_PIN, DISABLED(DELAYED_BACKLIGHT_INIT)); // Illuminate after reset or right away
  207. #endif
  208. #if ANY(MKS_12864OLED, MKS_12864OLED_SSD1306, FYSETC_242_OLED_12864, ZONESTAR_12864OLED)
  209. SET_OUTPUT(LCD_PINS_DC);
  210. #ifndef LCD_RESET_PIN
  211. #define LCD_RESET_PIN LCD_PINS_RS
  212. #endif
  213. #endif
  214. #if PIN_EXISTS(LCD_RESET)
  215. // Perform a clean hardware reset with needed delays
  216. OUT_WRITE(LCD_RESET_PIN, LOW);
  217. _delay_ms(5);
  218. WRITE(LCD_RESET_PIN, HIGH);
  219. _delay_ms(5);
  220. u8g.begin();
  221. #endif
  222. #if PIN_EXISTS(LCD_BACKLIGHT) && ENABLED(DELAYED_BACKLIGHT_INIT)
  223. WRITE(LCD_BACKLIGHT_PIN, HIGH);
  224. #endif
  225. TERN_(HAS_LCD_CONTRAST, refresh_contrast());
  226. TERN_(LCD_SCREEN_ROT_90, u8g.setRot90());
  227. TERN_(LCD_SCREEN_ROT_180, u8g.setRot180());
  228. TERN_(LCD_SCREEN_ROT_270, u8g.setRot270());
  229. uxg_SetUtf8Fonts(g_fontinfo, COUNT(g_fontinfo));
  230. }
  231. // The kill screen is displayed for unrecoverable conditions
  232. void MarlinUI::draw_kill_screen() {
  233. TERN_(LIGHTWEIGHT_UI, ST7920_Lite_Status_Screen::clear_text_buffer());
  234. const u8g_uint_t h4 = u8g.getHeight() / 4;
  235. u8g.firstPage();
  236. do {
  237. set_font(FONT_MENU);
  238. lcd_put_u8str(0, h4 * 1, status_message);
  239. lcd_put_u8str_P(0, h4 * 2, GET_TEXT(MSG_HALTED));
  240. lcd_put_u8str_P(0, h4 * 3, GET_TEXT(MSG_PLEASE_RESET));
  241. } while (u8g.nextPage());
  242. }
  243. void MarlinUI::clear_lcd() { } // Automatically cleared by Picture Loop
  244. #if HAS_LCD_MENU
  245. #include "../menu/menu.h"
  246. u8g_uint_t row_y1, row_y2;
  247. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  248. void MarlinUI::draw_hotend_status(const uint8_t row, const uint8_t extruder) {
  249. row_y1 = row * (MENU_FONT_HEIGHT) + 1;
  250. row_y2 = row_y1 + MENU_FONT_HEIGHT - 1;
  251. if (!PAGE_CONTAINS(row_y1 + 1, row_y2 + 2)) return;
  252. lcd_put_wchar(LCD_PIXEL_WIDTH - 11 * (MENU_FONT_WIDTH), row_y2, 'E');
  253. lcd_put_wchar((char)('1' + extruder));
  254. lcd_put_wchar(' ');
  255. lcd_put_u8str(i16tostr3rj(thermalManager.degHotend(extruder)));
  256. lcd_put_wchar('/');
  257. if (get_blink() || !thermalManager.heater_idle[extruder].timed_out)
  258. lcd_put_u8str(i16tostr3rj(thermalManager.degTargetHotend(extruder)));
  259. }
  260. #endif // ADVANCED_PAUSE_FEATURE
  261. // Mark a menu item and set font color if selected.
  262. // Return 'false' if the item is not on screen.
  263. static bool mark_as_selected(const uint8_t row, const bool sel) {
  264. row_y1 = row * (MENU_FONT_HEIGHT) + 1;
  265. row_y2 = row_y1 + MENU_FONT_HEIGHT - 1;
  266. if (!PAGE_CONTAINS(row_y1 + 1, row_y2 + 2)) return false;
  267. if (sel) {
  268. #if ENABLED(MENU_HOLLOW_FRAME)
  269. u8g.drawHLine(0, row_y1 + 1, LCD_PIXEL_WIDTH);
  270. u8g.drawHLine(0, row_y2 + 2, LCD_PIXEL_WIDTH);
  271. #else
  272. u8g.setColorIndex(1); // solid outline
  273. u8g.drawBox(0, row_y1 + 2, LCD_PIXEL_WIDTH, MENU_FONT_HEIGHT - 1);
  274. u8g.setColorIndex(0); // inverted text
  275. #endif
  276. }
  277. #if DISABLED(MENU_HOLLOW_FRAME)
  278. else u8g.setColorIndex(1); // solid text
  279. #endif
  280. if (!PAGE_CONTAINS(row_y1, row_y2)) return false;
  281. lcd_moveto(0, row_y2);
  282. return true;
  283. }
  284. // Draw a static line of text in the same idiom as a menu item
  285. void MenuItem_static::draw(const uint8_t row, PGM_P const pstr, const uint8_t style/*=SS_DEFAULT*/, const char * const vstr/*=nullptr*/) {
  286. if (mark_as_selected(row, style & SS_INVERT)) {
  287. pixel_len_t n = LCD_PIXEL_WIDTH; // pixel width of string allowed
  288. const int8_t plen = pstr ? utf8_strlen_P(pstr) : 0,
  289. vlen = vstr ? utf8_strlen(vstr) : 0;
  290. if (style & SS_CENTER) {
  291. int8_t pad = (LCD_WIDTH - plen - vlen) / 2;
  292. while (--pad >= 0) n -= lcd_put_wchar(' ');
  293. }
  294. if (plen) n = lcd_put_u8str_ind_P(pstr, itemIndex, itemString, n / (MENU_FONT_WIDTH)) * (MENU_FONT_WIDTH);
  295. if (vlen) n -= lcd_put_u8str_max(vstr, n);
  296. while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
  297. }
  298. }
  299. // Draw a generic menu item
  300. void MenuItemBase::_draw(const bool sel, const uint8_t row, PGM_P const pstr, const char, const char post_char) {
  301. if (mark_as_selected(row, sel)) {
  302. pixel_len_t n = lcd_put_u8str_ind_P(pstr, itemIndex, itemString, LCD_WIDTH - 1) * (MENU_FONT_WIDTH);
  303. while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
  304. lcd_put_wchar(LCD_PIXEL_WIDTH - (MENU_FONT_WIDTH), row_y2, post_char);
  305. lcd_put_wchar(' ');
  306. }
  307. }
  308. // Draw a menu item with an editable value
  309. void MenuEditItemBase::draw(const bool sel, const uint8_t row, PGM_P const pstr, const char* const inStr, const bool pgm) {
  310. if (mark_as_selected(row, sel)) {
  311. const uint8_t vallen = (pgm ? utf8_strlen_P(inStr) : utf8_strlen((char*)inStr)),
  312. pixelwidth = (pgm ? uxg_GetUtf8StrPixelWidthP(u8g.getU8g(), inStr) : uxg_GetUtf8StrPixelWidth(u8g.getU8g(), (char*)inStr));
  313. pixel_len_t n = lcd_put_u8str_ind_P(pstr, itemIndex, itemString, LCD_WIDTH - 2 - vallen) * (MENU_FONT_WIDTH);
  314. if (vallen) {
  315. lcd_put_wchar(':');
  316. while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
  317. lcd_moveto(LCD_PIXEL_WIDTH - _MAX((MENU_FONT_WIDTH) * vallen, pixelwidth + 2), row_y2);
  318. if (pgm) lcd_put_u8str_P(inStr); else lcd_put_u8str((char*)inStr);
  319. }
  320. }
  321. }
  322. void MenuEditItemBase::draw_edit_screen(PGM_P const pstr, const char* const value/*=nullptr*/) {
  323. ui.encoder_direction_normal();
  324. const u8g_uint_t labellen = utf8_strlen_P(pstr), vallen = utf8_strlen(value);
  325. bool extra_row = labellen > LCD_WIDTH - 2 - vallen;
  326. #if ENABLED(USE_BIG_EDIT_FONT)
  327. // Use the menu font if the label won't fit on a single line
  328. constexpr u8g_uint_t lcd_edit_width = (LCD_PIXEL_WIDTH) / (EDIT_FONT_WIDTH);
  329. u8g_uint_t lcd_chr_fit, one_chr_width;
  330. if (labellen <= lcd_edit_width - 1) {
  331. if (labellen + vallen + 1 > lcd_edit_width) extra_row = true;
  332. lcd_chr_fit = lcd_edit_width + 1;
  333. one_chr_width = EDIT_FONT_WIDTH;
  334. ui.set_font(FONT_EDIT);
  335. }
  336. else {
  337. lcd_chr_fit = LCD_WIDTH;
  338. one_chr_width = MENU_FONT_WIDTH;
  339. ui.set_font(FONT_MENU);
  340. }
  341. #else
  342. constexpr u8g_uint_t lcd_chr_fit = LCD_WIDTH,
  343. one_chr_width = MENU_FONT_WIDTH;
  344. #endif
  345. // Center the label and value lines on the middle line
  346. u8g_uint_t baseline = extra_row ? (LCD_PIXEL_HEIGHT) / 2 - 1
  347. : (LCD_PIXEL_HEIGHT + EDIT_FONT_ASCENT) / 2;
  348. // Assume the label is alpha-numeric (with a descender)
  349. bool onpage = PAGE_CONTAINS(baseline - (EDIT_FONT_ASCENT - 1), baseline + EDIT_FONT_DESCENT);
  350. if (onpage) lcd_put_u8str_ind_P(0, baseline, pstr, itemIndex, itemString);
  351. // If a value is included, print a colon, then print the value right-justified
  352. if (value != nullptr) {
  353. lcd_put_wchar(':');
  354. if (extra_row) {
  355. // Assume that value is numeric (with no descender)
  356. baseline += EDIT_FONT_ASCENT + 2;
  357. onpage = PAGE_CONTAINS(baseline - (EDIT_FONT_ASCENT - 1), baseline);
  358. }
  359. if (onpage) {
  360. lcd_put_wchar(((lcd_chr_fit - 1) - (vallen + 1)) * one_chr_width, baseline, ' '); // Right-justified, padded, add a leading space
  361. lcd_put_u8str(value);
  362. }
  363. }
  364. TERN_(USE_BIG_EDIT_FONT, ui.set_font(FONT_MENU));
  365. }
  366. inline void draw_boxed_string(const u8g_uint_t x, const u8g_uint_t y, PGM_P const pstr, const bool inv) {
  367. const u8g_uint_t len = utf8_strlen_P(pstr),
  368. by = (y + 1) * (MENU_FONT_HEIGHT);
  369. const pixel_len_t bw = len * (MENU_FONT_WIDTH), bx = x * (MENU_FONT_WIDTH);
  370. if (inv) {
  371. u8g.setColorIndex(1);
  372. u8g.drawBox(bx - 1, by - (MENU_FONT_ASCENT) + 1, bw + 2, MENU_FONT_HEIGHT - 1);
  373. u8g.setColorIndex(0);
  374. }
  375. lcd_put_u8str_P(bx, by, pstr);
  376. if (inv) u8g.setColorIndex(1);
  377. }
  378. void MenuItem_confirm::draw_select_screen(PGM_P const yes, PGM_P const no, const bool yesno, PGM_P const pref, const char * const string/*=nullptr*/, PGM_P const suff/*=nullptr*/) {
  379. ui.draw_select_screen_prompt(pref, string, suff);
  380. draw_boxed_string(1, LCD_HEIGHT - 1, no, !yesno);
  381. draw_boxed_string(LCD_WIDTH - (utf8_strlen_P(yes) + 1), LCD_HEIGHT - 1, yes, yesno);
  382. }
  383. #if ENABLED(SDSUPPORT)
  384. void MenuItem_sdbase::draw(const bool sel, const uint8_t row, PGM_P const, CardReader &theCard, const bool isDir) {
  385. if (mark_as_selected(row, sel)) {
  386. if (isDir) lcd_put_wchar(LCD_STR_FOLDER[0]);
  387. constexpr uint8_t maxlen = LCD_WIDTH - 1;
  388. const pixel_len_t pixw = maxlen * (MENU_FONT_WIDTH);
  389. pixel_len_t n = pixw - lcd_put_u8str_max(ui.scrolled_filename(theCard, maxlen, row, sel), pixw);
  390. while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
  391. }
  392. }
  393. #endif // SDSUPPORT
  394. #if ENABLED(AUTO_BED_LEVELING_UBL)
  395. /**
  396. * UBL LCD "radar" map data
  397. */
  398. #define MAP_UPPER_LEFT_CORNER_X 35 // These probably should be moved to the .h file But for now,
  399. #define MAP_UPPER_LEFT_CORNER_Y 8 // it is easier to play with things having them here
  400. #define MAP_MAX_PIXELS_X 53
  401. #define MAP_MAX_PIXELS_Y 49
  402. void MarlinUI::ubl_plot(const uint8_t x_plot, const uint8_t y_plot) {
  403. // Scale the box pixels appropriately
  404. u8g_uint_t x_map_pixels = ((MAP_MAX_PIXELS_X - 4) / (GRID_MAX_POINTS_X)) * (GRID_MAX_POINTS_X),
  405. y_map_pixels = ((MAP_MAX_PIXELS_Y - 4) / (GRID_MAX_POINTS_Y)) * (GRID_MAX_POINTS_Y),
  406. pixels_per_x_mesh_pnt = x_map_pixels / (GRID_MAX_POINTS_X),
  407. pixels_per_y_mesh_pnt = y_map_pixels / (GRID_MAX_POINTS_Y),
  408. x_offset = MAP_UPPER_LEFT_CORNER_X + 1 + (MAP_MAX_PIXELS_X - x_map_pixels - 2) / 2,
  409. y_offset = MAP_UPPER_LEFT_CORNER_Y + 1 + (MAP_MAX_PIXELS_Y - y_map_pixels - 2) / 2;
  410. // Clear the Mesh Map
  411. if (PAGE_CONTAINS(y_offset - 2, y_offset + y_map_pixels + 4)) {
  412. u8g.setColorIndex(1); // First draw the bigger box in White so we have a border around the mesh map box
  413. u8g.drawBox(x_offset - 2, y_offset - 2, x_map_pixels + 4, y_map_pixels + 4);
  414. if (PAGE_CONTAINS(y_offset, y_offset + y_map_pixels)) {
  415. u8g.setColorIndex(0); // Now actually clear the mesh map box
  416. u8g.drawBox(x_offset, y_offset, x_map_pixels, y_map_pixels);
  417. }
  418. }
  419. // Display Mesh Point Locations
  420. u8g.setColorIndex(1);
  421. const u8g_uint_t sx = x_offset + pixels_per_x_mesh_pnt / 2;
  422. u8g_uint_t y = y_offset + pixels_per_y_mesh_pnt / 2;
  423. for (uint8_t j = 0; j < GRID_MAX_POINTS_Y; j++, y += pixels_per_y_mesh_pnt)
  424. if (PAGE_CONTAINS(y, y))
  425. for (uint8_t i = 0, x = sx; i < GRID_MAX_POINTS_X; i++, x += pixels_per_x_mesh_pnt)
  426. u8g.drawBox(x, y, 1, 1);
  427. // Fill in the Specified Mesh Point
  428. const uint8_t y_plot_inv = (GRID_MAX_POINTS_Y - 1) - y_plot; // The origin is typically in the lower right corner. We need to
  429. // invert the Y to get it to plot in the right location.
  430. const u8g_uint_t by = y_offset + y_plot_inv * pixels_per_y_mesh_pnt;
  431. if (PAGE_CONTAINS(by, by + pixels_per_y_mesh_pnt))
  432. u8g.drawBox(
  433. x_offset + x_plot * pixels_per_x_mesh_pnt, by,
  434. pixels_per_x_mesh_pnt, pixels_per_y_mesh_pnt
  435. );
  436. // Put Relevant Text on Display
  437. // Show X and Y positions at top of screen
  438. u8g.setColorIndex(1);
  439. if (PAGE_UNDER(7)) {
  440. const xy_pos_t pos = { ubl.mesh_index_to_xpos(x_plot), ubl.mesh_index_to_ypos(y_plot) },
  441. lpos = pos.asLogical();
  442. lcd_put_u8str_P(5, 7, X_LBL);
  443. lcd_put_u8str(ftostr52(lpos.x));
  444. lcd_put_u8str_P(74, 7, Y_LBL);
  445. lcd_put_u8str(ftostr52(lpos.y));
  446. }
  447. // Print plot position
  448. if (PAGE_CONTAINS(LCD_PIXEL_HEIGHT - (INFO_FONT_HEIGHT - 1), LCD_PIXEL_HEIGHT)) {
  449. lcd_put_wchar(5, LCD_PIXEL_HEIGHT, '(');
  450. u8g.print(x_plot);
  451. lcd_put_wchar(',');
  452. u8g.print(y_plot);
  453. lcd_put_wchar(')');
  454. // Show the location value
  455. lcd_put_u8str_P(74, LCD_PIXEL_HEIGHT, Z_LBL);
  456. if (!isnan(ubl.z_values[x_plot][y_plot]))
  457. lcd_put_u8str(ftostr43sign(ubl.z_values[x_plot][y_plot]));
  458. else
  459. lcd_put_u8str_P(PSTR(" -----"));
  460. }
  461. }
  462. #endif // AUTO_BED_LEVELING_UBL
  463. #if EITHER(BABYSTEP_ZPROBE_GFX_OVERLAY, MESH_EDIT_GFX_OVERLAY)
  464. const unsigned char cw_bmp[] PROGMEM = {
  465. B00000000,B11111110,B00000000,
  466. B00000011,B11111111,B10000000,
  467. B00000111,B11000111,B11000000,
  468. B00000111,B00000001,B11100000,
  469. B00000000,B00000000,B11100000,
  470. B00000000,B00000000,B11110000,
  471. B00000000,B00000000,B01110000,
  472. B00000100,B00000000,B01110000,
  473. B00001110,B00000000,B01110000,
  474. B00011111,B00000000,B01110000,
  475. B00111111,B10000000,B11110000,
  476. B00001110,B00000000,B11100000,
  477. B00001111,B00000001,B11100000,
  478. B00000111,B11000111,B11000000,
  479. B00000011,B11111111,B10000000,
  480. B00000000,B11111110,B00000000
  481. };
  482. const unsigned char ccw_bmp[] PROGMEM = {
  483. B00000000,B11111110,B00000000,
  484. B00000011,B11111111,B10000000,
  485. B00000111,B11000111,B11000000,
  486. B00001111,B00000001,B11100000,
  487. B00001110,B00000000,B11100000,
  488. B00111111,B10000000,B11110000,
  489. B00011111,B00000000,B01110000,
  490. B00001110,B00000000,B01110000,
  491. B00000100,B00000000,B01110000,
  492. B00000000,B00000000,B01110000,
  493. B00000000,B00000000,B11110000,
  494. B00000000,B00000000,B11100000,
  495. B00000111,B00000001,B11100000,
  496. B00000111,B11000111,B11000000,
  497. B00000011,B11111111,B10000000,
  498. B00000000,B11111110,B00000000
  499. };
  500. const unsigned char up_arrow_bmp[] PROGMEM = {
  501. B00000100,B00000000,
  502. B00001110,B00000000,
  503. B00011111,B00000000,
  504. B00111111,B10000000,
  505. B01111111,B11000000,
  506. B00001110,B00000000,
  507. B00001110,B00000000,
  508. B00001110,B00000000,
  509. B00001110,B00000000,
  510. B00001110,B00000000,
  511. B00001110,B00000000,
  512. B00001110,B00000000,
  513. B00001110,B00000000
  514. };
  515. const unsigned char down_arrow_bmp[] PROGMEM = {
  516. B00001110,B00000000,
  517. B00001110,B00000000,
  518. B00001110,B00000000,
  519. B00001110,B00000000,
  520. B00001110,B00000000,
  521. B00001110,B00000000,
  522. B00001110,B00000000,
  523. B00001110,B00000000,
  524. B01111111,B11000000,
  525. B00111111,B10000000,
  526. B00011111,B00000000,
  527. B00001110,B00000000,
  528. B00000100,B00000000
  529. };
  530. const unsigned char offset_bedline_bmp[] PROGMEM = {
  531. B11111111,B11111111,B11111111
  532. };
  533. const unsigned char nozzle_bmp[] PROGMEM = {
  534. B01111111,B10000000,
  535. B11111111,B11000000,
  536. B11111111,B11000000,
  537. B11111111,B11000000,
  538. B01111111,B10000000,
  539. B01111111,B10000000,
  540. B11111111,B11000000,
  541. B11111111,B11000000,
  542. B11111111,B11000000,
  543. B00111111,B00000000,
  544. B00011110,B00000000,
  545. B00001100,B00000000
  546. };
  547. void _lcd_zoffset_overlay_gfx(const float zvalue) {
  548. // Determine whether the user is raising or lowering the nozzle.
  549. static int8_t dir;
  550. static float old_zvalue;
  551. if (zvalue != old_zvalue) {
  552. dir = zvalue ? zvalue < old_zvalue ? -1 : 1 : 0;
  553. old_zvalue = zvalue;
  554. }
  555. #if ENABLED(OVERLAY_GFX_REVERSE)
  556. const unsigned char *rot_up = ccw_bmp, *rot_down = cw_bmp;
  557. #else
  558. const unsigned char *rot_up = cw_bmp, *rot_down = ccw_bmp;
  559. #endif
  560. #if ENABLED(USE_BIG_EDIT_FONT)
  561. const int left = 0, right = 45, nozzle = 95;
  562. #else
  563. const int left = 5, right = 90, nozzle = 60;
  564. #endif
  565. // Draw a representation of the nozzle
  566. if (PAGE_CONTAINS(3, 16)) u8g.drawBitmapP(nozzle + 6, 4 - dir, 2, 12, nozzle_bmp);
  567. if (PAGE_CONTAINS(20, 20)) u8g.drawBitmapP(nozzle + 0, 20, 3, 1, offset_bedline_bmp);
  568. // Draw cw/ccw indicator and up/down arrows.
  569. if (PAGE_CONTAINS(47, 62)) {
  570. u8g.drawBitmapP(right + 0, 48 - dir, 2, 13, up_arrow_bmp);
  571. u8g.drawBitmapP(left + 0, 49 - dir, 2, 13, down_arrow_bmp);
  572. u8g.drawBitmapP(left + 13, 47, 3, 16, rot_down);
  573. u8g.drawBitmapP(right + 13, 47, 3, 16, rot_up);
  574. }
  575. }
  576. #endif // BABYSTEP_ZPROBE_GFX_OVERLAY || MESH_EDIT_GFX_OVERLAY
  577. #endif // HAS_LCD_MENU
  578. #endif // HAS_GRAPHICAL_LCD