mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-16 03:43:36 +00:00
100 lines
2.8 KiB
Haxe
100 lines
2.8 KiB
Haxe
package funkin.play.notes.notekind;
|
|
|
|
import funkin.modding.events.ScriptEventDispatcher;
|
|
import funkin.modding.events.ScriptEvent;
|
|
import funkin.ui.debug.charting.util.ChartEditorDropdowns;
|
|
import funkin.data.notestyle.NoteStyleRegistry;
|
|
import funkin.play.notes.notestyle.NoteStyle;
|
|
|
|
class NoteKindManager
|
|
{
|
|
static var noteKinds:Map<String, NoteKind> = [];
|
|
|
|
public static function loadScripts():Void
|
|
{
|
|
var scriptedClassName:Array<String> = ScriptedNoteKind.listScriptClasses();
|
|
if (scriptedClassName.length > 0)
|
|
{
|
|
trace('Instantiating ${scriptedClassName.length} scripted note kind(s)...');
|
|
for (scriptedClass in scriptedClassName)
|
|
{
|
|
try
|
|
{
|
|
var script:NoteKind = ScriptedNoteKind.init(scriptedClass, "unknown");
|
|
trace(' Initialized scripted note kind: ${script.noteKind}');
|
|
noteKinds.set(script.noteKind, script);
|
|
ChartEditorDropdowns.NOTE_KINDS.set(script.noteKind, script.description);
|
|
}
|
|
catch (e)
|
|
{
|
|
trace(' FAILED to instantiate scripted note kind: ${scriptedClass}');
|
|
trace(e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Calls the given event for note kind scripts
|
|
* @param event The event
|
|
*/
|
|
public static function callEvent(event:ScriptEvent):Void
|
|
{
|
|
// if it is a note script event,
|
|
// then only call the event for the specific note kind script
|
|
if (Std.isOfType(event, NoteScriptEvent))
|
|
{
|
|
var noteEvent:NoteScriptEvent = cast(event, NoteScriptEvent);
|
|
|
|
var noteKind:NoteKind = noteKinds.get(noteEvent.note.kind);
|
|
|
|
if (noteKind != null)
|
|
{
|
|
ScriptEventDispatcher.callEvent(noteKind, event);
|
|
}
|
|
}
|
|
else // call the event for all note kind scripts
|
|
{
|
|
for (noteKind in noteKinds.iterator())
|
|
{
|
|
ScriptEventDispatcher.callEvent(noteKind, event);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Retrieve the note style from the given note kind
|
|
* @param noteKind note kind name
|
|
* @param isPixel whether to use pixel style
|
|
* @return NoteStyle
|
|
*/
|
|
public static function getNoteStyle(noteKind:String, isPixel:Bool = false):Null<NoteStyle>
|
|
{
|
|
var noteStyleId:Null<String> = getNoteStyleId(noteKind, isPixel);
|
|
|
|
if (noteStyleId == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return NoteStyleRegistry.instance.fetchEntry(noteStyleId);
|
|
}
|
|
|
|
/**
|
|
* Retrieve the note style id from the given note kind
|
|
* @param noteKind note kind name
|
|
* @param isPixel whether to use pixel style
|
|
* @return Null<String>
|
|
*/
|
|
public static function getNoteStyleId(noteKind:String, isPixel:Bool = false):Null<String>
|
|
{
|
|
var noteStyleId:Null<String> = noteKinds.get(noteKind)?.noteStyleId;
|
|
if (isPixel && noteStyleId != null)
|
|
{
|
|
noteStyleId = NoteStyleRegistry.instance.hasEntry('$noteStyleId-pixel') ? '$noteStyleId-pixel' : noteStyleId;
|
|
}
|
|
|
|
return noteStyleId;
|
|
}
|
|
}
|