mmb.content.imachine.pipe.IntersectingPipeExtractor 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 com.fasterxml.jackson.databind.node.ObjectNode;
import mmb.NN;
import mmb.engine.block.BlockEntry;
import mmb.engine.block.BlockType;
import mmb.engine.inv.storage.SingleItemInventory;
import mmb.engine.item.ItemEntry;
import mmb.engine.rotate.ChirotatedImageGroup;
import mmb.engine.rotate.Side;
import mmb.engine.worlds.MapProxy;
/**
* @author oskar
*
*/
public class IntersectingPipeExtractor extends Pipe {
@SuppressWarnings("javadoc")
public IntersectingPipeExtractor(Side sideA, Side sideB, BlockType type, ChirotatedImageGroup rig) {
super(sideA, sideB, type, rig);
}
@Override
public void onTick(MapProxy map) {
super.onTick(map);
ItemTransporter.moveItems(posX(), posY(), map, getRotation(), inv);
}
@NN private SingleItemInventory inv = new SingleItemInventory();
@Override
protected void save1(ObjectNode node) {
node.set("tmp", ItemEntry.saveItem(inv.getContents()));
}
@Override
protected void load1(ObjectNode node) {
inv.setContents(ItemEntry.loadFromJson(node.get("tmp")));
}
@Override
public BlockEntry blockCopy() {
IntersectingPipeExtractor result = new IntersectingPipeExtractor(sideA, sideB, type(), getImage());
System.arraycopy(items, 0, result.items, 0, 2);
result.inv.setContents(inv.getContents());
return result;
}
}