0e0729166f
FIx security station card slot being reaaally off
83 lines
3.0 KiB
Java
83 lines
3.0 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.parts.reporting;
|
|
|
|
|
|
import appeng.api.parts.IPartModel;
|
|
import appeng.core.AppEng;
|
|
import appeng.core.sync.GuiBridge;
|
|
import appeng.helpers.Reflected;
|
|
import appeng.items.parts.PartModels;
|
|
import appeng.parts.PartModel;
|
|
import appeng.tile.inventory.AppEngInternalInventory;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
import javax.annotation.Nonnull;
|
|
|
|
import static appeng.helpers.PatternHelper.CRAFTING_GRID_DIMENSION;
|
|
import static appeng.helpers.PatternHelper.CRAFTING_OUTPUT_LIMIT;
|
|
|
|
|
|
public class PartPatternTerminal extends AbstractPartEncoder {
|
|
|
|
@PartModels
|
|
public static final ResourceLocation MODEL_OFF = new ResourceLocation(AppEng.MOD_ID, "part/pattern_terminal_off");
|
|
@PartModels
|
|
public static final ResourceLocation MODEL_ON = new ResourceLocation(AppEng.MOD_ID, "part/pattern_terminal_on");
|
|
|
|
public static final IPartModel MODELS_OFF = new PartModel(MODEL_BASE, MODEL_OFF, MODEL_STATUS_OFF);
|
|
public static final IPartModel MODELS_ON = new PartModel(MODEL_BASE, MODEL_ON, MODEL_STATUS_ON);
|
|
public static final IPartModel MODELS_HAS_CHANNEL = new PartModel(MODEL_BASE, MODEL_ON, MODEL_STATUS_HAS_CHANNEL);
|
|
|
|
@Reflected
|
|
public PartPatternTerminal(final ItemStack is) {
|
|
super(is);
|
|
this.crafting = new AppEngInternalInventory(this, CRAFTING_GRID_DIMENSION * CRAFTING_GRID_DIMENSION);
|
|
this.output = new AppEngInternalInventory(this, 3);
|
|
this.pattern = new AppEngInternalInventory(this, 2);
|
|
}
|
|
|
|
@Override
|
|
public void readFromNBT(final NBTTagCompound data) {
|
|
super.readFromNBT(data);
|
|
this.setCraftingRecipe(data.getBoolean("craftingMode"));
|
|
this.setSubstitution(data.getBoolean("substitute"));
|
|
}
|
|
|
|
@Override
|
|
public void writeToNBT(final NBTTagCompound data) {
|
|
super.writeToNBT(data);
|
|
data.setBoolean("craftingMode", this.craftingMode);
|
|
data.setBoolean("substitute", this.substitute);
|
|
}
|
|
|
|
@Override
|
|
public GuiBridge getGuiBridge() {
|
|
return GuiBridge.GUI_PATTERN_TERMINAL;
|
|
}
|
|
|
|
@Nonnull
|
|
@Override
|
|
public IPartModel getStaticModels() {
|
|
return this.selectModel(MODELS_OFF, MODELS_ON, MODELS_HAS_CHANNEL);
|
|
}
|
|
}
|