Exemplo n.º 1
0
        public override fsResult TryDeserialize(fsData data, ref object instance, Type storageType)
        {
            DynamicInt num = (DynamicInt)instance;

            if (data.IsInt64)
            {
                num.isDynamic  = false;
                num.fixedValue = (int)data.AsInt64;
                return(fsResult.Success);
            }
            if (!data.IsString)
            {
                return(fsResult.Fail("DynamicInt fields needs to be either a '%key' or a int value."));
            }
            string asString = data.AsString;

            if (!asString.StartsWith("%"))
            {
                return(fsResult.Fail("DynamicInt key needs to be like '%key' ."));
            }
            num.isDynamic = true;
            char[] trimChars = new char[] { '%' };
            num.dynamicKey = asString.TrimStart(trimChars);
            return(fsResult.Success);
        }
Exemplo n.º 2
0
        public override fsResult TrySerialize(object instance, out fsData serialized, Type storageType)
        {
            DynamicInt num = instance as DynamicInt;

            if (num == null)
            {
                serialized = new fsData();
                return(fsResult.Fail("Failed to convert field to DynamicInt on serialization"));
            }
            serialized = !num.isDynamic ? new fsData((long)num.fixedValue) : new fsData("%" + num.dynamicKey);
            return(fsResult.Success);
        }
Exemplo n.º 3
0
        static DynamicInt()
        {
            DynamicInt num = new DynamicInt {
                fixedValue = 0
            };

            ZERO = num;
            num  = new DynamicInt {
                fixedValue = 1
            };
            ONE = num;
        }