Jump to content

[SOLVED]Changing NBTTagName on Keypress


Taji34

Recommended Posts

Okay, so I am trying to get the name of a NBTTag to change when I press a key, however when I press the key the name is not changing. I have it print the name to the console on right click, but the name just stays at what it was initialized at. Here is my code:

 

Baton.java:

package taji34.troncraft;
import cpw.mods.fml.client.registry.KeyBindingRegistry.KeyHandler;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.client.settings.KeyBinding;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTBase;
import net.minecraft.nbt.NBTTagByte;
import net.minecraft.nbt.NBTTagString;
import net.minecraft.world.World;
public class Baton extends Item {
public Baton(int par1) {
	super(par1);
	setMaxStackSize(1);
	setCreativeTab(CreativeTabs.tabMisc);
	setUnlocalizedName("Baton");
}
NBTTagByte data = new NBTTagByte("Test1");
    @Override
    @SideOnly(Side.CLIENT)
    public void registerIcons(IconRegister iconRegister) {
        this.itemIcon = iconRegister.registerIcon("Troncraft:Baton");
    }
public static KeyBinding mode = new KeyBinding("Baton Staff Mode", 36);   
public void keyboardEvent(KeyBinding keybinding)
    {
		if(keybinding == mode)
		{	
			if(!(data.getName().equals("Test2"))){
				data.setName("Test2");
			}
		}
    }
    
    public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
    {
       System.out.println(data.getName());
    	return par1ItemStack;
    }
    
}

 

Troncraft.java:

package taji34.troncraft;
import net.minecraft.block.Block;
import net.minecraft.client.renderer.entity.RenderSnowball;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.client.settings.KeyBinding;
import net.minecraft.entity.projectile.EntitySnowball;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.src.ModLoader;
import cpw.mods.fml.client.registry.KeyBindingRegistry;
import cpw.mods.fml.client.registry.KeyBindingRegistry.KeyHandler;
import cpw.mods.fml.client.registry.RenderingRegistry;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.Mod.Instance;
import cpw.mods.fml.common.Mod.PostInit;
import cpw.mods.fml.common.Mod.PreInit;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;
@Mod(modid="Troncraft", name="Troncraft", version="0.0.1")
@NetworkMod(clientSideRequired=true, serverSideRequired=false)
public class Troncraft {
        // The instance of your mod that Forge uses.
        @Instance("Troncraft")
        public static Troncraft instance;
        public final static Item identityDisk = new IdentityDisk(5001);
        int diskItemID = identityDisk.itemID;
    	private final static Item baton = new Baton(5002);
    	int batonItemID = baton.itemID;
    	KeyBinding[] bindings = { Baton.mode };
    	TajiKeyHandler keyHandler;
        // Says where the client and server 'proxy' code is loaded.
        @SidedProxy(clientSide="taji34.troncraft.client.ClientProxy", serverSide="taji34.troncraft.CommonProxy")
        public static CommonProxy proxy;
        @EventHandler
        public void preInit(FMLPreInitializationEvent event) {
                // Stub Method
        }
        @EventHandler
        public void load(FMLInitializationEvent event) {
            LanguageRegistry.addName(identityDisk, "Identity Disk");
            LanguageRegistry.addName(baton, "Baton");
            EntityRegistry.registerModEntity(EntityIdentityDisk.class, "IdentityDisk", 5001, this, 40, 3, true);
            RenderingRegistry.registerEntityRenderingHandler(EntityIdentityDisk.class, new RenderSnowball(identityDisk));
        	keyHandler = new TajiKeyHandler(bindings);
        	KeyBindingRegistry.registerKeyBinding(keyHandler);
        }
        @EventHandler
        public void postInit(FMLPostInitializationEvent event) {
                // Stub Method
        }
}

 

Any ideas? Am I doing something wrong?

Link to comment
Share on other sites

So do I have the NBT data in the right place now?

package taji34.troncraft;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;

