Beispiel #1
0
 public static object ToJson(EquipSlotCollection obj)
 {
     return(new
     {
         LeftHand = obj.LeftHandSlot.Item?.AsJson(),
         RightHand = obj.RightHandSlot.Item?.AsJson(),
         ChannelSlot = obj.ChannelSlot.Item?.AsJson(),
         MiscSlots = obj.MiscSlots.Select(x => x.Item)
                     .Where(x => x != null)
                     .Select(x => x.AsJson()).ToArray()
     });
 }
Beispiel #2
0
        public static EquipSlotCollection FromJson(JToken input, Deserializer deserializer)
        {
            var es = new EquipSlotCollection();

            es.LeftHandSlot.Item  = (Item)deserializer.decodeToken(input["LeftHand"]);
            es.RightHandSlot.Item = (Item)deserializer.decodeToken(input["RightHand"]);
            es.ChannelSlot.Item   = (Item)deserializer.decodeToken(input["ChannelSlot"]);
            foreach (var misc in (JArray)input["MiscSlots"])
            {
                es.MiscSlots.Add(new MiscSlot()
                {
                    Item = (Item)deserializer.decodeObject((JObject)misc)
                });
            }
            return(es);
        }
Beispiel #3
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="EquipSlot" /> class.
 /// </summary>
 /// <param name="collection"><see cref="EquipSlotCollection" /> for this <see cref="EquipSlot" />.</param>
 /// <param name="key">Key of the <see cref="EquipSlot" />.</param>
 protected internal EquipSlot(EquipSlotCollection collection, int key)
 {
     Key        = key;
     Collection = collection;
 }
Beispiel #4
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="EquipSlot" /> class.
 /// </summary>
 /// <param name="collection"><see cref="EquipSlotCollection" /> for this <see cref="EquipSlot" />.</param>
 /// <param name="key">Key of the <see cref="EquipSlot" />.</param>
 protected internal EquipSlot(EquipSlotCollection collection, int key)
 {
     Key = key;
     Collection = collection;
 }