2021-04-04 22:43:12 +02:00
|
|
|
#ifndef NOTE_H
|
|
|
|
#define NOTE_H
|
|
|
|
|
|
|
|
#include <SFML/System/Clock.hpp>
|
2021-04-06 19:39:29 +02:00
|
|
|
#include <SFML/System/Vector2.hpp>
|
|
|
|
|
|
|
|
////////////////////////////////
|
2021-04-04 22:43:12 +02:00
|
|
|
|
|
|
|
using microsec = sf::Int64;
|
2021-04-06 19:39:29 +02:00
|
|
|
using coordinates = sf::Vector2i;
|
2021-04-04 22:43:12 +02:00
|
|
|
|
|
|
|
struct NoteGrade
|
|
|
|
{
|
2021-04-06 19:39:29 +02:00
|
|
|
int score;
|
2021-04-04 22:43:12 +02:00
|
|
|
enum class Rating
|
|
|
|
{
|
|
|
|
WRONG,
|
|
|
|
BAD,
|
|
|
|
GOOD,
|
|
|
|
GREAT
|
2021-04-06 19:39:29 +02:00
|
|
|
} rating;
|
|
|
|
|
|
|
|
NoteGrade(int s, Rating r) : score(s), rating(r) {}
|
2021-04-04 22:43:12 +02:00
|
|
|
};
|
|
|
|
|
2021-04-06 19:39:29 +02:00
|
|
|
////////////////////////////////
|
|
|
|
|
2021-04-04 22:43:12 +02:00
|
|
|
class Note
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum class Arrow
|
|
|
|
{
|
|
|
|
UP,
|
|
|
|
RIGHT,
|
|
|
|
DOWN,
|
2021-04-05 16:17:57 +02:00
|
|
|
LEFT,
|
|
|
|
|
|
|
|
NONE
|
2021-04-04 22:43:12 +02:00
|
|
|
};
|
|
|
|
|
2021-04-06 19:39:29 +02:00
|
|
|
Note(microsec offset, microsec life_span_offset, Note::Arrow type = Note::Arrow::UP);
|
2021-04-04 22:43:12 +02:00
|
|
|
|
2021-04-06 19:39:29 +02:00
|
|
|
void setPosition(coordinates position);
|
|
|
|
coordinates position() const noexcept;
|
2021-04-05 16:17:57 +02:00
|
|
|
microsec offset() const noexcept;
|
2021-04-06 19:39:29 +02:00
|
|
|
|
|
|
|
NoteGrade onTap(Arrow arrow_type, microsec tap_time_stamp) const;
|
|
|
|
bool isActive(microsec music_play_offset) const noexcept;
|
|
|
|
|
|
|
|
static void setPrecisionQualifier(microsec qualifier);
|
2021-04-04 22:43:12 +02:00
|
|
|
|
|
|
|
private:
|
2021-04-06 19:39:29 +02:00
|
|
|
coordinates _position;
|
2021-04-04 22:43:12 +02:00
|
|
|
microsec _offset;
|
2021-04-06 19:39:29 +02:00
|
|
|
microsec _start_handling_offset;
|
|
|
|
microsec _end_handling_offset;
|
2021-04-04 22:43:12 +02:00
|
|
|
Arrow _type = Arrow::UP;
|
|
|
|
|
2021-04-06 19:39:29 +02:00
|
|
|
static microsec _precision_qualifier;
|
2021-04-04 22:43:12 +02:00
|
|
|
NoteGrade calculatePrecision(microsec odds) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NOTE_H
|