1
0
mirror of synced 2024-12-02 19:17:24 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Paths/LapPaths.cs

145 lines
4.3 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Threading.Tasks;
using GL_EditorFramework.EditorDrawables;
using OpenTK;
namespace FirstPlugin.Turbo.CourseMuuntStructs
{
public class LapPathGroup : BasePathGroup, IObject
{
public const string N_LapPathGroup = "LapPathGroup";
public const string N_ReturnPointsError = "ReturnPointsError";
public const string N_UnitIdNum = "UnitIdNum";
public List<ReturnPoint> ReturnPoints = new List<ReturnPoint>();
public LapPathGroup(dynamic bymlNode)
{
if (bymlNode is Dictionary<string, dynamic>) Prop = (Dictionary<string, dynamic>)bymlNode;
else throw new Exception("Not a dictionary");
foreach (var point in this["PathPt"])
{
PathPoints.Add(new LapPathPoint(point));
}
foreach (var point in this["ReturnPoints"])
{
ReturnPoints.Add(new ReturnPoint(point));
}
}
[Browsable(false)]
public Dictionary<string, dynamic> Prop { get; set; } = new Dictionary<string, dynamic>();
public int LapPathGroupId
{
get { return this[N_LapPathGroup]; }
set { this[N_LapPathGroup] = value; }
}
public int ReturnPointsError
{
get { return this[N_ReturnPointsError]; }
set { this[N_ReturnPointsError] = value; }
}
public int UnitIdNum
{
get { return this[N_UnitIdNum]; }
set { this[N_UnitIdNum] = value; }
}
public dynamic this[string name]
{
get
{
if (Prop.ContainsKey(name)) return Prop[name];
else return null;
}
set
{
if (Prop.ContainsKey(name)) Prop[name] = value;
else Prop.Add(name, value);
}
}
}
public class LapPathPoint : BasePathPoint
{
private RenderablePathPoint renderablePoint;
[Browsable(false)]
public override RenderablePathPoint RenderablePoint
{
get
{
if (renderablePoint == null)
renderablePoint = new RenderablePathPoint(new Vector4(0f, 0.25f, 1f, 0.1f), Translate, Rotate, Scale, this);
return renderablePoint;
}
}
[Category("Properties")]
public int CheckPoint
{
get { return this["CheckPoint"] != null ? this["CheckPoint"] : -255; }
set { if (value != -255) this["CheckPoint"] = value; }
}
[Category("Properties")]
public int ClipIdx
{
get { return this["ClipIdx"] != null ? this["ClipIdx"] : -255; }
set { if (value != -255) this["ClipIdx"] = value; }
}
[Category("Properties")]
public bool HeadLightSW
{
get { return this["HeadLightSW"] != null ? this["HeadLightSW"] : false; }
set { this["HeadLightSW"] = value; }
}
[Category("Properties")]
public int LapCheck
{
get { return this["LapCheck"] != null ? this["LapCheck"] : -255; }
set { if (value != -255) this["LapCheck"] = value; }
}
[Category("Properties")]
public int MapCameraFovy
{
get { return this["MapCameraFovy"] != null ? this["MapCameraFovy"] : -255; }
set { if (value != -255) this["MapCameraFovy"] = value; }
}
[Category("Properties")]
public int MapCameraY
{
get { return this["MapCameraY"] != null ? this["MapCameraY"] : -255; }
set { if (value != -255) this["MapCameraY"] = value; }
}
public LapPathPoint(dynamic bymlNode)
{
if (bymlNode is Dictionary<string, dynamic>) Prop = (Dictionary<string, dynamic>)bymlNode;
else throw new Exception("Not a dictionary");
foreach (var point in this["NextPt"])
{
NextPoints.Add(new PointID(point));
}
foreach (var point in this["PrevPt"])
{
PrevPoints.Add(new PointID(point));
}
}
}
}