Jump to content

Recommended Posts

Posted

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?

Posted

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).

  Quote

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

Posted
  On 7/7/2015 at 1:59 AM, Ernio said:

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.

Posted

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.

Posted
  On 7/7/2015 at 2:24 AM, coolAlias said:

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.

Posted

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.

  Quote

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

Posted

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 ;)

Posted
  On 7/7/2015 at 3:01 AM, coolAlias said:

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.

Posted
  On 7/7/2015 at 11:12 AM, diesieben07 said:

@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

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

    • Hello , when I try to launch the forge installer it just crash with a message for 0,5 secondes. I'm using java 17 to launch it. Here's the link of the error :https://cdn.corenexis.com/view/?img=d/ma24/qs7u4U.jpg  
    • You will find the crash-report or log in your minecraft directory (crash-report or logs folder)
    • Use a modpack which is using these 2 mods as working base:   https://www.curseforge.com/minecraft/modpacks/life-in-the-village-3
    • inicie un mundo donde instale Croptopia y Farmer's Delight, entonces instale el addon Croptopia Delight pero no funciona. es la version 1.18.2
    • Hello all. I'm currently grappling with the updateShape method in a custom class extending Block.  My code currently looks like this: The conditionals in CheckState are there to switch blockstate properties, which is working fine, as it functions correctly every time in getStateForPlacement.  The problem I'm running into is that when I update a state, the blocks seem to call CheckState with the position of the block which was changed updated last.  If I build a wall I can see the same change propagate across. My question thus is this: is updateShape sending its return to the neighbouring block?  Is each block not independently executing the updateShape method, thus inserting its own current position?  The first statement appears to be true, and the second false (each block is not independently executing the method). I have tried to fix this by saving the block's own position to a variable myPos at inception, and then feeding this in as CheckState(myPos) but this causes a worse outcome, where all blocks take the update of the first modified block, rather than just their neighbour.  This raises more questions than it answers, obviously: how is a different instance's variable propagating here?  I also tried changing it so that CheckState did not take a BlockPos, but had myPos built into the body - same problem. I have previously looked at neighbourUpdate and onNeighbourUpdate, but could not find a way to get this to work at all.  One post on here about updatePostPlacement and other methods has proven itself long superceded.  All other sources on the net seem to be out of date. Many thanks in advance for any help you might offer me, it's been several days now of trying to get this work and several weeks of generally trying to get round this roadblock.  - Sandermall
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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