Jump to content

[1.8] can't find a way to get player in packets (IMessageHandler) [Solved]


dark2222

Recommended Posts

i'm trying to sync some numbers from server to client but i need to now the player before i can set the numbers

 

	public static class Handler implements IMessageHandler<syncWithServer,IMessage> {
	@Override
	public IMessage onMessage(syncWithServer message, MessageContext ctx) {
			EntityPlayer player = ctx.getServerHandler().playerEntity.worldObj.getPlayerEntityByName(message.player);
			BloodCore bloodCore = BloodCore.get(player);

			bloodCore.setCurrentBlood(message.currentBlood);
			bloodCore.setVampireLevel(message.level);
			bloodCore.setVampireType(message.type);
		return null;
	}
}

with this as the code i get this error message https://gist.github.com/anonymous/e497758f2a16710a720d

when this happens the client does not crash it just say a fatal error has occured, this connection is terminated.

I've also try'ed to get the player client side (the handler is client sided) but when i do that the server crashes on startup

 

this is how i register the packets and made the network channel (yes it is in preinit)

		network = NetworkRegistry.INSTANCE.newSimpleChannel(Referance.MODID);
	network.registerMessage(syncWithServer.Handler.class, syncWithServer.class,0, Side.CLIENT);

 

my packet class itself

public class syncWithServer implements IMessage{
int currentBlood,level,type;
String player;

public syncWithServer() {}

public syncWithServer(int currentBlood,int level,int type, String player) {
	this.currentBlood = currentBlood;
	this.level = level;
	this.type = type;
	this.player = player;
}

@Override
public void toBytes(ByteBuf buf) {
	buf.writeInt(currentBlood);
	buf.writeInt(level);
	buf.writeInt(type);
	ByteBufUtils.writeUTF8String(buf,player);
}

@Override
public void fromBytes(ByteBuf buf)
{
	this.currentBlood = buf.readInt();
	this.level = buf.readInt();
	this.type = buf.readInt();
}

public static class Handler implements IMessageHandler<syncWithServer,IMessage> {
	@Override
	public IMessage onMessage(syncWithServer message, MessageContext ctx) {
			EntityPlayer player = ctx.getServerHandler().playerEntity.worldObj.getPlayerEntityByName(message.player);
			BloodCore bloodCore = BloodCore.get(player);

			bloodCore.setCurrentBlood(message.currentBlood);
			bloodCore.setVampireLevel(message.level);
			bloodCore.setVampireType(message.type);
		return null;
	}
}
}

Link to comment
Share on other sites

Your onMessage is called on the Client, so the only "valid" player is Minecraft.getMinecraft().thePlayer. If you want to sync your properties for other players as well, you'll need to send the entityID and use Minecraft.getMinecraft().theWorld.getEntityByID.

I've try'ed using Minecraft.getMinecraft().thePlayer and makes the server crash https://gist.github.com/anonymous/e531a46eeb7ba5b27804

Link to comment
Share on other sites

Yes, you will need to delegate your onMessage into your @SidedProxy.

I've read a lot of java but I'm still not sure what delegate means or does

I've try'ed to register the packet in mine @SidedPoxy (ClientProxy) but that made Minecraft.getMinecraft.thePlayer return

an nullExpection

Link to comment
Share on other sites

I did not say register it there, you need to register your packet just like always.

What I meant was that onMessage just calls a method in your proxy. This method does nothing in your Common(=Server)Proxy (you could even make it through an exception there, it will never be called) and actually handles the message in the ClientProxy.

ah, ok

didn't think i should register it there but there are sometimes java just confuses me

--EDIT

Minecraft.getMinecraft.thePlayer still returns null

 

--EDIT

ok if i make it print to console it does not return null then it return EntityPlayerSP witch is a bit problematic for my get method in a IExtendedEntity... only accepts EntityPlayer and if i try to convert it to a EntityPlayer

EntityPlayer player = (EntityPlayer) Minecraft.getMinecraft.thePlayer;

idea says (EntityPlayer) are not in use/necessary.

Link to comment
Share on other sites

It's still an EntityPlayer...

ok... but why does it return null (nullExeption) when i then try to use it with my IExtendedEntity... then?

 

this is what the onMessage calls

	@Override
