2019-06-30 22:01:19 +00:00
|
|
|
|
using System.Xml;
|
2021-02-25 20:09:54 +00:00
|
|
|
|
|
2019-02-01 17:19:20 +00:00
|
|
|
|
using RobloxFiles.DataTypes;
|
2021-02-25 20:09:54 +00:00
|
|
|
|
using RobloxFiles.XmlFormat;
|
2019-01-30 06:36:56 +00:00
|
|
|
|
|
2021-02-25 20:09:54 +00:00
|
|
|
|
namespace RobloxFiles.Tokens
|
2019-01-30 06:36:56 +00:00
|
|
|
|
{
|
|
|
|
|
public class AxesToken : IXmlPropertyToken
|
|
|
|
|
{
|
2021-02-25 20:09:54 +00:00
|
|
|
|
public string XmlPropertyToken => "Axes";
|
2019-06-30 22:01:19 +00:00
|
|
|
|
|
2019-05-17 12:08:06 +00:00
|
|
|
|
public bool ReadProperty(Property prop, XmlNode token)
|
2019-01-30 06:36:56 +00:00
|
|
|
|
{
|
2020-08-17 05:33:59 +00:00
|
|
|
|
if (XmlPropertyTokens.ReadPropertyGeneric(token, out uint value))
|
2019-01-30 06:36:56 +00:00
|
|
|
|
{
|
2019-06-30 22:01:19 +00:00
|
|
|
|
Axes axes = (Axes)value;
|
|
|
|
|
prop.Value = axes;
|
|
|
|
|
|
|
|
|
|
return true;
|
2019-01-30 06:36:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-30 22:01:19 +00:00
|
|
|
|
return false;
|
2019-01-30 06:36:56 +00:00
|
|
|
|
}
|
2019-05-17 12:08:06 +00:00
|
|
|
|
|
|
|
|
|
public void WriteProperty(Property prop, XmlDocument doc, XmlNode node)
|
|
|
|
|
{
|
|
|
|
|
XmlElement axes = doc.CreateElement("axes");
|
|
|
|
|
node.AppendChild(axes);
|
|
|
|
|
|
2019-06-30 22:01:19 +00:00
|
|
|
|
int value = prop.CastValue<int>();
|
2019-05-17 12:08:06 +00:00
|
|
|
|
axes.InnerText = value.ToInvariantString();
|
|
|
|
|
}
|
2019-01-30 06:36:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|