project-kyoku/src/modes/classicmode/editor/classiceditor.cpp

88 lines
2.4 KiB
C++
Raw Normal View History

2021-10-05 14:48:28 -04:00
#include "classiceditor.h"
#include "game/classicarrownote.h"
// Replace with interface by dependency injection
#include "graphics/animations/classicflyinganimationscenario.h"
#include "graphics/animations/classicdyinganimationscenario.h"
//
2021-12-29 09:59:18 -05:00
ClassicEditor::ClassicEditor(const std::shared_ptr<kku::Timeline<ClassicNote>>& timeline,
const std::shared_ptr<ClassicGraphicsManager>& graphics_manager) :
_timeline(timeline),
_graphics_manager(graphics_manager),
_selected_type(Type::UP),
2021-12-06 14:18:04 -05:00
_current_time(0),
_scroll_step(500000)
2021-11-02 13:47:42 -04:00
{
_timeline->setNotes({});
2021-11-02 13:47:42 -04:00
}
2021-12-29 09:59:18 -05:00
kku::microsec ClassicEditor::adjustOffset(kku::microsec offset) const noexcept
{
2021-12-13 11:52:26 -05:00
const auto& section = getBPMSectionAt(offset);
2021-12-29 09:59:18 -05:00
const kku::microsec actual_offset = offset - section.offset_start;
2021-12-13 11:52:26 -05:00
return actual_offset + (actual_offset % section.interval);
}
2021-12-29 09:59:18 -05:00
void ClassicEditor::input(kku::GameEvent&& input)
2021-11-02 13:47:42 -04:00
{
2021-12-29 09:59:18 -05:00
_current_time = input.timestamp;
const auto& event = input.event;
2021-12-29 09:59:18 -05:00
switch (input.event.type)
{
default:
break;
2021-12-29 09:59:18 -05:00
case kku::SystemEvent::Type::MousePress:
{
const auto note = _timeline->getNoteBy(_current_time);
if (_timeline->isExpired(note) && !_bpm_sections.empty() && _current_time >= (*_bpm_sections.begin()).offset_start)
{
ArrowNoteInitializer init;
ArrowElementInitializer element;
init.initializer.intervals = {};
2021-12-29 09:59:18 -05:00
init.initializer.perfect_offset = input.timestamp;
init.hold = false;
init.initializer.context = nullptr;
2021-12-29 09:59:18 -05:00
element.element.position = std::get<kku::SystemEvent::Mouse>(event.data).position;
element.element.falling_curve_interpolation = {};
2022-01-11 15:15:24 -05:00
element.keys = {kku::SystemEvent::Key::Code::W,
kku::SystemEvent::Key::Code::Up};
element.element.type = Type::UP;
2021-11-02 13:47:42 -04:00
2021-12-29 09:59:18 -05:00
init.elements = { element };
_timeline->insertNote(new ClassicArrowNote(std::move(init)));
}
break;
}
}
2021-11-02 13:47:42 -04:00
}
2021-12-29 09:59:18 -05:00
void ClassicEditor::update(kku::UpdateData&& updatedata)
2021-11-02 13:47:42 -04:00
{
_timeline->update(updatedata.timestamp);
2021-11-02 13:47:42 -04:00
}
void ClassicEditor::display() const
2021-10-05 14:48:28 -04:00
{
}
2021-10-05 14:48:28 -04:00
2021-12-29 09:59:18 -05:00
void ClassicEditor::recalculate(const kku::microsec& timestamp)
{
_timeline->recalculate(timestamp);
}
void ClassicEditor::selectNoteType(Type type) noexcept
{
_selected_type = type;
2021-10-05 14:48:28 -04:00
}