#include "MyLibraryActivity.h" #include #include #include #include "MappedInputManager.h" #include "RecentBooksStore.h" #include "ScreenComponents.h" #include "fontIds.h" #include "util/StringUtils.h" namespace { // Layout constants constexpr int TAB_BAR_Y = 15; constexpr int CONTENT_START_Y = 60; constexpr int LINE_HEIGHT = 30; constexpr int LEFT_MARGIN = 20; constexpr int RIGHT_MARGIN = 40; // Extra space for scroll indicator // Timing thresholds constexpr int SKIP_PAGE_MS = 700; constexpr unsigned long GO_HOME_MS = 1000; void sortFileList(std::vector& strs) { std::sort(begin(strs), end(strs), [](const std::string& str1, const std::string& str2) { if (str1.back() == '/' && str2.back() != '/') return true; if (str1.back() != '/' && str2.back() == '/') return false; return lexicographical_compare( begin(str1), end(str1), begin(str2), end(str2), [](const char& char1, const char& char2) { return tolower(char1) < tolower(char2); }); }); } } // namespace int MyLibraryActivity::getPageItems() const { const int screenHeight = renderer.getScreenHeight(); const int bottomBarHeight = 60; // Space for button hints const int availableHeight = screenHeight - CONTENT_START_Y - bottomBarHeight; int items = availableHeight / LINE_HEIGHT; if (items < 1) { items = 1; } return items; } int MyLibraryActivity::getCurrentItemCount() const { if (currentTab == Tab::Recent) { return static_cast(bookTitles.size()); } return static_cast(files.size()); } int MyLibraryActivity::getTotalPages() const { const int itemCount = getCurrentItemCount(); const int pageItems = getPageItems(); if (itemCount == 0) return 1; return (itemCount + pageItems - 1) / pageItems; } int MyLibraryActivity::getCurrentPage() const { const int pageItems = getPageItems(); return selectorIndex / pageItems + 1; } void MyLibraryActivity::loadRecentBooks() { constexpr size_t MAX_RECENT_BOOKS = 20; bookTitles.clear(); bookPaths.clear(); const auto& books = RECENT_BOOKS.getBooks(); bookTitles.reserve(std::min(books.size(), MAX_RECENT_BOOKS)); bookPaths.reserve(std::min(books.size(), MAX_RECENT_BOOKS)); for (const auto& path : books) { // Limit to maximum number of recent books if (bookTitles.size() >= MAX_RECENT_BOOKS) { break; } // Skip if file no longer exists if (!SdMan.exists(path.c_str())) { continue; } // Extract filename from path for display std::string title = path; const size_t lastSlash = title.find_last_of('/'); if (lastSlash != std::string::npos) { title = title.substr(lastSlash + 1); } bookTitles.push_back(title); bookPaths.push_back(path); } } void MyLibraryActivity::loadFiles() { files.clear(); auto root = SdMan.open(basepath.c_str()); if (!root || !root.isDirectory()) { if (root) root.close(); return; } root.rewindDirectory(); char name[500]; for (auto file = root.openNextFile(); file; file = root.openNextFile()) { file.getName(name, sizeof(name)); if (name[0] == '.' || strcmp(name, "System Volume Information") == 0) { file.close(); continue; } if (file.isDirectory()) { files.emplace_back(std::string(name) + "/"); } else { auto filename = std::string(name); if (StringUtils::checkFileExtension(filename, ".epub") || StringUtils::checkFileExtension(filename, ".xtch") || StringUtils::checkFileExtension(filename, ".xtc") || StringUtils::checkFileExtension(filename, ".txt") || StringUtils::checkFileExtension(filename, ".md")) { files.emplace_back(filename); } } file.close(); } root.close(); sortFileList(files); } size_t MyLibraryActivity::findEntry(const std::string& name) const { for (size_t i = 0; i < files.size(); i++) { if (files[i] == name) return i; } return 0; } void MyLibraryActivity::taskTrampoline(void* param) { auto* self = static_cast(param); self->displayTaskLoop(); } void MyLibraryActivity::onEnter() { Activity::onEnter(); renderingMutex = xSemaphoreCreateMutex(); // Load data for both tabs loadRecentBooks(); loadFiles(); selectorIndex = 0; updateRequired = true; xTaskCreate(&MyLibraryActivity::taskTrampoline, "MyLibraryActivityTask", 4096, // Stack size (increased for epub metadata loading) this, // Parameters 1, // Priority &displayTaskHandle // Task handle ); } void MyLibraryActivity::onExit() { Activity::onExit(); // Wait until not rendering to delete task to avoid killing mid-instruction to // EPD xSemaphoreTake(renderingMutex, portMAX_DELAY); if (displayTaskHandle) { vTaskDelete(displayTaskHandle); displayTaskHandle = nullptr; } vSemaphoreDelete(renderingMutex); renderingMutex = nullptr; bookTitles.clear(); bookPaths.clear(); files.clear(); } void MyLibraryActivity::loop() { const int itemCount = getCurrentItemCount(); const int pageItems = getPageItems(); // Long press BACK (1s+) in Files tab goes to root folder if (currentTab == Tab::Files && mappedInput.isPressed(MappedInputManager::Button::Back) && mappedInput.getHeldTime() >= GO_HOME_MS) { if (basepath != "/") { basepath = "/"; loadFiles(); selectorIndex = 0; updateRequired = true; } return; } const bool upReleased = mappedInput.wasReleased(MappedInputManager::Button::Up); const bool downReleased = mappedInput.wasReleased(MappedInputManager::Button::Down); const bool leftReleased = mappedInput.wasReleased(MappedInputManager::Button::Left); const bool rightReleased = mappedInput.wasReleased(MappedInputManager::Button::Right); const bool skipPage = mappedInput.getHeldTime() > SKIP_PAGE_MS; // Confirm button - open selected item if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { if (currentTab == Tab::Recent) { if (!bookPaths.empty() && selectorIndex < static_cast(bookPaths.size())) { onSelectBook(bookPaths[selectorIndex], currentTab); } } else { // Files tab if (!files.empty() && selectorIndex < static_cast(files.size())) { if (basepath.back() != '/') basepath += "/"; if (files[selectorIndex].back() == '/') { // Enter directory basepath += files[selectorIndex].substr(0, files[selectorIndex].length() - 1); loadFiles(); selectorIndex = 0; updateRequired = true; } else { // Open file onSelectBook(basepath + files[selectorIndex], currentTab); } } } return; } // Back button if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { if (mappedInput.getHeldTime() < GO_HOME_MS) { if (currentTab == Tab::Files && basepath != "/") { // Go up one directory, remembering the directory we came from const std::string oldPath = basepath; basepath.replace(basepath.find_last_of('/'), std::string::npos, ""); if (basepath.empty()) basepath = "/"; loadFiles(); // Select the directory we just came from const auto pos = oldPath.find_last_of('/'); const std::string dirName = oldPath.substr(pos + 1) + "/"; selectorIndex = static_cast(findEntry(dirName)); updateRequired = true; } else { // Go home onGoHome(); } } return; } // Tab switching: Left/Right always control tabs if (leftReleased && currentTab == Tab::Files) { currentTab = Tab::Recent; selectorIndex = 0; updateRequired = true; return; } if (rightReleased && currentTab == Tab::Recent) { currentTab = Tab::Files; selectorIndex = 0; updateRequired = true; return; } // Navigation: Up/Down moves through items only const bool prevReleased = upReleased; const bool nextReleased = downReleased; if (prevReleased && itemCount > 0) { if (skipPage) { selectorIndex = ((selectorIndex / pageItems - 1) * pageItems + itemCount) % itemCount; } else { selectorIndex = (selectorIndex + itemCount - 1) % itemCount; } updateRequired = true; } else if (nextReleased && itemCount > 0) { if (skipPage) { selectorIndex = ((selectorIndex / pageItems + 1) * pageItems) % itemCount; } else { selectorIndex = (selectorIndex + 1) % itemCount; } updateRequired = true; } } void MyLibraryActivity::displayTaskLoop() { while (true) { if (updateRequired) { updateRequired = false; xSemaphoreTake(renderingMutex, portMAX_DELAY); render(); xSemaphoreGive(renderingMutex); } vTaskDelay(10 / portTICK_PERIOD_MS); } } void MyLibraryActivity::render() const { renderer.clearScreen(); // Draw tab bar std::vector tabs = {{"Recent", currentTab == Tab::Recent}, {"Files", currentTab == Tab::Files}}; ScreenComponents::drawTabBar(renderer, TAB_BAR_Y, tabs); // Draw content based on current tab if (currentTab == Tab::Recent) { renderRecentTab(); } else { renderFilesTab(); } // Draw scroll indicator const int screenHeight = renderer.getScreenHeight(); const int contentHeight = screenHeight - CONTENT_START_Y - 60; // 60 for bottom bar ScreenComponents::drawScrollIndicator(renderer, getCurrentPage(), getTotalPages(), CONTENT_START_Y, contentHeight); // Draw side button hints (up/down navigation on right side) // Note: text is rotated 90° CW, so ">" appears as "^" and "<" appears as "v" renderer.drawSideButtonHints(UI_10_FONT_ID, ">", "<"); // Draw bottom button hints const auto labels = mappedInput.mapLabels("« Back", "Open", "<", ">"); renderer.drawButtonHints(UI_10_FONT_ID, labels.btn1, labels.btn2, labels.btn3, labels.btn4); renderer.displayBuffer(); } void MyLibraryActivity::renderRecentTab() const { const auto pageWidth = renderer.getScreenWidth(); const int pageItems = getPageItems(); const int bookCount = static_cast(bookTitles.size()); if (bookCount == 0) { renderer.drawText(UI_10_FONT_ID, LEFT_MARGIN, CONTENT_START_Y, "No recent books"); return; } const auto pageStartIndex = selectorIndex / pageItems * pageItems; // Draw selection highlight renderer.fillRect(0, CONTENT_START_Y + (selectorIndex % pageItems) * LINE_HEIGHT - 2, pageWidth - RIGHT_MARGIN, LINE_HEIGHT); // Draw items for (int i = pageStartIndex; i < bookCount && i < pageStartIndex + pageItems; i++) { auto item = renderer.truncatedText(UI_10_FONT_ID, bookTitles[i].c_str(), pageWidth - LEFT_MARGIN - RIGHT_MARGIN); renderer.drawText(UI_10_FONT_ID, LEFT_MARGIN, CONTENT_START_Y + (i % pageItems) * LINE_HEIGHT, item.c_str(), i != selectorIndex); } } void MyLibraryActivity::renderFilesTab() const { const auto pageWidth = renderer.getScreenWidth(); const int pageItems = getPageItems(); const int fileCount = static_cast(files.size()); if (fileCount == 0) { renderer.drawText(UI_10_FONT_ID, LEFT_MARGIN, CONTENT_START_Y, "No books found"); return; } const auto pageStartIndex = selectorIndex / pageItems * pageItems; // Draw selection highlight renderer.fillRect(0, CONTENT_START_Y + (selectorIndex % pageItems) * LINE_HEIGHT - 2, pageWidth - RIGHT_MARGIN, LINE_HEIGHT); // Draw items for (int i = pageStartIndex; i < fileCount && i < pageStartIndex + pageItems; i++) { auto item = renderer.truncatedText(UI_10_FONT_ID, files[i].c_str(), pageWidth - LEFT_MARGIN - RIGHT_MARGIN); renderer.drawText(UI_10_FONT_ID, LEFT_MARGIN, CONTENT_START_Y + (i % pageItems) * LINE_HEIGHT, item.c_str(), i != selectorIndex); } }