Ejemplo n.º 1
0
        public static Doodad Read(FormatBase input)
        {
            Doodad temp = new Doodad();

            // 24-bit offset?
            byte[] b = input.readBytes(3);
            temp.offset = BitConverter.ToUInt32(new byte[4] { b[0], b[1], b[2], 0 }, 0);
            Stuffer.Stuff(temp, input, "Doodad", true);

            return temp;
        }
Ejemplo n.º 2
0
        public Chunk_MODD(WMOFile file)
            : base(file, "MODD", Magic)
        {
            int doodadCount = (int)ChunkSize / 40;
            doodads = new Doodad[doodadCount];

            for (int i = 0; i < doodadCount; i++)
                doodads[i] = Doodad.Read(file);

            LogWrite("Loaded " + doodadCount + " doodads.");
        }
Ejemplo n.º 3
0
        public static Doodad Read(FormatBase input)
        {
            Doodad temp = new Doodad();

            // 24-bit offset?
            byte[] b = input.readBytes(3);
            temp.offset = BitConverter.ToUInt32(new byte[4] {
                b[0], b[1], b[2], 0
            }, 0);
            Stuffer.Stuff(temp, input, "Doodad", true);

            return(temp);
        }