Beispiel #1
0
        public bool Write(DAIIO io, bool skiplength = false)
        {
            try
            {
                if (!skiplength)
                {
                    io.WriteBits(Length, LengthBits);
                }
                io.WriteInt32(storeEntitySaveUid);

                if (Items == null)
                {
                    Items = new StoreItemEntry[ItemCount];

                    for (int xb = 0; xb < ItemCount; xb++)
                    {
                        Items[xb] = new StoreItemEntry();
                    }
                }
                io.WriteInt16((short)Items.Length);
                foreach (StoreItemEntry t in Items)
                {
                    t.Write(io);
                }

                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }
Beispiel #2
0
 public StoreInventory Read(DAIIO io)
 {
     xLength            = io.ReadBit2(LengthBits);
     storeEntitySaveUid = io.ReadInt32();
     ItemCount          = io.ReadInt16();
     Items = new StoreItemEntry[ItemCount];
     for (int i = 0; i < ItemCount; i++)
     {
         Items[i] = new StoreItemEntry().Read(io);
     }
     return(this);
 }