Exemplo n.º 1
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fAgeMcpID = s.ReadUInt();
     fAcctUuid = new Guid(s.ReadBytes(16));
     fPlayerID = s.ReadUInt();
 }
Exemplo n.º 2
0
 public void Read(UruStream s)
 {
     fParentIdx = s.ReadUInt();
     fChildIdx = s.ReadUInt();
     fSaverIdx = s.ReadUInt();
     s.ReadByte(); //Seen
 }
Exemplo n.º 3
0
 public void Read(UruStream s)
 {
     fType = (EConnType)s.ReadByte();
     fSockHeaderSize = s.ReadUShort();
     fBuildID = s.ReadUInt();
     fBuildType = (NetCliBuildType)s.ReadUInt();
     fBranchID = s.ReadUInt();
     fProductID = new Guid(s.ReadBytes(16));
 }
Exemplo n.º 4
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fResult = (ENetError)s.ReadInt();
     fAcctGuid = new Guid(s.ReadBytes(16));
     fFlags = s.ReadUInt();
     fBillingType = s.ReadUInt();
     fDroidKey = new uint[4];
     for (int i = 0; i < fDroidKey.Length; i++)
         fDroidKey[i] = s.ReadUInt();
 }
Exemplo n.º 5
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fResult = (ENetError)s.ReadInt();
     fNodeIDs = new uint[s.ReadInt()];
     for (int i = 0; i < fNodeIDs.Length; i++)
         fNodeIDs[i] = s.ReadUInt();
 }
Exemplo n.º 6
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fResult = (ENetError)s.ReadInt();
 }
Exemplo n.º 7
0
 public void Read(UruStream s)
 {
     fInstanceUuid = new Guid(s.ReadBytes(16));
     fFilename = s.ReadUnicodeStringF(64);
     fInstanceName = s.ReadUnicodeStringF(64);
     fUserName = s.ReadUnicodeStringF(64);
     fDescription = s.ReadUnicodeStringF(1024);
     fSequenceNumber = s.ReadUInt();
     fLanguage = s.ReadInt();
     fPopulation = s.ReadUInt();
     fCurrPopulation = s.ReadUInt();
 }
Exemplo n.º 8
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fNodeID = s.ReadUInt();
     fRevisionID = new Guid(s.ReadBytes(16));
     fNodeData = s.ReadBytes(s.ReadInt());
 }
Exemplo n.º 9
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
 }
Exemplo n.º 10
0
 public void Read(UruStream s)
 {
     fAgeInfoID = s.ReadUInt();
     fPublic = s.ReadBool();
 }
Exemplo n.º 11
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fResult = (ENetError)s.ReadInt();
     fRefs = new VaultNodeRef[s.ReadInt()];
     for (int i = 0; i < fRefs.Length; i++) {
         fRefs[i] = new VaultNodeRef();
         fRefs[i].Read(s);
     }
 }
Exemplo n.º 12
0
 public void Read(UruStream s)
 {
     fChallenge = s.ReadUInt();
 }
Exemplo n.º 13
0
 public void Read(UruStream s)
 {
     fBuildID = s.ReadUInt();
 }
Exemplo n.º 14
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fName = s.ReadUnicodeStringV16(40);
     fModel = s.ReadUnicodeStringV16(260);
     fInvite = s.ReadUnicodeStringV16(260);
 }
Exemplo n.º 15
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fResult = (ENetError)s.ReadInt();
     fPlayerID = s.ReadUInt();
     fExplorer = s.ReadUInt();
     fName = s.ReadUnicodeStringV16(40);
     fModel = s.ReadUnicodeStringV16(64);
 }
Exemplo n.º 16
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fChallenge = s.ReadInt();
     fAccount = s.ReadUnicodeStringV16(64);
     uint[] hash = new uint[5];
     for (int i = 0; i < hash.Length; i++)
         hash[i] = s.ReadUInt();
     fHash = new ShaHash(hash);
     fAuthToken = s.ReadUnicodeStringV16(64);
     fOS = s.ReadUnicodeStringV16(8);
 }
Exemplo n.º 17
0
 public void Read(UruStream s)
 {
     fNodeID = s.ReadUInt();
     fRevisionUuid = new Guid(s.ReadBytes(16));
 }
Exemplo n.º 18
0
        public void Read(UruStream s)
        {
            fTransID = s.ReadUInt();
            fResult = (ENetError)s.ReadInt();
            fAgeMcpID = s.ReadUInt();
            fAgeInstanceUuid = new Guid(s.ReadBytes(16));
            fAgeVaultID = s.ReadUInt();

            byte[] game = s.ReadBytes(4);
            Array.Reverse(game);
            fGameServerIP = new IPAddress(game);
        }
Exemplo n.º 19
0
 public void Read(UruStream s)
 {
     fParentID = s.ReadUInt();
     fChildID = s.ReadUInt();
     fSaverID = s.ReadUInt();
 }
Exemplo n.º 20
0
        public string fUserName; //Len  260

        #endregion Fields

        #region Methods

        public void Read(UruStream s)
        {
            fTransID = s.ReadUInt();
            fAgeUUID = new Guid(s.ReadBytes(16));
            fParentUUID = new Guid(s.ReadBytes(16));
            fFilename = s.ReadUnicodeStringV16(260);
            fInstanceName = s.ReadUnicodeStringV16(260);
            fUserName = s.ReadUnicodeStringV16(260);
            fDescription = s.ReadUnicodeStringV16(1024);
            fSequenceNumber = s.ReadInt();
            fLanguage = s.ReadInt();
            fCreatorID = s.ReadUInt();
        }
Exemplo n.º 21
0
 public void Read(UruStream s)
 {
     fPingTime = s.ReadUInt();
     fTransID = s.ReadUInt();
     fPayload = s.ReadBytes(s.ReadInt());
 }
Exemplo n.º 22
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fPlayerID = s.ReadUInt();
     fName = s.ReadUnicodeStringV16(40);
     fModel = s.ReadUnicodeStringV16(64);
 }
Exemplo n.º 23
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fGroup = s.ReadUnicodeStringF(260);
     fBuildID = s.ReadUInt();
 }
Exemplo n.º 24
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fAcctUUID = new Guid(s.ReadBytes(16));
     fName = s.ReadUnicodeStringV16(40);
     fModel = s.ReadUnicodeStringV16(64);
     fInvite = s.ReadUnicodeStringV16(260);
 }
Exemplo n.º 25
0
 public void Read(UruStream s)
 {
     fMsgType = s.ReadUInt();
     fBuffer = s.ReadBytes(s.ReadInt());
 }
Exemplo n.º 26
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fDirectory = s.ReadUnicodeStringV16(260);
     fExtension = s.ReadUnicodeStringV16(256);
 }
Exemplo n.º 27
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fFilename = s.ReadUnicodeStringV16(64);
 }
Exemplo n.º 28
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fNodeData = s.ReadBytes(s.ReadInt());
 }
Exemplo n.º 29
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fResult = (ENetError)s.ReadInt();
     fNodeData = s.ReadBytes(s.ReadInt());
 }
Exemplo n.º 30
0
 public void Read(UruStream s)
 {
     fTransID = s.ReadUInt();
     fResult = (ENetError)s.ReadInt();
     fAges = new NetAgeInfo[s.ReadInt()];
     for (int i = 0; i < fAges.Length; i++) {
         fAges[i] = new NetAgeInfo();
         fAges[i].Read(s);
     }
 }