2019-08-29 20:33:23 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Syroot.Maths;
|
|
|
|
|
using Toolbox.Library.IO;
|
2019-08-29 21:17:24 +00:00
|
|
|
|
using Toolbox.Library;
|
2019-08-29 23:01:47 +00:00
|
|
|
|
using WeifenLuo.WinFormsUI.Docking;
|
2019-08-31 01:53:00 +00:00
|
|
|
|
using System.ComponentModel;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
|
|
|
|
namespace LayoutBXLYT
|
|
|
|
|
{
|
|
|
|
|
public class BasePane : SectionCommon
|
|
|
|
|
{
|
2019-09-06 23:12:39 +00:00
|
|
|
|
public bool IsRoot = false;
|
|
|
|
|
|
|
|
|
|
public bool ParentIsRoot
|
|
|
|
|
{
|
|
|
|
|
get { return Parent != null && Parent.IsRoot; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-12 22:52:47 +00:00
|
|
|
|
internal RenderablePane renderablePane;
|
|
|
|
|
|
2019-09-02 21:10:24 +00:00
|
|
|
|
[DisplayName("Alpha"), CategoryAttribute("Alpha")]
|
|
|
|
|
public byte Alpha { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Influence Alpha"), CategoryAttribute("Alpha")]
|
|
|
|
|
public virtual bool InfluenceAlpha { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[Browsable(false)]
|
2019-09-05 20:24:03 +00:00
|
|
|
|
public virtual bool DisplayInEditor { get; set; } = true;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[DisplayName("Name"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[DisplayName("Translate"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public Vector3F Translate { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Rotate"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public Vector3F Rotate { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Scale"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public Vector2F Scale { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Width"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public float Width { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
2019-09-08 19:15:42 +00:00
|
|
|
|
[DisplayName("Height"), CategoryAttribute("Pane")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public float Height { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[DisplayName("Origin X"), CategoryAttribute("Origin")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public virtual OriginX originX { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Origin X"), CategoryAttribute("Origin")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public virtual OriginY originY { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
[DisplayName("Parent Origin X"), CategoryAttribute("Origin")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public virtual OriginX ParentOriginX { get; set; }
|
2019-08-31 01:53:00 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
[DisplayName("Parent Origin Y"), CategoryAttribute("Origin")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public virtual OriginY ParentOriginY { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public BasePane Parent { get; set; }
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public List<BasePane> Childern { get; set; } = new List<BasePane>();
|
|
|
|
|
|
2019-08-31 01:53:00 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public bool HasChildern
|
|
|
|
|
{
|
|
|
|
|
get { return Childern.Count > 0; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-30 22:53:45 +00:00
|
|
|
|
public BasePane()
|
|
|
|
|
{
|
|
|
|
|
originX = OriginX.Center;
|
|
|
|
|
originY = OriginY.Center;
|
|
|
|
|
ParentOriginX = OriginX.Center;
|
|
|
|
|
ParentOriginY = OriginY.Center;
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-02 23:48:47 +00:00
|
|
|
|
private CustomRectangle rectangle;
|
2019-09-08 19:15:42 +00:00
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
2019-09-02 23:48:47 +00:00
|
|
|
|
public CustomRectangle Rectangle
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2019-09-06 23:12:39 +00:00
|
|
|
|
UpdateRectangle();
|
2019-09-02 23:48:47 +00:00
|
|
|
|
return rectangle;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-16 23:56:41 +00:00
|
|
|
|
private void UpdateRectangle()
|
|
|
|
|
{
|
2019-09-02 23:48:47 +00:00
|
|
|
|
rectangle = CreateRectangle();
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 22:42:48 +00:00
|
|
|
|
public CustomRectangle CreateRectangle(uint width, uint height)
|
|
|
|
|
{
|
|
|
|
|
//Do origin transforms
|
|
|
|
|
var transformed = TransformOrientation((int)width, (int)height, originX, originY);
|
|
|
|
|
var parentTransform = ParentOriginTransform(transformed);
|
|
|
|
|
|
|
|
|
|
return new CustomRectangle(
|
|
|
|
|
parentTransform.X,
|
|
|
|
|
parentTransform.Y,
|
|
|
|
|
parentTransform.Z,
|
|
|
|
|
parentTransform.W);
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public CustomRectangle CreateRectangle()
|
|
|
|
|
{
|
|
|
|
|
//Do origin transforms
|
2019-09-06 23:12:39 +00:00
|
|
|
|
var transformed = TransformOrientation((int)Width, (int)Height, originX, originY);
|
|
|
|
|
var parentTransform = ParentOriginTransform(transformed);
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
return new CustomRectangle(
|
|
|
|
|
parentTransform.X,
|
|
|
|
|
parentTransform.Y,
|
|
|
|
|
parentTransform.Z,
|
|
|
|
|
parentTransform.W);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-19 22:02:10 +00:00
|
|
|
|
public static float MixColors(params float[] c)
|
|
|
|
|
{
|
|
|
|
|
float a = c[0];
|
|
|
|
|
for (int i = 1; i < c.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
a *= c[i];
|
|
|
|
|
}
|
|
|
|
|
for (int i = 1; i < c.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
a /= 255f;
|
|
|
|
|
}
|
|
|
|
|
return a / 255f;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
//Get the previous transform from the parent origin
|
|
|
|
|
private Vector4 ParentOriginTransform(Vector4 points)
|
|
|
|
|
{
|
|
|
|
|
//Dont shift the root or the first child of the root
|
|
|
|
|
//The parent setting shouldn't be set, but it doesn't hurt to do this
|
|
|
|
|
if (IsRoot || ParentIsRoot || Parent == null)
|
|
|
|
|
return points;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
var transformedPosition = TransformOrientationPosition((int)Parent.Width, (int)Parent.Height, ParentOriginX, ParentOriginY);
|
|
|
|
|
var transformed = ShiftRectangle(transformedPosition, points);
|
|
|
|
|
if (Parent != null)
|
|
|
|
|
return Parent.ParentOriginTransform(transformed);
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
return transformed;
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
private static Vector4 ShiftRectangle(Vector2 position, Vector4 points)
|
|
|
|
|
{
|
|
|
|
|
int left = points[0] + position.X;
|
|
|
|
|
int right = points[1] + position.X;
|
|
|
|
|
int top = points[2] + position.Y;
|
|
|
|
|
int bottom = points[3] + position.Y;
|
|
|
|
|
return new Vector4(left, right, top, bottom);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static Vector2 TransformOrientationPosition(int Width, int Height, OriginX originX, OriginY originY)
|
|
|
|
|
{
|
|
|
|
|
int x = 0;
|
|
|
|
|
int y = 0;
|
|
|
|
|
|
|
|
|
|
if (originX == OriginX.Left)
|
|
|
|
|
x = -(Width / 2);
|
|
|
|
|
else if (originX == OriginX.Right)
|
|
|
|
|
x = (Width / 2);
|
|
|
|
|
|
|
|
|
|
if (originY == OriginY.Top)
|
|
|
|
|
y = Height / 2;
|
|
|
|
|
else if (originY == OriginY.Bottom)
|
|
|
|
|
y = -(Height / 2);
|
|
|
|
|
|
2019-09-16 23:56:41 +00:00
|
|
|
|
return new Vector2(x, y);
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-06 23:12:39 +00:00
|
|
|
|
private static Vector4 TransformOrientation(int Width, int Height, OriginX originX, OriginY originY)
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
|
|
|
|
int left = 0;
|
|
|
|
|
int right = 0;
|
|
|
|
|
int top = 0;
|
|
|
|
|
int bottom = 0;
|
|
|
|
|
|
|
|
|
|
if (originX == OriginX.Left)
|
|
|
|
|
right = Width;
|
|
|
|
|
else if (originX == OriginX.Right)
|
|
|
|
|
left = -Width;
|
|
|
|
|
else //To center
|
|
|
|
|
{
|
|
|
|
|
left = -Width / 2;
|
|
|
|
|
right = Width / 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (originY == OriginY.Top)
|
2019-09-08 19:15:42 +00:00
|
|
|
|
bottom = -Height;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
else if (originY == OriginY.Bottom)
|
2019-09-08 19:15:42 +00:00
|
|
|
|
top = Height;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
else //To center
|
|
|
|
|
{
|
2019-09-09 22:37:33 +00:00
|
|
|
|
top = Height / 2;
|
|
|
|
|
bottom = -Height / 2;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new Vector4(left, right, top, bottom);
|
|
|
|
|
}
|
2019-09-02 23:48:47 +00:00
|
|
|
|
|
|
|
|
|
public bool IsHit(int X, int Y)
|
|
|
|
|
{
|
2019-09-03 22:58:58 +00:00
|
|
|
|
if ((X > Translate.X) && (X < Translate.X + Width) &&
|
|
|
|
|
(Y > Translate.Y) && (Y < Translate.Y + Height))
|
2019-09-02 23:48:47 +00:00
|
|
|
|
return true;
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 00:47:19 +00:00
|
|
|
|
public enum FilterMode
|
|
|
|
|
{
|
|
|
|
|
Near = 0,
|
|
|
|
|
Linear = 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum WrapMode
|
|
|
|
|
{
|
|
|
|
|
Clamp = 0,
|
|
|
|
|
Repeat = 1,
|
|
|
|
|
Mirror = 2
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public enum OriginX : byte
|
|
|
|
|
{
|
|
|
|
|
Center = 0,
|
|
|
|
|
Left = 1,
|
|
|
|
|
Right = 2
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public enum OriginY : byte
|
|
|
|
|
{
|
|
|
|
|
Center = 0,
|
|
|
|
|
Top = 1,
|
|
|
|
|
Bottom = 2
|
|
|
|
|
};
|
|
|
|
|
|
2019-09-03 22:58:58 +00:00
|
|
|
|
public interface IUserDataContainer
|
|
|
|
|
{
|
|
|
|
|
UserData UserData { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 00:47:19 +00:00
|
|
|
|
public class BxlytTextureRef
|
|
|
|
|
{
|
2019-09-10 22:42:48 +00:00
|
|
|
|
public short ID { get; set; }
|
|
|
|
|
|
2019-09-09 00:47:19 +00:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual WrapMode WrapModeU { get; set; }
|
|
|
|
|
public virtual WrapMode WrapModeV { get; set; }
|
|
|
|
|
public virtual FilterMode MinFilterMode { get; set; }
|
|
|
|
|
public virtual FilterMode MaxFilterMode { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 22:58:58 +00:00
|
|
|
|
public class UserData : SectionCommon
|
|
|
|
|
{
|
|
|
|
|
public List<UserDataEntry> Entries { get; set; }
|
|
|
|
|
|
|
|
|
|
public UserData()
|
|
|
|
|
{
|
|
|
|
|
Entries = new List<UserDataEntry>();
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 22:37:33 +00:00
|
|
|
|
public override void Write(FileWriter writer, LayoutHeader header)
|
2019-09-03 22:58:58 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class UserDataEntry
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public UserDataType Type { get; set; }
|
|
|
|
|
public byte Unknown { get; set; }
|
|
|
|
|
|
|
|
|
|
public object data;
|
|
|
|
|
|
|
|
|
|
public string GetString()
|
|
|
|
|
{
|
|
|
|
|
return (string)data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public float[] GetFloats()
|
|
|
|
|
{
|
|
|
|
|
return (float[])data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int[] GetInts()
|
|
|
|
|
{
|
|
|
|
|
return (int[])data;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-03 23:23:04 +00:00
|
|
|
|
public void SetValue(string value)
|
2019-09-03 22:58:58 +00:00
|
|
|
|
{
|
|
|
|
|
data = value;
|
|
|
|
|
Type = UserDataType.String;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetValue(float[] value)
|
|
|
|
|
{
|
|
|
|
|
data = value;
|
|
|
|
|
Type = UserDataType.Float;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetValue(int[] value)
|
|
|
|
|
{
|
|
|
|
|
data = value;
|
|
|
|
|
Type = UserDataType.Int;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal long _pos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum UserDataType : byte
|
|
|
|
|
{
|
|
|
|
|
String,
|
|
|
|
|
Int,
|
|
|
|
|
Float,
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 22:37:33 +00:00
|
|
|
|
public enum AnimationTarget : byte
|
|
|
|
|
{
|
|
|
|
|
Pane = 0,
|
|
|
|
|
Material = 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum KeyType : byte
|
|
|
|
|
{
|
|
|
|
|
Uin16 = 1,
|
|
|
|
|
Float = 2,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum LPATarget : byte
|
|
|
|
|
{
|
|
|
|
|
TranslateX = 0x00,
|
|
|
|
|
TranslateY = 0x01,
|
|
|
|
|
TranslateZ = 0x02,
|
|
|
|
|
RotateX = 0x03,
|
|
|
|
|
RotateY = 0x04,
|
|
|
|
|
RotateZ = 0x05,
|
|
|
|
|
ScaleX = 0x06,
|
|
|
|
|
ScaleY = 0x07,
|
|
|
|
|
SizeX = 0x08,
|
|
|
|
|
SizeZ = 0x09,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum LTSTarget : byte
|
|
|
|
|
{
|
|
|
|
|
TranslateS = 0x00,
|
|
|
|
|
TranslateT = 0x01,
|
|
|
|
|
Rotate = 0x02,
|
|
|
|
|
ScaleS = 0x03,
|
|
|
|
|
ScaleT = 0x04,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum LVITarget : byte
|
|
|
|
|
{
|
|
|
|
|
Visibility = 0x00,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum LVCTarget : byte
|
|
|
|
|
{
|
|
|
|
|
LeftTopRed = 0x00,
|
|
|
|
|
LeftTopGreen = 0x01,
|
|
|
|
|
LeftTopBlue = 0x02,
|
|
|
|
|
LeftTopAlpha = 0x03,
|
|
|
|
|
|
|
|
|
|
RightTopRed = 0x04,
|
|
|
|
|
RightTopGreen = 0x05,
|
|
|
|
|
RightTopBlue = 0x06,
|
|
|
|
|
RightTopAlpha = 0x07,
|
|
|
|
|
|
|
|
|
|
LeftBottomRed = 0x08,
|
|
|
|
|
LeftBottomGreen = 0x09,
|
|
|
|
|
LeftBottomBlue = 0x0A,
|
|
|
|
|
LeftBottomAlpha = 0x0B,
|
|
|
|
|
|
|
|
|
|
RightBottomRed = 0x0C,
|
|
|
|
|
RightBottomGreen = 0x0D,
|
|
|
|
|
RightBottomBlue = 0x0E,
|
|
|
|
|
RightBottomAlpha = 0x0F,
|
|
|
|
|
|
|
|
|
|
PaneAlpha = 0x10,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum LTPTarget : byte
|
|
|
|
|
{
|
|
|
|
|
Image = 0x00,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum LMCTarget : byte
|
|
|
|
|
{
|
2019-09-12 22:52:47 +00:00
|
|
|
|
BlackColorRed,
|
|
|
|
|
BlackColorGreen,
|
|
|
|
|
BlackColorBlue,
|
|
|
|
|
BlackColorAlpha,
|
|
|
|
|
WhiteColorRed,
|
|
|
|
|
WhiteColorGreen,
|
|
|
|
|
WhiteColorBlue,
|
|
|
|
|
WhiteColorAlpha,
|
2019-09-23 22:16:50 +00:00
|
|
|
|
TextureColorBlendRatio,
|
|
|
|
|
TexColor0Red,
|
|
|
|
|
TexColor0Green,
|
|
|
|
|
TexColor0Blue,
|
|
|
|
|
TexColor0Alpha,
|
|
|
|
|
TexColor1Red,
|
|
|
|
|
TexColor1Green,
|
|
|
|
|
TexColor1Blue,
|
|
|
|
|
TexColor1Alpha,
|
|
|
|
|
TexColor2Red,
|
|
|
|
|
TexColor2Green,
|
|
|
|
|
TexColor2Blue,
|
|
|
|
|
TexColor2Alpha,
|
|
|
|
|
TevKonstantColor0Red,
|
|
|
|
|
TevKonstantColor0Green,
|
|
|
|
|
TevKonstantColor0Blue,
|
|
|
|
|
TevKonstantColor0Alpha,
|
|
|
|
|
TevKonstantColor1Red,
|
|
|
|
|
TevKonstantColor1Green,
|
|
|
|
|
TevKonstantColor1Blue,
|
|
|
|
|
TevKonstantColor1Alpha,
|
|
|
|
|
TevKonstantColor2Red,
|
|
|
|
|
TevKonstantColor2Green,
|
|
|
|
|
TevKonstantColor2Blue,
|
|
|
|
|
TevKonstantColor2Alpha,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum LIMTarget : byte
|
|
|
|
|
{
|
|
|
|
|
Rotation,
|
|
|
|
|
ScaleU,
|
|
|
|
|
ScaleV,
|
2019-09-12 22:52:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum LFSTarget : byte
|
|
|
|
|
{
|
|
|
|
|
FontShadowBlackColorRed,
|
|
|
|
|
FontShadowBlackColorGreen,
|
|
|
|
|
FontShadowBlackColorBlue,
|
|
|
|
|
FontShadowBlackColorAlpha,
|
|
|
|
|
FontShadowWhiteColorRed,
|
|
|
|
|
FontShadowWhiteColorGreen,
|
|
|
|
|
FontShadowWhiteColorBlue,
|
|
|
|
|
FontShadowWhiteColorAlpha,
|
|
|
|
|
}
|
2019-09-09 22:37:33 +00:00
|
|
|
|
|
2019-09-12 22:52:47 +00:00
|
|
|
|
public enum LCTTarget : byte
|
|
|
|
|
{
|
|
|
|
|
FontShadowBlackColorRed,
|
|
|
|
|
FontShadowBlackColorGreen,
|
|
|
|
|
FontShadowBlackColorBlue,
|
|
|
|
|
FontShadowBlackColorAlpha,
|
|
|
|
|
FontShadowWhiteColorRed,
|
|
|
|
|
FontShadowWhiteColorGreen,
|
|
|
|
|
FontShadowWhiteColorBlue,
|
|
|
|
|
FontShadowWhiteColorAlpha,
|
2019-09-09 22:37:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 22:42:48 +00:00
|
|
|
|
public enum WindowKind
|
|
|
|
|
{
|
|
|
|
|
Around = 0,
|
|
|
|
|
Horizontal = 1,
|
|
|
|
|
HorizontalNoContent = 2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum WindowFrameTexFlip : byte
|
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
FlipH = 1,
|
|
|
|
|
FlipV = 2,
|
|
|
|
|
Rotate90 = 3,
|
|
|
|
|
Rotate180 = 4,
|
|
|
|
|
Rotate270 = 5
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-19 22:02:10 +00:00
|
|
|
|
public enum TevMode : byte
|
|
|
|
|
{
|
|
|
|
|
Replace,
|
|
|
|
|
Modulate,
|
|
|
|
|
Add,
|
|
|
|
|
AddSigned,
|
|
|
|
|
Interpolate,
|
|
|
|
|
Subtract,
|
|
|
|
|
AddMultiplicate,
|
|
|
|
|
MultiplcateAdd,
|
|
|
|
|
Overlay,
|
|
|
|
|
Indirect,
|
|
|
|
|
BlendIndirect,
|
|
|
|
|
EachIndirect,
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 22:42:48 +00:00
|
|
|
|
public interface IWindowPane
|
|
|
|
|
{
|
|
|
|
|
bool UseOneMaterialForAll { get; set; }
|
|
|
|
|
bool UseVertexColorForAll { get; set; }
|
|
|
|
|
WindowKind WindowKind { get; set; }
|
|
|
|
|
bool NotDrawnContent { get; set; }
|
|
|
|
|
ushort StretchLeft { get; set; }
|
|
|
|
|
ushort StretchRight { get; set; }
|
|
|
|
|
ushort StretchTop { get; set; }
|
|
|
|
|
ushort StretchBottm { get; set; }
|
|
|
|
|
ushort FrameElementLeft { get; set; }
|
|
|
|
|
ushort FrameElementRight { get; set; }
|
|
|
|
|
ushort FrameElementTop { get; set; }
|
|
|
|
|
ushort FrameElementBottm { get; set; }
|
|
|
|
|
byte FrameCount { get; set; }
|
|
|
|
|
|
|
|
|
|
BxlytWindowContent Content { get; set; }
|
|
|
|
|
|
2019-09-16 23:56:41 +00:00
|
|
|
|
[Browsable(false)]
|
2019-09-10 22:42:48 +00:00
|
|
|
|
List<BxlytWindowFrame> WindowFrames { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BxlytWindowContent
|
|
|
|
|
{
|
|
|
|
|
public STColor8 ColorTopLeft { get; set; }
|
|
|
|
|
public STColor8 ColorTopRight { get; set; }
|
|
|
|
|
public STColor8 ColorBottomLeft { get; set; }
|
|
|
|
|
public STColor8 ColorBottomRight { get; set; }
|
|
|
|
|
|
|
|
|
|
public ushort MaterialIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
[TypeConverter(typeof(ExpandableObjectConverter))]
|
|
|
|
|
public virtual BxlytMaterial Material { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<TexCoord> TexCoords = new List<TexCoord>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BxlytWindowFrame
|
|
|
|
|
{
|
|
|
|
|
[TypeConverter(typeof(ExpandableObjectConverter))]
|
|
|
|
|
public BxlytMaterial Material { get; set; }
|
|
|
|
|
|
|
|
|
|
public ushort MaterialIndex;
|
2019-09-18 22:23:27 +00:00
|
|
|
|
public WindowFrameTexFlip TextureFlip { get; set; }
|
2019-09-10 22:42:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class TexCoord
|
|
|
|
|
{
|
|
|
|
|
public Vector2F TopLeft { get; set; }
|
|
|
|
|
public Vector2F TopRight { get; set; }
|
|
|
|
|
public Vector2F BottomLeft { get; set; }
|
|
|
|
|
public Vector2F BottomRight { get; set; }
|
|
|
|
|
|
|
|
|
|
public TexCoord()
|
|
|
|
|
{
|
|
|
|
|
TopLeft = new Vector2F(0, 0);
|
|
|
|
|
TopRight = new Vector2F(1, 0);
|
|
|
|
|
BottomLeft = new Vector2F(0, 1);
|
|
|
|
|
BottomRight = new Vector2F(1, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 22:37:33 +00:00
|
|
|
|
public class LayoutHeader : IDisposable
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-30 22:53:45 +00:00
|
|
|
|
public string FileName
|
|
|
|
|
{
|
|
|
|
|
get { return FileInfo.FileName; }
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[DisplayName("Use Big Endian"), CategoryAttribute("File Settings")]
|
2019-09-01 17:02:48 +00:00
|
|
|
|
public bool IsBigEndian { get; set; }
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 23:01:47 +00:00
|
|
|
|
internal IFileFormat FileInfo;
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[Browsable(false)]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
internal uint Version;
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[DisplayName("Version"), CategoryAttribute("File Settings")]
|
2019-08-29 20:33:23 +00:00
|
|
|
|
public string VersionFull
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2019-09-04 18:10:17 +00:00
|
|
|
|
return $"{VersionMajor},{VersionMinor},{VersionMicro},{VersionMicro2}";
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
[RefreshProperties(RefreshProperties.All)]
|
|
|
|
|
public uint VersionMajor { get; set; }
|
|
|
|
|
[RefreshProperties(RefreshProperties.All)]
|
|
|
|
|
public uint VersionMinor { get; set; }
|
|
|
|
|
[RefreshProperties(RefreshProperties.All)]
|
|
|
|
|
public uint VersionMicro { get; set; }
|
|
|
|
|
[RefreshProperties(RefreshProperties.All)]
|
|
|
|
|
public uint VersionMicro2 { get; set; }
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
internal void SetVersionInfo()
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
2019-09-04 18:10:17 +00:00
|
|
|
|
VersionMajor = Version >> 24;
|
|
|
|
|
VersionMinor = Version >> 16 & 0xFF;
|
|
|
|
|
VersionMicro = Version >> 8 & 0xFF;
|
|
|
|
|
VersionMicro2 = Version & 0xFF;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-04 18:10:17 +00:00
|
|
|
|
internal uint SaveVersion()
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
2019-09-04 18:10:17 +00:00
|
|
|
|
return VersionMajor << 24 | VersionMinor << 16 | VersionMicro << 8 | VersionMicro2;
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
2019-08-29 23:01:47 +00:00
|
|
|
|
|
2019-09-09 22:37:33 +00:00
|
|
|
|
public static void WriteSection(FileWriter writer, string magic, SectionCommon section, Action WriteMethod = null)
|
|
|
|
|
{
|
|
|
|
|
long startPos = writer.Position;
|
|
|
|
|
writer.WriteSignature(magic);
|
|
|
|
|
writer.Write(uint.MaxValue);
|
|
|
|
|
WriteMethod?.Invoke();
|
|
|
|
|
writer.Align(4);
|
|
|
|
|
|
|
|
|
|
long endPos = writer.Position;
|
|
|
|
|
|
|
|
|
|
using (writer.TemporarySeek(startPos + 4, System.IO.SeekOrigin.Begin))
|
|
|
|
|
{
|
|
|
|
|
writer.Write((uint)(endPos - startPos));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-29 23:01:47 +00:00
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
FileInfo.Unload();
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 22:37:33 +00:00
|
|
|
|
public class BxlanHeader : LayoutHeader
|
|
|
|
|
{
|
2019-09-18 22:23:27 +00:00
|
|
|
|
public BxlanPAT1 AnimationTag;
|
|
|
|
|
public BxlanPAI1 AnimationInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BxlanPAT1 : SectionCommon
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Name"), CategoryAttribute("Animation")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Groups"), CategoryAttribute("Animation")]
|
|
|
|
|
public List<string> Groups { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Start"), CategoryAttribute("Frames")]
|
|
|
|
|
public short StartFrame { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("End"), CategoryAttribute("Frames")]
|
|
|
|
|
public short EndFrame { get; set; }
|
2019-09-16 23:56:41 +00:00
|
|
|
|
|
2019-09-18 22:23:27 +00:00
|
|
|
|
[DisplayName("Animation Order"), CategoryAttribute("Parameters")]
|
|
|
|
|
public ushort AnimationOrder { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Child Binding"), CategoryAttribute("Parameters")]
|
|
|
|
|
public bool ChildBinding { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BxlanPAI1 : SectionCommon
|
|
|
|
|
{
|
|
|
|
|
public ushort FrameSize;
|
|
|
|
|
public bool Loop;
|
|
|
|
|
|
|
|
|
|
public List<string> Textures { get; set; }
|
|
|
|
|
public List<BxlanPaiEntry> Entries = new List<BxlanPaiEntry>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BxlanPaiEntry
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Name"), CategoryAttribute("Animation")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Target"), CategoryAttribute("Animation")]
|
|
|
|
|
public AnimationTarget Target { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<BxlanPaiTag> Tags = new List<BxlanPaiTag>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BxlanPaiTag
|
|
|
|
|
{
|
|
|
|
|
public List<BxlanPaiTagEntry> Entries = new List<BxlanPaiTagEntry>();
|
|
|
|
|
|
|
|
|
|
public string Tag;
|
|
|
|
|
|
|
|
|
|
public string Type
|
|
|
|
|
{
|
|
|
|
|
get { return TypeDefine.ContainsKey(Tag) ? TypeDefine[Tag] : Tag; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Dictionary<string, string> TypeDefine = new Dictionary<string, string>()
|
|
|
|
|
{
|
|
|
|
|
{"FLPA","PaneSRT" },
|
|
|
|
|
{"FLVI","Visibility" },
|
|
|
|
|
{"FLTS","TextureSRT" },
|
|
|
|
|
{"FLVC","VertexColor" },
|
|
|
|
|
{"FLMC","MaterialColor" },
|
|
|
|
|
{"FLTP","TexturePattern" },
|
|
|
|
|
{"FLIM","IndTextureSRT" },
|
|
|
|
|
{"FLAC","AlphaTest" },
|
|
|
|
|
{"FLCT","FontShadow" },
|
|
|
|
|
{"FLCC","PerCharacterTransformCurve" },
|
|
|
|
|
|
|
|
|
|
{"RLPA","PaneSRT" },
|
|
|
|
|
{"RLVI","Visibility" },
|
|
|
|
|
{"RLTS","TextureSRT" },
|
|
|
|
|
{"RLVC","VertexColor" },
|
|
|
|
|
{"RLMC","MaterialColor" },
|
|
|
|
|
{"RLTP","TexturePattern" },
|
|
|
|
|
{"RLIM","IndTextureSRT" },
|
|
|
|
|
{"RLAC","AlphaTest" },
|
|
|
|
|
{"RLCT","FontShadow" },
|
|
|
|
|
{"RLCC","PerCharacterTransformCurve" },
|
|
|
|
|
|
|
|
|
|
{"CLPA","PaneSRT" },
|
|
|
|
|
{"CLVI","Visibility" },
|
|
|
|
|
{"CLTS","TextureSRT" },
|
|
|
|
|
{"CLVC","VertexColor" },
|
|
|
|
|
{"CLMC","MaterialColor" },
|
|
|
|
|
{"CLTP","TexturePattern" },
|
|
|
|
|
{"CLIM","IndTextureSRT" },
|
|
|
|
|
{"CLAC","AlphaTest" },
|
|
|
|
|
{"CLCT","FontShadow" },
|
|
|
|
|
{"CLCC","PerCharacterTransformCurve" },
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BxlanPaiTagEntry
|
|
|
|
|
{
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public virtual string TargetName
|
|
|
|
|
{
|
|
|
|
|
get { return AnimationTarget.ToString(); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public byte AnimationTarget;
|
|
|
|
|
|
|
|
|
|
[DisplayName("Index"), CategoryAttribute("Tag")]
|
|
|
|
|
public byte Index { get; set; }
|
|
|
|
|
|
|
|
|
|
[DisplayName("Data Type"), CategoryAttribute("Tag")]
|
|
|
|
|
public KeyType DataType { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<KeyFrame> KeyFrames = new List<KeyFrame>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class KeyFrame
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Blend"), CategoryAttribute("Key Frame")]
|
|
|
|
|
public float Blend { get; set; }
|
|
|
|
|
[DisplayName("Frame"), CategoryAttribute("Key Frame")]
|
|
|
|
|
public float Frame { get; set; }
|
|
|
|
|
[DisplayName("Value"), CategoryAttribute("Key Frame")]
|
|
|
|
|
public float Value { get; set; }
|
|
|
|
|
|
|
|
|
|
public KeyFrame(FileReader reader, KeyType DataType)
|
|
|
|
|
{
|
|
|
|
|
Frame = reader.ReadSingle();
|
|
|
|
|
switch (DataType)
|
|
|
|
|
{
|
|
|
|
|
case KeyType.Float:
|
|
|
|
|
Value = reader.ReadSingle();
|
|
|
|
|
Blend = reader.ReadSingle();
|
|
|
|
|
break;
|
|
|
|
|
case KeyType.Uin16:
|
|
|
|
|
Value = (float)reader.ReadInt16();
|
|
|
|
|
Blend = (float)reader.ReadInt16();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Write(FileWriter writer, KeyType DataType)
|
|
|
|
|
{
|
|
|
|
|
writer.Write(Frame);
|
|
|
|
|
switch (DataType)
|
|
|
|
|
{
|
|
|
|
|
case KeyType.Float:
|
|
|
|
|
writer.Write(Value);
|
|
|
|
|
writer.Write(Blend);
|
|
|
|
|
break;
|
|
|
|
|
case KeyType.Uin16:
|
|
|
|
|
writer.Write((ushort)Value);
|
|
|
|
|
writer.Write((ushort)Blend);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-09 22:37:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BxlytHeader : LayoutHeader
|
|
|
|
|
{
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public BasePane RootPane { get; set; }
|
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public BasePane RootGroup { get; set; }
|
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public virtual Dictionary<string, STGenericTexture> GetTextures { get; }
|
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public virtual List<string> Textures { get; }
|
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public virtual List<string> Fonts { get; }
|
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public virtual List<BxlytMaterial> GetMaterials()
|
|
|
|
|
{
|
|
|
|
|
return new List<BxlytMaterial>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-05 20:24:03 +00:00
|
|
|
|
public class BxlytMaterial
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("Name"), CategoryAttribute("General")]
|
|
|
|
|
public virtual string Name { get; set; }
|
2019-09-08 19:15:42 +00:00
|
|
|
|
|
2019-09-19 22:02:10 +00:00
|
|
|
|
[DisplayName("Thresholding Alpha Interpolation"), CategoryAttribute("Alpha")]
|
|
|
|
|
public virtual bool ThresholdingAlphaInterpolation { get; set; }
|
|
|
|
|
|
2019-09-08 19:15:42 +00:00
|
|
|
|
[Browsable(false)]
|
|
|
|
|
public virtual BxlytShader Shader { get; set; }
|
2019-09-10 22:42:48 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Texture Maps"), CategoryAttribute("Texture")]
|
|
|
|
|
public BxlytTextureRef[] TextureMaps { get; set; }
|
2019-09-05 20:24:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-16 23:56:41 +00:00
|
|
|
|
public class SectionCommon
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
2019-09-08 19:15:42 +00:00
|
|
|
|
[Browsable(false)]
|
2019-09-01 17:02:48 +00:00
|
|
|
|
public virtual string Signature { get; }
|
2019-08-29 20:33:23 +00:00
|
|
|
|
|
2019-09-08 19:15:42 +00:00
|
|
|
|
internal uint SectionSize { get; set; }
|
|
|
|
|
internal long StartPosition { get; set; }
|
2019-08-29 20:33:23 +00:00
|
|
|
|
internal byte[] Data { get; set; }
|
|
|
|
|
|
2019-09-01 21:21:36 +00:00
|
|
|
|
public SectionCommon()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SectionCommon(string signature)
|
|
|
|
|
{
|
|
|
|
|
Signature = signature;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-09 22:37:33 +00:00
|
|
|
|
public virtual void Write(FileWriter writer, LayoutHeader header)
|
2019-08-29 20:33:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (Data != null)
|
|
|
|
|
writer.Write(Data);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class CustomRectangle
|
|
|
|
|
{
|
|
|
|
|
public int LeftPoint;
|
|
|
|
|
public int RightPoint;
|
|
|
|
|
public int TopPoint;
|
|
|
|
|
public int BottomPoint;
|
|
|
|
|
|
|
|
|
|
public CustomRectangle(int left, int right, int top, int bottom)
|
|
|
|
|
{
|
|
|
|
|
LeftPoint = left;
|
|
|
|
|
RightPoint = right;
|
|
|
|
|
TopPoint = top;
|
|
|
|
|
BottomPoint = bottom;
|
|
|
|
|
}
|
2019-09-02 23:48:47 +00:00
|
|
|
|
|
|
|
|
|
public float Width
|
|
|
|
|
{
|
|
|
|
|
get { return LeftPoint - RightPoint; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public float Height
|
|
|
|
|
{
|
|
|
|
|
get { return TopPoint - BottomPoint; }
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|
2019-08-30 22:53:45 +00:00
|
|
|
|
|
2019-09-09 22:37:33 +00:00
|
|
|
|
|
|
|
|
|
|
2019-08-30 22:53:45 +00:00
|
|
|
|
public class LayoutDocked : DockContent
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2019-08-29 20:33:23 +00:00
|
|
|
|
}
|