Applied-Energistics-2-tiler.../src/main/java/appeng/tile/crafting/TileCraftingStorageTile.java
LordMZTE f67fb6a129
Some checks failed
continuous-integration/drone/push Build is failing
chore: format code
2022-12-02 17:40:47 +01:00

87 lines
2.6 KiB
Java

/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
package appeng.tile.crafting;
import appeng.api.AEApi;
import appeng.api.definitions.IBlocks;
import net.minecraft.item.ItemStack;
public class TileCraftingStorageTile extends TileCraftingTile {
private static final int KILO_SCALAR = 1024;
@Override
protected ItemStack getItemFromTile(final Object obj) {
final IBlocks blocks = AEApi.instance().definitions().blocks();
final int storage = ((TileCraftingTile) obj).getStorageBytes() / KILO_SCALAR;
switch (storage) {
case 4:
for (final ItemStack stack :
blocks.craftingStorage4k().maybeStack(1).asSet()) {
return stack;
}
break;
case 16:
for (final ItemStack stack :
blocks.craftingStorage16k().maybeStack(1).asSet()) {
return stack;
}
break;
case 64:
for (final ItemStack stack :
blocks.craftingStorage64k().maybeStack(1).asSet()) {
return stack;
}
break;
}
return super.getItemFromTile(obj);
}
@Override
public boolean isAccelerator() {
return false;
}
@Override
public boolean isStorage() {
return true;
}
@Override
public int getStorageBytes() {
if (this.worldObj == null || this.notLoaded()) {
return 0;
}
switch (this.worldObj.getBlockMetadata(this.xCoord, this.yCoord, this.zCoord) & 3
) {
default:
case 0:
return 1024;
case 1:
return 4 * 1024;
case 2:
return 16 * 1024;
case 3:
return 64 * 1024;
}
}
}