Funkin/source/funkin/play/notes/notekind/NoteKindManager.hx

77 lines
2.2 KiB
Haxe
Raw Normal View History

2024-05-31 08:02:28 -04:00
package funkin.play.notes.notekind;
import funkin.modding.events.ScriptEventDispatcher;
import funkin.modding.events.ScriptEvent;
import funkin.ui.debug.charting.util.ChartEditorDropdowns;
2024-06-01 13:47:45 -04:00
import funkin.data.notestyle.NoteStyleRegistry;
import funkin.play.notes.notestyle.NoteStyle;
2024-05-31 08:02:28 -04:00
2024-05-31 10:55:42 -04:00
class NoteKindManager
2024-05-31 08:02:28 -04:00
{
2024-05-31 10:55:42 -04:00
static var noteKinds:Map<String, NoteKind> = [];
2024-05-31 08:02:28 -04:00
public static function loadScripts():Void
{
2024-05-31 10:55:42 -04:00
var scriptedClassName:Array<String> = ScriptedNoteKind.listScriptClasses();
2024-05-31 08:02:28 -04:00
if (scriptedClassName.length > 0)
{
2024-05-31 11:24:51 -04:00
trace('Instantiating ${scriptedClassName.length} scripted note kind(s)...');
2024-05-31 08:02:28 -04:00
for (scriptedClass in scriptedClassName)
{
try
{
2024-05-31 10:55:42 -04:00
var script:NoteKind = ScriptedNoteKind.init(scriptedClass, "unknown");
2024-05-31 08:02:28 -04:00
trace(' Initialized scripted note kind: ${script.noteKind}');
2024-05-31 10:55:42 -04:00
noteKinds.set(script.noteKind, script);
2024-05-31 08:02:28 -04:00
ChartEditorDropdowns.NOTE_KINDS.set(script.noteKind, script.description);
}
catch (e)
{
trace(' FAILED to instantiate scripted note kind: ${scriptedClass}');
trace(e);
}
}
}
}
2024-06-01 12:25:46 -04:00
/**
* Calls the given event for note kind scripts
* @param event The event
*/
public static function callEvent(event:ScriptEvent):Void
2024-05-31 08:02:28 -04:00
{
2024-06-01 12:25:46 -04:00
// if it is a note script event,
// then only call the event for the specific note kind script
if (Std.isOfType(event, NoteScriptEvent))
2024-05-31 08:02:28 -04:00
{
2024-06-01 12:25:46 -04:00
var noteEvent:NoteScriptEvent = cast(event, NoteScriptEvent);
2024-05-31 08:02:28 -04:00
2024-06-01 13:47:45 -04:00
var noteKind:NoteKind = noteKinds.get(noteEvent.note.kind);
2024-05-31 11:49:25 -04:00
2024-06-01 12:25:46 -04:00
if (noteKind != null)
{
ScriptEventDispatcher.callEvent(noteKind, event);
}
}
else // call the event for all note kind scripts
2024-05-31 11:49:25 -04:00
{
2024-06-01 12:25:46 -04:00
for (noteKind in noteKinds.iterator())
{
ScriptEventDispatcher.callEvent(noteKind, event);
}
2024-05-31 11:49:25 -04:00
}
}
2024-06-01 13:47:45 -04:00
/**
* Retrieve the note style from the given note kind
* @param noteKind note kind name
* @return NoteStyle
*/
public static function getNoteStyle(noteKind:String):Null<NoteStyle>
{
var noteStyleId:String = noteKinds.get(noteKind)?.noteStyleId ?? "";
return NoteStyleRegistry.instance.fetchEntry(noteStyleId);
}
2024-05-31 08:02:28 -04:00
}