本文整理汇总了Java中cpw.mods.fml.common.network.ByteBufUtils.readVarInt方法的典型用法代码示例。如果您正苦于以下问题:Java ByteBufUtils.readVarInt方法的具体用法?Java ByteBufUtils.readVarInt怎么用?Java ByteBufUtils.readVarInt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cpw.mods.fml.common.network.ByteBufUtils
的用法示例。
在下文中一共展示了ByteBufUtils.readVarInt方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: decodePacket
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void decodePacket(ChannelHandlerContext context, ByteBuf buffer) {
int size = ByteBufUtils.readVarInt(buffer, 5);
entityIds = new HashMap<Integer, VRPlayerData>(size);
for (int i = 0; i < size; i++) {
VRPlayerData data = new VRPlayerData();
entityIds.put(ByteBufUtils.readVarInt(buffer, 5), data);
data.newAPI = buffer.readBoolean();
data.reverseHands = buffer.readBoolean();
data.worldScale = buffer.readFloat();
data.seated = buffer.readBoolean();
int size2 = buffer.readUnsignedByte();
for (int j = 0; j < size2; j++) {
data.entityIds.add(ByteBufUtils.readVarInt(buffer, 5));
}
}
}
示例2: fromBytes
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void fromBytes(ByteBuf buffer)
{
super.fromBytes(buffer);
int modCount = ByteBufUtils.readVarInt(buffer, 2);
for (int i = 0; i < modCount; i++)
{
modTags.put(ByteBufUtils.readUTF8String(buffer), ByteBufUtils.readUTF8String(buffer));
}
}
示例3: fromBytes
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void fromBytes(ByteBuf buf)
{
slotCount = (short) ByteBufUtils.readVarShort(buf);
itemStacks = new ItemStack[slotCount];
stackSizes = new int[slotCount];
for (int i = 0; i < slotCount; i++) {
itemStacks[i] = ByteBufUtils.readItemStack(buf);
stackSizes[i] = ByteBufUtils.readVarInt(buf, 5);
if (itemStacks[i] != null)
itemStacks[i].stackSize = stackSizes[i];
}
}
示例4: fromBytes
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void fromBytes(final ByteBuf buf)
{
windowId = ByteBufUtils.readVarInt(buf, 4);
slotNumber = ByteBufUtils.readVarShort(buf);
if (slotNumber < 0 || slotNumber > 279)
slotNumber = -999;
mouseButton = ByteBufUtils.readVarInt(buf, 4);
modifier = ByteBufUtils.readVarInt(buf, 4);
itemStack = ByteBufUtils.readItemStack(buf);
stackSize = ByteBufUtils.readVarInt(buf, 5);
if (itemStack != null)
itemStack.stackSize = stackSize;
transactionID = (short) ByteBufUtils.readVarShort(buf);
}
示例5: fromBytes
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void fromBytes(final ByteBuf buf)
{
itemStack = ByteBufUtils.readItemStack(buf);
slot = ByteBufUtils.readVarShort(buf);
stackSize = ByteBufUtils.readVarInt(buf, 5);
}
示例6: fromBytes
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void fromBytes(final ByteBuf buf)
{
windowID = ByteBufUtils.readVarInt(buf, 4);
transactionID = (short) ByteBufUtils.readVarShort(buf);
confirmed = ByteBufUtils.readVarShort(buf) == 1;
}
示例7: fromBytes
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void fromBytes(ByteBuf buf)
{
entityId = ByteBufUtils.readVarInt(buf, 4);
entitySyncDataCompound = ByteBufUtils.readTag(buf); // this class is very useful in general for writing more complex objects
// DEBUG
System.out.println("fromBytes");
}
示例8: fromBytes
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void fromBytes(ByteBuf buf)
{
location = new int[3];
for (int i=0;i<3;i++)
{
location[i] = ByteBufUtils.readVarInt(buf,5);
}
tagCompound = ByteBufUtils.readTag(buf);
}
示例9: fromBytes
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void fromBytes(ByteBuf buf)
{
x = ByteBufUtils.readVarInt(buf, 5);
y = ByteBufUtils.readVarInt(buf,5);
z = ByteBufUtils.readVarInt(buf,5);
direction = ByteBufUtils.readVarInt(buf,1);
isFilling = ByteBufUtils.readVarInt(buf,1);
fluidName = ByteBufUtils.readUTF8String(buf);
amount = ByteBufUtils.readVarInt(buf,5);
size = ByteBufUtils.readVarInt(buf,1);
}
示例10: readFromPacket
import cpw.mods.fml.common.network.ByteBufUtils; //导入方法依赖的package包/类
@Override
public void readFromPacket(ByteBuf buf) {
charge = ByteBufUtils.readVarInt(buf, 4);
}