blob: 87494fa28287a48f1cd3900793a24ab38324b41d (
plain) (
blame)
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
|
#pragma once
#include <vector>
#include <string>
#include <memory>
#include <map>
#include <SDL.h>
#include "Utility.hpp"
#include "Event.hpp"
#include "Gal.hpp"
class RendererWorld;
class RmlRenderInterface;
class RmlSystemInterface;
class RmlFileInterface;
namespace Rml
{
class Context;
}
class Render {
SDL_Window *window;
SDL_GLContext glContext;
bool renderGui = false;
bool isMouseCaptured = false;
int prevMouseX, prevMouseY;
float mouseXDelta, mouseYDelta;
std::unique_ptr<RendererWorld> world;
bool renderWorld = false;
size_t windowWidth, windowHeight;
std::map<SDL_Scancode, bool> isKeyPressed;
bool HasFocus=true;
float sensetivity = 0.1f;
bool isWireframe = false;
std::shared_ptr<Gal::Framebuffer> framebuffer;
std::shared_ptr<Gal::Texture> fbDepthStencil;
std::shared_ptr<Gal::Texture> fbColor;
std::shared_ptr<Gal::Pipeline> fbPipeline;
std::shared_ptr<Gal::PipelineInstance> fbPipelineInstance;
std::shared_ptr<Gal::Buffer> fbBuffer;
EventListener listener;
std::string stateString;
std::unique_ptr<RmlRenderInterface> rmlRender;
std::unique_ptr<RmlSystemInterface> rmlSystem;
std::unique_ptr<RmlFileInterface> rmlFile;
Rml::Context* rmlContext;
unsigned short sdlKeyMods = 0;
bool hideRml = false;
void SetMouseCapture(bool IsCaptured);
void HandleMouseCapture();
void HandleEvents();
void InitSdl(unsigned int WinWidth, unsigned int WinHeight, std::string WinTitle);
void InitGlew();
void RenderFrame();
void PrepareToRendering();
void UpdateKeyboard();
void RenderGui();
void InitEvents();
void InitRml();
public:
Render(unsigned int windowWidth, unsigned int windowHeight, std::string windowTitle);
~Render();
void Update();
};
|