public void syncWithServerHandler(int currentBlood,int level,int type)
{
	EntityPlayer player = Minecraft.getMinecraft().thePlayer;
	BloodCore bloodCore = BloodCore.get(player); <----- NullPointerException here when trying to connect to server

	bloodCore.setCurrentBlood(currentBlood);
	bloodCore.setVampireLevel(level);
	bloodCore.setVampireType(type);
}

 

the Bloodcore.get method looks like this

public static BloodCore get(EntityPlayer player) {return (BloodCore) player.getExtendedProperties(PROP_NAME);}

Link to comment
Share on other sites

How do you register your IEEP?

i register the IEEP in EntityConstruction event

	@SubscribeEvent
public void handleConstruction(EntityEvent.EntityConstructing event)
{
	if (event.entity instanceof EntityPlayer && BloodCore.get((EntityPlayer) event.entity) == null) {
		BloodCore.register((EntityPlayer) event.entity);
	}

}

 

and it calls this method

	public static void register(EntityPlayer player) {
	player.registerExtendedProperties(BloodCore.PROP_NAME, new BloodCore(player));
}

 

and my eventHandler are registered by my commonProxy

	public void preInit(){
	ConfigurationHandler.init(ConfigFile);
	FMLCommonHandler.instance().bus().register(new ConfigurationHandler());
}

	@Mod.EventHandler
public void preInit(FMLPreInitializationEvent event)
{
	network = NetworkRegistry.INSTANCE.newSimpleChannel(Referance.MODID);
	network.registerMessage(syncWithServer.Handler.class, syncWithServer.class,0, Side.CLIENT);
	proxy.preInit();
	proxy.registerVampires();
}

Link to comment
Share on other sites

Why is your EventHandler registered in your CommonProxy? It might be that you only register it on the Dedicated Server, why?

