本文整理汇总了Java中cn.nukkit.utils.BinaryStream.putUnsignedVarInt方法的典型用法代码示例。如果您正苦于以下问题:Java BinaryStream.putUnsignedVarInt方法的具体用法?Java BinaryStream.putUnsignedVarInt怎么用?Java BinaryStream.putUnsignedVarInt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cn.nukkit.utils.BinaryStream
的用法示例。
在下文中一共展示了BinaryStream.putUnsignedVarInt方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: writeShapedRecipe
import cn.nukkit.utils.BinaryStream; //导入方法依赖的package包/类
private static int writeShapedRecipe(ShapedRecipe recipe, BinaryStream stream) {
stream.putVarInt(recipe.getWidth());
stream.putVarInt(recipe.getHeight());
for (int z = 0; z < recipe.getHeight(); ++z) {
for (int x = 0; x < recipe.getWidth(); ++x) {
stream.putSlot(recipe.getIngredient(x, z));
}
}
stream.putUnsignedVarInt(1);
stream.putSlot(recipe.getResult());
stream.putUUID(recipe.getId());
return CraftingDataPacket.ENTRY_SHAPED;
}
示例2: writeShapelessRecipe
import cn.nukkit.utils.BinaryStream; //导入方法依赖的package包/类
private static int writeShapelessRecipe(ShapelessRecipe recipe, BinaryStream stream) {
stream.putUnsignedVarInt(recipe.getIngredientCount());
for (Item item : recipe.getIngredientList()) {
stream.putSlot(item);
}
stream.putUnsignedVarInt(1);
stream.putSlot(recipe.getResult());
stream.putUUID(recipe.getId());
return CraftingDataPacket.ENTRY_SHAPELESS;
}
示例3: writeEnchantList
import cn.nukkit.utils.BinaryStream; //导入方法依赖的package包/类
private static int writeEnchantList(EnchantmentList list, BinaryStream stream) {
stream.putByte((byte) list.getSize());
for (int i = 0; i < list.getSize(); ++i) {
EnchantmentEntry entry = list.getSlot(i);
stream.putUnsignedVarInt(entry.getCost());
stream.putUnsignedVarInt(entry.getEnchantments().length);
for (Enchantment enchantment : entry.getEnchantments()) {
stream.putUnsignedVarInt(enchantment.getId());
stream.putUnsignedVarInt(enchantment.getLevel());
}
stream.putString(entry.getRandomName());
}
return CraftingDataPacket.ENTRY_ENCHANT_LIST;
}