2021-10-05 20:48:28 +02:00
|
|
|
#include "classiceditor.h"
|
|
|
|
|
2021-12-28 19:04:50 +01:00
|
|
|
#include "game/classicarrownote.h"
|
|
|
|
|
|
|
|
// Replace with interface by dependency injection
|
|
|
|
#include "graphics/animations/classicflyinganimationscenario.h"
|
|
|
|
#include "graphics/animations/classicdyinganimationscenario.h"
|
|
|
|
//
|
|
|
|
|
|
|
|
ClassicEditor::ClassicEditor(const std::shared_ptr<Timeline<ClassicNote>>& timeline,
|
|
|
|
const std::shared_ptr<ClassicGraphicsManager>& graphics_manager) :
|
|
|
|
_timeline(timeline),
|
|
|
|
_graphics_manager(graphics_manager),
|
2021-12-03 20:21:27 +01:00
|
|
|
_selected_type(Type::UP),
|
2021-12-06 20:18:04 +01:00
|
|
|
_current_time(0),
|
|
|
|
_scroll_step(500000)
|
2021-11-02 18:47:42 +01:00
|
|
|
{
|
2021-12-28 19:04:50 +01:00
|
|
|
_timeline->setNotes({});
|
2021-11-02 18:47:42 +01:00
|
|
|
}
|
|
|
|
|
2021-12-09 08:55:53 +01:00
|
|
|
microsec ClassicEditor::adjustOffset(microsec offset) const noexcept
|
|
|
|
{
|
2021-12-13 17:52:26 +01:00
|
|
|
const auto& section = getBPMSectionAt(offset);
|
|
|
|
const microsec actual_offset = offset - section.offset_start;
|
2021-12-09 08:55:53 +01:00
|
|
|
|
2021-12-13 17:52:26 +01:00
|
|
|
return actual_offset + (actual_offset % section.interval);
|
2021-12-09 08:55:53 +01:00
|
|
|
}
|
|
|
|
|
2021-11-02 18:47:42 +01:00
|
|
|
void ClassicEditor::input(PlayerInput&& inputdata)
|
|
|
|
{
|
2021-12-03 20:21:27 +01:00
|
|
|
_current_time = inputdata.timestamp;
|
2021-11-24 19:21:30 +01:00
|
|
|
const auto& event = inputdata.event;
|
|
|
|
|
|
|
|
switch (event.type)
|
|
|
|
{
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case sf::Event::MouseButtonPressed:
|
|
|
|
{
|
2021-12-28 19:04:50 +01:00
|
|
|
const auto note = _timeline->getNoteBy(_current_time);
|
|
|
|
if (_timeline->isExpired(note) && !_bpm_sections.empty() && _current_time >= (*_bpm_sections.begin()).offset_start)
|
2021-11-24 19:21:30 +01:00
|
|
|
{
|
2021-12-28 19:04:50 +01:00
|
|
|
ArrowNoteInitializer init;
|
|
|
|
ArrowElementInitializer element;
|
|
|
|
init.initializer.intervals = {};
|
|
|
|
init.initializer.perfect_offset = inputdata.timestamp;
|
|
|
|
init.hold = false;
|
|
|
|
init.initializer.context = nullptr;
|
2021-11-24 19:21:30 +01:00
|
|
|
|
2021-12-28 19:04:50 +01:00
|
|
|
element.element.coordinates = Coordinates(event.mouseButton.x, event.mouseButton.y);
|
|
|
|
element.element.falling_curve_interpolation = {};
|
|
|
|
element.keys = {sf::Keyboard::W, sf::Keyboard::Up};
|
|
|
|
element.element.type = Type::UP;
|
2021-11-02 18:47:42 +01:00
|
|
|
|
2021-12-28 19:04:50 +01:00
|
|
|
init.elements = {element};
|
2021-11-24 19:21:30 +01:00
|
|
|
|
2021-12-28 19:04:50 +01:00
|
|
|
_timeline->insertNote(new ClassicArrowNote(std::move(init)));
|
2021-11-24 19:21:30 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-11-02 18:47:42 +01:00
|
|
|
}
|
|
|
|
|
2021-12-03 20:21:27 +01:00
|
|
|
void ClassicEditor::update(UpdateData&& updatedata)
|
2021-11-02 18:47:42 +01:00
|
|
|
{
|
2021-12-28 19:04:50 +01:00
|
|
|
_timeline->update(updatedata.timestamp);
|
2021-11-02 18:47:42 +01:00
|
|
|
}
|
|
|
|
|
2021-12-28 19:04:50 +01:00
|
|
|
void ClassicEditor::display() const
|
2021-10-05 20:48:28 +02:00
|
|
|
{
|
2021-11-24 19:21:30 +01:00
|
|
|
}
|
2021-10-05 20:48:28 +02:00
|
|
|
|
2021-12-08 19:00:47 +01:00
|
|
|
void ClassicEditor::recalculate(const microsec& timestamp)
|
|
|
|
{
|
2021-12-28 19:04:50 +01:00
|
|
|
_timeline->recalculate(timestamp);
|
2021-12-08 19:00:47 +01:00
|
|
|
}
|
|
|
|
|
2021-11-24 19:21:30 +01:00
|
|
|
void ClassicEditor::selectNoteType(Type type) noexcept
|
|
|
|
{
|
|
|
|
_selected_type = type;
|
2021-10-05 20:48:28 +02:00
|
|
|
}
|