50561460ac
XML support is now implemented and should generally be working! This library should be useable now, but I still need to set it up to work as a NuGet package. If there are any bugs, let me know!
36 lines
896 B
C#
36 lines
896 B
C#
using System.Xml;
|
|
using Roblox.DataTypes;
|
|
|
|
namespace Roblox.XmlFormat.PropertyTokens
|
|
{
|
|
public class NumberRangeToken : IXmlPropertyToken
|
|
{
|
|
public string Token => "NumberRange";
|
|
|
|
public bool ReadToken(Property prop, XmlNode token)
|
|
{
|
|
string contents = token.InnerText.Trim();
|
|
string[] buffer = contents.Split(' ');
|
|
bool valid = (buffer.Length == 2);
|
|
|
|
if (valid)
|
|
{
|
|
try
|
|
{
|
|
float min = float.Parse(buffer[0]);
|
|
float max = float.Parse(buffer[1]);
|
|
|
|
prop.Type = PropertyType.NumberRange;
|
|
prop.Value = new NumberRange(min, max);
|
|
}
|
|
catch
|
|
{
|
|
valid = false;
|
|
}
|
|
}
|
|
|
|
return valid;
|
|
}
|
|
}
|
|
}
|