2020-08-17 05:33:59 +00:00
|
|
|
|
using System.Diagnostics.Contracts;
|
|
|
|
|
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 FacesToken : IXmlPropertyToken
|
|
|
|
|
{
|
2021-02-25 20:09:54 +00:00
|
|
|
|
public string XmlPropertyToken => "Faces";
|
2019-01-30 06:36:56 +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
|
|
|
|
Contract.Requires(prop != null);
|
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
|
|
|
|
Faces faces = (Faces)value;
|
|
|
|
|
prop.Value = faces;
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
2020-08-17 05:33:59 +00:00
|
|
|
|
Contract.Requires(prop != null && doc != null && node != null);
|
|
|
|
|
|
2019-05-17 12:08:06 +00:00
|
|
|
|
XmlElement faces = doc.CreateElement("faces");
|
|
|
|
|
node.AppendChild(faces);
|
|
|
|
|
|
2019-06-30 22:01:19 +00:00
|
|
|
|
int value = prop.CastValue<int>();
|
2019-05-17 12:08:06 +00:00
|
|
|
|
faces.InnerText = value.ToInvariantString();
|
|
|
|
|
}
|
2019-01-30 06:36:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|