2021-04-03 19:14:31 +02:00
|
|
|
#ifndef APPLICATION_H
|
|
|
|
#define APPLICATION_H
|
|
|
|
|
2021-04-04 22:43:12 +02:00
|
|
|
#include <SFML/Audio/Music.hpp>
|
2021-04-03 19:14:31 +02:00
|
|
|
#include <SFML/System/Clock.hpp>
|
2021-04-05 16:17:57 +02:00
|
|
|
#include <SFML/Window/Keyboard.hpp>
|
2021-04-03 19:14:31 +02:00
|
|
|
|
2021-04-05 16:17:57 +02:00
|
|
|
#include "debughelper.h"
|
2021-04-08 15:34:03 +02:00
|
|
|
#include "timeline.h"
|
2021-04-04 22:43:12 +02:00
|
|
|
|
2021-04-03 19:14:31 +02:00
|
|
|
class Application
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Application();
|
|
|
|
void run();
|
2021-04-05 16:17:57 +02:00
|
|
|
void input();
|
2021-04-03 19:14:31 +02:00
|
|
|
void update();
|
|
|
|
void draw();
|
|
|
|
|
|
|
|
private:
|
2021-04-05 16:17:57 +02:00
|
|
|
sf::RenderWindow _game_window;
|
|
|
|
sf::Music _music;
|
|
|
|
|
|
|
|
sf::Font _font;
|
|
|
|
sf::Text _grade;
|
|
|
|
|
2021-04-08 15:34:03 +02:00
|
|
|
Timeline _timeline;
|
2021-04-05 16:17:57 +02:00
|
|
|
DebugHelper _debug;
|
|
|
|
|
|
|
|
void startGameLoop();
|
|
|
|
void onKeyPressed(const sf::Keyboard::Key& key);
|
2021-04-03 19:14:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // APPLICATION_H
|