Ejemplo n.º 1
0
        public bool Write(DAIIO io, bool skiplength = false)
        {
            try
            {
                if (!skiplength)
                {
                    io.WriteBits(Length, LengthBits);
                }
                if (Stats == null)
                {
                    Stats = new CraftedItemStats[StatsCount];

                    for (int xb = 0; xb < StatsCount; xb++)
                    {
                        Stats[xb] = new CraftedItemStats();
                    }
                }
                io.WriteInt16((short)Stats.Length);
                for (int i = 0; i < StatsCount; i++)
                {
                    Stats[i].Write(io);
                }

                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }
Ejemplo n.º 2
0
 public CraftedStatInstance Read(DAIIO io)
 {
     xLength    = io.ReadBit2(LengthBits);
     StatsCount = io.ReadInt16();
     Stats      = new CraftedItemStats[StatsCount];
     for (int i = 0; i < StatsCount; i++)
     {
         Stats[i] = new CraftedItemStats().Read(io);
     }
     return(this);
 }