summaryrefslogblamecommitdiffstats
path: root/src/Render.hpp
blob: b7d12d04346db7251e3cb6b4a57fcaeca90de505 (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                          
                            
                             


                           
                          

                                       


                                          
                                      
                                                   













                                                                                           

                          





                                                                                             
#pragma once

#include <SFML/Window.hpp>

#include "Shader.hpp"
#include "RendererWorld.hpp"
#include "RendererWidget.hpp"

class Render {
	sf::Window *window;
    bool isRunning = true;
	bool isMouseCaptured = false;
	float mouseXDelta, mouseYDelta;
    std::unique_ptr<RendererWorld> world; 
    bool renderWorld = false;
    RenderState renderState;
    LoopExecutionTimeController timer;
    std::map<sf::Keyboard::Key, bool> isKeyPressed;

	void SetMouseCapture(bool IsCaptured);

	void HandleMouseCapture();

	void HandleEvents();

	void InitSfml(unsigned int WinWidth, unsigned int WinHeight, std::string WinTitle);

	void InitGlew();

	void RenderFrame();

	void PrepareToRendering();

    void UpdateKeyboard();
public:
	Render(unsigned int windowWidth, unsigned int windowHeight, std::string windowTitle);
	~Render();

	void ExecuteRenderLoop();
};