C# Class RocketLeagueReplayParser.BitReader

Afficher le fichier Open project: jjbott/RocketLeagueReplayParser Class Usage Examples

Méthodes publiques

Méthode Description
BitReader ( bool bits ) : System
BitReader ( byte bytes ) : System
BitReader ( string bitString ) : System
GetBits ( int startPosition, int count ) : List
PeekBit ( ) : bool
ReadBit ( ) : bool
ReadBitsAsBytes ( int numBits ) : byte[]
ReadByte ( ) : byte
ReadBytes ( Int32 count ) : byte[]
ReadFixedCompressedFloat ( Int32 maxValue, Int32 numBits ) : float
ReadFloat ( ) : float
ReadInt32 ( ) : Int32
ReadInt32FromBits ( int numBits ) : Int32
ReadString ( ) : string
ReadUInt32 ( ) : UInt32
ReadUInt32FromBits ( int numBits ) : UInt32
ReadUInt32Max ( Int32 maxValue ) : UInt32
Seek ( int position ) : void

Private Methods

Méthode Description
BitsFromString ( string bitString ) : bool[]

Method Details

BitReader() public méthode

public BitReader ( bool bits ) : System
bits bool
Résultat System

BitReader() public méthode

public BitReader ( byte bytes ) : System
bytes byte
Résultat System

BitReader() public méthode

public BitReader ( string bitString ) : System
bitString string
Résultat System

GetBits() public méthode

public GetBits ( int startPosition, int count ) : List
startPosition int
count int
Résultat List

PeekBit() public méthode

public PeekBit ( ) : bool
Résultat bool

ReadBit() public méthode

public ReadBit ( ) : bool
Résultat bool

ReadBitsAsBytes() public méthode

public ReadBitsAsBytes ( int numBits ) : byte[]
numBits int
Résultat byte[]

ReadByte() public méthode

public ReadByte ( ) : byte
Résultat byte

ReadBytes() public méthode

public ReadBytes ( Int32 count ) : byte[]
count System.Int32
Résultat byte[]

ReadFixedCompressedFloat() public méthode

public ReadFixedCompressedFloat ( Int32 maxValue, Int32 numBits ) : float
maxValue System.Int32
numBits System.Int32
Résultat float

ReadFloat() public méthode

public ReadFloat ( ) : float
Résultat float

ReadInt32() public méthode

public ReadInt32 ( ) : Int32
Résultat System.Int32

ReadInt32FromBits() public méthode

public ReadInt32FromBits ( int numBits ) : Int32
numBits int
Résultat System.Int32

ReadString() public méthode

public ReadString ( ) : string
Résultat string

ReadUInt32() public méthode

public ReadUInt32 ( ) : UInt32
Résultat System.UInt32

ReadUInt32FromBits() public méthode

public ReadUInt32FromBits ( int numBits ) : UInt32
numBits int
Résultat System.UInt32

ReadUInt32Max() public méthode

public ReadUInt32Max ( Int32 maxValue ) : UInt32
maxValue System.Int32
Résultat System.UInt32

Seek() public méthode

public Seek ( int position ) : void
position int
Résultat void