Jump to content

ClientSide return null entity player


KururuLABO

Recommended Posts

Hi, I try to making a little mod. but i have problem.

When i call get playerEntity from ClientProxy it's will return null exception.

 

Client Proxy :

public class ClientProxy extends CommonProxy{

private final Minecraft mc = Minecraft.getMinecraft();

@Override
public EntityPlayer getPlayerEntity(MessageContext ctx) {
	return (ctx.side.isClient() ? (EntityPlayer) mc.thePlayer : super.getPlayerEntity(ctx));
}
}

 

Call with

@Override
public IMessage onMessage(REQ message, MessageContext ctx) {
	if(ctx.side == Side.SERVER)
		handleServerSide(message, TestMod.proxy.getPlayerEntity(ctx));
	else
		handleClientSide(message, TestMod.proxy.getPlayerEntity(ctx));
	return null;
}

 

 

When send some packet to player this line will be exception

handleClientSide(message, TestMod.proxy.getPlayerEntity(ctx));

with null PlayerEntity.

 

How can i fix it?

Link to comment
Share on other sites

99% sure you came here from coolAliases packets tutorial.

 

Post more code - more proxies (common and your handling methods), example packet handler used by your method.

You might wanna print variables (player, msg context, etc).

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

99% sure you came here from coolAliases packets tutorial.

 

Post more code - more proxies (common and your handling methods), example packet handler used by your method.

You might wanna print variables (player, msg context, etc).

 

I just getting only getPlayerEntity method from coolaliases

 

so i can't print anything when print mc.thePlayer at client proxy. Source will exception that place.

Link to comment
Share on other sites

As Ernio said, we need more code in order to help you. Post your full packet handler class, common and client proxy, full message class, and the code where you send the packet.

 

Also, what version of Minecraft are you on, 1.8? You have to be aware of thread issues, for example sending packets to the client player when they join the world will give you this kind of NPE when receiving the packet, because the client player doesn't yet exist.

Link to comment
Share on other sites

As Ernio said, we need more code in order to help you. Post your full packet handler class, common and client proxy, full message class, and the code where you send the packet.

 

Also, what version of Minecraft are you on, 1.8? You have to be aware of thread issues, for example sending packets to the client player when they join the world will give you this kind of NPE when receiving the packet, because the client player doesn't yet exist.

 

 

AbstractPacket :

 
public abstract class elAbstractPacket<REQ extends IMessage> implements IMessage, IMessageHandler<REQ, REQ>{

public abstract void readPacket(PacketBuffer buf);
public abstract void sendPacket(PacketBuffer buf);
public abstract void handleClientSide(REQ Message, EntityPlayer player);
public abstract void handleServerSide(REQ message, EntityPlayer player);

@Override
public REQ onMessage(REQ message, MessageContext ctx) {
	if(ctx.side == Side.SERVER)
		handleServerSide(message, Endless.proxy.getPlayerEntity(ctx));
	else
		handleClientSide(message, Endless.proxy.getPlayerEntity(ctx));
	return null;
}

@Override
public void fromBytes(ByteBuf buf) {
	readPacket(new PacketBuffer(buf));
}

@Override
public void toBytes(ByteBuf buf) {
	sendPacket(new PacketBuffer(buf));
}


}

 

Send it from

@SubscribeEvent
public void onEntityJoinWorld(EntityJoinWorldEvent event) {
	if(event.entity == null) return;

	if(!(event.entity instanceof EntityPlayer)) return;

	if(event.entity.worldObj.isRemote) return;

	if(event.world.isRemote) return;

	EntityPlayer player = (EntityPlayer) event.entity;
	elPacketHandler.sendTo(new elAuthPacket(player), (EntityPlayerMP)player);
}

 

elAuthPacket:

