2021-12-20 03:31:44 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2021-12-29 17:56:34 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include "Util.hpp"
|
2021-12-22 18:19:53 +00:00
|
|
|
#include "OrbitingCamera.hpp"
|
2021-12-30 22:41:01 +00:00
|
|
|
#include "Spectrogram.hpp"
|
2021-12-20 03:31:44 +00:00
|
|
|
|
|
|
|
struct GLFWwindow;
|
|
|
|
|
2021-12-21 17:14:01 +00:00
|
|
|
struct WindowData
|
|
|
|
{
|
2021-12-26 05:14:13 +00:00
|
|
|
OrbitingCamera* camera;
|
|
|
|
float aspectRatio;
|
2021-12-21 17:14:01 +00:00
|
|
|
};
|
|
|
|
|
2021-12-20 03:31:44 +00:00
|
|
|
class Application
|
|
|
|
{
|
|
|
|
/////////////////////////////////////////////////////////
|
|
|
|
////// SINGLETON BOILERPLATE ////////////////////////////
|
|
|
|
/////////////////////////////////////////////////////////
|
|
|
|
public:
|
|
|
|
static Application& Instance()
|
|
|
|
{
|
|
|
|
static Application app;
|
|
|
|
return app;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
Application() = default;
|
|
|
|
~Application();
|
|
|
|
Application(const Application& other) = delete;
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////
|
|
|
|
////// APPLICATION IMPLEMENTATION ///////////////////////
|
|
|
|
/////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
public:
|
|
|
|
void Init(int width, int height, const std::string& title);
|
2021-12-24 15:22:16 +00:00
|
|
|
void Quit();
|
2021-12-20 03:31:44 +00:00
|
|
|
void Launch();
|
|
|
|
|
|
|
|
private:
|
|
|
|
GLFWwindow* window = nullptr;
|
2021-12-21 17:14:01 +00:00
|
|
|
WindowData data;
|
2021-12-26 18:39:43 +00:00
|
|
|
lol::ObjectManager manager;
|
2021-12-29 17:56:34 +00:00
|
|
|
std::chrono::system_clock::time_point frameTimerStart;
|
2021-12-21 17:14:01 +00:00
|
|
|
|
2021-12-22 18:19:53 +00:00
|
|
|
OrbitingCamera camera;
|
2021-12-25 15:51:55 +00:00
|
|
|
float pitch, yaw, distance;
|
2021-12-26 05:14:13 +00:00
|
|
|
bool orthogonal = false;
|
|
|
|
float fov = 100.0f;
|
|
|
|
float width = 10.0f;
|
2021-12-20 18:09:52 +00:00
|
|
|
|
2021-12-26 02:58:14 +00:00
|
|
|
bool enableHeightMap = true;
|
|
|
|
bool enableColorMap = true;
|
2021-12-26 05:14:13 +00:00
|
|
|
bool enableScroll = false;
|
2021-12-26 06:00:15 +00:00
|
|
|
int colormap = 0;
|
2021-12-26 02:58:14 +00:00
|
|
|
|
2021-12-30 22:41:01 +00:00
|
|
|
Spectrogram* spectrogram;
|
2021-12-20 03:31:44 +00:00
|
|
|
};
|