Jump to content

[1.12.2] [SOLVED] Fluid Handling TileEntity (Fluid Tank)


Recommended Posts

Posted (edited)

Hi,

 

I'm wondering how I can create a fluid tank using Forge and what is required to do so.

 

Thx in advance.

Bektor

 

EDIT:

Some more questions:

  • I want my tank to output data to the comperator. The problem here is: I've got totally no clue how to calculate the return value for getComparatorInputOverride.
  • What is the difference between IFluidHandler and IFluidTank and what is the actual use case of them? (I'm used to work with stuff like the energy capabilities where there is only one interface for everything, so I'm a bit confused here why there are two and when I should use which one or should I use both (and how then?)?)
Edited by Bektor
added questions from below to the top lvl post

Developer of Primeval Forest.

Posted (edited)
  On 1/3/2018 at 11:25 AM, Ugdhar said:

http://mcforge.readthedocs.io/en/latest/datastorage/capabilities/

Without ever having made a fluid tank myself, I'm going to guess that you create your block/item and attach an IFluidHandler capability to it, which will provide methods to manage the input/output of fluid and the fluid storage.

 

Make a go at it, post your code to github, and if you run into issues, come back posting the logs and link to code. :)

 

Expand  

Ok, thx. Should be pretty easy then with the availability of an capability for fluids.

Thought a few more questions:

  • I want my tank to output data to the comperator. The problem here is: I've got totally no clue how to calculate the return value for getComparatorInputOverride.
  • What is the difference between IFluidHandler and IFluidTank?
Edited by Bektor

Developer of Primeval Forest.

Posted

Just a stab (2nd question)...but I can imagine a complex fluid handler being like the controller of many tanks (or they can be one and the same for single-fluid containers). The handlers delegates to the tanks when needed. For instance, I have seen huge modded fluid processors (the handlers) that control dozens of tanks of different fluids from different mods. The tanks are essentially an implementation detail in this scenario.

Also Forge fluid handlers exist for non-tanks use cases such as fluid blocks, portable ItemStacks like universal buckets, custom tile entities, etc.

Posted
  On 1/3/2018 at 7:33 PM, The_Wabbit said:

Just a stab (2nd question)...

Expand  

Not really helpful.

Also the point why I came up with the second question is that I'm used to the system from the capabilities that there is one interface

which you implement and you're done, but here I've got two different interfaces.

Thus I'm not quite sure what's the difference between both of them (except for that the one is the capability interface and the other one seems just to be there...) nor do I know

what the actual use case of the second one should be when there is already the capability interface.

Developer of Primeval Forest.

Posted (edited)
  On 1/3/2018 at 5:37 PM, Bektor said:

I want my tank to output data to the comperator. The problem here is: I've got totally no clue how to calculate the return value for getComparatorInputOverride.

Expand  

You need to return an integer fro 0-15 based on the Block and it's properties. You decide how you want to implement that.

 

  On 1/3/2018 at 5:37 PM, Bektor said:

What is the difference between IFluidHandler and IFluidTank?

Expand  

IFluidHandler can be anything that handles fluids (items, blocks, tileentities), and an IFluidTank is specifically designed for tanks in an inventory.

Edited by larsgerrits

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/

Posted
  On 1/4/2018 at 2:13 PM, larsgerrits said:

You need to return an integer fro 0-15 based on the Block and it's properties. You decide how you want to implement that.

Expand  

The standard for containers is to divide the current used capacity by the total capacity and floor to an integer.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted
  On 1/4/2018 at 6:02 PM, Draco18s said:

The standard for containers is to divide the current used capacity by the total capacity and floor to an integer.

Expand  

Ok, thx.

 

  On 1/4/2018 at 2:13 PM, larsgerrits said:

IFluidHandler can be anything that handles fluids (items, blocks, tileentities), and an IFluidTank is specifically designed for tanks in an inventory.

Expand  

So I have to use both? That would leave me with the question of how my IFluidHandler should interact with IFluidTank and my tile-entitiy and how that all should work with capabilities.

Developer of Primeval Forest.

Posted

TileFluidHandler is an example implementation of the fluid capability.

 

IFluidTank is optional, you can use IFluidHandler without it, but using the default implementation (FluidTank) will call events based on tank filling/draining, which you should fire yourself if you don't use it.

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/

Posted
  On 1/4/2018 at 11:02 PM, larsgerrits said:

default implementation (FluidTank) will call events based

Expand  

Hm, I'm wondering for what these events might be.

 

  On 1/4/2018 at 11:02 PM, larsgerrits said:

TileFluidHandler is an example implementation of the fluid capability.

 

Expand  

Ah, ok. I could just implement IFluidTank and IFluidHandler in a custom class and handle it from there on like a normal capability?, nice.

Thought now I'm wondering why some mods have a IFluidTank implementation and implement IFluidHandler in the tile entity itself...

Developer of Primeval Forest.

Posted
  On 1/4/2018 at 11:12 PM, Bektor said:

