project-kyoku/modes/classicmode/game/classicmapcreator.cpp

75 lines
2.1 KiB
C++
Raw Normal View History

#include "classicmapcreator.h"
2021-09-28 05:48:06 +02:00
#include "classicarrownote.h"
// Replace with interface by dependency injection
#include "classicflyinganimationscenario.h"
#include "classicdyinganimationscenario.h"
//
ClassicMapCreator::ClassicMapCreator(const std::shared_ptr<ClassicGraphicsManager>& manager) :
_graphics_manager(manager)
{}
Beatmap ClassicMapCreator::createBeatmap(const std::string& filepath) const
{
(void) filepath;
2021-07-19 19:59:23 +02:00
microsec starting_beat_offset = 362162;
int amount_of_beats = 209;
microsec interval = 1412162;
2021-10-03 17:23:28 +02:00
microsec tempo_interval = interval / 4;
2021-07-19 19:59:23 +02:00
microsec note_input_offset = 412162 / 2;
2021-07-21 20:15:56 +02:00
//microsec note_input_offset_fast = 412162 / 6;
microsec bpm_iterator = starting_beat_offset;
microsec bpm_end = starting_beat_offset + (interval * amount_of_beats);
std::vector<microsec> input_intervals = {note_input_offset / 3, note_input_offset / 3 * 2, note_input_offset};
2021-10-03 17:23:28 +02:00
std::set<ClassicNote*, NotePtrCompt> notes;
input_intervals.shrink_to_fit();
bpm_iterator += tempo_interval;
float x = 90.;
2021-07-15 04:45:52 +02:00
int counter = 3;
2021-09-28 05:48:06 +02:00
const auto context = std::make_shared<Context>(Context{_graphics_manager});
while (bpm_iterator < bpm_end)
{
2021-09-28 05:48:06 +02:00
ArrowNoteInitializer init;
ArrowElementInitializer element;
init.initializer.intervals = input_intervals;
init.initializer.perfect_offset = bpm_iterator;
init.hold = false;
2021-09-28 05:48:06 +02:00
init.initializer.context = context;
2021-09-28 05:48:06 +02:00
element.element.coordinates = {x, 390.};
element.element.falling_curve_interpolation = {};
element.element.keys = {sf::Keyboard::W, sf::Keyboard::Up};
element.type = Type::UP;
2021-07-15 04:45:52 +02:00
if (counter == 0)
{
init.hold = true;
2021-09-28 05:48:06 +02:00
element.element.keys = {sf::Keyboard::D, sf::Keyboard::Right};
element.type = Type::RIGHT;
2021-07-15 04:45:52 +02:00
}
--counter;
init.elements = {element};
2021-10-03 17:23:28 +02:00
notes.insert(new ClassicArrowNote(std::move(init)));
2021-07-21 20:15:56 +02:00
bpm_iterator += tempo_interval;
x += 70;
if (x >= 1200)
x = 90.;
}
2021-10-03 17:23:28 +02:00
return {std::move(notes), note_input_offset * 8};
}