Esempio n. 1
0
        /// <summary>Helper: create a new instance to deserializing into</summary>
        public static LobbyPlayerLeave DeserializeLength(Stream stream, int length)
        {
            LobbyPlayerLeave instance = new LobbyPlayerLeave();

            DeserializeLength(stream, length, instance);
            return(instance);
        }
Esempio n. 2
0
        /// <summary>Helper: Serialize with a varint length prefix</summary>
        public static void SerializeLengthDelimited(Stream stream, LobbyPlayerLeave instance)
        {
            var data = SerializeToBytes(instance);

            global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteUInt32(stream, (uint)data.Length);
            stream.Write(data, 0, data.Length);
        }
Esempio n. 3
0
        /// <summary>Helper: create a new instance to deserializing into</summary>
        public static LobbyPlayerLeave DeserializeLengthDelimited(Stream stream)
        {
            LobbyPlayerLeave instance = new LobbyPlayerLeave();

            DeserializeLengthDelimited(stream, instance);
            return(instance);
        }
Esempio n. 4
0
        /// <summary>Helper: create a new instance to deserializing into</summary>
        public static LobbyPlayerLeave Deserialize(Stream stream)
        {
            LobbyPlayerLeave instance = new LobbyPlayerLeave();

            Deserialize(stream, instance);
            return(instance);
        }
Esempio n. 5
0
 /// <summary>Helper: Serialize into a MemoryStream and return its byte array</summary>
 public static byte[] SerializeToBytes(LobbyPlayerLeave instance)
 {
     using (var ms = new MemoryStream())
     {
         Serialize(ms, instance);
         return(ms.ToArray());
     }
 }
Esempio n. 6
0
        /// <summary>Helper: put the buffer into a MemoryStream and create a new instance to deserializing into</summary>
        public static LobbyPlayerLeave Deserialize(byte[] buffer)
        {
            LobbyPlayerLeave instance = new LobbyPlayerLeave();

            using (var ms = new MemoryStream(buffer))
                Deserialize(ms, instance);
            return(instance);
        }
Esempio n. 7
0
        /// <summary>Serialize the instance into the stream</summary>
        public static void Serialize(Stream stream, LobbyPlayerLeave instance)
        {
            var msField = global::SilentOrbit.ProtocolBuffers.ProtocolParser.Stack.Pop();

            // Key for field: 1, Varint
            stream.WriteByte(8);
            global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteUInt64(stream, instance.PlayerID);
            // Key for field: 2, Varint
            stream.WriteByte(16);
            global::SilentOrbit.ProtocolBuffers.ProtocolParser.WriteUInt64(stream, (ulong)instance.EventTime);
            global::SilentOrbit.ProtocolBuffers.ProtocolParser.Stack.Push(msField);
        }