Jump to content

1.7.10 Fluid Pipe problems


KeeganDeathman

Recommended Posts

So, trying to make some pipes.

Well it works great! You just can't go west.

If you go west, 1000 becomes some random negative value. Hmmm.

@Override
public int fill(ForgeDirection from, FluidStack resource, boolean doFill)
{

	if (worldObj.getTileEntity(xCoord + 1, yCoord, zCoord)  instanceof TileEntityLiquid && from != ForgeDirection.EAST && worldObj.getTileEntity(xCoord + 1, yCoord, zCoord) != null) 
	{
		((TileEntityLiquid) worldObj.getTileEntity(xCoord + 1, yCoord, zCoord)).fill(ForgeDirection.WEST, resource.copy(), doFill);
	}
	if (worldObj.getTileEntity(xCoord - 1, yCoord, zCoord)  instanceof TileEntityLiquid && from != ForgeDirection.WEST && worldObj.getTileEntity(xCoord - 1, yCoord, zCoord) != null) 
	{
		((TileEntityLiquid) worldObj.getTileEntity(xCoord - 1, yCoord, zCoord)).fill(ForgeDirection.EAST, resource.copy(), doFill);
	}
	if (worldObj.getTileEntity(xCoord, yCoord + 1, zCoord)  instanceof TileEntityLiquid && from != ForgeDirection.UP && worldObj.getTileEntity(xCoord, yCoord + 1, zCoord) != null) 
	{
		((TileEntityLiquid) worldObj.getTileEntity(xCoord, yCoord + 1, zCoord)).fill(ForgeDirection.DOWN, resource.copy(), doFill);
	}
	if (worldObj.getTileEntity(xCoord, yCoord - 1, zCoord)  instanceof TileEntityLiquid && from != ForgeDirection.DOWN && worldObj.getTileEntity(xCoord, yCoord - 1, zCoord) != null) 
	{
		((TileEntityLiquid) worldObj.getTileEntity(xCoord, yCoord - 1, zCoord)).fill(ForgeDirection.UP, resource.copy(), doFill);
	}
	if (worldObj.getTileEntity(xCoord, yCoord, zCoord + 1)  instanceof TileEntityLiquid && from != ForgeDirection.SOUTH && worldObj.getTileEntity(xCoord, yCoord, zCoord + 1) != null) 
	{
		((TileEntityLiquid) worldObj.getTileEntity(xCoord, yCoord, zCoord + 1)).fill(ForgeDirection.NORTH, resource.copy(), doFill);
	}
	if (worldObj.getTileEntity(xCoord, yCoord, zCoord - 1) instanceof TileEntityLiquid && from != ForgeDirection.NORTH && worldObj.getTileEntity(xCoord, yCoord, zCoord - 1) != null) 
	{
		((TileEntityLiquid) worldObj.getTileEntity(xCoord, yCoord, zCoord - 1)).fill(ForgeDirection.SOUTH, resource.copy(), doFill);
	}
	return tank.fill(resource, doFill);

}

clarification, each pipe has it's own tank, but they are all symbolic to the "network tank."

Basically, if theres 1000 buckets in the network, each pipe has 1000 buckets in it's tank.

Fill and drain commands are networked across all pipes. Draw 1 mB from 1 pipe, all pipes go down 1 mB.

Any help?

[shadow=gray,left][glow=red,2,300]KEEGAN[/glow][/shadow]

Link to comment
Share on other sites

How do you know '1000 becomes some random negative value'? Show us how you debugged that, it may help us.

 

Also,

instanceof

already does

null

checks, so you can remove those

getTileEntity() != null

calls.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

The pipe block has this code:

 @Override
    public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int par5, float par6, float par7, float par8)
    {
    	if(!world.isRemote)
    	{
    		TileEntity tile = world.getTileEntity(x, y, z);
    		if(tile instanceof TileEntityLiquid)
    		{
    			player.addChatMessage(new ChatComponentText("Network is holding " + ((TileEntityLiquid)tile).getTankInfo(ForgeDirection.UNKNOWN)[0].fluid.amount));
    			return true;
    		}
    		return false;
    	}
    	return false;
    }

[shadow=gray,left][glow=red,2,300]KEEGAN[/glow][/shadow]

Link to comment
Share on other sites

[CHAT] Network is holding -1540044424
[16:21:19] [Client thread/INFO]: [CHAT] Network is holding -1540044424
[16:21:19] [Client thread/INFO]: [CHAT] Network is holding -403279352
[16:21:20] [Client thread/INFO]: [CHAT] Network is holding -171803008

[shadow=gray,left][glow=red,2,300]KEEGAN[/glow][/shadow]

Link to comment
Share on other sites

Btw you code doesn't need to be as complex. The ForgeDirection class has XYZ offset values and it also has a getOpposite() property.

 

