1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 01:00:53 +00:00
Funkin/source/funkin/play/event/SongEvent.hx
2023-06-02 14:35:28 -04:00

55 lines
1.2 KiB
Haxe

package funkin.play.event;
import funkin.play.song.SongData.SongEventData;
import funkin.play.event.SongEventData.SongEventSchema;
/**
* This class represents a handler for a type of song event.
* It is used by the ScriptedSongEvent class to handle user-defined events.
*/
class SongEvent
{
/**
* The internal song event ID that this handler is responsible for.
*/
public var id:String;
public function new(id:String)
{
this.id = id;
}
/**
* Handles a song event that matches this handler's ID.
* @param data The data associated with the event.
*/
public function handleEvent(data:SongEventData):Void
{
throw 'SongEvent.handleEvent() must be overridden!';
}
/**
* Retrieves the chart editor schema for this song event type.
* @return The schema, or null if this event type does not have a schema.
*/
public function getEventSchema():SongEventSchema
{
return null;
}
/**
* Retrieves the human readable title of this song event type.
* Used for the chart editor.
* @return The title.
*/
public function getTitle():String
{
return this.id.toTitleCase();
}
public function toString():String
{
return 'SongEvent(${this.id})';
}
}