Applied Energistics 2

Applied Energistics 2

137M Downloads

combining 8 channel cables into dense cable

Nex4rius opened this issue · 4 comments

commented

When you connect 8channel cables together into a dense cable the dense cable still only allows a maximum of 8 channels to be used.

I tried to do that because the toggle bus doesnt work on dense cables -> split into 4 cables each with toggle bus and combine them again.

commented

It's because there are two equal length paths to where the channels are
trying to connect.

Check out this page: http://ae-mod.info/Channels/ and search for "Equal
Length Route"

On Sun, Jun 5, 2016 at 11:16 AM DarknessShadow [email protected]
wrote:

When you connect 8channel cables together into a dense cable the dense
cable still only allows a maximum of 8 channels to be used.

I tried to do that because the toggle bus doesnt work on dense cables ->
split into 4 cables each with toggle bus and combine them again.

http://imgur.com/a/Jf2lW


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#2296,
or mute the thread
https://github.com/notifications/unsubscribe/AIYLG2nSDu6cqj1GOfkhW2eJxzZm2Fyvks5qIuhPgaJpZM4IuYDk
.

commented

make it simpler, the first line who connects to the dense cable gets the ownership and blocks of the rest.
no matter what you try you only have 8 channels aviable.

commented

Dense cable only allow 32 channels when directly connected to controller. Me cable only allows 8 channels regardless of how it's placed.

Sent via the Samsung Galaxy S® 6, an AT&T 4G LTE smartphone

-------- Original message --------
From: DarknessShadow [email protected]
Date: 6/5/16 10:16 AM (GMT-06:00)
To: AppliedEnergistics/Applied-Energistics-2 [email protected]
Subject: [AppliedEnergistics/Applied-Energistics-2] combining 8 channel cables into dense cable (#2296)
When you connect 8channel cables together into a dense cable the dense cable still only allows a maximum of 8 channels to be used.

I tried to do that because the toggle bus doesnt work on dense cables -> split into 4 cables each with toggle bus and combine them again.


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
#2296

commented

AE2 uses a greedy algorithm to mark cables as visited to not get stuck in loops and also does not keep track of the origin of them. It is just an number set after a block was visited.

Yes this prevents joining multiple smart cables into the same dense one, But that is a pretty rare case because who would waste 96 channels to do it? It would also mean we would have to track the source of every single channel to allow it. Which would be a massive requirements on terms of needed memory and probably make the pathing algorithm way slower as it has to do up to 32 checks per cable and not 1.