mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 22:34:36 +00:00
93 lines
2.3 KiB
Haxe
93 lines
2.3 KiB
Haxe
package funkin.ui.debug.dialogue;
|
|
|
|
import flixel.FlxState;
|
|
import funkin.modding.events.ScriptEventDispatcher;
|
|
import funkin.modding.events.ScriptEvent;
|
|
import flixel.util.FlxColor;
|
|
import funkin.ui.MusicBeatState;
|
|
import funkin.data.dialogue.ConversationData;
|
|
import funkin.data.dialogue.ConversationRegistry;
|
|
import funkin.data.dialogue.DialogueBoxData;
|
|
import funkin.data.dialogue.DialogueBoxRegistry;
|
|
import funkin.data.dialogue.SpeakerData;
|
|
import funkin.data.dialogue.SpeakerRegistry;
|
|
import funkin.data.freeplay.AlbumRegistry;
|
|
import funkin.play.cutscene.dialogue.Conversation;
|
|
import funkin.play.cutscene.dialogue.DialogueBox;
|
|
import funkin.play.cutscene.dialogue.Speaker;
|
|
|
|
/**
|
|
* A state with displays a conversation with no background.
|
|
* Used for testing.
|
|
* @param conversationId The conversation to display.
|
|
*/
|
|
class ConversationDebugState extends MusicBeatState
|
|
{
|
|
final conversationId:String = 'senpai';
|
|
|
|
var conversation:Conversation;
|
|
|
|
public function new()
|
|
{
|
|
super();
|
|
|
|
// TODO: Fix this BS
|
|
Paths.setCurrentLevel('week6');
|
|
}
|
|
|
|
public override function create():Void
|
|
{
|
|
super.create();
|
|
startConversation();
|
|
}
|
|
|
|
function startConversation():Void
|
|
{
|
|
if (conversation != null) return;
|
|
|
|
conversation = ConversationRegistry.instance.fetchEntry(conversationId);
|
|
if (conversation == null) return;
|
|
if (!conversation.alive) conversation.revive();
|
|
|
|
conversation.zIndex = 1000;
|
|
add(conversation);
|
|
refresh();
|
|
|
|
var event:ScriptEvent = new ScriptEvent(CREATE, false);
|
|
ScriptEventDispatcher.callEvent(conversation, event);
|
|
}
|
|
|
|
function onConversationComplete():Void
|
|
{
|
|
remove(conversation);
|
|
conversation = null;
|
|
}
|
|
|
|
public override function dispatchEvent(event:ScriptEvent):Void
|
|
{
|
|
// Dispatch event to conversation script.
|
|
ScriptEventDispatcher.callEvent(conversation, event);
|
|
}
|
|
|
|
public override function update(elapsed:Float):Void
|
|
{
|
|
super.update(elapsed);
|
|
|
|
if (conversation != null)
|
|
{
|
|
if (controls.CUTSCENE_ADVANCE)
|
|
{
|
|
conversation.advanceConversation();
|
|
}
|
|
else if (controls.PAUSE)
|
|
{
|
|
conversation.kill();
|
|
remove(conversation);
|
|
conversation = null;
|
|
|
|
FlxG.switchState(() -> new ConversationDebugState());
|
|
}
|
|
}
|
|
}
|
|
}
|