mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2024-11-15 03:27:41 +01:00
Recompute density graph on more occasions
This commit is contained in:
parent
a9b20518ce
commit
16d163c0dc
@ -41,6 +41,7 @@ void ChartState::cut(
|
|||||||
chart.notes->erase(note);
|
chart.notes->erase(note);
|
||||||
}
|
}
|
||||||
history.push(std::make_shared<RemoveNotes>(difficulty_name, selected_stuff.notes));
|
history.push(std::make_shared<RemoveNotes>(difficulty_name, selected_stuff.notes));
|
||||||
|
density_graph.should_recompute = true;
|
||||||
}
|
}
|
||||||
if (not selected_stuff.bpm_events.empty()) {
|
if (not selected_stuff.bpm_events.empty()) {
|
||||||
const auto before = timing;
|
const auto before = timing;
|
||||||
@ -147,6 +148,7 @@ void ChartState::delete_(
|
|||||||
chart.notes->erase(note);
|
chart.notes->erase(note);
|
||||||
}
|
}
|
||||||
selected_stuff.notes.clear();
|
selected_stuff.notes.clear();
|
||||||
|
density_graph.should_recompute = true;
|
||||||
}
|
}
|
||||||
if (not selected_stuff.bpm_events.empty()) {
|
if (not selected_stuff.bpm_events.empty()) {
|
||||||
const auto before = timing;
|
const auto before = timing;
|
||||||
|
@ -1106,11 +1106,16 @@ void EditorState::display_timing_menu() {
|
|||||||
playback_position
|
playback_position
|
||||||
);
|
);
|
||||||
if (feis::InputDecimal("BPM", &bpm, ImGuiInputTextFlags_EnterReturnsTrue)) {
|
if (feis::InputDecimal("BPM", &bpm, ImGuiInputTextFlags_EnterReturnsTrue)) {
|
||||||
const auto before = *applicable_timing;
|
if (bpm > 0) {
|
||||||
applicable_timing->insert(better::BPMAtBeat{bpm, current_snaped_beats()});
|
const auto before = *applicable_timing;
|
||||||
if (*applicable_timing != before) {
|
applicable_timing->insert(better::BPMAtBeat{bpm, current_snaped_beats()});
|
||||||
reload_sounds_that_depend_on_timing();
|
if (*applicable_timing != before) {
|
||||||
history.push(std::make_shared<ChangeTiming>(before, *applicable_timing, timing_origin()));
|
reload_sounds_that_depend_on_timing();
|
||||||
|
history.push(std::make_shared<ChangeTiming>(before, *applicable_timing, timing_origin()));
|
||||||
|
}
|
||||||
|
if (chart_state) {
|
||||||
|
chart_state->density_graph.should_recompute = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
auto offset = applicable_timing->get_offset();
|
auto offset = applicable_timing->get_offset();
|
||||||
@ -1118,6 +1123,9 @@ void EditorState::display_timing_menu() {
|
|||||||
applicable_timing->set_offset(offset);
|
applicable_timing->set_offset(offset);
|
||||||
reload_sounds_that_depend_on_timing();
|
reload_sounds_that_depend_on_timing();
|
||||||
set_playback_position(current_exact_beats());
|
set_playback_position(current_exact_beats());
|
||||||
|
if (chart_state) {
|
||||||
|
chart_state->density_graph.should_recompute = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ImGui::End();
|
ImGui::End();
|
||||||
@ -1222,7 +1230,6 @@ void EditorState::undo(NotificationsQueue& nq) {
|
|||||||
if (previous) {
|
if (previous) {
|
||||||
nq.push(std::make_shared<UndoNotification>(**previous));
|
nq.push(std::make_shared<UndoNotification>(**previous));
|
||||||
(*previous)->undo_action(*this);
|
(*previous)->undo_action(*this);
|
||||||
chart_state->density_graph.should_recompute = true;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1231,7 +1238,6 @@ void EditorState::redo(NotificationsQueue& nq) {
|
|||||||
if (next) {
|
if (next) {
|
||||||
nq.push(std::make_shared<RedoNotification>(**next));
|
nq.push(std::make_shared<RedoNotification>(**next));
|
||||||
(*next)->do_action(*this);
|
(*next)->do_action(*this);
|
||||||
chart_state->density_graph.should_recompute = true;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -44,6 +44,7 @@ void AddNotes::do_action(EditorState& ed) const {
|
|||||||
for (const auto& [_, note] : notes) {
|
for (const auto& [_, note] : notes) {
|
||||||
ed.chart_state->chart.notes->insert(note);
|
ed.chart_state->chart.notes->insert(note);
|
||||||
}
|
}
|
||||||
|
ed.chart_state->density_graph.should_recompute = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,6 +57,7 @@ void AddNotes::undo_action(EditorState& ed) const {
|
|||||||
for (const auto& [_, note] : notes) {
|
for (const auto& [_, note] : notes) {
|
||||||
ed.chart_state->chart.notes->erase(note);
|
ed.chart_state->chart.notes->erase(note);
|
||||||
}
|
}
|
||||||
|
ed.chart_state->density_graph.should_recompute = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -316,4 +318,7 @@ void ChangeTiming::set_value(EditorState& ed, const better::Timing& value) const
|
|||||||
std::visit(set_value_, origin);
|
std::visit(set_value_, origin);
|
||||||
ed.reload_applicable_timing();
|
ed.reload_applicable_timing();
|
||||||
ed.reload_sounds_that_depend_on_timing();
|
ed.reload_sounds_that_depend_on_timing();
|
||||||
|
if (ed.chart_state) {
|
||||||
|
ed.chart_state->density_graph.should_recompute = true;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user