mmb.content.modular.chest.SimpleChestCore 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.modular.chest;
import mmb.NN;
import mmb.content.modular.part.PartEntityType;
import mmb.content.modular.part.PartEntry;
import mmb.engine.inv.storage.SimpleInventory;
import mmb.engine.item.ItemEntityType;
import mmb.engine.item.ItemEntry;
import mmb.engine.recipe.SingleItem;
import mmb.menu.world.inv.AbstractInventoryController;
import mmb.menu.world.inv.InventoryController;
/**
* @author oskar
*
*/
public class SimpleChestCore extends ChestCore {
@NN private final PartEntityType type;
/**
* Creates a simple chest core (many different items)
* @param type item entity type
* @param size volume in cubic meters
*/
public SimpleChestCore(PartEntityType type, double size) {
super(new SimpleInventory().setCapacity(size));
this.type = type;
}
@Override
public PartEntry partClone() {
SimpleChestCore copy = new SimpleChestCore(type, 0);
((SimpleInventory)copy.inventory).set(inventory);
return copy;
}
@Override
public PartEntityType type() {
return type;
}
@Override
public AbstractInventoryController invctrl() {
return new InventoryController(inventory);
}
@Override
public ChestCore makeEmpty() {
return new SimpleChestCore(type, inventory.capacity());
}
@Override
public SingleItem getRenderItem() {
return null;
}
}