View the changelog here Please report any bugs through the GitHub or through the comment section
Adds OR, XOR, NOT, and AND boolean logic gates and a CLOCK with the idea of designing more compact redstone machines with potentially better performance.
| | | | | | | | |
|
|
| |
|
_JE1.png?1b9a2) |
| |
|
|
|
2 Inputs 1 Output 1 Input on Left 1 Input on Right 1 Output on redstone torch side
| L |R |Output | | - |- |------ | | 0 |0 |0 | | 0 |1 |0 | | 1 |0 |0 | | 1 |1 |1 |
| X |X |X | | - |- |- | |
|
|
| |
|
|
|
1 Input and 1 Output Output is the opposite of the input So if Redstone is powered in, it will come out off.
| Input | Output |
|---|---|
| 0 | 1 |
| 1 | 0 |
XOR and OR is the same block
| X |X |X | | - |- |- | |
|
_JE1.png?1b9a2) |
| |
|
|
|
2 Inputs 1 Output 1 Input on Left 1 Input on Right 1 Output on Redstone torch side
OR:
| L | R | Output |
|---|---|---|
| 0 | 0 | 0 |
| 1 | 0 | 1 |
| 0 | 1 | 1 |
| 1 | 1 | 1 |
| XOR: | ||
| L | R | Output |
| -- | -- | -- |
| 0 | 0 | 0 |
| 1 | 0 | 1 |
| 0 | 1 | 1 |
| 1 | 1 | 0 |
| X |X |X | | - |- |- | |
|
_JE1.png?1b9a2) |
| |
|
|
|
1 Output: Flips between on and off at a rate specified by the delay which is changed when right clicked
| Delay # | Flips per Second |
|---|---|
| 1 | 20 |
| 5 | 4 |
| 10 | 2 |
| 15 | 1.333 |
| 20 | 1 |
I never made this mod to make a better performant way for using Redstone, I more built this to learn modding and to save space in Redstone designs. Do not download this mod for the potential performance increase
If you have any information to add regarding of if the test is accurate or flawed, I would love to hear about it.
Both worlds were duplicates using Minecrafts built in recreate button Sim distance: 12 chunks Render Distance: 12 chunks Super flat world with "Redstone Ready" preset. Peaceful, no structures. Windowed mode Forge install with just Redstone Additions and WorldEdit
For the Redstone Additions test, 10,201 (100x100 grid) clocks were set with WorldEdit with a delay set to 1 (flips 20 times a tick)

For the vanilla clock, this is a design I have came across from just playing the game, I am unsure the exact speed it flips but just watching the flip rate, it feels similar to the speed of Redstone Additions Clock with a delay =1 world edit was also used to copy and stack in a 100x100 grid effectively placing 10,000 individual instances of this design.

Through my own research on what each value means in the f3 menu through the following Minecraft Wiki Link, it would seem that using the mod lowers the total amount of memory while also lowering speed it takes to process a tick. The mod also has an increased amount packets received from the Integrated Server by roughly 10x. You can compare these values and anything else I might have missed by looking at both images above.
I never made this mod to make a better performant way for using Redstone, I more built this to learn modding and to save space in Redstone designs. Do not download this mod for the potential performance increase
If you have any information to add regarding of if the test is accurate or flawed, I would love to hear about it.