mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-13 03:47:30 +00:00
98 lines
2.9 KiB
C++
98 lines
2.9 KiB
C++
#include "core/common.h"
|
|
#include "string.h"
|
|
#include "core/buttons.h"
|
|
#include "core/display.h"
|
|
#include "ReaderMode.h"
|
|
|
|
#include "esp_log.h"
|
|
static const char *TAG = "ReaderMode";
|
|
|
|
//bool displaySleeping = false;
|
|
|
|
void ReaderMode::start()
|
|
{
|
|
this->textReader = textStorage.open("/sdcard/book.txt");
|
|
}
|
|
|
|
void ReaderMode::loop()
|
|
{
|
|
char text[1024];
|
|
if (textReader != NULL) {
|
|
if (pageCurrent == NULL) {
|
|
size_t read = textReader->read(bookmark, text, sizeof(text));
|
|
pageCurrent = typesetter.preparePage(text, read);
|
|
pageCurrent->start = bookmark;
|
|
}
|
|
if (pageLast == NULL) {
|
|
// align with the start?
|
|
if (bookmark < sizeof(text)) {
|
|
size_t read = textReader->read(0, text, sizeof(text));
|
|
pageLast = typesetter.preparePage(text, read);
|
|
pageLast->start = 0;
|
|
} else {
|
|
size_t read = textReader->read((bookmark - sizeof(text)), text, sizeof(text));
|
|
pageLast = typesetter.preparePreviousPage(text, read);
|
|
pageLast->start = bookmark - pageLast->len;
|
|
}
|
|
}
|
|
} else {
|
|
typesetter.destroyPage(pageCurrent);
|
|
strcpy(text, "File could not be opened.");
|
|
pageCurrent = typesetter.preparePage(text, sizeof(text));
|
|
}
|
|
|
|
display_clear();
|
|
pagePrinter.print(pageCurrent);
|
|
display_update();
|
|
|
|
//time_t idleStart = clock();
|
|
while (1) {
|
|
delay(10);
|
|
if (buttons_pressed_ok()) {
|
|
ESP_LOGI(TAG, "Exiting reader.");
|
|
this->setFinished();
|
|
break;
|
|
}
|
|
if (buttons_pressed_plus()) {
|
|
ESP_LOGI(TAG, "Turn page PLUS.");
|
|
if (pageCurrent != NULL) {
|
|
bookmark = pageCurrent->start + pageCurrent->len;
|
|
// TODO: limit bookmark to file size
|
|
typesetter.destroyPage(pageLast);
|
|
pageLast = pageCurrent;
|
|
pageCurrent = NULL;
|
|
} else {
|
|
ESP_LOGW(TAG, "No current page.");
|
|
}
|
|
break;
|
|
}
|
|
if (buttons_pressed_minus()) {
|
|
ESP_LOGI(TAG, "Turn page MINUS.");
|
|
if (pageLast != NULL) {
|
|
bookmark = pageLast->start;
|
|
typesetter.destroyPage(pageCurrent);
|
|
pageCurrent = pageLast;
|
|
pageLast = NULL;
|
|
} else {
|
|
ESP_LOGW(TAG, "No last page.");
|
|
}
|
|
break;
|
|
}
|
|
/*if (!displaySleeping && (clock() - idleStart > DISPLAY_SLEEP_TIMEOUT)) {
|
|
displaySleeping = true;
|
|
ESP_LOGI(TAG, "Display going to sleep after %d ms.", DISPLAY_SLEEP_TIMEOUT);
|
|
display_sleep();
|
|
}*/
|
|
}
|
|
/*if (displaySleeping) {
|
|
displaySleeping = false;
|
|
ESP_LOGI(TAG, "Display waking up.");
|
|
display_wake();
|
|
}*/
|
|
}
|
|
|
|
void ReaderMode::finish()
|
|
{
|
|
textStorage.close(this->textReader);
|
|
}
|