当前位置: 首页>>代码示例>>Java>>正文


Java PacketBuffer.readChatComponent方法代码示例

本文整理汇总了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();
    }
}
 
开发者ID:SkidJava,项目名称:BaseClient,代码行数:20,代码来源:S45PacketTitle.java

示例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();
    }
}
 
开发者ID:SkidJava,项目名称:BaseClient,代码行数:16,代码来源:S2DPacketOpenWindow.java

示例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();
    }
}
 
开发者ID:Notoh,项目名称:DecompiledMinecraft,代码行数:14,代码来源:S33PacketUpdateSign.java

示例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();
}
 
开发者ID:Notoh,项目名称:DecompiledMinecraft,代码行数:8,代码来源:S00PacketDisconnect.java

示例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();
}
 
开发者ID:Notoh,项目名称:DecompiledMinecraft,代码行数:9,代码来源:S47PacketPlayerListHeaderFooter.java

示例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();
}
 
开发者ID:Notoh,项目名称:DecompiledMinecraft,代码行数:9,代码来源:S02PacketChat.java


注:本文中的net.minecraft.network.PacketBuffer.readChatComponent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。