1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 17:18:55 +00:00
Funkin/source/funkin/play/cutscene/dialogue/Conversation.hx

676 lines
17 KiB
Haxe
Raw Normal View History

2023-06-16 21:37:56 +00:00
package funkin.play.cutscene.dialogue;
2024-02-07 23:45:13 +00:00
import funkin.data.IRegistryEntry;
2023-06-16 21:37:56 +00:00
import flixel.FlxSprite;
import flixel.group.FlxSpriteGroup;
import flixel.util.FlxColor;
2024-02-07 23:45:13 +00:00
import funkin.graphics.FunkinSprite;
2023-06-16 21:37:56 +00:00
import flixel.tweens.FlxTween;
import flixel.tweens.FlxEase;
import flixel.sound.FlxSound;
2023-06-16 21:37:56 +00:00
import funkin.util.SortUtil;
import flixel.util.FlxSort;
import funkin.modding.events.ScriptEvent;
import funkin.modding.IScriptedClass.IEventHandler;
import funkin.play.cutscene.dialogue.DialogueBox;
import funkin.modding.IScriptedClass.IDialogueScriptedClass;
import funkin.modding.events.ScriptEventDispatcher;
import flixel.addons.display.FlxPieDial;
2024-02-07 23:45:13 +00:00
import funkin.data.dialogue.ConversationData;
import funkin.data.dialogue.ConversationData.DialogueEntryData;
import funkin.data.dialogue.ConversationRegistry;
import funkin.data.dialogue.SpeakerData;
import funkin.data.dialogue.SpeakerRegistry;
import funkin.data.dialogue.DialogueBoxData;
import funkin.data.dialogue.DialogueBoxRegistry;
2023-06-16 21:37:56 +00:00
/**
* A high-level handler for dialogue.
*
2023-06-16 21:37:56 +00:00
* This shit is great for modders but it's pretty elaborate for how much it'll actually be used, lolol. -Eric
*/
2024-02-07 23:45:13 +00:00
class Conversation extends FlxSpriteGroup implements IDialogueScriptedClass implements IRegistryEntry<ConversationData>
2023-06-16 21:37:56 +00:00
{
/**
2024-02-07 23:45:13 +00:00
* The ID of the conversation.
2023-06-16 21:37:56 +00:00
*/
2024-02-07 23:45:13 +00:00
public final id:String;
2023-06-16 21:37:56 +00:00
/**
* The current state of the conversation.
*/
var state:ConversationState = ConversationState.Start;
/**
2024-02-07 23:45:13 +00:00
* Conversation data as parsed from the JSON file.
2023-06-16 21:37:56 +00:00
*/
2024-02-07 23:45:13 +00:00
public final _data:ConversationData;
2023-06-16 21:37:56 +00:00
/**
* The current entry in the dialogue.
*/
var currentDialogueEntry:Int = 0;
2023-08-31 22:47:23 +00:00
var currentDialogueEntryCount(get, never):Int;
2023-06-16 21:37:56 +00:00
function get_currentDialogueEntryCount():Int
{
2024-02-07 23:45:13 +00:00
return _data.dialogue.length;
2023-06-16 21:37:56 +00:00
}
/**
* The current line in the current entry in the dialogue.
* **/
var currentDialogueLine:Int = 0;
2023-08-31 22:47:23 +00:00
var currentDialogueLineCount(get, never):Int;
2023-06-16 21:37:56 +00:00
function get_currentDialogueLineCount():Int
{
return currentDialogueEntryData.text.length;
}
2023-08-31 22:47:23 +00:00
var currentDialogueEntryData(get, never):DialogueEntryData;
2023-06-16 21:37:56 +00:00
function get_currentDialogueEntryData():DialogueEntryData
{
2024-02-07 23:45:13 +00:00
if (_data == null || _data.dialogue == null) return null;
if (currentDialogueEntry < 0 || currentDialogueEntry >= _data.dialogue.length) return null;
2023-06-16 21:37:56 +00:00
2024-02-07 23:45:13 +00:00
return _data.dialogue[currentDialogueEntry];
2023-06-16 21:37:56 +00:00
}
2023-08-31 22:47:23 +00:00
var currentDialogueLineString(get, never):String;
2023-06-16 21:37:56 +00:00
function get_currentDialogueLineString():String
{
return currentDialogueEntryData?.text[currentDialogueLine];
}
/**
* AUDIO
*/
var music:FlxSound;
/**
* GRAPHICS
*/
2024-02-07 23:45:13 +00:00
var backdrop:FunkinSprite;
2023-06-16 21:37:56 +00:00
var currentSpeaker:Speaker;
var currentDialogueBox:DialogueBox;
2024-02-07 23:45:13 +00:00
public function new(id:String)
2023-06-16 21:37:56 +00:00
{
super();
2024-02-07 23:45:13 +00:00
this.id = id;
this._data = _fetchData(id);
2023-06-16 21:37:56 +00:00
2024-02-07 23:45:13 +00:00
if (_data == null)
{
throw 'Could not parse conversation data for id: $id';
}
2023-06-16 21:37:56 +00:00
}
public function onCreate(event:ScriptEvent):Void
{
// Reset the progress in the dialogue.
currentDialogueEntry = 0;
2024-02-28 05:19:08 +00:00
currentDialogueLine = 0;
2023-06-16 21:37:56 +00:00
this.state = ConversationState.Start;
// Start the dialogue.
dispatchEvent(new DialogueScriptEvent(DIALOGUE_START, this, false));
2023-06-16 21:37:56 +00:00
}
function setupMusic():Void
{
2024-02-07 23:45:13 +00:00
if (_data.music == null) return;
2023-06-16 21:37:56 +00:00
2024-02-07 23:45:13 +00:00
music = new FlxSound().loadEmbedded(Paths.music(_data.music.asset), true, true);
2023-06-16 21:37:56 +00:00
music.volume = 0;
2024-02-07 23:45:13 +00:00
if (_data.music.fadeTime > 0.0)
2023-06-16 21:37:56 +00:00
{
2024-02-07 23:45:13 +00:00
FlxTween.tween(music, {volume: 1.0}, _data.music.fadeTime, {ease: FlxEase.linear});
2023-06-16 21:37:56 +00:00
}
else
{
music.volume = 1.0;
}
FlxG.sound.list.add(music);
music.play();
}
public function pauseMusic():Void
{
if (music != null)
{
music.pause();
}
}
public function resumeMusic():Void
{
if (music != null)
{
music.resume();
}
}
2023-06-16 21:37:56 +00:00
function setupBackdrop():Void
{
2024-02-28 05:19:08 +00:00
if (backdrop != null)
{
backdrop.destroy();
remove(backdrop);
2024-02-28 05:19:08 +00:00
backdrop = null;
}
2024-02-07 23:45:13 +00:00
backdrop = new FunkinSprite(0, 0);
2023-06-16 21:37:56 +00:00
2024-02-07 23:45:13 +00:00
if (_data.backdrop == null) return;
2023-06-16 21:37:56 +00:00
// Play intro
2024-02-07 23:45:13 +00:00
switch (_data.backdrop)
2023-06-16 21:37:56 +00:00
{
2024-02-07 23:45:13 +00:00
case SOLID(backdropData):
var targetColor:FlxColor = FlxColor.fromString(backdropData.color);
backdrop.makeSolidColor(Std.int(FlxG.width), Std.int(FlxG.height), targetColor);
if (backdropData.fadeTime > 0.0)
2023-06-16 21:37:56 +00:00
{
backdrop.alpha = 0.0;
2024-02-07 23:45:13 +00:00
FlxTween.tween(backdrop, {alpha: 1.0}, backdropData.fadeTime, {ease: FlxEase.linear});
2023-06-16 21:37:56 +00:00
}
else
{
backdrop.alpha = 1.0;
}
default:
return;
}
backdrop.zIndex = 10;
add(backdrop);
refresh();
}
public override function update(elapsed:Float):Void
{
super.update(elapsed);
dispatchEvent(new UpdateScriptEvent(elapsed));
}
function showCurrentSpeaker():Void
{
var nextSpeakerId:String = currentDialogueEntryData.speaker;
// Skip the next steps if the current speaker is already displayed.
if ((currentSpeaker != null && currentSpeaker.alive) && nextSpeakerId == currentSpeaker.id) return;
2023-06-16 21:37:56 +00:00
if (currentSpeaker != null)
{
remove(currentSpeaker);
currentSpeaker.kill(); // Kill, don't destroy! We want to revive it later.
currentSpeaker = null;
}
2024-02-28 05:19:08 +00:00
var nextSpeaker:Speaker = SpeakerRegistry.instance.fetchEntry(nextSpeakerId);
2023-06-16 21:37:56 +00:00
if (nextSpeaker == null)
{
if (nextSpeakerId == null)
{
trace('Dialogue entry has no speaker.');
}
else
{
trace('Speaker could not be retrieved.');
}
return;
}
2024-02-28 05:19:08 +00:00
if (!nextSpeaker.alive) nextSpeaker.revive();
2023-06-16 21:37:56 +00:00
ScriptEventDispatcher.callEvent(nextSpeaker, new ScriptEvent(CREATE, true));
2023-06-16 21:37:56 +00:00
currentSpeaker = nextSpeaker;
currentSpeaker.zIndex = 200;
add(currentSpeaker);
refresh();
}
function playSpeakerAnimation():Void
{
var nextSpeakerAnimation:String = currentDialogueEntryData.speakerAnimation;
if (nextSpeakerAnimation == null) return;
currentSpeaker.playAnimation(nextSpeakerAnimation);
}
public function refresh():Void
{
sort(SortUtil.byZIndex, FlxSort.ASCENDING);
}
function showCurrentDialogueBox():Void
{
var nextDialogueBoxId:String = currentDialogueEntryData?.box;
// Skip the next steps if the current dialogue box is already displayed.
if ((currentDialogueBox != null && currentDialogueBox.alive) && nextDialogueBoxId == currentDialogueBox.id) return;
2023-06-16 21:37:56 +00:00
if (currentDialogueBox != null)
{
remove(currentDialogueBox);
currentDialogueBox.kill(); // Kill, don't destroy! We want to revive it later.
currentDialogueBox = null;
}
2024-02-07 23:45:13 +00:00
var nextDialogueBox:DialogueBox = DialogueBoxRegistry.instance.fetchEntry(nextDialogueBoxId);
2023-06-16 21:37:56 +00:00
if (nextDialogueBox == null)
{
trace('Dialogue box could not be retrieved.');
return;
}
2024-02-28 05:19:08 +00:00
if (!nextDialogueBox.alive) nextDialogueBox.revive();
2023-06-16 21:37:56 +00:00
ScriptEventDispatcher.callEvent(nextDialogueBox, new ScriptEvent(CREATE, true));
2023-06-16 21:37:56 +00:00
currentDialogueBox = nextDialogueBox;
currentDialogueBox.zIndex = 300;
currentDialogueBox.typingCompleteCallback = this.onTypingComplete;
add(currentDialogueBox);
refresh();
}
function playDialogueBoxAnimation():Void
{
var nextDialogueBoxAnimation:String = currentDialogueEntryData?.boxAnimation;
if (nextDialogueBoxAnimation == null) return;
currentDialogueBox.playAnimation(nextDialogueBoxAnimation);
}
function onTypingComplete():Void
{
if (this.state == ConversationState.Speaking)
{
this.state = ConversationState.Idle;
}
else
{
trace('[WARNING] Unexpected state transition from ${this.state}');
this.state = ConversationState.Idle;
}
}
public function startConversation():Void
{
dispatchEvent(new DialogueScriptEvent(DIALOGUE_START, this, true));
2023-06-16 21:37:56 +00:00
}
/**
* Dispatch an event to attempt to advance the conversation.
* This is done once at the start of the conversation, and once whenever the user presses CONFIRM to advance the conversation.
*
2023-06-16 21:37:56 +00:00
* The broadcast event may be cancelled by modules or ScriptedConversations. This will prevent the conversation from actually advancing.
* This is useful if you want to manually play an animation or something.
*/
public function advanceConversation():Void
{
switch (state)
{
case ConversationState.Start:
dispatchEvent(new DialogueScriptEvent(DIALOGUE_START, this, true));
2023-06-16 21:37:56 +00:00
case ConversationState.Opening:
dispatchEvent(new DialogueScriptEvent(DIALOGUE_COMPLETE_LINE, this, true));
2023-06-16 21:37:56 +00:00
case ConversationState.Speaking:
dispatchEvent(new DialogueScriptEvent(DIALOGUE_COMPLETE_LINE, this, true));
2023-06-16 21:37:56 +00:00
case ConversationState.Idle:
dispatchEvent(new DialogueScriptEvent(DIALOGUE_LINE, this, true));
2023-06-16 21:37:56 +00:00
case ConversationState.Ending:
// Skip the outro.
endOutro();
default:
// Do nothing.
}
}
public function dispatchEvent(event:ScriptEvent):Void
{
var currentState:IEventHandler = cast FlxG.state;
currentState.dispatchEvent(event);
}
/**
* Reset the conversation back to the start.
*/
public function resetConversation():Void
{
// Reset the progress in the dialogue.
currentDialogueEntry = 0;
this.state = ConversationState.Start;
if (outroTween != null)
{
outroTween.cancel();
}
2024-02-28 05:19:08 +00:00
outroTween = null;
2023-06-16 21:37:56 +00:00
2024-02-28 05:19:08 +00:00
if (this.music != null) this.music.stop();
this.music = null;
2023-06-16 21:37:56 +00:00
2024-02-28 05:19:08 +00:00
if (currentSpeaker != null) currentSpeaker.kill();
remove(currentSpeaker);
2024-02-28 05:19:08 +00:00
currentSpeaker = null;
2024-02-28 05:19:08 +00:00
if (currentDialogueBox != null) currentDialogueBox.kill();
remove(currentDialogueBox);
2024-02-28 05:19:08 +00:00
currentDialogueBox = null;
if (backdrop != null) backdrop.destroy();
remove(backdrop);
2024-02-28 05:19:08 +00:00
backdrop = null;
2023-06-16 21:37:56 +00:00
2024-02-28 05:19:08 +00:00
startConversation();
2023-06-16 21:37:56 +00:00
}
/**
* Dispatch an event to attempt to immediately end the conversation.
*
2023-06-16 21:37:56 +00:00
* The broadcast event may be cancelled by modules or ScriptedConversations. This will prevent the conversation from being cancelled.
* This is useful if you want to prevent an animation from being skipped or something.
*/
public function skipConversation():Void
{
dispatchEvent(new DialogueScriptEvent(DIALOGUE_SKIP, this, true));
2023-06-16 21:37:56 +00:00
}
var outroTween:FlxTween;
2023-06-16 21:37:56 +00:00
public function startOutro():Void
{
2024-02-07 23:45:13 +00:00
switch (_data?.outro)
2023-06-16 21:37:56 +00:00
{
2024-02-07 23:45:13 +00:00
case FADE(outroData):
outroTween = FlxTween.tween(this, {alpha: 0.0}, outroData.fadeTime,
2023-06-16 21:37:56 +00:00
{
type: ONESHOT, // holy shit like the game no way
startDelay: 0,
onComplete: (_) -> endOutro(),
});
2024-02-07 23:45:13 +00:00
FlxTween.tween(this.music, {volume: 0.0}, outroData.fadeTime);
case NONE(_):
2023-06-16 21:37:56 +00:00
// Immediately clean up.
endOutro();
default:
// Immediately clean up.
endOutro();
}
}
2024-02-07 23:45:13 +00:00
public var completeCallback:() -> Void;
2023-06-16 21:37:56 +00:00
public function endOutro():Void
{
ScriptEventDispatcher.callEvent(this, new ScriptEvent(DESTROY, false));
2023-06-16 21:37:56 +00:00
}
/**
* Performed as the conversation starts.
*/
public function onDialogueStart(event:DialogueScriptEvent):Void
{
propagateEvent(event);
// Fade in the music and backdrop.
setupMusic();
setupBackdrop();
// Advance the conversation.
state = ConversationState.Opening;
showCurrentDialogueBox();
playDialogueBoxAnimation();
}
/**
* Display the next line of conversation.
*/
public function onDialogueLine(event:DialogueScriptEvent):Void
{
propagateEvent(event);
if (event.eventCanceled) return;
// Perform the actual logic to advance the conversation.
currentDialogueLine += 1;
if (currentDialogueLine >= currentDialogueLineCount)
{
// Open the next entry.
currentDialogueLine = 0;
currentDialogueEntry += 1;
if (currentDialogueEntry >= currentDialogueEntryCount)
{
dispatchEvent(new DialogueScriptEvent(DIALOGUE_END, this, false));
2023-06-16 21:37:56 +00:00
}
else
{
if (state == Idle)
{
showCurrentDialogueBox();
playDialogueBoxAnimation();
state = Opening;
}
}
}
else
{
// Continue the dialog with more lines.
state = Speaking;
currentDialogueBox.appendText(currentDialogueLineString);
}
}
/**
* Skip the scrolling of the next line of conversation.
*/
public function onDialogueCompleteLine(event:DialogueScriptEvent):Void
{
propagateEvent(event);
if (event.eventCanceled) return;
currentDialogueBox.skip();
}
/**
* Skip to the end of the conversation, immediately triggering the DIALOGUE_END event.
*/
public function onDialogueSkip(event:DialogueScriptEvent):Void
{
propagateEvent(event);
if (event.eventCanceled) return;
dispatchEvent(new DialogueScriptEvent(DIALOGUE_END, this, false));
2023-06-16 21:37:56 +00:00
}
public function onDialogueEnd(event:DialogueScriptEvent):Void
{
propagateEvent(event);
state = Ending;
}
// Only used for events/scripts.
public function onUpdate(event:UpdateScriptEvent):Void
{
propagateEvent(event);
if (event.eventCanceled) return;
switch (state)
{
case ConversationState.Start:
// Wait for advance() to be called and DIALOGUE_LINE to be dispatched.
return;
case ConversationState.Opening:
// Backdrop animation should have started.
// Box animations should have started.
if (currentDialogueBox != null
&& (currentDialogueBox.isAnimationFinished()
|| currentDialogueBox.getCurrentAnimation() != currentDialogueEntryData?.boxAnimation))
{
// Box animations have finished.
// Start playing the speaker animation.
state = ConversationState.Speaking;
showCurrentSpeaker();
playSpeakerAnimation();
currentDialogueBox.setText(currentDialogueLineString);
}
return;
case ConversationState.Speaking:
// Speaker animation should be playing.
return;
case ConversationState.Idle:
// Waiting for user input via `advanceConversation()`.
return;
case ConversationState.Ending:
if (outroTween == null) startOutro();
return;
}
}
public function onDestroy(event:ScriptEvent):Void
{
propagateEvent(event);
if (outroTween != null)
{
outroTween.cancel();
}
2023-06-16 21:37:56 +00:00
outroTween = null;
if (this.music != null) this.music.stop();
this.music = null;
if (currentSpeaker != null) currentSpeaker.kill();
2024-02-28 05:19:08 +00:00
remove(currentSpeaker);
2023-06-16 21:37:56 +00:00
currentSpeaker = null;
2024-02-28 05:19:08 +00:00
2023-06-16 21:37:56 +00:00
if (currentDialogueBox != null) currentDialogueBox.kill();
2024-02-28 05:19:08 +00:00
remove(currentDialogueBox);
2023-06-16 21:37:56 +00:00
currentDialogueBox = null;
2024-02-28 05:19:08 +00:00
if (backdrop != null) backdrop.destroy();
2024-02-28 05:19:08 +00:00
remove(backdrop);
2023-06-16 21:37:56 +00:00
backdrop = null;
this.clear();
if (completeCallback != null) completeCallback();
}
public function onScriptEvent(event:ScriptEvent):Void
{
propagateEvent(event);
}
/**
* As this event is dispatched to the Conversation, it is also dispatched to the active speaker.
* @param event
2023-06-16 21:37:56 +00:00
*/
function propagateEvent(event:ScriptEvent):Void
{
if (this.currentDialogueBox != null && this.currentDialogueBox.exists)
2023-06-16 21:37:56 +00:00
{
ScriptEventDispatcher.callEvent(this.currentDialogueBox, event);
}
if (this.currentSpeaker != null && this.currentSpeaker.exists)
2023-06-16 21:37:56 +00:00
{
ScriptEventDispatcher.callEvent(this.currentSpeaker, event);
}
}
/**
* Calls `kill()` on the group's members and then on the group itself.
* You can revive this group later via `revive()` after this.
*/
public override function revive():Void
{
super.revive();
this.alpha = 1;
this.visible = true;
}
/**
* Calls `kill()` on the group's members and then on the group itself.
* You can revive this group later via `revive()` after this.
*/
public override function kill():Void
{
_skipTransformChildren = true;
alive = false;
exists = false;
_skipTransformChildren = false;
if (group != null) group.kill();
if (outroTween != null)
{
outroTween.cancel();
outroTween = null;
}
}
2023-06-16 21:37:56 +00:00
public override function toString():String
{
2024-02-07 23:45:13 +00:00
return 'Conversation($id)';
}
static function _fetchData(id:String):Null<ConversationData>
{
return ConversationRegistry.instance.parseEntryDataWithMigration(id, ConversationRegistry.instance.fetchEntryVersion(id));
2023-06-16 21:37:56 +00:00
}
}
// Managing things with a single enum is a lot easier than a multitude of flags.
enum ConversationState
{
/**
* State hasn't been initialized yet.
*/
Start;
/**
* A dialog is animating. If the dialog is static, this may only last for one frame.
*/
Opening;
/**
* Text is scrolling and audio is playing. Speaker portrait is probably animating too.
*/
Speaking;
/**
* Text is done scrolling and game is waiting for user to open another dialog.
*/
Idle;
/**
* Fade out and leave conversation.
*/
Ending;
}