Automated Isolator

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

ToLazyToThink

New Member
Jul 29, 2019
26
0
0
I got tired of the Isolator constantly producing yet another "Faster Flowering Serum" or whatever and having to manually dump them into a furnace so there would be room for the Isolator to extract the serum I wanted.

So I decided to use a turtle and open peripherals to automate it:
J52LyYx.png


The turtle will make a list of serums in the chests to the left, and then as the isolator produces new serums it will check them against the list. If there is already enough of the serum in the "keep" chest, it will drop them in the "dump" chest below where the extra utilities pipes will feed them into a furnace, and then back into the isolator. If it's a new serum it will put it into the "keep" chest on the left where the AE import bus will sort it into one of the diamond chest connected by fuzzy storage buses.

I'm afraid the code isn't very user friendly, but your welcome to use it if you want: http://pastebin.com/svcmxCAs

If you try to run it, make sure you read the comments at the top of the code. The turtle needs fuel, and the turtle has to be facing south for the layout in my image to work. I built and tested this in the Direwolf20 1.5 v1.1.2 pack, I'm guessing it will work in the other packs, but no guarantees.

Speaking of guarantees, the usual applies. Don't blame me if the turtle goes crazy and enslaves your villagers and burns your world.

I'm going to be pretty busy for a while, so I probably wont get anything on this list done anytime soon. Feel free to modify and share on your own.

TODO
  • Add a black list for serums we don't want to keep any of.
  • Make the code more user friendly, I imagine it's possible for the turtle to discover the layout on its own instead of hardcoding east/west/left/right/up/bottom, etc.
  • I got a failure to yield error once while the turtle was checking the serum chest. It only happened once, but I probably need to add some sleeps or other yields into the addSerums function.
  • Fuel, the turtle uses fuel to move up and down while making the list of serums in the "keep" chest. It doesn't bother checking that it has fuel, or even that it actually moved. Need some error handling there, and maybe an auto refuel option.
 
  • Like
Reactions: ICountFrom0

SatanicSanta

New Member
Jul 29, 2019
4,849
-3
0
I would recommend you post this in the Community Showcase forum.

I would post what I think of this but I don't know jack about bees.
 

Niels Henriksen

New Member
Jul 29, 2019
502
0
1
That looks nice. I need to look into that. Im working on making my base 99% computer controlled and that includes bees.
 

Flipz

New Member
Jul 29, 2019
669
0
0
Ah, another thread for Community Showcase. Moved. ;)

Direwolf20 has an interesting setup going in his Forgecraft 2 series at the moment--I'm not sure if it uses 1.6 features, though. It eliminates the need for EnderIO and AE in the setup, though, and doesn't use fuel. It's also really simple code. On the negative side, however, it gets bottlenecked by the Electric Furnace rather easily. :/
 
  • Like
Reactions: SatanicSanta

Celestialphoenix

Too Much Free Time
Nov 9, 2012
3,741
3,204
333
Tartarus.. I mean at work. Same thing really.
[Ultimate 1.4.7] I had a whole factory dedicated to producing serums (max charge, max quality), just with Gregtech, AE and buildcraft pipes.
I'm not too sure how the AE system was rigged to sort the serums (2 person build; I hit the processing lines), but it'll be worth looking at right? {8GB world download file}
 

Wekmor

New Member
Jul 29, 2019
939
0
1
Ah, another thread for Community Showcase. Moved. ;)


Direwolf20 has an interesting setup going in his Forgecraft 2 series at the moment--I'm not sure if it uses 1.6 features, though. It eliminates the need for EnderIO and AE in the setup, though, and doesn't use fuel. It's also really simple code. On the negative side, however, it gets bottlenecked by the Electric Furnace rather easily. :/

There is no EnderIO used in the setup shown above, it's ExtraUtils pipes.

Meh yeah, I would say something about this, but I don't like doing bee stuff so i don't know stuff :D
 

ToLazyToThink

New Member
Jul 29, 2019
26
0
0
Ah, another thread for Community Showcase. Moved. ;)

Direwolf20 has an interesting setup going in his Forgecraft 2 series at the moment--I'm not sure if it uses 1.6 features, though. It eliminates the need for EnderIO and AE in the setup, though, and doesn't use fuel. It's also really simple code. On the negative side, however, it gets bottlenecked by the Electric Furnace rather easily. :/

I saw direwolf's setup, I will note mine predates it, but it is an obvious idea. I'm betting before it's over he hooks it up to AE too. AE isn't required, it's just useful for finding the serums when you want them, and makes it easy to automate refilling used serums. Fuel isn't required either, just if you want more than one chest (if I remember right direwolf's layout allows 2).