本文整理汇总了Java中net.minecraft.network.PacketBuffer.readBytes方法的典型用法代码示例。如果您正苦于以下问题:Java PacketBuffer.readBytes方法的具体用法?Java PacketBuffer.readBytes怎么用?Java PacketBuffer.readBytes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.network.PacketBuffer
的用法示例。
在下文中一共展示了PacketBuffer.readBytes方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readPacketData
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
/**
* Reads the raw packet data from the data stream.
*/
public void readPacketData(PacketBuffer buf) throws IOException
{
this.isOverworld = buf.readBoolean();
int i = buf.readVarIntFromBuffer();
this.xPositions = new int[i];
this.zPositions = new int[i];
this.chunksData = new S21PacketChunkData.Extracted[i];
for (int j = 0; j < i; ++j)
{
this.xPositions[j] = buf.readInt();
this.zPositions[j] = buf.readInt();
this.chunksData[j] = new S21PacketChunkData.Extracted();
this.chunksData[j].dataSize = buf.readShort() & 65535;
this.chunksData[j].data = new byte[S21PacketChunkData.func_180737_a(Integer.bitCount(this.chunksData[j].dataSize), this.isOverworld, true)];
}
for (int k = 0; k < i; ++k)
{
buf.readBytes(this.chunksData[k].data);
}
}
示例2: readPacketData
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
/**
* Reads the raw packet data from the data stream.
*/
public void readPacketData(PacketBuffer buf) throws IOException
{
this.chunkX = buf.readInt();
this.chunkZ = buf.readInt();
this.loadChunk = buf.readBoolean();
this.availableSections = buf.readVarIntFromBuffer();
int i = buf.readVarIntFromBuffer();
if (i > 2097152)
{
throw new RuntimeException("Chunk Packet trying to allocate too much memory on read.");
}
else
{
this.buffer = new byte[i];
buf.readBytes(this.buffer);
int j = buf.readVarIntFromBuffer();
this.tileEntityTags = Lists.<NBTTagCompound>newArrayList();
for (int k = 0; k < j; ++k)
{
this.tileEntityTags.add(buf.readNBTTagCompoundFromBuffer());
}
}
}
示例3: readPacketData
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
/**
* Reads the raw packet data from the data stream.
*/
public void readPacketData(PacketBuffer buf) throws IOException
{
this.channel = buf.readStringFromBuffer(20);
int i = buf.readableBytes();
if (i >= 0 && i <= 32767)
{
this.data = new PacketBuffer(buf.readBytes(i));
}
else
{
throw new IOException("Payload may not be larger than 32767 bytes");
}
}
示例4: readPacketData
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
/**
* Reads the raw packet data from the data stream.
*/
public void readPacketData(PacketBuffer buf) throws IOException
{
this.channel = buf.readStringFromBuffer(20);
int i = buf.readableBytes();
if (i >= 0 && i <= 1048576)
{
this.data = new PacketBuffer(buf.readBytes(i));
}
else
{
throw new IOException("Payload may not be larger than 1048576 bytes");
}
}
示例5: processPart
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
public void processPart(PacketBuffer input) throws IOException
{
int part = input.readByte() & 0xFF;
if (part != part_expected)
{
throw new IOException("Received FML MultiPart packet out of order, Expected " + part_expected + " Got " + part);
}
int len = input.readableBytes() - 1;
input.readBytes(data, offset, len);
part_expected++;
offset += len;
}