Beispiel #1
0
 public void ReadPacket(IMcStream stream)
 {
     EntityId = stream.ReadInt32();
     Slot     = stream.ReadInt16();
     ItemId   = stream.ReadInt16();
     Metadata = stream.ReadInt16();
 }
 public void ReadPacket(IMcStream stream)
 {
     EntityId  = stream.ReadInt32();
     XVelocity = stream.ReadInt16();
     YVelocity = stream.ReadInt16();
     ZVelocity = stream.ReadInt16();
 }
Beispiel #3
0
        public void ReadPacket(IMcStream stream)
        {
            ItemId   = stream.ReadInt16();
            Metadata = stream.ReadInt16();
            var length = stream.ReadUInt8();

            Data = stream.ReadUInt8Array(length);
        }
Beispiel #4
0
 public void ReadPacket(IMcStream stream)
 {
     WindowID  = stream.ReadInt8();
     SlotIndex = stream.ReadInt16();
     ItemId    = stream.ReadInt16();
     if (ItemId != -1)
     {
         Count    = stream.ReadInt8();
         Metadata = stream.ReadInt16();
     }
 }
Beispiel #5
0
 public void ReadPacket(IMcStream stream)
 {
     X      = stream.ReadInt32();
     Y      = stream.ReadInt8();
     Z      = stream.ReadInt32();
     Face   = (BlockFace)stream.ReadInt8();
     ItemId = stream.ReadInt16();
     if (ItemId != -1)
     {
         Amount   = stream.ReadInt8();
         Metadata = stream.ReadInt16();
     }
 }
 public void ReadPacket(IMcStream stream)
 {
     EntityId = stream.ReadInt32();
     ItemId   = stream.ReadInt16();
     Count    = stream.ReadInt8();
     Metadata = stream.ReadInt16();
     X        = stream.ReadInt32();
     Y        = stream.ReadInt32();
     Z        = stream.ReadInt32();
     Yaw      = stream.ReadInt8();
     Pitch    = stream.ReadInt8();
     Roll     = stream.ReadInt8();
 }
 public void ReadPacket(IMcStream stream)
 {
     WindowID      = stream.ReadInt8();
     SlotIndex     = stream.ReadInt16();
     RightClick    = stream.ReadBoolean();
     TransactionID = stream.ReadInt16();
     Shift         = stream.ReadBoolean();
     ItemId        = stream.ReadInt16();
     if (ItemId != -1)
     {
         Count    = stream.ReadInt8();
         Metadata = stream.ReadInt16();
     }
 }
Beispiel #8
0
 public void ReadPacket(IMcStream stream)
 {
     EntityId   = stream.ReadInt32();
     EntityType = stream.ReadInt8();
     X          = stream.ReadInt32();
     Y          = stream.ReadInt32();
     Z          = stream.ReadInt32();
     Data       = stream.ReadInt32();
     if (Data > 0)
     {
         XVelocity = stream.ReadInt16();
         YVelocity = stream.ReadInt16();
         ZVelocity = stream.ReadInt16();
     }
 }
 public void ReadPacket(IMcStream stream)
 {
     X     = stream.ReadInt32();
     Y     = stream.ReadInt16();
     Z     = stream.ReadInt32();
     State = stream.ReadInt8();
     Data  = stream.ReadInt8();
 }
 public void ReadPacket(IMcStream stream)
 {
     EntityId    = stream.ReadInt32();
     PlayerName  = stream.ReadString();
     X           = stream.ReadInt32();
     Y           = stream.ReadInt32();
     Z           = stream.ReadInt32();
     Yaw         = stream.ReadInt8();
     Pitch       = stream.ReadInt8();
     CurrentItem = stream.ReadInt16();
 }
 public void ReadPacket(IMcStream stream)
 {
     X       = stream.ReadInt32();
     Y       = stream.ReadInt16();
     Z       = stream.ReadInt32();
     Text    = new string[4];
     Text[0] = stream.ReadString();
     Text[1] = stream.ReadString();
     Text[2] = stream.ReadString();
     Text[3] = stream.ReadString();
 }
        public void ReadPacket(IMcStream stream)
        {
            WindowID = stream.ReadInt8();
            var length = stream.ReadInt16();

            Items = new ItemStack[length];
            for (var i = 0; i < length; i++)
            {
                var Id = stream.ReadInt16();
                if (Id != -1)
                {
                    var count    = stream.ReadInt8();
                    var metadata = stream.ReadInt16();
                    Items[i] = new ItemStack(Id, count, metadata);
                }
                else
                {
                    Items[i] = ItemStack.EmptyStack;
                }
            }
        }
        public void ReadPacket(IMcStream stream)
        {
            X      = stream.ReadInt32();
            Y      = stream.ReadInt16();
            Z      = stream.ReadInt32();
            Width  = (short)(stream.ReadInt8() + 1);
            Height = (short)(stream.ReadInt8() + 1);
            Depth  = (short)(stream.ReadInt8() + 1);
            var len = stream.ReadInt32();

            CompressedData = stream.ReadUInt8Array(len);
        }
        public void ReadPacket(IMcStream stream)
        {
            ChunkX = stream.ReadInt32();
            ChunkZ = stream.ReadInt32();
            var length = stream.ReadInt16();

            Coordinates = new Coordinates3D[length];
            for (var i = 0; i < length; i++)
            {
                var value = stream.ReadUInt16();
                Coordinates[i] = new Coordinates3D(
                    (value >> 12) & 0xF,
                    value & 0xFF,
                    (value >> 8) & 0xF);
            }

            BlockIDs = stream.ReadInt8Array(length);
            Metadata = stream.ReadInt8Array(length);
        }
 public void ReadPacket(IMcStream stream)
 {
     Slot = stream.ReadInt16();
 }
 public void ReadPacket(IMcStream stream)
 {
     WindowID = stream.ReadInt8();
     Target   = (ProgressTarget)stream.ReadInt16();
     Value    = stream.ReadInt16();
 }
 public void ReadPacket(IMcStream stream)
 {
     WindowID      = stream.ReadInt8();
     TransactionID = stream.ReadInt16();
     Accepted      = stream.ReadBoolean();
 }