import cpw.mods.fml.client.registry.KeyBindingRegistry.KeyHandler;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.client.settings.KeyBinding;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTBase;
import net.minecraft.nbt.NBTTagByte;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagString;
import net.minecraft.network.packet.Packet250CustomPayload;
import net.minecraft.world.World;
public class Baton extends Item {
public Baton(int par1) {
	super(par1);
	setMaxStackSize(1);
	setCreativeTab(CreativeTabs.tabMisc);
	setUnlocalizedName("Baton");
}
    @Override
    @SideOnly(Side.CLIENT)
    public void registerIcons(IconRegister iconRegister) {
        this.itemIcon = iconRegister.registerIcon("Troncraft:Baton");
    }
public static KeyBinding mode = new KeyBinding("Baton Staff Mode", 36);   
public void keyboardEvent(KeyBinding keybinding)
    {
		if(keybinding == mode)
		{	

		}
    }
    
    public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
    {
    	NBTTagCompound tag = par1ItemStack.getTagCompound();
    	if (tag == null) {
    		tag = new NBTTagCompound();
    		par1ItemStack.setTagCompound(tag);
    	}
    	if (tag.getName().equals("tag")) {
    		tag.setName("Test1");
    	}
    	System.out.println(tag.getName());
    	return par1ItemStack;
    }
    
}

Link to comment
Share on other sites

to send a packet check the wiki for packet handling

 

to send lines of code... i HIGHLY doubt you want to do that. so since you're asking the question im assuming the knowledge for this is WAY out of your reach and even if you knew how to do it you probably never want to do this as theres is SURELY another way

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

to send a packet check the wiki for packet handling

 

to send lines of code... i HIGHLY doubt you want to do that. so since you're asking the question im assuming the knowledge for this is WAY out of your reach and even if you knew how to do it you probably never want to do this as theres is SURELY another way

 

I'm new to coding, so that was the first thing I thought of. I'm trying to change the name of a tag in an itemstack, but I can't seem to think of a way to tell the server to do that.

Link to comment
Share on other sites

[shadow=red,left][shadow=red,left]to send a packet check the wiki for packet handling[/shadow][/shadow]

I meant what to send in the packet, I understand I need to send a packet to the server. I guess i'll just have to put a bit more thought into it.

Link to comment
Share on other sites

Never let the client tell the server what to do. Only tell the server what the use has done, then let the server decide what to do with that.

Example:

Don't send a packet to change NBT, but send a packet to tell the server that a key was pressed.

 

Then the server decides if the player was allowed to press the key, if he is holding the right item, etc. etc. (validation is all, Clients always lie to you, never trust them!).

After that it changes the NBT (or does whatever).

 

I highly suggest my tutorial as a followup to the Packet Handling tutorial on the wiki: www.minecraftforge.net/wiki/Advanced_Packet_Handling

 

Thank You! I was just about to post because I couldn't figure out how to send a packet from a keypress, but what you suggested makes more sense!

Link to comment
Share on other sites

Okay, so I have hit a snag. My key binding is registered in the game options, but when I press it, it does nothing. I currently have it print "Hi" to the console for troubleshooting purposes, but it is not working. Here is my code:

 

Troncraft.java:

package taji34.troncraft;
import net.minecraft.block.Block;
import net.minecraft.client.renderer.entity.RenderSnowball;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.client.settings.KeyBinding;
import net.minecraft.entity.projectile.EntitySnowball;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.src.ModLoader;
import cpw.mods.fml.client.registry.KeyBindingRegistry;
import cpw.mods.fml.client.registry.KeyBindingRegistry.KeyHandler;
import cpw.mods.fml.client.registry.RenderingRegistry;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.Mod.Instance;
import cpw.mods.fml.common.Mod.PostInit;
import cpw.mods.fml.common.Mod.PreInit;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;
@Mod(modid="Troncraft", name="Troncraft", version="0.0.1")
@NetworkMod(clientSideRequired=true, serverSideRequired=false, channels={"Baton"}, packetHandler = TajiPacketHandler.class)
public class Troncraft {
        // The instance of your mod that Forge uses.
        @Instance("Troncraft")
        public static Troncraft instance;
        public final static Item identityDisk = new IdentityDisk(5001);
        int diskItemID = identityDisk.itemID;
    	private final static Item baton = new Baton(5002);
    	int batonItemID = baton.itemID;
    	KeyBinding[] bindings = { Baton.mode };
    	TajiKeyHandler keyHandler;
        // Says where the client and server 'proxy' code is loaded.
        @SidedProxy(clientSide="taji34.troncraft.client.ClientProxy", serverSide="taji34.troncraft.CommonProxy")
        public static CommonProxy proxy;
        @EventHandler
        public void preInit(FMLPreInitializationEvent event) {
                // Stub Method
        }
        @EventHandler
        public void load(FMLInitializationEvent event) {
            LanguageRegistry.addName(identityDisk, "Identity Disk");
            LanguageRegistry.addName(baton, "Baton");
            EntityRegistry.registerModEntity(EntityIdentityDisk.class, "IdentityDisk", 5001, this, 40, 3, true);
            RenderingRegistry.registerEntityRenderingHandler(EntityIdentityDisk.class, new RenderSnowball(identityDisk));
        	keyHandler = new TajiKeyHandler(bindings);
        	KeyBindingRegistry.registerKeyBinding(keyHandler);
        }
        @EventHandler
        public void postInit(FMLPostInitializationEvent event) {
                // Stub Method
        }
}

 

