本文整理汇总了Java中net.minecraft.network.PacketBuffer.readChatComponent方法的典型用法代码示例。如果您正苦于以下问题:Java PacketBuffer.readChatComponent方法的具体用法?Java PacketBuffer.readChatComponent怎么用?Java PacketBuffer.readChatComponent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.network.PacketBuffer
的用法示例。
在下文中一共展示了PacketBuffer.readChatComponent方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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.type = (S45PacketTitle.Type)buf.readEnumValue(S45PacketTitle.Type.class);
if (this.type == S45PacketTitle.Type.TITLE || this.type == S45PacketTitle.Type.SUBTITLE)
{
this.message = buf.readChatComponent();
}
if (this.type == S45PacketTitle.Type.TIMES)
{
this.fadeInTime = buf.readInt();
this.displayTime = buf.readInt();
this.fadeOutTime = buf.readInt();
}
}
示例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.windowId = buf.readUnsignedByte();
this.inventoryType = buf.readStringFromBuffer(32);
this.windowTitle = buf.readChatComponent();
this.slotCount = buf.readUnsignedByte();
if (this.inventoryType.equals("EntityHorse"))
{
this.entityId = buf.readInt();
}
}
示例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.blockPos = buf.readBlockPos();
this.lines = new IChatComponent[4];
for (int i = 0; i < 4; ++i)
{
this.lines[i] = buf.readChatComponent();
}
}
示例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.reason = buf.readChatComponent();
}
示例5: readPacketData
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
/**
* Reads the raw packet data from the data stream.
*/
public void readPacketData(PacketBuffer buf) throws IOException
{
this.header = buf.readChatComponent();
this.footer = buf.readChatComponent();
}
示例6: readPacketData
import net.minecraft.network.PacketBuffer; //导入方法依赖的package包/类
/**
* Reads the raw packet data from the data stream.
*/
public void readPacketData(PacketBuffer buf) throws IOException
{
this.chatComponent = buf.readChatComponent();
this.type = buf.readByte();
}