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

122 lines
3.5 KiB
C#
Raw Normal View History

2019-04-07 03:30:25 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using GL_EditorFramework.EditorDrawables;
using GL_EditorFramework.GL_Core;
using GL_EditorFramework.Interfaces;
using OpenTK.Graphics.OpenGL;
using OpenTK;
using System.Drawing;
using Switch_Toolbox.Library;
namespace FirstPlugin.Turbo.CourseMuuntStructs
{
2019-04-08 03:14:39 +02:00
public class GlidePathGroup : BasePathGroup, IObject
2019-04-07 03:30:25 +02:00
{
public const string N_GlidePathGroup = "GlidePathGroup";
public const string N_UnitIdNum = "UnitIdNum";
public GlidePathGroup(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"])
{
2019-04-07 23:54:37 +02:00
PathPoints.Add(new GlidePathPoint(point));
2019-04-07 03:30:25 +02:00
}
ConnectGroups = false;
}
[Browsable(false)]
public Dictionary<string, dynamic> Prop { get; set; } = new Dictionary<string, dynamic>();
public int GlidePathGroupId
{
get { return this[N_GlidePathGroup]; }
set { this[N_GlidePathGroup] = 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);
}
}
}
2019-04-08 03:14:39 +02:00
public class GlidePathPoint : BasePathPoint
2019-04-07 03:30:25 +02:00
{
2019-04-07 03:45:25 +02:00
private RenderablePathPoint renderablePoint;
2019-04-07 03:30:25 +02:00
[Browsable(false)]
public override RenderablePathPoint RenderablePoint
{
get
{
2019-04-07 03:45:25 +02:00
if (renderablePoint == null)
renderablePoint = new RenderablePathPoint(ColorUtility.ToVector4(Color.FromArgb(252, 93, 11)), Translate, Rotate, new OpenTK.Vector3(30), this);
return renderablePoint;
2019-04-07 03:30:25 +02:00
}
}
[Category("Properties")]
public int GlideType
{
2019-04-07 23:54:37 +02:00
get { return (this["GlideType"] != null) ? this["GlideType"] : -1; }
2019-04-07 03:30:25 +02:00
set { this["GlideType"] = value; }
}
[Category("Properties")]
public bool IsUp
{
2019-04-07 23:54:37 +02:00
get { return (this["IsUp"] != null) ? this["IsUp"] : false; }
2019-04-07 03:30:25 +02:00
set { this["IsUp"] = value; }
}
[Category("Properties")]
public int Ascend
{
2019-04-07 23:54:37 +02:00
get { return (this["Ascend"] != null) ? this["Ascend"] : -1; }
2019-04-07 03:30:25 +02:00
set { this["Ascend"] = value; }
}
[Category("Properties")]
public bool Cannon
{
2019-04-07 23:54:37 +02:00
get { return (this["Cannon"] != null) ? this["Cannon"] : false; }
2019-04-07 03:30:25 +02:00
set { this["Cannon"] = value; }
}
public GlidePathPoint(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));
}
}
}
}