oh.. i thought that the commonProxy got run server and client side, just trying to keep the code clean. Never mind i moved everything from the preinit method back but the client still have the problem of return NullPointerException :(

 

client log after login to server https://gist.github.com/anonymous/6a67c1f2464f5eeb9e33

method called by package

	@Override
public void syncWithServerHandler(int currentBlood,int level,int type)
{
	EntityPlayer player = Minecraft.getMinecraft().thePlayer;
	BloodCore bloodCore = BloodCore.get(player);

	bloodCore.setCurrentBlood(currentBlood);
	bloodCore.setVampireLevel(level);
	bloodCore.setVampireType(type);
}

current preInit

	@Mod.EventHandler
public void preInit(FMLPreInitializationEvent event)
{
	network = NetworkRegistry.INSTANCE.newSimpleChannel(Referance.MODID);
	network.registerMessage(syncWithServer.Handler.class, syncWithServer.class, 0, Side.CLIENT);
	VampireRegister.registerVampire(new BloodVampire());
	ConfigurationHandler.init(ConfigFile);
	FMLCommonHandler.instance().bus().register(new ConfigurationHandler());
}

the event that starts it all

	@SubscribeEvent
public void onEntityJoinWorld(EntityJoinWorldEvent event){
	if (!event.entity.worldObj.isRemote && event.entity instanceof EntityPlayer) {
		BloodCore.get((EntityPlayer) event.entity).syncWithServer();
	}
}

the syncWithServer method

	public void syncWithServer()
{
	if(!player.worldObj.isRemote)
	vampiric.network.sendTo(new syncWithServer(this.CurrentBlood,this.VampireLevel,this.VampireType,this.player.getDisplayName().getUnformattedText()),(EntityPlayerMP) player);
}

can it be a 1.8 forge bug?

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

    • i notice a change if i add the min and max ram in the line like this for example:    # Xmx and Xms set the maximum and minimum RAM usage, respectively. # They can take any number, followed by an M or a G. # M means Megabyte, G means Gigabyte. # For example, to set the maximum to 3GB: -Xmx3G # To set the minimum to 2.5GB: -Xms2500M # A good default for a modded server is 4GB. # Uncomment the next line to set it. -Xmx10240M -Xms8192M    i need to make more experiments but for now this apparently works.
    • Selamat datang di OLXTOTO, situs slot gacor terpanas yang sedang booming di industri perjudian online. Jika Anda mencari pengalaman bermain yang luar biasa, maka OLXTOTO adalah tempat yang tepat untuk Anda. Dapatkan sensasi tidak biasa dengan variasi slot online terlengkap dan peluang memenangkan jackpot slot maxwin yang sering. Di sini, Anda akan merasakan keseruan yang luar biasa dalam bermain judi slot. DAFTAR OLXTOTO DISINI LOGIN OLXTOTO DISINI AKUN PRO OLXTOTO DISINI   Slot Gacor untuk Sensasi Bermain Maksimal Olahraga cepat dan seru dengan slot gacor di OLXTOTO. Rasakan sensasi bermain maksimal dengan mesin slot yang memberikan kemenangan beruntun. Temukan keberuntungan Anda di antara berbagai pilihan slot gacor yang tersedia dan rasakan kegembiraan bermain judi slot yang tak terlupakan. Situs Slot Terpercaya dengan Pilihan Terlengkap OLXTOTO adalah situs slot terpercaya yang menawarkan pilihan terlengkap dalam perjudian online. Nikmati berbagai genre dan tema slot online yang menarik, dari slot klasik hingga slot video yang inovatif. Dipercaya oleh jutaan pemain, OLXTOTO memberikan pengalaman bermain yang aman dan terjamin.   Jackpot Slot Maxwin Sering Untuk Peluang Besar Di OLXTOTO, kami tidak hanya memberikan hadiah slot biasa, tapi juga memberikan kesempatan kepada pemain untuk memenangkan jackpot slot maxwin yang sering. Dengan demikian, Anda dapat meraih keberuntungan besar dan memenangkan ribuan rupiah sebagai hadiah jackpot slot maxwin kami. Jackpot slot maxwin merupakan peluang besar bagi para pemain judi slot untuk meraih keuntungan yang lebih besar. Dalam permainan kami, Anda tidak harus terpaku pada kemenangan biasa saja. Kami hadir dengan jackpot slot maxwin yang sering, sehingga Anda memiliki peluang yang lebih besar untuk meraih kemenangan besar dengan hadiah yang menggiurkan. Dalam permainan judi slot, pengalaman bermain bukan hanya tentang keseruan dan hiburan semata. Kami memahami bahwa para pemain juga menginginkan kesempatan untuk meraih keberuntungan besar. Oleh karena itu, OLXTOTO hadir dengan jackpot slot maxwin yang sering untuk memberikan peluang besar kepada para pemain kami. Peluang Besar Menang Jackpot Slot Maxwin Peluang menang jackpot slot maxwin di OLXTOTO sangatlah besar. Anda tidak perlu khawatir tentang batasan atau pembatasan dalam meraih jackpot tersebut. Kami ingin memberikan kesempatan kepada semua pemain kami untuk merasakan sensasi menang dalam jumlah yang luar biasa. Jackpot slot maxwin kami dibuka untuk semua pemain judi slot di OLXTOTO. Anda memiliki peluang yang sama dengan pemain lainnya untuk memenangkan hadiah jackpot yang besar. Kami percaya bahwa semua orang memiliki kesempatan untuk meraih keberuntungan besar, dan itulah mengapa kami menyediakan jackpot slot maxwin yang sering untuk memenuhi harapan dan keinginan Anda.  
    • LOGIN DAN DAFTAR DISINI SEKARANG !!!! Blacktogel adalah situs judi slot online yang menjadi pilihan banyak penggemar judi slot gacor di Indonesia. Dengan platform yang sangat user-friendly dan berbagai macam permainan slot yang tersedia, Blacktogel menjadi tempat yang tepat untuk penggemar judi slot online. Dalam artikel ini, kami akan membahas tentang Blacktogel dan keunggulan situs slot gacor online yang disediakan.  
    • Situs bandar slot online Gacor dengan bonus terbesar saat ini sedang menjadi sorotan para pemain judi online. Dengan persaingan yang semakin ketat dalam industri perjudian online, pemain mencari situs yang tidak hanya menawarkan permainan slot yang gacor (sering memberikan kemenangan), tetapi juga bonus terbesar yang bisa meningkatkan peluang menang. Daftar disini : https://gesit.io/googlegopek
    • Situs bandar slot online Gacor dengan bonus terbesar saat ini sedang menjadi sorotan para pemain judi online. Dengan persaingan yang semakin ketat dalam industri perjudian online, pemain mencari situs yang tidak hanya menawarkan permainan slot yang gacor (sering memberikan kemenangan), tetapi juga bonus terbesar yang bisa meningkatkan peluang menang. Daftar disini : https://gesit.io/googlegopek
  • Topics

×
×
  • Create New...

Important Information

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