Hm, I'm wondering for what these events might be.

Expand  

Look at the subclasses of FluidEvent. They are related to moving, filling, draining and spilling of tanks. Their Javadoc tells you exactly what they do.

 

  On 1/4/2018 at 11:12 PM, Bektor said:

Ah, ok. I could just implement IFluidTank and IFluidHandler in a custom class and handle it from there on like a normal capability?, nice.

Expand  

Yes. However, if you're not adding functionality other than what the default implementation offers, you should probably use the default implementation.

 

  On 1/4/2018 at 11:12 PM, Bektor said:

Thought now I'm wondering why some mods have a IFluidTank implementation and implement IFluidHandler in the tile entity itself...

Expand  

That's how it was done before the capability system was around, and they probably were to lazy to update their code.

  • Like 1

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/

Posted
  On 1/4/2018 at 11:20 PM, larsgerrits said:

Look at the subclasses of FluidEvent. They are related to moving, filling, draining and spilling of tanks. Their Javadoc tells you exactly what they do.

 

Yes. However, if you're not adding functionality other than what the default implementation offers, you should probably use the default implementation.

 

That's how it was done before the capability system was around, and they probably were to lazy to update their code.

Expand  

Ok, thx. I guess I'm good to go then. ;)

Developer of Primeval Forest.

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

    • Hi everyone, I’m working on a Minecraft mod and encountering an issue with a custom sound not playing when triggered. Here’s the setup: Problem: * A custom sound (killstreak_music) should play when a milestone (5 kills) is reached, but it doesn’t trigger in-game. * The .ogg file is in the correct directory (assets/killstreaksword/sounds/) and registered in sounds.json. sounds.json: {   "killstreak_music": {     "sounds": ["Finale.ogg"]   } } The .ogg file plays fine in other media players, but the /playsound command doesn’t detect it. What I’ve Tried: * Confirmed file path and name match exactly. * Reloaded resources (F3 + T) and re-exported the file using Audacity. * Added debug logs to my code to verify if the sound event is being retrieved. Here’s the relevant part of my code where I attempt to play the sound:   private static final ResourceLocation SOUND_LOCATION = ResourceLocation.fromNamespaceAndPath("killstreaksword", "killstreak_music"); private void playKillstreakMusic(Level world, Player player) {     SoundEvent soundEvent = ForgeRegistries.SOUND_EVENTS.getValue(SOUND_LOCATION);     if (soundEvent == null) {         System.out.println("Sound event not found: " + SOUND_LOCATION);     } else {         world.playSound(null, player.getX(), player.getY(), player.getZ(), soundEvent, SoundSource.PLAYERS, 1.0F, 1.0F);     } }   Could this be a file encoding or registration issue? Are there additional steps I’m missing to ensure Minecraft detects the sound? Any guidance or suggestions would be greatly appreciated. Thanks in advance!
    • Hello everyone, friends and family, I hope this message finds you well. I’m writing to you from Alberton, Canada, and I feel it’s important to share my story with you, not just as a cautionary tale, but as a message of hope. As many of you know, I’m a doctor, and in 2024, I decided to try my hand at cryptocurrency trading. I had heard so much about how profitable it could be, and with a background in analytics and understanding of markets, I thought I could navigate the space safely. Unfortunately, things didn’t go as planned. I was targeted by scammers who posed as legitimate trading platforms, and I ended up losing a significant amount of money. It was a devastating experience, and at one point, I felt like there was no way to recover my funds. But by God’s grace, I was referred to Hackerzed Nemesis Recovery, who are among the best bitcoin recovery specialists in the world. Through their expertise, they used advanced forensic techniques to track down the fraudulent transactions and recover every penny I had lost. I can’t tell you how grateful I am for their help without them, I would still be in the dark, feeling helpless and defeated. This experience has taught me a valuable lesson that I want to pass on to you all: Be extremely cautious when it comes to investing in cryptocurrency, especially online. While the industry itself can offer opportunities, there are countless scams out there designed to prey on people’s hopes and investments. If you have already fallen victim to such schemes, whether in forex, cryptocurrency, or Ponzi schemes, I strongly urge you to seek professional help. That brings me to another point I want to highlight: if you've been defrauded, do not lose hope. There are dedicated recovery services, like Hackerzed Nemesis Recovery, who can assist you in reclaiming your lost funds. cryptocurrency is a complex and volatile market, and while it can be rewarding, it's essential to proceed with caution. I hope my experience serves as a reminder to stay vigilant and do thorough research before making any investment. Wishing you all safety and success in your financial endeavors!  
    • Yes it was the full log. I didnt remove or add anything and did just what you recommended me with AT launcher and it doesnt work still. It has the same problem. I attatched the log.  
    • Yes, I agree. Downloading bods         
    • When I open a world, it works fine. It only crashes when I place a create block down. It also crashes when I try to reopen the world that crashes. I already tried to reset the graphics drivers.
  • Topics

×
×
  • Create New...

Important Information

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