Industrial Wires ReEngineered

Industrial Wires ReEngineered

27.9k Downloads

Mechanical multiblock speedometers sometimes stop outputting redstone when world reloaded

Hawk777 opened this issue · 4 comments

commented

Create a mechanical multiblock. Include a speedometer. Get the shaft spinning nice and fast. Quit Minecraft, start it up again, and load the world. Sometimes, but not always, the redstone output signal from the speedometer will be zero (as measured with either IE redstone connectors or even just vanilla redstone dust), even though the shaft is still spinning. Removing and replacing the redstone beside the speedometer does not seem to help. However, when the speed changes a bit, or if you use the hammer to change the speed limit, the output seems to update properly.

commented

I wonder if this might possibly be related to this line? When the speedometer has just been created, the old values will be −1, I believe, as those are the fields’ default values. Now floor==old can never be true in that case; however, certainly old<newExact will always be true, but if mod is ≤ THRESHOLD then that branch will not be taken, and old>newExact is obviously also not true (since old is −1), so then the function will return old, which is −1.

It also seems like this code might be wrong if the speed of the multiblock can change quickly enough that it goes from, say, 10.5 to 12 in a single tick. That should obviously update the output, but since you’re using the mod operator, mod will be zero which is less than THRESHOLD and the output will not update AFAICT—it will stay at 10. It seems to me that the output should update if newExact >= old + 1 + THRESHOLD or if newExact <= old - THRESHOLD, which would probably actually be faster to calculate anyway due to the lack of mod operator.

commented

I fixed this bug in my fork, but the fork is only compatible with IC2:Classic

commented

@kappa-maintainer if you fixed it in a separate commit, would you want to send it upstream (here)? If not I might eventually get around to doing a fix myself.

commented

Well, I will commit it to the translation update PR.