project-kyoku/application.h

39 lines
664 B
C
Raw Normal View History

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
#include <stack>
2021-04-05 16:17:57 +02:00
#include "debughelper.h"
2021-04-04 22:43:12 +02:00
#include "note.h"
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;
std::stack<Note> _timeline;
sf::Int64 _time_since_last_tick;
sf::Int64 _last_stamp;
sf::Font _font;
sf::Text _grade;
DebugHelper _debug;
void startGameLoop();
void onKeyPressed(const sf::Keyboard::Key& key);
2021-04-03 19:14:31 +02:00
};
#endif // APPLICATION_H