本文整理汇总了C#中Craft.Net.Common.MinecraftStream.ReadUInt8方法的典型用法代码示例。如果您正苦于以下问题:C# MinecraftStream.ReadUInt8方法的具体用法?C# MinecraftStream.ReadUInt8怎么用?C# MinecraftStream.ReadUInt8使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Craft.Net.Common.MinecraftStream
的用法示例。
在下文中一共展示了MinecraftStream.ReadUInt8方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ReadPacket
public void ReadPacket(MinecraftStream stream)
{
EntityId = stream.ReadInt32();
LevelType = stream.ReadString();
GameMode = (GameMode)stream.ReadUInt8();
Dimension = (Dimension)stream.ReadInt8();
Difficulty = (Difficulty)stream.ReadUInt8();
Discarded = stream.ReadUInt8();
MaxPlayers = stream.ReadUInt8();
}
示例2: FromStream
public static MetadataDictionary FromStream(MinecraftStream stream)
{
var value = new MetadataDictionary();
while (true)
{
byte key = stream.ReadUInt8();
if (key == 127) break;
byte type = (byte)((key & 0xE0) >> 5);
byte index = (byte)(key & 0x1F);
var entry = EntryTypes[type]();
entry.FromStream(stream);
entry.Index = index;
value[index] = entry;
}
return value;
}
示例3: ReadPacket
public NetworkMode ReadPacket(MinecraftStream stream, NetworkMode mode, PacketDirection direction)
{
EntityId = stream.ReadVarInt();
Type = stream.ReadUInt8();
X = stream.ReadInt32();
Y = stream.ReadInt32();
Z = stream.ReadInt32();
Yaw = stream.ReadUInt8();
Pitch = stream.ReadUInt8();
HeadYaw = stream.ReadUInt8();
VelocityX = stream.ReadInt16();
VelocityY = stream.ReadInt16();
VelocityZ = stream.ReadInt16();
Metadata = MetadataDictionary.FromStream(stream);
return mode;
}