2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

450 lines
14 KiB
C#

2 years ago
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using Articy.Unity;
using Articy.Unity.Interfaces;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace Articy.Touhou
{
public class DialogueFragment : ArticyObject, IDialogueFragment, IPropertyProvider, IInputPinsOwner, IOutputPinsOwner, IObjectWithColor, IObjectWithMenuText, IObjectWithUnresolvedMenuText, IObjectWithSpeaker, IObjectWithStageDirections, IObjectWithUnresolvedStageDirections, IObjectWithText, IObjectWithUnresolvedText, IObjectWithExternalId, IObjectWithShortId, IObjectWithPosition, IObjectWithZIndex, IObjectWithSize
{
[SerializeField()]
private String mMenuText;
[SerializeField()]
private String mStageDirections;
[SerializeField()]
private ArticyValueArticyObject mSpeaker = new ArticyValueArticyObject();
[SerializeField()]
private Single mSplitHeight;
[SerializeField()]
private Color mColor;
[SerializeField()]
private String mText;
[SerializeField()]
private String mExternalId;
[SerializeField()]
private Vector2 mPosition;
[SerializeField()]
private Single mZIndex;
[SerializeField()]
private Vector2 mSize;
[SerializeField()]
private UInt32 mShortId;
[SerializeField()]
private ArticyValueListInputPin mInputPins = new ArticyValueListInputPin();
[SerializeField()]
private ArticyValueListOutputPin mOutputPins = new ArticyValueListOutputPin();
public String Unresolved_MenuText
{
get
{
return mMenuText;
}
}
public String MenuText
{
get
{
return Articy.Unity.ArticyTextExtension.Resolve(this, mMenuText);
}
set
{
var oldValue = mMenuText;
mMenuText = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "MenuText", oldValue, mMenuText);
}
}
public String Unresolved_StageDirections
{
get
{
return mStageDirections;
}
}
public String StageDirections
{
get
{
return Articy.Unity.ArticyTextExtension.Resolve(this, mStageDirections);
}
set
{
var oldValue = mStageDirections;
mStageDirections = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "StageDirections", oldValue, mStageDirections);
}
}
public ArticyObject Speaker
{
get
{
return mSpeaker.GetValue();
}
set
{
var oldValue = mSpeaker;
mSpeaker.SetValue(value);
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "Speaker", oldValue.GetValue(), mSpeaker.GetValue());
}
}
public Single SplitHeight
{
get
{
return mSplitHeight;
}
set
{
var oldValue = mSplitHeight;
mSplitHeight = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "SplitHeight", oldValue, mSplitHeight);
}
}
public Color Color
{
get
{
return mColor;
}
set
{
var oldValue = mColor;
mColor = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "Color", oldValue, mColor);
}
}
public String Unresolved_Text
{
get
{
return mText;
}
}
public String Text
{
get
{
return Articy.Unity.ArticyTextExtension.Resolve(this, mText);
}
set
{
var oldValue = mText;
mText = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "Text", oldValue, mText);
}
}
public String ExternalId
{
get
{
return mExternalId;
}
set
{
var oldValue = mExternalId;
mExternalId = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "ExternalId", oldValue, mExternalId);
}
}
public Vector2 Position
{
get
{
return mPosition;
}
set
{
var oldValue = mPosition;
mPosition = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "Position", oldValue, mPosition);
}
}
public Single ZIndex
{
get
{
return mZIndex;
}
set
{
var oldValue = mZIndex;
mZIndex = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "ZIndex", oldValue, mZIndex);
}
}
public Vector2 Size
{
get
{
return mSize;
}
set
{
var oldValue = mSize;
mSize = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "Size", oldValue, mSize);
}
}
public UInt32 ShortId
{
get
{
return mShortId;
}
set
{
var oldValue = mShortId;
mShortId = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "ShortId", oldValue, mShortId);
}
}
public List<InputPin> InputPins
{
get
{
return mInputPins.GetValue();
}
set
{
var oldValue = mInputPins;
mInputPins.SetValue(value);
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "InputPins", oldValue.GetValue(), mInputPins.GetValue());
}
}
public List<OutputPin> OutputPins
{
get
{
return mOutputPins.GetValue();
}
set
{
var oldValue = mOutputPins;
mOutputPins.SetValue(value);
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(Id, InstanceId, "OutputPins", oldValue.GetValue(), mOutputPins.GetValue());
}
}
public List<Articy.Unity.Interfaces.IInputPin> GetInputPins()
{
return InputPins.Cast<IInputPin>().ToList();
}
public List<Articy.Unity.Interfaces.IOutputPin> GetOutputPins()
{
return OutputPins.Cast<IOutputPin>().ToList();
}
protected override void CloneProperties(object aClone, Articy.Unity.ArticyObject aFirstClassParent)
{
DialogueFragment newClone = ((DialogueFragment)(aClone));
newClone.MenuText = Unresolved_MenuText;
newClone.StageDirections = Unresolved_StageDirections;
if ((mSpeaker != null))
{
newClone.mSpeaker = ((ArticyValueArticyObject)(mSpeaker.CloneObject(newClone, aFirstClassParent)));
}
newClone.SplitHeight = SplitHeight;
newClone.Color = Color;
newClone.Text = Unresolved_Text;
newClone.ExternalId = ExternalId;
newClone.Position = Position;
newClone.ZIndex = ZIndex;
newClone.Size = Size;
newClone.ShortId = ShortId;
List<InputPin> temp_InputPins = new List<InputPin>();
int i = 0;
for (i = 0; (i < InputPins.Count); i = (i + 1))
{
temp_InputPins.Add(((InputPin)(InputPins[i].CloneObject(newClone, aFirstClassParent))));
}
newClone.InputPins = temp_InputPins;
List<OutputPin> temp_OutputPins = new List<OutputPin>();
for (i = 0; (i < OutputPins.Count); i = (i + 1))
{
temp_OutputPins.Add(((OutputPin)(OutputPins[i].CloneObject(newClone, aFirstClassParent))));
}
newClone.OutputPins = temp_OutputPins;
base.CloneProperties(newClone, aFirstClassParent);
}
public override bool IsLocalizedPropertyOverwritten(string aProperty)
{
return base.IsLocalizedPropertyOverwritten(aProperty);
}
#region property provider interface
public override void setProp(string aProperty, object aValue)
{
if ((aProperty == "MenuText"))
{
MenuText = System.Convert.ToString(aValue);
return;
}
if ((aProperty == "StageDirections"))
{
StageDirections = System.Convert.ToString(aValue);
return;
}
if ((aProperty == "Speaker"))
{
Speaker = Articy.Unity.Interfaces.BaseScriptFragments.ObjectToModelRep(aValue);
return;
}
if ((aProperty == "SplitHeight"))
{
SplitHeight = System.Convert.ToSingle(aValue);
return;
}
if ((aProperty == "Color"))
{
Color = ((Color)(aValue));
return;
}
if ((aProperty == "Text"))
{
Text = System.Convert.ToString(aValue);
return;
}
if ((aProperty == "ExternalId"))
{
ExternalId = System.Convert.ToString(aValue);
return;
}
if ((aProperty == "Position"))
{
Position = ((Vector2)(aValue));
return;
}
if ((aProperty == "ZIndex"))
{
ZIndex = System.Convert.ToSingle(aValue);
return;
}
if ((aProperty == "Size"))
{
Size = ((Vector2)(aValue));
return;
}
if ((aProperty == "ShortId"))
{
ShortId = ((UInt32)(aValue));
return;
}
if ((aProperty == "InputPins"))
{
InputPins = ((List<InputPin>)(aValue));
return;
}
if ((aProperty == "OutputPins"))
{
OutputPins = ((List<OutputPin>)(aValue));
return;
}
base.setProp(aProperty, aValue);
}
public override Articy.Unity.Interfaces.ScriptDataProxy getProp(string aProperty)
{
if ((aProperty == "MenuText"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(MenuText);
}
if ((aProperty == "StageDirections"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(StageDirections);
}
if ((aProperty == "Speaker"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(Speaker);
}
if ((aProperty == "SplitHeight"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(SplitHeight);
}
if ((aProperty == "Color"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(Color);
}
if ((aProperty == "Text"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(Text);
}
if ((aProperty == "ExternalId"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(ExternalId);
}
if ((aProperty == "Position"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(Position);
}
if ((aProperty == "ZIndex"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(ZIndex);
}
if ((aProperty == "Size"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(Size);
}
if ((aProperty == "ShortId"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(ShortId);
}
if ((aProperty == "InputPins"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(InputPins);
}
if ((aProperty == "OutputPins"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(OutputPins);
}
return base.getProp(aProperty);
}
#endregion
}
}