2019-09-01 21:40:08 +00:00
|
|
|
#include "BookReader.hpp"
|
|
|
|
#include "PageLayout.hpp"
|
|
|
|
#include "LandscapePageLayout.hpp"
|
|
|
|
#include "common.h"
|
|
|
|
#include <algorithm>
|
2019-09-07 04:45:10 +00:00
|
|
|
#include <iostream>
|
2019-09-22 18:45:18 +00:00
|
|
|
#include <libconfig.h>
|
2019-09-01 21:40:08 +00:00
|
|
|
|
2019-09-03 22:17:53 +00:00
|
|
|
extern "C" {
|
2019-09-01 21:40:08 +00:00
|
|
|
#include "SDL_helper.h"
|
|
|
|
#include "status_bar.h"
|
2019-09-07 04:45:10 +00:00
|
|
|
#include "config.h"
|
2019-09-03 22:17:53 +00:00
|
|
|
}
|
2019-09-01 21:40:08 +00:00
|
|
|
|
|
|
|
fz_context *ctx = NULL;
|
2019-09-20 00:12:38 +00:00
|
|
|
int windowX, windowY;
|
2019-09-22 18:45:18 +00:00
|
|
|
config_t *config = NULL;
|
|
|
|
char* configFile = "/switch/eBookReader/saved_pages.cfg";
|
2019-09-01 21:40:08 +00:00
|
|
|
|
|
|
|
static int load_last_page(const char *book_name) {
|
|
|
|
if (!config) {
|
|
|
|
config = (config_t *)malloc(sizeof(config_t));
|
|
|
|
config_init(config);
|
2019-09-22 18:45:18 +00:00
|
|
|
config_read_file(config, configFile);
|
2019-09-01 21:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
config_setting_t *setting = config_setting_get_member(config_root_setting(config), book_name);
|
|
|
|
|
|
|
|
if (setting) {
|
|
|
|
return config_setting_get_int(setting);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void save_last_page(const char *book_name, int current_page) {
|
|
|
|
config_setting_t *setting = config_setting_get_member(config_root_setting(config), book_name);
|
|
|
|
|
|
|
|
if (!setting) {
|
|
|
|
setting = config_setting_add(config_root_setting(config), book_name, CONFIG_TYPE_INT);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setting) {
|
|
|
|
config_setting_set_int(setting, current_page);
|
2019-09-22 18:45:18 +00:00
|
|
|
config_write_file(config, configFile);
|
2019-09-01 21:40:08 +00:00
|
|
|
}
|
2019-09-22 18:45:18 +00:00
|
|
|
}
|
2019-09-01 21:40:08 +00:00
|
|
|
|
|
|
|
BookReader::BookReader(const char *path) {
|
|
|
|
if (ctx == NULL) {
|
|
|
|
ctx = fz_new_context(NULL, NULL, 128 << 10);
|
|
|
|
fz_register_document_handlers(ctx);
|
|
|
|
}
|
2019-09-20 00:12:38 +00:00
|
|
|
|
|
|
|
SDL_GetWindowSize(WINDOW, &windowX, &windowY);
|
2019-09-01 21:40:08 +00:00
|
|
|
|
|
|
|
book_name = std::string(path).substr(std::string(path).find_last_of("/\\") + 1);
|
|
|
|
|
|
|
|
std::string invalid_chars = " :/?#[]@!$&'()*+,;=.";
|
|
|
|
for (char& c: invalid_chars) {
|
|
|
|
book_name.erase(std::remove(book_name.begin(), book_name.end(), c), book_name.end());
|
|
|
|
}
|
|
|
|
|
2019-09-22 18:45:18 +00:00
|
|
|
std::cout << "fz_open_document" << std::endl;
|
2019-09-01 21:40:08 +00:00
|
|
|
doc = fz_open_document(ctx, path);
|
|
|
|
|
2019-09-22 18:45:18 +00:00
|
|
|
int current_page = load_last_page(book_name.c_str());
|
|
|
|
//int current_page = 0;
|
2019-09-01 21:40:08 +00:00
|
|
|
switch_current_page_layout(_currentPageLayout, current_page);
|
|
|
|
|
|
|
|
if (current_page > 0) {
|
|
|
|
show_status_bar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BookReader::~BookReader() {
|
|
|
|
fz_drop_document(ctx, doc);
|
|
|
|
|
|
|
|
delete layout;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::previous_page(int n) {
|
|
|
|
layout->previous_page(n);
|
|
|
|
show_status_bar();
|
2019-09-22 18:45:18 +00:00
|
|
|
save_last_page(book_name.c_str(), layout->current_page());
|
2019-09-01 21:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::next_page(int n) {
|
|
|
|
layout->next_page(n);
|
|
|
|
show_status_bar();
|
2019-09-22 18:45:18 +00:00
|
|
|
save_last_page(book_name.c_str(), layout->current_page());
|
2019-09-01 21:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::zoom_in() {
|
|
|
|
layout->zoom_in();
|
|
|
|
show_status_bar();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::zoom_out() {
|
|
|
|
layout->zoom_out();
|
|
|
|
show_status_bar();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::move_page_up() {
|
|
|
|
layout->move_up();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::move_page_down() {
|
|
|
|
layout->move_down();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::move_page_left() {
|
|
|
|
layout->move_left();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::move_page_right() {
|
|
|
|
layout->move_right();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::reset_page() {
|
|
|
|
layout->reset();
|
|
|
|
show_status_bar();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::switch_page_layout() {
|
|
|
|
switch (_currentPageLayout) {
|
|
|
|
case BookPageLayoutPortrait:
|
|
|
|
switch_current_page_layout(BookPageLayoutLandscape, 0);
|
|
|
|
break;
|
|
|
|
case BookPageLayoutLandscape:
|
|
|
|
switch_current_page_layout(BookPageLayoutPortrait, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-20 00:12:38 +00:00
|
|
|
void BookReader::draw(bool drawHelp) {
|
2019-09-07 04:45:10 +00:00
|
|
|
if (configDarkMode == true) {
|
|
|
|
SDL_ClearScreen(RENDERER, BLACK);
|
|
|
|
} else {
|
2019-09-03 00:01:34 +00:00
|
|
|
SDL_ClearScreen(RENDERER, WHITE);
|
2019-09-07 04:45:10 +00:00
|
|
|
}
|
2019-09-01 21:40:08 +00:00
|
|
|
|
|
|
|
SDL_RenderClear(RENDERER);
|
|
|
|
|
|
|
|
layout->draw_page();
|
|
|
|
|
2019-09-20 00:12:38 +00:00
|
|
|
if (drawHelp) { // Help menu
|
|
|
|
int helpWidth = 680;
|
|
|
|
int helpHeight = 365;
|
|
|
|
|
|
|
|
if (!configDarkMode) { // Display a dimmed background if on light mode
|
|
|
|
SDL_DrawRect(RENDERER, 0, 0, 1280, 720, SDL_MakeColour(50, 50, 50, 150));
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_DrawRect(RENDERER, (windowX - helpWidth) / 2, (windowY - helpHeight) / 2, helpWidth, helpHeight, configDarkMode ? HINT_COLOUR_DARK : HINT_COLOUR_LIGHT);
|
|
|
|
|
|
|
|
// These already have margin added to them
|
|
|
|
int textX = (windowX - helpWidth) / 2 + 20;
|
|
|
|
int textY = (windowY - helpHeight) / 2 + 75;
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_30, textX, (windowY - helpHeight) / 2 + 10, configDarkMode ? WHITE : BLACK, "Help Menu:");
|
|
|
|
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_25, textX, textY, configDarkMode ? WHITE : BLACK, "\"B\" - Stop reading / Close help menu.");
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_25, textX, textY + 35, configDarkMode ? WHITE : BLACK, "\"-\" - Switch to dark/light theme.");
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_25, textX, textY + 35 * 2, configDarkMode ? WHITE : BLACK, "\"Right Stick Up/Down\" - Zoom in/out.");
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_25, textX, textY + 35 * 3, configDarkMode ? WHITE : BLACK, "\"Left Stick Up/Down\" - Page up/down.");
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_25, textX, textY + 35 * 4, configDarkMode ? WHITE : BLACK, "\"Y\" - Rotate page.");
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_25, textX, textY + 35 * 5, configDarkMode ? WHITE : BLACK, "\"X\" - Keep status bar on.");
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_25, textX, textY + 35 * 6, configDarkMode ? WHITE : BLACK, "\"Left/Right DPad\" - Next/previous page.");
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_25, textX, textY + 35 * 7, configDarkMode ? WHITE : BLACK, "\"Left/Right Bumper\" - Skip forward/backward 10 pages.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (permStatusBar || --status_bar_visible_counter > 0) {
|
|
|
|
char *title = layout->info();
|
|
|
|
|
|
|
|
int title_width = 0, title_height = 0;
|
|
|
|
TTF_SizeText(ARIAL_15, title, &title_width, &title_height);
|
|
|
|
|
|
|
|
SDL_Color color = configDarkMode ? STATUS_BAR_DARK : STATUS_BAR_LIGHT;
|
|
|
|
|
|
|
|
if (_currentPageLayout == BookPageLayoutPortrait) {
|
|
|
|
SDL_DrawRect(RENDERER, 0, 0, 1280, 45, SDL_MakeColour(color.r, color.g, color.b , 180));
|
|
|
|
SDL_DrawText(RENDERER, ARIAL_25, (1280 - title_width) / 2, (40 - title_height) / 2, WHITE, title);
|
2019-09-03 22:17:53 +00:00
|
|
|
|
2019-09-20 00:12:38 +00:00
|
|
|
StatusBar_DisplayTime(false);
|
|
|
|
} else if (_currentPageLayout == BookPageLayoutLandscape) {
|
|
|
|
SDL_DrawRect(RENDERER, 1280 - 45, 0, 45, 720, SDL_MakeColour(color.r, color.g, color.b , 180));
|
|
|
|
int x = (1280 - title_width) - ((40 - title_height) / 2);
|
|
|
|
int y = (720 - title_height) / 2;
|
|
|
|
SDL_DrawRotatedText(RENDERER, ARIAL_25, (double) 90, x, y, WHITE, title);
|
|
|
|
|
|
|
|
StatusBar_DisplayTime(true);
|
2019-09-03 22:17:53 +00:00
|
|
|
}
|
2019-09-20 00:12:38 +00:00
|
|
|
}
|
|
|
|
|
2019-09-01 21:40:08 +00:00
|
|
|
|
|
|
|
SDL_RenderPresent(RENDERER);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::show_status_bar() {
|
2019-09-03 22:17:53 +00:00
|
|
|
status_bar_visible_counter = 200;
|
2019-09-01 21:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BookReader::switch_current_page_layout(BookPageLayout bookPageLayout, int current_page) {
|
|
|
|
if (layout) {
|
|
|
|
current_page = layout->current_page();
|
|
|
|
delete layout;
|
|
|
|
layout = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
_currentPageLayout = bookPageLayout;
|
|
|
|
|
|
|
|
switch (bookPageLayout) {
|
|
|
|
case BookPageLayoutPortrait:
|
|
|
|
layout = new PageLayout(doc, current_page);
|
|
|
|
break;
|
|
|
|
case BookPageLayoutLandscape:
|
|
|
|
layout = new LandscapePageLayout(doc, current_page);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|