109 lines
2.6 KiB
C#
109 lines
2.6 KiB
C#
using Godot;
|
|
using GC = Godot.Collections;
|
|
using System;
|
|
|
|
public static class DialogicSharp
|
|
{
|
|
private static Script _dialogic = GD.Load<Script>("res://addons/dialogic/Other/DialogicClass.gd");
|
|
private const String DEFAULT_DIALOG_RESOURCE = "res://addons/dialogic/Dialog.tscn";
|
|
|
|
public static String CurrentTimeline
|
|
{
|
|
get
|
|
{
|
|
return (String)_dialogic.Call("get_current_timeline");
|
|
}
|
|
set
|
|
{
|
|
_dialogic.Call("set_current_timeline", value);
|
|
}
|
|
}
|
|
|
|
public static GC.Dictionary Definitions
|
|
{
|
|
get
|
|
{
|
|
return (GC.Dictionary)_dialogic.Call("get_definitions");
|
|
}
|
|
}
|
|
|
|
public static GC.Dictionary DefaultDefinitions
|
|
{
|
|
get
|
|
{
|
|
return (GC.Dictionary)_dialogic.Call("get_default_definitions");
|
|
}
|
|
}
|
|
|
|
public static bool Autosave
|
|
{
|
|
get
|
|
{
|
|
return (bool)_dialogic.Call("get_autosave");
|
|
}
|
|
set
|
|
{
|
|
_dialogic.Call("set_autosave", value);
|
|
}
|
|
}
|
|
|
|
public static Node Start(String timeline, bool resetSaves = true, bool debugMode = false)
|
|
{
|
|
return Start<Node>(timeline, DEFAULT_DIALOG_RESOURCE, resetSaves, debugMode);
|
|
}
|
|
|
|
public static T Start<T>(String timeline, String dialogScenePath, bool resetSaves = true, bool debugMode = false) where T : class
|
|
{
|
|
return (T)_dialogic.Call("start", timeline, resetSaves, dialogScenePath, debugMode);
|
|
}
|
|
|
|
public static Node StartFromSave(String timeline, bool debugMode = false)
|
|
{
|
|
return StartFromSave<Node>(timeline, DEFAULT_DIALOG_RESOURCE, debugMode);
|
|
}
|
|
|
|
public static T StartFromSave<T>(String timeline, String dialogScenePath, bool debugMode = false) where T : class
|
|
{
|
|
return (T)_dialogic.Call("start", timeline, dialogScenePath, debugMode);
|
|
}
|
|
|
|
public static String GetVariable(String name)
|
|
{
|
|
return (String)_dialogic.Call("get_variable", name);
|
|
}
|
|
|
|
public static void SetVariable(String name, String value)
|
|
{
|
|
_dialogic.Call("set_variable", name, value);
|
|
}
|
|
|
|
public static GC.Dictionary GetGlossary(String name)
|
|
{
|
|
return (GC.Dictionary)_dialogic.Call("get_glossary", name);
|
|
}
|
|
|
|
public static void SetGlossary(String name, String title, String text, String extra)
|
|
{
|
|
_dialogic.Call("set_glossary", name, title, text, extra);
|
|
}
|
|
|
|
public static void ResetSaves()
|
|
{
|
|
_dialogic.Call("reset_saves");
|
|
}
|
|
|
|
public static Error SaveDefinitions()
|
|
{
|
|
return (Error)_dialogic.Call("save_definitions");
|
|
}
|
|
|
|
public static GC.Dictionary Export()
|
|
{
|
|
return (GC.Dictionary)_dialogic.Call("export");
|
|
}
|
|
|
|
public static void Import(GC.Dictionary data)
|
|
{
|
|
_dialogic.Call("import", data);
|
|
}
|
|
}
|