41 lines
701 B
C++
41 lines
701 B
C++
#pragma once
|
|
|
|
#include <concepts>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "views/view.hpp"
|
|
|
|
struct GLFWwindow;
|
|
|
|
namespace hex {
|
|
|
|
class Window {
|
|
public:
|
|
Window();
|
|
~Window();
|
|
|
|
void loop();
|
|
|
|
template<std::derived_from<View> T, typename ... Args>
|
|
T* addView(Args& ... args) {
|
|
this->m_views.emplace_back(new T(args...));
|
|
|
|
return static_cast<T*>(this->m_views.back());
|
|
}
|
|
|
|
private:
|
|
void frameBegin();
|
|
void frameEnd();
|
|
|
|
void initGLFW();
|
|
void initImGui();
|
|
void deinitGLFW();
|
|
void deinitImGui();
|
|
|
|
GLFWwindow* m_window;
|
|
|
|
std::vector<View*> m_views;
|
|
};
|
|
|
|
} |