mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-09-09 23:38:09 +00:00
Co-authored-by: Hundrec <hundrecard@gmail.com> Co-authored-by: Hyper_ <survivaltemer@gmail.com> Co-authored-by: lemz1 <ismael.amjad07@gmail.com> Co-authored-by: Hyper_ <40342021+NotHyper-474@users.noreply.github.com> Co-authored-by: Kade <26305836+Kade-github@users.noreply.github.com>
119 lines
4.1 KiB
Haxe
119 lines
4.1 KiB
Haxe
package funkin.ui.debug.charting.commands;
|
|
|
|
import funkin.data.song.SongData.SongEventData;
|
|
import funkin.data.song.SongData.SongNoteData;
|
|
import funkin.data.song.SongDataUtils;
|
|
import funkin.data.song.SongDataUtils.SongClipboardItems;
|
|
import funkin.data.song.SongNoteDataUtils;
|
|
import funkin.ui.debug.charting.ChartEditorState;
|
|
|
|
/**
|
|
* A command which inserts the contents of the clipboard into the chart editor.
|
|
*/
|
|
@:nullSafety
|
|
@:access(funkin.ui.debug.charting.ChartEditorState)
|
|
class PasteItemsCommand implements ChartEditorCommand
|
|
{
|
|
var targetTimestamp:Float;
|
|
// Notes we added and removed with this command, for undo.
|
|
var addedNotes:Array<SongNoteData> = [];
|
|
var addedEvents:Array<SongEventData> = [];
|
|
var removedNotes:Array<SongNoteData> = [];
|
|
var isRedo:Bool = false;
|
|
|
|
public function new(targetTimestamp:Float)
|
|
{
|
|
this.targetTimestamp = targetTimestamp;
|
|
}
|
|
|
|
public function execute(state:ChartEditorState):Void
|
|
{
|
|
var currentClipboard:SongClipboardItems = SongDataUtils.readItemsFromClipboard();
|
|
|
|
if (currentClipboard.valid != true)
|
|
{
|
|
state.error('Failed to Paste', 'Could not parse clipboard contents.');
|
|
return;
|
|
}
|
|
|
|
var stepEndOfSong:Float = Conductor.instance.getTimeInSteps(state.songLengthInMs);
|
|
var stepCutoff:Float = stepEndOfSong - 1.0;
|
|
var msCutoff:Float = Conductor.instance.getStepTimeInMs(stepCutoff);
|
|
|
|
addedNotes = SongDataUtils.offsetSongNoteData(currentClipboard.notes, Std.int(targetTimestamp));
|
|
addedNotes = SongDataUtils.clampSongNoteData(addedNotes, 0.0, msCutoff);
|
|
addedEvents = SongDataUtils.offsetSongEventData(currentClipboard.events, Std.int(targetTimestamp));
|
|
addedEvents = SongDataUtils.clampSongEventData(addedEvents, 0.0, msCutoff);
|
|
|
|
removedNotes.clear();
|
|
var mergedNotes:Array<SongNoteData> = SongNoteDataUtils.concatOverwrite(state.currentSongChartNoteData, addedNotes, removedNotes);
|
|
|
|
state.currentSongChartNoteData = mergedNotes;
|
|
state.currentSongChartEventData = state.currentSongChartEventData.concat(addedEvents);
|
|
state.currentNoteSelection = addedNotes.copy();
|
|
state.currentEventSelection = addedEvents.copy();
|
|
|
|
state.saveDataDirty = true;
|
|
state.noteDisplayDirty = true;
|
|
state.notePreviewDirty = true;
|
|
|
|
state.sortChartData();
|
|
|
|
var title = isRedo ? 'Redone Paste Successfully' : 'Paste Successful';
|
|
var msgType = removedNotes.length > 0 ? 'warning' : 'success';
|
|
var msg = if (removedNotes.length == 1)
|
|
{
|
|
'But 1 overlapped note was overwritten.';
|
|
}
|
|
else if (removedNotes.length > 1)
|
|
{
|
|
'But ${removedNotes.length} overlapped notes were overwritten.';
|
|
}
|
|
else if (isRedo)
|
|
{
|
|
'Successfully placed pasted note(s) back.';
|
|
}
|
|
else 'Successfully pasted clipboard contents.';
|
|
|
|
Reflect.callMethod(null, Reflect.field(ChartEditorNotificationHandler, msgType), [state, title, msg]);
|
|
|
|
isRedo = false;
|
|
}
|
|
|
|
public function undo(state:ChartEditorState):Void
|
|
{
|
|
state.playSound(Paths.sound('chartingSounds/undo'));
|
|
|
|
state.currentSongChartNoteData = SongDataUtils.subtractNotes(state.currentSongChartNoteData, addedNotes).concat(removedNotes);
|
|
state.currentSongChartEventData = SongDataUtils.subtractEvents(state.currentSongChartEventData, addedEvents);
|
|
state.currentEventSelection = [];
|
|
state.performCommand(new SelectItemsCommand(removedNotes.copy()), false);
|
|
|
|
state.saveDataDirty = true;
|
|
state.noteDisplayDirty = true;
|
|
state.notePreviewDirty = true;
|
|
|
|
state.sortChartData();
|
|
|
|
isRedo = true;
|
|
}
|
|
|
|
public function shouldAddToHistory(state:ChartEditorState):Bool
|
|
{
|
|
// This command is undoable. Add to the history if we actually performed an action.
|
|
return (addedNotes.length > 0 || addedEvents.length > 0 || removedNotes.length > 0);
|
|
}
|
|
|
|
public function toString():String
|
|
{
|
|
var currentClipboard:SongClipboardItems = SongDataUtils.readItemsFromClipboard();
|
|
|
|
var len:Int = currentClipboard.notes.length + currentClipboard.events.length;
|
|
|
|
if (currentClipboard.notes.length == 0) return 'Paste $len Events';
|
|
else if (currentClipboard.events.length == 0) return 'Paste $len Notes';
|
|
else
|
|
return 'Paste $len Items';
|
|
}
|
|
}
|