Baton.java:

package taji34.troncraft;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;

import cpw.mods.fml.client.registry.KeyBindingRegistry.KeyHandler;
import cpw.mods.fml.common.network.PacketDispatcher;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.entity.EntityClientPlayerMP;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.client.settings.KeyBinding;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTBase;
import net.minecraft.nbt.NBTTagByte;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagString;
import net.minecraft.network.packet.Packet250CustomPayload;
import net.minecraft.world.World;
public class Baton extends Item {
public Baton(int par1) {
	super(par1);
	setMaxStackSize(1);
	setCreativeTab(CreativeTabs.tabMisc);
	setUnlocalizedName("Baton");
}
    @Override
    @SideOnly(Side.CLIENT)
    public void registerIcons(IconRegister iconRegister) {
        this.itemIcon = iconRegister.registerIcon("Troncraft:Baton");
    }
public static KeyBinding mode = new KeyBinding("Baton Staff Mode", 36);   
public void keyboardEvent(KeyBinding keybinding)
    {
		if(keybinding == mode)
		{	
			System.out.println("Hi");
			//PacketDispatcher.sendPacketToServer(new BatonModePacket("Hello World!").makePacket());
		}
    }
    
    public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
    {
    	NBTTagCompound tag = par1ItemStack.getTagCompound();
    	if (tag == null) {
    		tag = new NBTTagCompound();
    		par1ItemStack.setTagCompound(tag);
    	}
    	if (tag.getName().equals("tag")) {
    		tag.setName("Test1");
    	}
    	System.out.println(tag.getName());
    	return par1ItemStack;
    }
    
}

 

TajiKeyHandler.java:

package taji34.troncraft;

import java.util.EnumSet;

import net.minecraft.client.settings.KeyBinding;
import cpw.mods.fml.client.registry.KeyBindingRegistry.KeyHandler;
import cpw.mods.fml.common.TickType;

public class TajiKeyHandler extends KeyHandler {

public TajiKeyHandler(KeyBinding[] keyBindings, boolean[] isRepeat) {
	super(keyBindings, isRepeat);
}
public TajiKeyHandler(KeyBinding[] keyBindings) {
	super(keyBindings);
}
@Override
public String getLabel() {
	return "Taji's Keys";
}

@Override
public void keyDown(EnumSet<TickType> types, KeyBinding kb,
		boolean tickEnd, boolean isRepeat) {
	// TODO Auto-generated method stub

}

@Override
public void keyUp(EnumSet<TickType> types, KeyBinding kb, boolean tickEnd) {
	// TODO Auto-generated method stub

}

@Override
public EnumSet<TickType> ticks() {
	// TODO Auto-generated method stub
	return null;
}
}

 

I've tried to follow stuff on how to make a keybinding, but none of the stuff I found was very detailed, so I think I might have missed something.

Link to comment
Share on other sites

Well, your key handler contains nothing but empty methods, how is it supposed to do something? :P

You probably forgot to call Baton#keyboardEvent from the KeyHandler.

 

