mmb.content.imachine.pipe.DualPipe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multimachinebuilder Show documentation
Show all versions of multimachinebuilder Show documentation
Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world.
THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<
The newest version!
/**
*
*/
package mmb.content.imachine.pipe;
import mmb.engine.block.BlockEntry;
import mmb.engine.block.BlockType;
import mmb.engine.inv.storage.SingleItemInventory;
import mmb.engine.rotate.ChirotatedImageGroup;
import mmb.engine.rotate.Side;
import mmb.engine.worlds.MapProxy;
/**
* @author oskar
* Represent a pair of pipes.
*
* Bindings: up - side A, left - side B
*/
public class DualPipe extends AbstractBasePipe {
private final Side sideA, sideB;
protected final Pusher invwA, invwB, invwC, invwD;
/**
*
* @param sideA side bound to uppper interface
* @param sideB side bound to left interface
* @param type block type
* @param rig texture
*/
public DualPipe(Side sideA, Side sideB,
BlockType type, ChirotatedImageGroup rig) {
super(type, 4, rig);
this.sideA = sideA;
this.sideB = sideB;
SingleItemInventory varA = items[0];
SingleItemInventory varU = items[1];
SingleItemInventory varB = items[2];
SingleItemInventory varL = items[3];
invwA = new Pusher(varA, Side.U);
invwB = new Pusher(varU, sideA);
invwC = new Pusher(varB, Side.L);
invwD = new Pusher(varL, sideB);
setIn(invwA, sideA);
setIn(invwB, Side.U);
setIn(invwC, sideB);
setIn(invwD, Side.L);
setOut(varA.createReader(), sideA);
setOut(varU.createReader(), Side.U);
setOut(varB.createReader(), sideB);
setOut(varL.createReader(), Side.L);
}
@Override
public void onTick(MapProxy map) {
invwA.push();
invwB.push();
invwC.push();
invwD.push();
}
@Override
public BlockEntry blockCopy() {
DualPipe result = new DualPipe(sideA, sideB, type(), getImage());
System.arraycopy(items, 0, result.items, 0, 4);
return result;
}
}