aboutsummaryrefslogtreecommitdiff
path: root/include/ImageViewer.hpp
blob: b8063ee3b54840d40b1af5ea0f6c26e2e49af03e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#pragma once

#include "Path.hpp"
#include <string>
#include <vector>
#include <SFML/Graphics/Texture.hpp>
#include <SFML/Graphics/Sprite.hpp>
#include <SFML/Graphics/Text.hpp>
#include <SFML/System/Clock.hpp>
#include <SFML/Window/Cursor.hpp>
#include <thread>

namespace sf {
    class RenderWindow;
}

namespace QuickMedia {
    class Manga;

    enum class ImageStatus {
        WAITING,
        LOADING,
        FAILED_TO_LOAD,
        LOADED,
        APPLIED_TO_TEXTURE
    };

    struct ImageData {
        sf::Texture texture;
        sf::Sprite sprite;
        ImageStatus image_status;
        std::unique_ptr<sf::Image> image;
        bool visible_on_screen;
    };

    struct PageSize {
        sf::Vector2<double> size;
        bool loaded;
    };

    enum class ImageViewerAction {
        NONE,
        RETURN,
        SWITCH_TO_SINGLE_IMAGE_MODE
    };

    class ImageViewer {
    public:
        ImageViewer(Manga *manga, const std::string &images_url, const std::string &content_title, const std::string &chapter_title, int current_page, const Path &chapter_cache_dir, sf::Font *font);
        ImageViewerAction draw(sf::RenderWindow &window);
        // Returns page as 1 indexed
        int get_focused_page() const;
        int get_num_pages() const { return num_pages; }
    private:
        void load_image_async(const Path &path, std::shared_ptr<ImageData> image_data);
        bool render_page(sf::RenderWindow &window, int page, double offset_y);
        sf::Vector2<double> get_page_size(int page);
    private:
        int current_page;
        int num_pages;
        int page_center;

        std::string content_title;
        std::string chapter_title;
        Path chapter_cache_dir;

        double scroll = 0.0;
        double scroll_speed = 0.0;
        double min_page_center_dist;
        int page_closest_to_center;
        int focused_page;
        int prev_focused_page = -1;

        sf::Font *font;
        sf::Clock frame_timer;
        sf::Text page_text;

        std::vector<std::shared_ptr<ImageData>> image_data;
        std::vector<PageSize> page_size;

        sf::Vector2<double> window_size;
        bool window_size_set = false;
        bool middle_mouse_scrolling = false;
        double autoscroll_start_y = 0.0;

        sf::Cursor default_cursor;
        sf::Cursor size_vertical_cursor;

        bool has_default_cursor;
        bool has_size_vertical_cursor;

        bool up_pressed = false;
        bool down_pressed = false;

        std::thread image_loader_thread;
        bool loading_image = false;
    };
}