Jump to content

[1.7.2] How send string via netty


DoctorBooooom

Recommended Posts

I want to send a string (eg player name) through the netty, however, the method writeString() and readString() do not exist.

 

How i can do this?

And how i get EntityPlayer which send the packet?

 

package ru.DoctorBooooom.LastWorld.network.packet;

import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;

public class Packet extends APacket
{
@Override
    public void encodeInto(ChannelHandlerContext ctx, ByteBuf buffer)
    {
buffer.writeString("PlayerName");
    }

    @Override
    public void decodeInto(ChannelHandlerContext ctx, ByteBuf buffer)
    {
String name = buffer.readString();
    }
@Override
    public void handleClientSide(EntityPlayer player) {

    }

    @Override
    public void handleServerSide(EntityPlayer player) {

    }
}

Link to comment
Share on other sites

net.minecraft.network.PacketBuffer has methods; void writeStringToBuffer(String) and String readStringFromBuffer(int decodedLength)

 

It extends ByteBuffer, so you can do:

myBuf = new PacketBuffer(myByteBuffer);
myBuf.writeStringToBuffer(myString);
// or
myString = myBuf.readStringFromBuffer(100);

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.