The following would work on any side sent (You may want to check for the UNKNOWN side):

((TileEntityLiquid) worldObj.getTileEntity(xCoord + from.offsetX, yCoord + from.offsetY, zCoord + from.offsetZ)).fill(from.getOpposite(), resource.copy(), doFill);

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 think my save file was potentially corrupted (based on what I have been reading online). The world has loaded and saved perfectly fine for weeks. Today I added about 6 new mods and updated 3 mod libraries, and then encountered the following error: "Errors in currently selected data packs prevented the world from loading. You can either try to load it with only the vanilla data pack ("safe mode"), or go back to the title screen and fix it manually." I have tried changing to a newer Forge version, reverting the updated mods back to original versions, removing the new mods, removing and readding all mods, removing my world file and loading the forge profile and adding it back, renaming the level.dat_old file as level.dat... Nothing has worked yet. Forge loads fine and I don't want to risk trying to reload the world in "safe mode" in case I end up losing mod-related content. Not sure how that works. I am having trouble reading the output log to determine what is causing the error. Any advice is better than none!! Thank you!     Info: Minecraft 1.20.1 Forge 47.1.3 Mod list (includes which mods are disabled, newly added before this error, and any changes I found after the error) : https://pastebin.com/nquXY1Hj Latest log: https://pastebin.com/U4fD0kAt
    • It all began with a chance encounter with a testimonial shared by Olivia, a fellow traveler on the winding road of cryptocurrency. Her words spoke of a miraculous recovery orchestrated by Wizard Web Recovery, a beacon of hope in the murky waters of online fraud. Intrigued by her story, I reached out to Wizard Web Recovery, hoping they could work their magic on my blocked crypto recovery. With bated breath, I shared my plight, providing evidence of my dilemma and praying for a solution. To my astonishment, a prompt response came, swift and reassuring. Wizard Web Recovery wasted no time in assessing my situation, guiding me through the process with patience and expertise. and then like a ray of sunshine breaking through the clouds, came the news I had longed for – a new private key had been generated, restoring my precious bitcoins. It was a moment of jubilation, a triumph over adversity that filled me with newfound hope. At that moment, I realized the true power of Wizard Web Recovery, not just as skilled technicians, but as guardians of trust in the digital realm. With their assistance, I reclaimed what was rightfully mine, turning despair into determination and paving the way for a brighter future. But their capabilities did not end there. Delving deeper into their expertise, I discovered that Wizard Web Recovery possessed a wealth of knowledge in reclaiming lost stolen cryptocurrency, and even exposing fraudulent investment schemes. So to all those who find themselves entangled in the web of online fraud, take heart. With the guidance of Wizard Web Recovery, there is a path to redemption.     Write Mail; ( Wizard webrecovery AT  vprogrammer. net ) 
    • It all began with a chance encounter with a testimonial shared by Olivia, a fellow traveler on the winding road of cryptocurrency. Her words spoke of a miraculous recovery orchestrated by Wizard Web Recovery, a beacon of hope in the murky waters of online fraud. Intrigued by her story, I reached out to Wizard Web Recovery, hoping they could work their magic on my blocked crypto recovery. With bated breath, I shared my plight, providing evidence of my dilemma and praying for a solution. To my astonishment, a prompt response came, swift and reassuring. Wizard Web Recovery wasted no time in assessing my situation, guiding me through the process with patience and expertise. and then like a ray of sunshine breaking through the clouds, came the news I had longed for – a new private key had been generated, restoring my precious bitcoins. It was a moment of jubilation, a triumph over adversity that filled me with newfound hope. At that moment, I realized the true power of Wizard Web Recovery, not just as skilled technicians, but as guardians of trust in the digital realm. With their assistance, I reclaimed what was rightfully mine, turning despair into determination and paving the way for a brighter future. But their capabilities did not end there. Delving deeper into their expertise, I discovered that Wizard Web Recovery possessed a wealth of knowledge in reclaiming lost stolen cryptocurrency, and even exposing fraudulent investment schemes. So to all those who find themselves entangled in the web of online fraud, take heart. With the guidance of Wizard Web Recovery, there is a path to redemption.    
    • How can I add drops when killing an entity? Now there are no drops. How can I add an @override to change the attack speed to 1.6 and show "when in main hand...attack damage,...attack speed"? also, how can I make the item enchantable? 
    • Ok. Thanks. by the way, will this crash in any circumstances? public boolean onLeftClickEntity(ItemStack stack, Player player, Entity entity) { if (entity instanceof LivingEntity){ LivingEntity victim = (LivingEntity) entity; if(!victim.isDeadOrDying() && victim.getHealth()>0){ victim.setHealth(0); return true; } } return false; }  
  • Topics

×
×
  • Create New...

Important Information

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