I though it might be the empty methods, but nothing I found really specified what to put in those methods farther than "Put what you want it to do when a button is pressed here" which didn't really help me.

Link to comment
Share on other sites

welll ... what do you want to happen when a button is pressed ... print penis on the console ?

System.out.println("penis");

 

open a gui ?

player.openGui(args);

 

send a packet to the server ?

 

MyMod.sendPacektForKeyPress(args);

 

etc

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

welll ... what do you want to happen when a button is pressed ... print penis on the console ?

System.out.println("penis");

 

open a gui ?

player.openGui(args);

 

send a packet to the server ?

 

MyMod.sendPacektForKeyPress(args);

 

etc

 

Okay, but how does it know what to do for different key presses? Do I specify that myself?

Link to comment
Share on other sites

Okay, so apparently I don't have it all figured out. Cause it still isn't working :/ Here are the changes to my code I've made:

In TajiKeyHandler.java:

	@Override
public void keyDown(EnumSet<TickType> types, KeyBinding kb,
		boolean tickEnd, boolean isRepeat) {
	if(kb == Baton.mode)
	{	
		System.out.println("Hi");
		//PacketDispatcher.sendPacketToServer(new BatonModePacket("Hello World!").makePacket());
	}

}

@Override
public void keyUp(EnumSet<TickType> types, KeyBinding kb, boolean tickEnd) {
	if(kb == Baton.mode)
	{	
		System.out.println("Hi");
		//PacketDispatcher.sendPacketToServer(new BatonModePacket("Hello World!").makePacket());
	}

}

@Override
public EnumSet<TickType> ticks() {
	// TODO Auto-generated method stub
	return null;
}
}

I think I must be doing something wrong still here, do I need to put something in ENumSet<TickType> ticks()?

 

In Baton.java:

public static KeyBinding mode = new KeyBinding("Baton Staff Mode", 36);  

This is the only thing concerning key binding in this class now.

 

My main method hasn't changed but I'll post it anyway:

Troncraft.java:

package taji34.troncraft;
import net.minecraft.block.Block;
import net.minecraft.client.renderer.entity.RenderSnowball;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.client.settings.KeyBinding;
import net.minecraft.entity.projectile.EntitySnowball;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.src.ModLoader;
import cpw.mods.fml.client.registry.KeyBindingRegistry;
import cpw.mods.fml.client.registry.KeyBindingRegistry.KeyHandler;
import cpw.mods.fml.client.registry.RenderingRegistry;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.Mod.Instance;
import cpw.mods.fml.common.Mod.PostInit;
import cpw.mods.fml.common.Mod.PreInit;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;
@Mod(modid="Troncraft", name="Troncraft", version="0.0.1")
@NetworkMod(clientSideRequired=true, serverSideRequired=false, channels={"Baton"}, packetHandler = TajiPacketHandler.class)
public class Troncraft {
        // The instance of your mod that Forge uses.
        @Instance("Troncraft")
        public static Troncraft instance;
        public final static Item identityDisk = new IdentityDisk(5001);
        int diskItemID = identityDisk.itemID;
    	private final static Item baton = new Baton(5002);
    	int batonItemID = baton.itemID;
    	KeyBinding[] bindings = { Baton.mode };
    	TajiKeyHandler keyHandler;
        // Says where the client and server 'proxy' code is loaded.
        @SidedProxy(clientSide="taji34.troncraft.client.ClientProxy", serverSide="taji34.troncraft.CommonProxy")
        public static CommonProxy proxy;
        @EventHandler
        public void preInit(FMLPreInitializationEvent event) {
                // Stub Method
        }
        @EventHandler
        public void load(FMLInitializationEvent event) {
            LanguageRegistry.addName(identityDisk, "Identity Disk");
            LanguageRegistry.addName(baton, "Baton");
            EntityRegistry.registerModEntity(EntityIdentityDisk.class, "IdentityDisk", 5001, this, 40, 3, true);
            RenderingRegistry.registerEntityRenderingHandler(EntityIdentityDisk.class, new RenderSnowball(identityDisk));
        	keyHandler = new TajiKeyHandler(bindings);
        	KeyBindingRegistry.registerKeyBinding(keyHandler);
        }
        @EventHandler
        public void postInit(FMLPostInitializationEvent event) {
                // Stub Method
        }
}

