2019-05-17 12:08:06 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Xml;
|
2019-02-01 17:19:20 +00:00
|
|
|
|
using RobloxFiles.DataTypes;
|
2019-01-30 06:36:56 +00:00
|
|
|
|
|
2019-02-01 17:19:20 +00:00
|
|
|
|
namespace RobloxFiles.XmlFormat.PropertyTokens
|
2019-01-30 06:36:56 +00:00
|
|
|
|
{
|
|
|
|
|
public class NumberRangeToken : IXmlPropertyToken
|
|
|
|
|
{
|
|
|
|
|
public string Token => "NumberRange";
|
|
|
|
|
|
2019-05-17 12:08:06 +00:00
|
|
|
|
public bool ReadProperty(Property prop, XmlNode token)
|
2019-01-30 06:36:56 +00:00
|
|
|
|
{
|
|
|
|
|
string contents = token.InnerText.Trim();
|
|
|
|
|
string[] buffer = contents.Split(' ');
|
|
|
|
|
bool valid = (buffer.Length == 2);
|
|
|
|
|
|
|
|
|
|
if (valid)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2019-05-17 12:08:06 +00:00
|
|
|
|
float min = Formatting.ParseFloat(buffer[0]);
|
|
|
|
|
float max = Formatting.ParseFloat(buffer[1]);
|
2019-01-30 06:36:56 +00:00
|
|
|
|
|
|
|
|
|
prop.Type = PropertyType.NumberRange;
|
|
|
|
|
prop.Value = new NumberRange(min, max);
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
valid = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return valid;
|
|
|
|
|
}
|
2019-05-17 12:08:06 +00:00
|
|
|
|
|
|
|
|
|
public void WriteProperty(Property prop, XmlDocument doc, XmlNode node)
|
|
|
|
|
{
|
|
|
|
|
node.InnerText = prop.Value.ToString() + ' ';
|
|
|
|
|
}
|
2019-01-30 06:36:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|