use of logisticspipes.modules.ModuleOreDictItemSink in project LogisticsPipes by RS485.
the class OreDictItemSinkModuleSlot method getClientGui.
@Override
public Object getClientGui(EntityPlayer player) {
ModuleOreDictItemSink module = this.getLogisticsModule(player.getEntityWorld(), ModuleOreDictItemSink.class);
if (module == null) {
return null;
}
module.readFromNBT(getNbt());
return new GuiOreDictItemSink(player.inventory, module);
}
use of logisticspipes.modules.ModuleOreDictItemSink in project LogisticsPipes by RS485.
the class OreDictItemSinkModuleSlot method getContainer.
@Override
public DummyContainer getContainer(EntityPlayer player) {
ModuleOreDictItemSink module = this.getLogisticsModule(player.getEntityWorld(), ModuleOreDictItemSink.class);
if (module == null) {
return null;
}
DummyContainer dummy = new DummyContainer(player.inventory, new ItemIdentifierInventory(1, "TMP", 1));
dummy.addDummySlot(0, 0, 0);
dummy.addNormalSlotsForPlayerInventory(0, 0);
return dummy;
}
use of logisticspipes.modules.ModuleOreDictItemSink in project LogisticsPipes by RS485.
the class OreDictItemSinkModuleInHand method getContainer.
@Override
public DummyContainer getContainer(EntityPlayer player) {
DummyModuleContainer dummy = new DummyModuleContainer(player, getInvSlot());
if (!(dummy.getModule() instanceof ModuleOreDictItemSink)) {
return null;
}
dummy.setInventory(new ItemIdentifierInventory(1, "TMP", 1));
dummy.addDummySlot(0, 0, 0);
dummy.addNormalSlotsForPlayerInventory(0, 0);
return dummy;
}
use of logisticspipes.modules.ModuleOreDictItemSink in project LogisticsPipes by RS485.
the class OreDictItemSinkList method processPacket.
@Override
public void processPacket(EntityPlayer player) {
ModuleOreDictItemSink module = this.getLogisticsModule(player, ModuleOreDictItemSink.class);
if (module == null) {
return;
}
module.readFromNBT(getTag());
if (MainProxy.isServer(player.getEntityWorld()) && getType().isInWorld()) {
module.OreListChanged();
}
}
Aggregations