using System.Xml;

namespace RobloxFiles.Tokens
{
    public class RefToken : IXmlPropertyToken
    {
        public string XmlPropertyToken => "Ref";

        public bool ReadProperty(Property prop, XmlNode token)
        {
            string refId = token.InnerText;
            prop.Type = PropertyType.Ref;
            prop.XmlToken = refId;

            return true;
        }

        public void WriteProperty(Property prop, XmlDocument doc, XmlNode node)
        {
            string result = "null";

            if (prop.Value != null)
            {
                Instance inst = prop.CastValue<Instance>();
                result = inst.Referent;
            }

            node.InnerText = result;
        }
    }
}