Maybe I'm missing something here? I don't think so, because the key binding shows up in game, but since I'm new to this I'm not going to assume anything.

Link to comment
Share on other sites

well for 1, dont put the same thing in both keyDown and keyUp because itll happen twice (unless that what you want)

 

and 2

 

try this

@Override
public void keyDown(EnumSet<TickType> types, KeyBinding kb,
		boolean tickEnd, boolean isRepeat) {
                System.out.println("i happened");
	if(kb == Baton.mode)
	{	
		System.out.println("Hi");
		//PacketDispatcher.sendPacketToServer(new BatonModePacket("Hello World!").makePacket());
	}

}

 

if "i happened" prints, you have pressed the correct key and registered the keyhandler correctly,

if "hi" doesnt print then kb != Baton.mode

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

well for 1, dont put the same thing in both keyDown and keyUp because itll happen twice (unless that what you want)

 

and 2

 

try this

@Override
public void keyDown(EnumSet<TickType> types, KeyBinding kb,
		boolean tickEnd, boolean isRepeat) {
                System.out.println("i happened");
	if(kb == Baton.mode)
	{	
		System.out.println("Hi");
		//PacketDispatcher.sendPacketToServer(new BatonModePacket("Hello World!").makePacket());
	}

}

 

if "i happened" prints, you have pressed the correct key and registered the keyhandler correctly,

if "hi" doesnt print then kb != Baton.mode

I seem to be forgetting my troubleshooting basics! I did what you said, and nothing prints at all when I press J (the key I bound). So something must be going wrong elsewhere right?

Link to comment
Share on other sites

yes, now you know either that your key binder isnt registered correctly OR you're not pressing the right key

 

I fixed it! I shifted somethings around, and I found something on the wiki that helped. Hopefully it'll send the packet correctly now!

Link to comment
Share on other sites

Okay, so the keypress is working now, but the packet isn't. Here's my packet handler:

 

TajiPacketHandler.java:

package taji34.troncraft;

import java.util.logging.Logger;

import taji34.troncraft.TajiPacket.ProtocolException;

import com.google.common.io.ByteArrayDataInput;
import com.google.common.io.ByteStreams;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.network.INetworkManager;
import net.minecraft.network.packet.Packet250CustomPayload;
import cpw.mods.fml.common.network.IPacketHandler;
import cpw.mods.fml.common.network.Player;
import cpw.mods.fml.relauncher.Side;

public class TajiPacketHandler implements IPacketHandler {

    @Override
    public void onPacketData(INetworkManager manager, Packet250CustomPayload packet, Player player) {
            try {
                    EntityPlayer entityPlayer = (EntityPlayer)player;
                    ByteArrayDataInput in = ByteStreams.newDataInput(packet.data);
                    int packetId = in.readUnsignedByte(); // Assuming your packetId is between 0 (inclusive) and 256 (exclusive). If you need more you need to change this
                    TajiPacket demoPacket = TajiPacket.constructPacket(packetId);
                    demoPacket.read(in);
                    demoPacket.execute(entityPlayer, entityPlayer.worldObj.isRemote ? Side.CLIENT : Side.SERVER);
            } catch (ProtocolException e) {
                    if (player instanceof EntityPlayerMP) {
                            ((EntityPlayerMP) player).playerNetServerHandler.kickPlayerFromServer("Protocol Exception!");
                            Logger.getLogger("DemoMod").warning("Player " + ((EntityPlayer)player).username + " caused a Protocol Exception!");
                    }
            } catch (ReflectiveOperationException e) {
                    throw new RuntimeException("Unexpected Reflection exception during Packet construction!", e);
            }
    }
}

 

BatonModePacket.java:

package taji34.troncraft;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;

import com.google.common.io.ByteArrayDataInput;
import com.google.common.io.ByteArrayDataOutput;

import cpw.mods.fml.relauncher.Side;

public class BatonModePacket extends TajiPacket {

    private String text;
   
