|
|
|
// This code is part of the Fungus library (http://fungusgames.com) maintained by Chris Gregan (http://twitter.com/gofungus).
|
|
|
|
// It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
|
|
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.Serialization;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Fungus
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Displays a button in a multiple choice menu.
|
|
|
|
/// </summary>
|
|
|
|
[CommandInfo("Narrative",
|
|
|
|
"Menu",
|
|
|
|
"Displays a button in a multiple choice menu")]
|
|
|
|
[AddComponentMenu("")]
|
|
|
|
public class Menu : Command, ILocalizable
|
|
|
|
{
|
|
|
|
[Tooltip("Text to display on the menu button")]
|
|
|
|
[SerializeField] protected string text = "Option Text";
|
|
|
|
|
|
|
|
[Tooltip("Notes about the option text for other authors, localization, etc.")]
|
|
|
|
[SerializeField] protected string description = "";
|
|
|
|
|
|
|
|
[FormerlySerializedAs("targetSequence")]
|
|
|
|
[Tooltip("Block to execute when this option is selected")]
|
|
|
|
[SerializeField] protected Block targetBlock;
|
|
|
|
|
|
|
|
[Tooltip("Hide this option if the target block has been executed previously")]
|
|
|
|
[SerializeField] protected bool hideIfVisited;
|
|
|
|
|
|
|
|
[Tooltip("If false, the menu option will be displayed but will not be selectable")]
|
|
|
|
[SerializeField] protected BooleanData interactable = new BooleanData(true);
|
|
|
|
|
|
|
|
[Tooltip("A custom Menu Dialog to use to display this menu. All subsequent Menu commands will use this dialog.")]
|
|
|
|
[SerializeField] protected MenuDialog setMenuDialog;
|
|
|
|
|
|
|
|
public override void OnEnter()
|
|
|
|
{
|
|
|
|
if (setMenuDialog != null)
|
|
|
|
{
|
|
|
|
// Override the active menu dialog
|
|
|
|
MenuDialog.activeMenuDialog = setMenuDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hideOption = (hideIfVisited && targetBlock != null && targetBlock.GetExecutionCount() > 0);
|
|
|
|
|
|
|
|
if (!hideOption)
|
|
|
|
{
|
|
|
|
IMenuDialog menuDialog = MenuDialog.GetMenuDialog();
|
|
|
|
if (menuDialog != null)
|
|
|
|
{
|
|
|
|
menuDialog.SetActive(true);
|
|
|
|
|
|
|
|
var flowchart = GetFlowchart();
|
|
|
|
string displayText = flowchart.SubstituteVariables(text);
|
|
|
|
|
|
|
|
menuDialog.AddOption(displayText, interactable, targetBlock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Continue();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void GetConnectedBlocks(ref List<Block> connectedBlocks)
|
|
|
|
{
|
|
|
|
if (targetBlock != null)
|
|
|
|
{
|
|
|
|
connectedBlocks.Add(targetBlock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string GetSummary()
|
|
|
|
{
|
|
|
|
if (targetBlock == null)
|
|
|
|
{
|
|
|
|
return "Error: No target block selected";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (text == "")
|
|
|
|
{
|
|
|
|
return "Error: No button text selected";
|
|
|
|
}
|
|
|
|
|
|
|
|
return text + " : " + targetBlock.BlockName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override Color GetButtonColor()
|
|
|
|
{
|
|
|
|
return new Color32(184, 210, 235, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
#region ILocalizable implementation
|
|
|
|
|
|
|
|
public virtual string GetStandardText()
|
|
|
|
{
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual void SetStandardText(string standardText)
|
|
|
|
{
|
|
|
|
text = standardText;
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual string GetDescription()
|
|
|
|
{
|
|
|
|
return description;
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual string GetStringId()
|
|
|
|
{
|
|
|
|
// String id for Menu commands is MENU.<Localization Id>.<Command id>
|
|
|
|
return "MENU." + GetFlowchartLocalizationId() + "." + itemId;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|