project-kyoku/application.h

37 lines
638 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
2021-04-05 16:17:57 +02:00
#include "debughelper.h"
#include "timeline.h"
2021-04-08 18:08:01 +02:00
#include "note.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;
Timeline _timeline;
2021-04-05 16:17:57 +02:00
DebugHelper _debug;
void startGameLoop();
void onKeyPressed(const sf::Keyboard::Key& key);
2021-04-08 18:08:01 +02:00
void onTap(const Note::Arrow& arrow);
2021-04-03 19:14:31 +02:00
};
#endif // APPLICATION_H