2021-09-28 05:48:06 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "classicnote.h"
|
|
|
|
#include "initializers/arrownoteinitializer.h"
|
|
|
|
|
|
|
|
class ClassicArrowNote : public ClassicNote
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit ClassicArrowNote(ArrowNoteInitializer&& init);
|
|
|
|
virtual ~ClassicArrowNote() = default;
|
|
|
|
|
2021-12-23 18:33:24 +01:00
|
|
|
virtual void putToGame() override;
|
2021-09-28 05:48:06 +02:00
|
|
|
virtual void update(const microsec &music_offset) override;
|
|
|
|
virtual void input(PlayerInput&& inputdata) override;
|
|
|
|
|
2021-12-23 18:33:24 +01:00
|
|
|
virtual void draw(const ClassicGraphicsManager * const manager, sf::RenderTarget& target, sf::RenderStates states) const override;
|
|
|
|
virtual void setGraphics(ClassicGraphicsManager * const manager, TimeRange&& range) override;
|
|
|
|
|
2021-09-28 05:48:06 +02:00
|
|
|
bool allElementsPressed() const;
|
|
|
|
bool isPressedAs(sf::Keyboard::Key key) const;
|
2021-10-04 17:30:21 +02:00
|
|
|
inline bool isHold() const;
|
2021-09-28 05:48:06 +02:00
|
|
|
|
|
|
|
struct ArrowElement
|
|
|
|
{
|
|
|
|
std::shared_ptr<ClassicSprite> sprite;
|
|
|
|
std::array<std::shared_ptr<ClassicAnimationScenario>, 5> animations;
|
|
|
|
sf::Keyboard::Key pressed_as = sf::Keyboard::Unknown;
|
|
|
|
|
|
|
|
Coordinates coordinates;
|
|
|
|
std::vector<Coordinates> falling_curve_interpolation;
|
|
|
|
std::array<sf::Keyboard::Key, 2> keys;
|
|
|
|
Type type = Type::NONE;
|
|
|
|
bool pressed = false;
|
|
|
|
|
|
|
|
// Each note may consist of several buttons.
|
|
|
|
// For example, ↑ → or ↓ → ←
|
|
|
|
// Note Element represents this idea.
|
|
|
|
};
|
|
|
|
|
2021-12-23 18:33:24 +01:00
|
|
|
private:
|
2021-09-28 05:48:06 +02:00
|
|
|
std::vector<ArrowElement> _elements;
|
|
|
|
bool _is_hold;
|
|
|
|
};
|
2021-12-23 18:33:24 +01:00
|
|
|
|
|
|
|
using ArrowElements = std::vector<ClassicArrowNote::ArrowElement>;
|