public class elAuthPacket extends elAbstractPacket<elAuthPacket>{
private NBTTagCompound data;
private elAuthOperation operation;

public elAuthPacket() {}

public elAuthPacket(EntityPlayer player) {
	this.data = new NBTTagCompound();
	elAuthPlayerInfo.get(player).saveNBTData(this.data);
	this.operation = elAuthOperation.Sync;
}

@Override
public void readPacket(PacketBuffer buf) {	
	this.operation = elAuthOperation.values[buf.readByte()];
	switch(operation) {
		case Sync:
			this.data = ByteBufUtils.readTag(buf);
			break;
	}
}

@Override
public void sendPacket(PacketBuffer buf) {
	buf.writeByte(this.operation.ordinal());
	switch(operation) {
		case Sync:
			ByteBufUtils.writeTag(buf, this.data);	
			break;
	}
}

@Override
public void handleClientSide(elAuthPacket message, EntityPlayer player) {
	switch(message.operation) {
		case Sync:
			elAuthPlayerInfo.get(player).loadNBTData(message.data);
			break;

	}
}

@Override
public void handleServerSide(elAuthPacket message, EntityPlayer player) {
	switch(message.operation) {
	}

}
}

 

 

edit :: fix elAuthPacket class

 

ps. Do you need more? please tell me. what do you need.

Link to comment
Share on other sites

I need to know what version of Minecraft you are modding, but judging from your circumstance, I'm pretty sure it is 1.8.

 

You need to schedule your packet to process on the main thread.

 

I just have all of my packets default to this behavior since a. it's what Minecraft does, and b. 95% of the time you need to anyway.

Link to comment
Share on other sites

Need exacly this: (alredy noted)

Endless.proxy.getPlayerEntity(ctx) // both proxies

But coolAlias is most likely right (about that 1.8 ).

 

Also - you packet code WILL break. You cannot have message and handler in one class. Those two simply cannot share fields with each other.

You need to separate them to 2 classes or make handler to be a static class inside Message class.

This "WILL break" - race conditions and stuff. Just don't do that.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

You actually can have the handler in the same class - the problem isn't race conditions, it is the fact that the message instance that gets sent / received is not the same one that is constructed to handle the message (if they are in the same class), so all of the message contents that you expect to be there when you are handling it are invalid.

 

You can get around this by creating a separate method such as 'process' that you call from the handler using the received message instance.

 

In fact, ALL of my messages use that same handler, and do whatever they need to do in the processing method. Makes registration easy ;)

Link to comment
Share on other sites

I need to know what version of Minecraft you are modding, but judging from your circumstance, I'm pretty sure it is 1.8.

 

You need to schedule your packet to process on the main thread.

 

I just have all of my packets default to this behavior since a. it's what Minecraft does, and b. 95% of the time you need to anyway.

 

I very thanks so much. I has merged to my soure and it's working now.

Thank you.

Link to comment
Share on other sites

@coolAlias: The logic in your code there is a bit flawed. If msg.requiresMainThread() returns true you go into checkThreadAndEnqueue. That method then checks if you are not on the main thread and if so, schedules a task. But if you are already on the main thread, it does nothing. Yes, this will never happen, but then you might as well not check for isCallingFromMinecraftThread at all.

Ah yes, you're right. It's one of those 'copied vanilla, got it working, and never really thought about it again' kind of situations :P

 

