FSO.Files.Utils.IoBuffer.ReadByte C# (CSharp) Method

ReadByte() public method

Reads a byte from the current stream.
public ReadByte ( ) : byte
return byte
        public byte ReadByte()
        {
            return Reader.ReadByte();
        }

Usage Example

Example #1
0
        /// <summary>
        /// Reads a DGRPImage from a stream.
        /// </summary>
        /// <param name="iff">An Iff instance.</param>
        /// <param name="stream">A Stream object holding a DGRPImage.</param>
        public void Read(uint version, IoBuffer io)
        {
            uint spriteCount = 0;
            if (version < 20003){
                spriteCount = io.ReadUInt16();
                Direction = io.ReadByte();
                Zoom = io.ReadByte();
            }else{
                Direction = io.ReadUInt32();
                Zoom = io.ReadUInt32();
                spriteCount = io.ReadUInt32();
            }

            this.Sprites = new DGRPSprite[spriteCount];
            for (var i = 0; i < spriteCount; i++){
                var sprite = new DGRPSprite(Parent);
                sprite.Read(version, io);
                this.Sprites[i] = sprite;
            }
        }
All Usage Examples Of FSO.Files.Utils.IoBuffer::ReadByte