d918dd1afc2a9fd0b604b46468939d1e4c247c7f
[ipdf/code.git] / src / screen.h
1 #ifndef _SCREEN_H
2 #define _SCREEN_H
3
4 #include <SDL.h>
5
6 #include <functional>
7
8 #include "stb_truetype.h"
9 #include "graphicsbuffer.h"
10 #include "shaderprogram.h"
11
12 namespace IPDF
13 {
14         /*
15          * The "Screen" class handles managing the OS window (using SDL2).
16          */
17         class Screen
18         {
19         public:
20                 Screen();
21                 ~Screen();
22
23                 // 'Pumps' the system event queue.
24                 // Returns 'false' if the program should quit.
25                 bool PumpEvents();
26
27                 // Clears the screen to a given colour.
28                 void Clear(float r=1.0, float g=1.0, float b=1.0, float a=1.0);
29
30                 // Finishes rendering a frame, and presents it on the screen.
31                 void Present();
32
33                 // Get the current width/height of the window's viewport.
34                 int ViewportWidth() const { return m_viewport_width; }
35                 int ViewportHeight() const { return m_viewport_height; }
36                 
37                 // Debug Font handling
38                 void DebugFontInit(const char *font_name, float font_size = 12);
39                 void DebugFontClear();
40                 void DebugFontPrint(const char *str);
41                 void DebugFontPrintF(const char *fmt, ...);
42                 
43                 // Handle mouse input.
44                 typedef std::function<void(int x, int y, int button, int wheel)> MouseHandler;
45                 void SetMouseHandler(MouseHandler handler)
46                 {
47                         m_mouse_handler = handler;
48                 }
49                 
50                 enum MouseCursors
51                 {
52                         CursorArrow,
53                         CursorWait,
54                         CursorWaitArrow,
55                         CursorMove,
56                         CursorHand
57                 };
58                 void SetMouseCursor(MouseCursors cursor);
59
60                 void ScreenShot(const char * filename) const;
61                 void RenderBMP(const char * filename) const;
62         private:
63                 void ResizeViewport(int width, int height);
64                 void DebugFontFlush();
65                 
66                 MouseHandler m_mouse_handler;
67                 int m_last_mouse_x;
68                 int m_last_mouse_y;
69
70                 int m_viewport_width;
71                 int m_viewport_height;
72                 SDL_Window *m_window;
73                 SDL_GLContext m_gl_context;
74                 ShaderProgram m_texture_prog;
75                 GLint m_colour_uniform_location;
76                 GraphicsBuffer m_viewport_ubo;
77                 stbtt_bakedchar m_debug_font_rects[96];
78                 unsigned int m_debug_font_atlas;
79                 float m_debug_font_x;
80                 float m_debug_font_y;
81                 float m_debug_font_size;
82                 GraphicsBuffer m_debug_font_vertices;
83                 GraphicsBuffer m_debug_font_indices;
84                 int m_debug_font_vertex_head;
85                 int m_debug_font_index_head;
86         };
87
88 }
89
90 #endif // _SCREEN_H

UCC git Repository :: git.ucc.asn.au