    public BatonModePacket(String text) {
            this.text = text;
    }

    public BatonModePacket() { } // Be sure to always have the default constructor in your class, or the reflection code will fail!

    @Override
protected void write(ByteArrayDataOutput out) {
            out.writeUTF(text);
    }

    @Override
    protected void read(ByteArrayDataInput in) throws ProtocolException {
            text = in.readUTF();
    }

    @Override
    protected void execute(EntityPlayer player, Side side) throws ProtocolException {
         //   if (side.isClient()) {
         //           player.addChatMessage(text);
          //  } else {
           //         throw new ProtocolException("Cannot send this packet to the server!");
          //  }
    	ItemStack itemstack = player.getHeldItem();
           if (side.isClient()) {
                   player.addChatMessage(itemstack.getDisplayName() + text);
           } else {
           //        throw new ProtocolException("Cannot send this packet to the server!");
        	   System.out.println(itemstack.getDisplayName() + text);
           }
    }
}

 

I'm sending the packet using the following line of code:

PacketDispatcher.sendPacketToServer(new BatonModePacket("Hello World!").makePacket());

 

Do I have something wrong somewhere?

Link to comment
Share on other sites

debug 101, are you RECEIVING the packet server side ?

question 2, is your packet handler even registered properly? (println inside the constructor if you need )

 

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

debug 101, are you RECEIVING the packet server side ?

question 2, is your packet handler even registered properly? (println inside the constructor if you need )

 

