当前位置: 首页>>代码示例>>C#>>正文


C# IMinecraftStream.ReadInt16方法代码示例

本文整理汇总了C#中IMinecraftStream.ReadInt16方法的典型用法代码示例。如果您正苦于以下问题:C# IMinecraftStream.ReadInt16方法的具体用法?C# IMinecraftStream.ReadInt16怎么用?C# IMinecraftStream.ReadInt16使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IMinecraftStream的用法示例。


在下文中一共展示了IMinecraftStream.ReadInt16方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ReadPacket

 public void ReadPacket(IMinecraftStream stream)
 {
     EntityID = stream.ReadInt32();
     XVelocity = stream.ReadInt16();
     YVelocity = stream.ReadInt16();
     ZVelocity = stream.ReadInt16();
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:7,代码来源:EntityVelocityPacket.cs

示例2: ReadPacket

 public void ReadPacket(IMinecraftStream stream)
 {
     ItemID = stream.ReadInt16();
     Metadata = stream.ReadInt16();
     byte length = stream.ReadUInt8();
     Data = stream.ReadUInt8Array(length);
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:7,代码来源:MapDataPacket.cs

示例3: ReadPacket

 public void ReadPacket(IMinecraftStream stream)
 {
     EntityID = stream.ReadInt32();
     Slot = stream.ReadInt16();
     ItemID = stream.ReadInt16();
     Metadata = stream.ReadInt16();
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:7,代码来源:EntityEquipmentPacket.cs

示例4: ReadPacket

 public void ReadPacket(IMinecraftStream stream)
 {
     WindowID = stream.ReadInt8();
     SlotIndex = stream.ReadInt16();
     ItemID = stream.ReadInt16();
     if (ItemID != -1)
     {
         Count = stream.ReadInt8();
         Metadata = stream.ReadInt16();
     }
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:11,代码来源:SetSlotPacket.cs

示例5: ReadPacket

 public void ReadPacket(IMinecraftStream 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();
     }
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:13,代码来源:PlayerBlockPlacementPacket.cs

示例6: ReadPacket

 public void ReadPacket(IMinecraftStream 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();
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:13,代码来源:SpawnItemPacket.cs

示例7: ReadPacket

 public void ReadPacket(IMinecraftStream 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();
     }
 }
开发者ID:Luigifan,项目名称:TrueCraft,代码行数:14,代码来源:ClickWindowPacket.cs

示例8: ReadPacket

 public void ReadPacket(IMinecraftStream 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();
     }
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:15,代码来源:SpawnGenericEntityPacket.cs

示例9: ReadPacket

 public void ReadPacket(IMinecraftStream stream)
 {
     X = stream.ReadInt32();
     Y = stream.ReadInt16();
     Z = stream.ReadInt32();
     State = stream.ReadInt8();
     Data = stream.ReadInt8();
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:8,代码来源:BlockActionPacket.cs

示例10: ReadPacket

 public void ReadPacket(IMinecraftStream stream)
 {
     WindowID = stream.ReadInt8();
     short length = stream.ReadInt16();
     Items = new ItemStack[length];
     for (int i = 0; i < length; i++)
     {
         short id = stream.ReadInt16();
         if (id != -1)
         {
             sbyte count = stream.ReadInt8();
             short metadata = stream.ReadInt16();
             Items[i] = new ItemStack(id, count, metadata);
         }
         else
             Items[i] = ItemStack.EmptyStack;
     }
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:18,代码来源:WindowItemsPacket.cs

示例11: ReadPacket

 public void ReadPacket(IMinecraftStream 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();
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:11,代码来源:SpawnPlayerPacket.cs

示例12: ReadPacket

 public void ReadPacket(IMinecraftStream 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);
     int len = stream.ReadInt32();
     CompressedData = stream.ReadUInt8Array(len);
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:11,代码来源:ChunkDataPacket.cs

示例13: ReadPacket

 public void ReadPacket(IMinecraftStream 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();
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:11,代码来源:UpdateSignPacket.cs

示例14: ReadPacket

 public void ReadPacket(IMinecraftStream stream)
 {
     ChunkX = stream.ReadInt32();
     ChunkZ = stream.ReadInt32();
     short length = stream.ReadInt16();
     Coordinates = new Coordinates3D[length];
     for (int i = 0; i < length; i++)
     {
         ushort value = stream.ReadUInt16();
         Coordinates[i] = new Coordinates3D(
             value >> 12 & 0xF,
             value & 0xFF,
             value >> 8 & 0xF);
     }
     BlockIDs = stream.ReadInt8Array(length);
     Metadata = stream.ReadInt8Array(length);
 }
开发者ID:Zoxive,项目名称:TrueCraft,代码行数:17,代码来源:BulkBlockChangePacket.cs

示例15: ReadPacket

 public void ReadPacket(IMinecraftStream stream)
 {
     Health = stream.ReadInt16();
 }
开发者ID:Luigifan,项目名称:TrueCraft,代码行数:4,代码来源:UpdateHealthPacket.cs


注:本文中的IMinecraftStream.ReadInt16方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。