Jump to content

Recommended Posts

Posted

So i have one gui and it opens fine so i try to add another one and i add it to my guihandler.  Everytime i click on the new block with the gui Minecraft says "Connection lost.  A fetal error has occured the connection is terminated" It does not crash.  The first gui i added works fine still

 

 

package com.professorvennie.main.gui;

 

 

import com.professorvennie.main.mainRegistry;

import com.professorvennie.tileEntity.TileEntityGrinder;

import com.professorvennie.tileEntity.TileEntitySaltFurnace;

 

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.tileentity.TileEntity;

import net.minecraft.world.World;

import cpw.mods.fml.common.network.IGuiHandler;

import cpw.mods.fml.common.network.NetworkRegistry;

 

public class GuiHandler implements IGuiHandler{

/*

public GuiHandler(){

NetworkRegistry.INSTANCE.registerGuiHandler(mainRegistry.instance, this);

}

*/

 

public GuiHandler(){

 

}

 

 

@SuppressWarnings("unused")

@Override

public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {

TileEntity entity= world.getTileEntity(x, y, z);

 

if(entity != null){

switch(ID){

case 0: mainRegistry:guiIDSaltFurnace:

if(entity instanceof TileEntitySaltFurnace){

return new ContainerSaltFurnace(player.inventory, (TileEntitySaltFurnace) entity);

}

break;

 

case 1: mainRegistry:guiIDgrinder:

if(entity instanceof TileEntityGrinder){

return new ContainerGrinder(player.inventory, (TileEntityGrinder) entity);

}

break;

 

 

 

 

 

}

}

 

 

return null;

}

 

@Override

public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {

TileEntity entity= world.getTileEntity(x, y, z);

 

if(entity != null){

switch(0){

case mainRegistry.guiIDSaltFurnace:

if(entity instanceof TileEntitySaltFurnace){

return new GuisaltFurnace(player.inventory, (TileEntitySaltFurnace) entity);

}

switch(1){

case mainRegistry.guiIDgrinder:

if(entity instanceof TileEntityGrinder){

return new ContainerGrinder(player.inventory, (TileEntityGrinder) entity);

}

}

 

 

}

}

 

 

return null;

}

 

}

 

 

Posted

I did that because the colen between mainRegistry and the GUI name.  It shows a yellow line underneath instead of red and it said to do that. If I change the colen on a dot it gives me an error saying : expected.

Posted

Then why do it?

 

mainRegistry:guiIDgrinder

 

What is this suppose to be? The ID of the block/item?

Come on dude, you should know that IDs were removed in 1.7 and uses the Block/Item object itself.

Also, never use @SupressWarnings("unused") or other things that you have NO IDEA does.

 

Another thing is to use context clues ("unused") = not being used.

So why do you think it says "Connection lost?"

 

If you give me more information of what you are trying to do with your switches, then I'll gladly help you out :D

Posted

No I'm not that much of a noob I know ids were removed.  In my mine class I have two variables in my mine class name:

Public static final GUIidsaltfurnace =0;

Public static final GUIidgrinder =1;

 

What info/ class would you like to help me figure out the list connection?

Posted

You dont need 2 switches.  Your client gui does not match your server gui.  Server Gui = Containers.  Client Guis = Guis.  You need to change your server Gui to switch(Id), and put 2 cases, 1 for your first gui.  2 for your second.

Posted

Use a debugger and put a break point on getServerGuiElement and getClientGuiElement. That will tell you exactly whats going on. e.g. confirm that both client AND server are creating there part of the GUI, and that the right thing is created each side.

 

Also a literal value in a switch is almost always the wrong thing to do, as with a literal true/false in an if statement. The entire construct serves no purpose.

 

Posted

Break points are to separate things (its kinda complex don't want to explain now)

 

Switches are used to do different things if the value of what is inside the switch corresponds to your case.

 

For example, you should make your code like this:

 

         switch(ID){
         case mainRegistry.guiIDSaltFurnace:
            if(entity instanceof TileEntitySaltFurnace){
               return new ContainerSaltFurnace(player.inventory, (TileEntitySaltFurnace) entity);   
            }
         break;
               
            case mainRegistry.guiIDgrinder:
               if(entity instanceof TileEntityGrinder){
                  return new ContainerGrinder(player.inventory, (TileEntityGrinder) entity);
            }
            break;

 

In my opinion, I think you 'ought to know more Java before jumping into complex things.

 

 

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

    • wildbackport is not working
    • Through Betafort Recovery, Bitcoin scam victims can retrieve their money. I recommend Betafort Recovery to anyone who has fallen victim to a scam and has been looking for methods and techniques to recover their lost cryptocurrency or wallets. Betafort Recovery is a reliable cryptocurrency recovery firm that assists victims in recovering their stolen cryptocurrency and offers secure solutions to protect your wallets from online scammers. I must admit that I was deeply melancholy and had given up on life until these experts could restore my $23,400 to my wallet. If you've lost your cryptocurrency and you are helpless about it, contact Betafort Recovery to get your money back. One key aspect that makes Betafort Recovery stand out is its focus on providing secure solutions to protect wallets from online scammers. It's not just about recovering lost funds; it's also about preventing future incidents and ensuring that clients' digital assets are safeguarded against potential threats. This proactive approach demonstrates their commitment to the long-term financial security of their clients. Furthermore, for individuals who have lost their cryptocurrency and are feeling helpless, reaching out to Betafort Recovery could be a turning point in their situation. The reassurance that they are legitimate for seeking help and recovering lost funds can provide much-needed relief and a sense of empowerment. Betafort Recovery as a reliable cryptocurrency recovery firm is certainly well-founded. Their ability to assist scam victims in recovering stolen cryptocurrency, their focus on providing secure solutions, and their commitment to supporting clients through challenging situations make them a valuable resource for individuals navigating the complex world of digital currencies. If you or someone you know has fallen victim to a cryptocurrency scam, contacting Betafort Recovery could be the first step towards reclaiming lost funds and regaining peace of mind.  
    • Idk how i didn't notice that, but I deleted it and fixed some other issues and now I get this https://mclo.gs/YsWacqq
    • I found Bedrock_Miner's old site and I was interested in the Furnace Minecart Inventory mod. But all the links to the mod files are dead, there were apparently no uploads to other sites either, so the only hope is that the mods were saved on someone's cloud or disk. If someone remembers that perhaps downloaded them in the first half of the 10's, I will be glad if someone to share them. https://web.archive.org/web/20151227195157/http://bedrockminer.jimdo.com/mods/furnace-minecart-inventory#expand
    • Remove rubidium - you are already using embeddium which is a fork of it
  • Topics

×
×
  • Create New...

Important Information

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