This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/Marlin/src/lcd/menu/menu_media.cpp

172 lines
4.3 KiB
C++
Raw Normal View History

2018-10-28 09:10:25 +01:00
/**
* Marlin 3D Printer Firmware
2019-06-28 06:57:50 +02:00
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2018-10-28 09:10:25 +01:00
*
* Based on Sprinter and grbl.
2019-06-28 06:57:50 +02:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2018-10-28 09:10:25 +01:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
//
// SD Card Menu
//
#include "../../inc/MarlinConfigPre.h"
#if HAS_LCD_MENU && ENABLED(SDSUPPORT)
#include "menu.h"
#include "../../sd/cardreader.h"
#if !PIN_EXISTS(SD_DETECT)
void lcd_sd_refresh() {
encoderTopLine = 0;
2019-09-15 10:10:59 +02:00
card.mount();
2018-10-28 09:10:25 +01:00
}
#endif
void lcd_sd_updir() {
ui.encoderPosition = card.cdup() ? ENCODER_STEPS_PER_MENU_ITEM : 0;
2018-10-28 09:10:25 +01:00
encoderTopLine = 0;
screen_changed = true;
ui.refresh();
2018-10-28 09:10:25 +01:00
}
#if ENABLED(SD_REPRINT_LAST_SELECTED_FILE)
uint16_t sd_encoder_position = 0xFFFF;
int8_t sd_top_line, sd_items;
2018-10-28 09:10:25 +01:00
void MarlinUI::reselect_last_file() {
if (sd_encoder_position == 0xFFFF) return;
//#if HAS_GRAPHICAL_LCD
// // This is a hack to force a screen update.
// ui.refresh(LCDVIEW_CALL_REDRAW_NEXT);
// ui.synchronize();
// safe_delay(50);
// ui.synchronize();
// ui.refresh(LCDVIEW_CALL_REDRAW_NEXT);
// ui.drawing_screen = screen_changed = true;
//#endif
2019-08-15 00:52:14 +02:00
goto_screen(menu_media, sd_encoder_position, sd_top_line, sd_items);
sd_encoder_position = 0xFFFF;
2018-10-28 09:10:25 +01:00
defer_status_screen();
//#if HAS_GRAPHICAL_LCD
// update();
//#endif
2018-10-28 09:10:25 +01:00
}
#endif
inline void sdcard_start_selected_file() {
card.openAndPrintFile(card.filename);
ui.return_to_status();
ui.reset_status();
}
#if ENABLED(SD_MENU_CONFIRM_START)
void menu_sd_confirm() {
char * const longest = card.longest_filename();
char buffer[strlen(longest) + 2];
buffer[0] = ' ';
strcpy(buffer + 1, longest);
do_select_screen(
PSTR(MSG_BUTTON_PRINT), PSTR(MSG_BUTTON_CANCEL),
sdcard_start_selected_file, ui.goto_previous_screen,
PSTR(MSG_START_PRINT), buffer, PSTR("?")
);
}
#endif
class MenuItem_sdfile {
public:
static void action(CardReader &) {
#if ENABLED(SD_REPRINT_LAST_SELECTED_FILE)
// Save menu state for the selected file
sd_encoder_position = ui.encoderPosition;
2019-04-11 00:43:08 +02:00
sd_top_line = encoderTopLine;
sd_items = screen_items;
#endif
#if ENABLED(SD_MENU_CONFIRM_START)
MenuItem_submenu::action(menu_sd_confirm);
#else
sdcard_start_selected_file();
#endif
}
};
class MenuItem_sdfolder {
public:
static void action(CardReader &theCard) {
card.cd(theCard.filename);
encoderTopLine = 0;
2019-04-11 00:43:08 +02:00
ui.encoderPosition = 2 * (ENCODER_STEPS_PER_MENU_ITEM);
screen_changed = true;
#if HAS_GRAPHICAL_LCD
ui.drawing_screen = false;
#endif
ui.refresh();
}
};
2018-10-28 09:10:25 +01:00
2019-08-15 00:52:14 +02:00
void menu_media() {
ui.encoder_direction_menus();
2018-10-28 09:10:25 +01:00
#if HAS_GRAPHICAL_LCD
static uint16_t fileCnt;
2019-09-17 00:49:55 +02:00
if (ui.first_page) fileCnt = card.get_num_Files();
#else
const uint16_t fileCnt = card.get_num_Files();
#endif
2018-10-28 09:10:25 +01:00
START_MENU();
MENU_BACK(MSG_MAIN);
2019-09-17 00:49:55 +02:00
if (card.flag.workDirIsRoot) {
2018-10-28 09:10:25 +01:00
#if !PIN_EXISTS(SD_DETECT)
MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
#endif
}
2019-09-15 10:10:59 +02:00
else if (card.isMounted())
2018-10-28 09:10:25 +01:00
MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
if (ui.should_draw()) for (uint16_t i = 0; i < fileCnt; i++) {
2018-10-28 09:10:25 +01:00
if (_menuLineNr == _thisItemNr) {
const uint16_t nr =
#if ENABLED(SDCARD_RATHERRECENTFIRST) && DISABLED(SDCARD_SORT_ALPHA)
fileCnt - 1 -
#endif
i;
card.getfilename_sorted(nr);
2018-10-28 09:10:25 +01:00
if (card.flag.filenameIsDir)
2019-08-15 00:52:14 +02:00
MENU_ITEM(sdfolder, MSG_MEDIA_MENU, card);
2018-10-28 09:10:25 +01:00
else
2019-08-15 00:52:14 +02:00
MENU_ITEM(sdfile, MSG_MEDIA_MENU, card);
2018-10-28 09:10:25 +01:00
}
else {
MENU_ITEM_DUMMY();
}
}
END_MENU();
}
#endif // HAS_LCD_MENU && SDSUPPORT