Would something print to the console if the packet was received server side? I put some println in both the constructor for BatonModePacket, and the makePacket() method that is inherited and called, and both ran and printed what I told them to the console. Debugging is obviously not my forte...

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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I'm developing a dimension, but it's kinda resource intensive so some times during player teleporting it lags behind making the player phase down into the void, so im trying to implement some kind of pregeneration to force the game loading a small set of chunks in the are the player will teleport to. Some of the things i've tried like using ServerLevel and ServerChunkCache methods like getChunk() dont actually trigger chunk generation if the chunk isn't already on persistent storage (already generated) or placing tickets, but that doesn't work either. Ideally i should be able to check when the task has ended too. I've peeked around some pregen engines, but they're too complex for my current understanding of the system of which I have just a basic understanding (how ServerLevel ,ServerChunkCache  and ChunkMap work) of. Any tips or other classes I should be looking into to understand how to do this correctly?
    • https://mclo.gs/4UC49Ao
    • Way back in the Forge 1.17 days, work started for adding JPMS (Java Platform Module Support) to ModLauncher and ForgeModLoader. This has been used internally by Forge and some libraries for a while now, but mods (those with mods.toml specifically) have not been able to take advantage of it. As of Forge 1.21.1 and 1.21.3, this is now possible!   What is JPMS and what does it mean for modders? JPMS is the Java Platform Module System, introduced in Java 9. It allows you to define modules, which are collections of packages and resources that can be exported or hidden from other modules. This allows for much more fine-tuned control over visibility, cleaner syntax for service declarations and support for sealed types across packages. For example, you might have a mod with a module called `com.example.mod` that exports `com.example.mod.api` and `com.example.mod.impl` to other mods, but hides `com.example.mod.internal` from them. This would allow you to have a clean API for other mods to use, while keeping your internal implementation details hidden from IDE hints, helping prevent accidental usage of internals that might break without prior notice. This is particularly useful if you'd like to use public records with module-private constructors or partially module-private record components, as you can create a sealed interface that only your record implements, having the interface be exported and the record hidden. It's also nice for declaring and using services, as you'll get compile-time errors from the Java compiler for typos and the like, rather than deferring to runtime errors. In more advanced cases, you can also have public methods that are only accessible to specific other modules -- handy if you want internal interactions between multiple of your own mods.   How do I bypass it? We understand there may be drama in implementing a system that prevents mods from accessing each other's internals when necessary (like when a mod is abandoned or you need to fix a compat issue) -- after all, we are already modding a game that doesn't have explicit support for Java mods yet. We have already thought of this and are offering APIs from day one to selectively bypass module restrictions. Let me be clear: Forge mods are not required to use JPMS. If you don't want to use it, you don't have to. The default behaviour is to have fully open, fully exported automatic modules. In Java, you can use the `Add-Opens` and `Add-Exports` manifest attributes to selectively bypass module restrictions of other mods at launch time, and we've added explicit support for these when loading your Forge mods. At compile-time, you can use existing solutions such as the extra-java-module-info Gradle plugin to deal with non-modular dependencies and add extra opens and exports to other modules. Here's an example on how to make the internal package `com.example.examplemod.internal` open to your mod in your build.gradle: tasks.named('jar', Jar) { manifest { attributes([ 'Add-Opens' : 'com.example.examplemod/com.example.examplemod.internal' 'Specification-Title' : mod_id, 'Specification-Vendor' : mod_authors // (...) ]) } } With the above in your mod's jar manifest, you can now reflectively access the classes inside that internal package. Multiple entries are separated with a space, as per Java's official spec. You can also use Add-Exports to directly call without reflection, however you'd need to use the Gradle plugin mentioned earlier to be able to compile. The syntax for Add-Exports is the same as Add-Opens, and instructions for the compile-time step with the Gradle plugin are detailed later in this post. Remember to prefer the opens and exports keywords inside module-info.java for sources you control. The Add-Opens/Add-Exports attributes are only intended for forcing open other mods.   What else is new with module support? Previously, the runtime module name was always forced to the first mod ID in your `mods.toml` file and all packages were forced fully open and exported. Module names are now distinguished from mod IDs, meaning the module name in your module-info.java can be different from the mod ID in your `mods.toml`. This allows you to have a more descriptive module name that doesn't have to be the same as your mod ID, however we strongly recommend including your mod ID as part of your module name to aid troubleshooting. The `Automatic-Module-Name` manifest attribute is now also honoured, allowing you to specify a module name for your mod without needing to create a `module-info.java` file. This is particularly useful for mods that don't care about JPMS features but want to have a more descriptive module name and easier integration with other mods that do use JPMS.   How do I use it? The first step is to create a `module-info.java` file in your mod's source directory. This file should be in the same package as your main mod class, and should look something like this: open module com.example.examplemod { requires net.minecraftforge.eventbus; requires net.minecraftforge.fmlcore; requires net.minecraftforge.forge; requires net.minecraftforge.javafmlmod; requires net.minecraftforge.mergetool.api; requires org.slf4j; requires logging; } For now, we're leaving the whole module open to reflection, which is a good starting point. When we know we want to close something off, we can remove the open modifier from the module and open or export individual packages instead. Remember that you need to be open to Forge (module name net.minecraftforge.forge), otherwise it can't call your mod's constructor. Next is fixing modules in Gradle. While Forge and Java support modules properly, Gradle does not put automatic modules on the module path by default, meaning that the logging module (from com.mojang:logging) is not found. To fix this, add the Gradle plugin and add a compile-time module definition for that Mojang library: plugins { // (...) id 'org.gradlex.extra-java-module-info' version "1.9" } // (...) extraJavaModuleInfo { failOnMissingModuleInfo = false automaticModule("com.mojang:logging", "logging") } The automatic module override specified in your build.gradle should match the runtime one to avoid errors. You can do the same for any library or mod dependency that is missing either a module-info or explicit Automatic-Module-Name, however be aware that you may need to update your mod once said library adds one. That's all you need to get started with module support in your mods. You can learn more about modules and how to use them at dev.java.
    • Faire la mise à jour grâce à ce lien m'a aider personnellement, merci à @Paint_Ninja. https://www.amd.com/en/support 
    • When I came across the 'Exit Code: I got a 1 error in my Minecraft mods, so I decided to figure out what was wrong. First, I took a look at the logs. In the mods folder (usually where you'd find logs or crash reports), I found the latest.log file or the corresponding crash report. I read it through carefully, looking for any lines with errors or warnings. Then I checked the Minecraft Forge support site, where you can often find info on what causes errors and how to fix them. I then disabled half of my mods and tried running the game. If the error disappeared, it meant that the problem was with the disabled mod. I repeated this several times to find the problem mod.
  • Topics

×
×
  • Create New...

Important Information

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