2021-10-05 20:48:28 +02:00
|
|
|
#include "classiceditor.h"
|
|
|
|
|
2021-11-24 19:21:30 +01:00
|
|
|
ClassicEditor::ClassicEditor(std::shared_ptr<ClassicGraphicsManager>&& manager) :
|
|
|
|
_graphics_manager(manager),
|
2021-12-03 20:21:27 +01:00
|
|
|
_selected_type(Type::UP),
|
|
|
|
_current_time(0)
|
2021-11-02 18:47:42 +01:00
|
|
|
{
|
2021-11-24 19:21:30 +01:00
|
|
|
_context.graphics_manager = _graphics_manager;
|
2021-12-03 20:21:27 +01:00
|
|
|
_timeline.setNotes({}, 1648648);
|
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-03 20:21:27 +01:00
|
|
|
const auto note = _timeline.getNoteBy(_current_time);
|
2021-11-24 19:21:30 +01:00
|
|
|
if (_timeline.isExpired(note))
|
|
|
|
{
|
|
|
|
NoteInitializer init;
|
|
|
|
init.context = &_context;
|
|
|
|
init.intervals = {};
|
2021-12-03 20:21:27 +01:00
|
|
|
init.perfect_offset = _current_time;
|
2021-11-24 19:21:30 +01:00
|
|
|
|
|
|
|
ElementInitializer elem_init;
|
|
|
|
elem_init.type = _selected_type;
|
|
|
|
elem_init.coordinates = Coordinates{ event.mouseButton.x, event.mouseButton.y };
|
|
|
|
elem_init.falling_curve_interpolation = {};
|
2021-11-02 18:47:42 +01:00
|
|
|
|
2021-11-24 19:21:30 +01:00
|
|
|
MockArrowNoteInitializer mock_init;
|
|
|
|
mock_init.elements = {elem_init};
|
|
|
|
mock_init.initializer = init;
|
|
|
|
|
|
|
|
_timeline.insertNote(new MockClassicNote(std::move(mock_init)));
|
|
|
|
}
|
|
|
|
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-03 20:21:27 +01:00
|
|
|
_timeline.update(updatedata.timestamp);
|
2021-11-24 19:21:30 +01:00
|
|
|
_timeline.fetchVisibleNotes();
|
2021-11-02 18:47:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClassicEditor::draw() const
|
2021-10-05 20:48:28 +02:00
|
|
|
{
|
2021-12-03 20:21:27 +01:00
|
|
|
const auto& graphics_manager = _graphics_manager;
|
|
|
|
auto notes = _timeline.getVisibleNotes();
|
|
|
|
|
|
|
|
std::for_each(notes.first, notes.second,
|
|
|
|
[graphics_manager](const auto& note)
|
|
|
|
{
|
|
|
|
note->draw();
|
|
|
|
});
|
2021-11-24 19:21:30 +01:00
|
|
|
}
|
2021-10-05 20:48:28 +02: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
|
|
|
}
|