Roblox-File-Format/Tokens/CFrame.cs

70 lines
1.9 KiB
C#
Raw Normal View History

using System.Xml;
using RobloxFiles.DataTypes;
2021-02-25 20:09:54 +00:00
namespace RobloxFiles.Tokens
{
public class CFrameToken : IXmlPropertyToken
{
2021-02-25 20:09:54 +00:00
public string XmlPropertyToken => "CoordinateFrame; CFrame";
private static readonly string[] Coords = new string[12] { "X", "Y", "Z", "R00", "R01", "R02", "R10", "R11", "R12", "R20", "R21", "R22"};
public static CFrame ReadCFrame(XmlNode token)
{
float[] components = new float[12];
for (int i = 0; i < 12; i++)
{
string key = Coords[i];
try
{
var coord = token[key];
components[i] = Formatting.ParseFloat(coord.InnerText);
}
catch
{
return null;
}
}
return new CFrame(components);
}
public static void WriteCFrame(CFrame cf, XmlDocument doc, XmlNode node)
2021-05-01 22:40:09 +00:00
{
float[] components = cf.GetComponents();
for (int i = 0; i < 12; i++)
{
string coordName = Coords[i];
float coordValue = components[i];
XmlElement coord = doc.CreateElement(coordName);
coord.InnerText = coordValue.ToInvariantString();
node.AppendChild(coord);
}
}
public bool ReadProperty(Property prop, XmlNode token)
{
CFrame result = ReadCFrame(token);
bool success = (result != null);
if (success)
{
prop.Type = PropertyType.CFrame;
prop.Value = result;
}
return success;
}
public void WriteProperty(Property prop, XmlDocument doc, XmlNode node)
{
CFrame value = prop.Value as CFrame;
WriteCFrame(value, doc, node);
}
}
}