EDIT: Aaaaand just put you to 3000. Damn. xD

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Slot depo 5k merupakan situs slot depo 5k yang menyediakan slot minimal deposit 5rb atau 5k via dana yang super gacor, dimana para pemain hanya butuh modal depo sebesar 5k untuk bisa bermain di link slot gacor thailand terbaru tahun 2024 yang gampang menang ini.   DAFTAR & LOGIN AKUN PRO SLOT DEPO 5K ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit 3000 adalah situs slot deposit 3000 via dana yang super gacor dimana para pemain dijamin garansi wd hari ini juga hanya dengan modal receh berupa deposit sebesar 3000 baik via dana, ovo, gopay maupun linkaja untuk para pemain pengguna e-wallet di seluruh Indonesia.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT 3000 ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • OLXTOTO: Menikmati Sensasi Bermain Togel dan Slot dengan Aman dan Mengasyikkan Dunia perjudian daring terus berkembang dengan cepat, dan salah satu situs yang telah menonjol dalam pasar adalah OLXTOTO. Sebagai platform resmi untuk permainan togel dan slot, OLXTOTO telah memenangkan kepercayaan banyak pemain dengan menyediakan pengalaman bermain yang aman, adil, dan mengasyikkan. DAFTAR OLXTOTO DISINI <a href="https://imgbb.com/"><img src="https://i.ibb.co/GnjSVpx/daftar1-480x480.webp" alt="daftar1-480x480" border="0" /></a> Keamanan Sebagai Prioritas Utama Salah satu aspek utama yang membuat OLXTOTO begitu menonjol adalah komitmennya terhadap keamanan pemain. Dengan menggunakan teknologi enkripsi terkini, situs ini memastikan bahwa semua informasi pribadi dan keuangan para pemain tetap aman dan terlindungi dari akses yang tidak sah. Beragam Permainan yang Menarik Di OLXTOTO, pemain dapat menemukan beragam permainan yang menarik untuk dinikmati. Mulai dari permainan klasik seperti togel hingga slot modern dengan fitur-fitur inovatif, ada sesuatu untuk setiap selera dan preferensi. Grafik yang memukau dan efek suara yang mengagumkan menambah keseruan setiap putaran. Peluang Menang yang Tinggi Salah satu hal yang paling menarik bagi para pemain adalah peluang menang yang tinggi yang ditawarkan oleh OLXTOTO. Dengan pembayaran yang adil dan peluang yang setara bagi semua pemain, setiap taruhan memberikan kesempatan nyata untuk memenangkan hadiah besar. Layanan Pelanggan yang Responsif Tim layanan pelanggan OLXTOTO siap membantu para pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Dengan layanan yang ramah dan responsif, pemain dapat yakin bahwa mereka akan mendapatkan bantuan yang mereka butuhkan dengan cepat dan efisien. Kesimpulan OLXTOTO telah membuktikan dirinya sebagai salah satu situs terbaik untuk penggemar togel dan slot online. Dengan fokus pada keamanan, beragam permainan yang menarik, peluang menang yang tinggi, dan layanan pelanggan yang luar biasa, tidak mengherankan bahwa situs ini telah menjadi pilihan utama bagi banyak pemain. Jadi, jika Anda mencari pengalaman bermain yang aman, adil, dan mengasyikkan, jangan ragu untuk bergabung dengan OLXTOTO hari ini dan rasakan sensasi kemenangan!
    • Slot deposit dana adalah situs slot deposit dana yang juga menerima dari e-wallet lain seperti deposit via dana, ovo, gopay & linkaja terlengkap saat ini, sehingga para pemain yang tidak memiliki rekening bank lokal bisa tetap bermain slot dan terbantu dengan adanya fitur tersebut.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
    • Slot deposit dana adalah situs slot deposit dana minimal 5000 yang dijamin garansi super gacor dan gampang menang, dimana para pemain yang tidak memiliki rekening bank lokal tetap dalam bermain slot dengan melakukan deposit dana serta e-wallet lainnya seperti ovo, gopay maupun linkaja lengkap. Agar para pecinta slot di seluruh Indonesia tetap dapat menikmati permainan tanpa halangan apapun khususnya metode deposit, dimana ketersediaan cara deposit saat ini yang lebih beragam tentunya sangat membantu para pecinta slot.   DAFTAR & LOGIN AKUN PRO SLOT DEPOSIT DANA ⭐⭐⭐ KLIK DISINI ⭐⭐⭐  
  • Topics

×
×
  • Create New...

Important Information

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