1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-03 17:19:46 +02:00
openrw/rwgame/GameWindow.hpp
2019-05-21 00:01:59 +01:00

41 lines
767 B
C++

#ifndef GAMEWINDOW_HPP
#define GAMEWINDOW_HPP
#include <SDL_surface.h>
#include <SDL_video.h>
#include <glm/vec2.hpp>
#include <string>
#include <tuple>
#include <SDL.h>
class GameWindow {
SDL_Window* window = nullptr;
SDL_Surface* icon = nullptr;
SDL_GLContext glcontext{nullptr};
public:
GameWindow() = default;
void create(const std::string& title, size_t w, size_t h, bool fullscreen);
void close();
void showCursor();
void hideCursor();
glm::ivec2 getSize() const;
void swap() const {
SDL_GL_SwapWindow(window);
}
bool isOpen() const {
return !!window;
}
std::tuple<SDL_Window *, SDL_GLContext> getSDLContext() {
return std::make_tuple(window, glcontext);
}
};
#endif