1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
package gtPlusPlus.xmod.gregtech.api.metatileentity.implementations;
import net.minecraft.util.EnumChatFormatting;
import com.gtnewhorizons.modularui.api.screen.ModularWindow;
import com.gtnewhorizons.modularui.api.screen.UIBuildContext;
import com.gtnewhorizons.modularui.common.widget.Scrollable;
import com.gtnewhorizons.modularui.common.widget.SlotWidget;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.modularui.IAddUIWidgets;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.metatileentity.MetaTileEntity;
import gregtech.api.metatileentity.implementations.MTEHatchInputBus;
public class MTEHatchChiselBus extends MTEHatchInputBus implements IAddUIWidgets {
public MTEHatchChiselBus(int id, String name, String nameRegional, int tier) {
super(id, name, nameRegional, tier);
}
public MTEHatchChiselBus(String aName, int aTier, String[] aDescription, ITexture[][][] aTextures) {
super(aName, aTier, getSlots(aTier), aDescription, aTextures);
}
@Override
public boolean isValidSlot(int aIndex) {
return aIndex < getSlots(this.mTier);
}
public static int getSlots(int aTier) {
return (1 + aTier) * 16 + 1;
}
@Override
public MetaTileEntity newMetaEntity(IGregTechTileEntity aTileEntity) {
return new MTEHatchChiselBus(this.mName, this.mTier, this.mDescriptionArray, this.mTextures);
}
@Override
public boolean allowSelectCircuit() {
return false;
}
@Override
public String[] getDescription() {
return new String[] { "Item Input Bus for Industrial Chisel", getSlots(this.mTier) - 1 + " + 1 " + " Slots",
"Added by: " + EnumChatFormatting.AQUA
+ "Quetz4l"
+ " - "
+ EnumChatFormatting.RED
+ "[GT++]"
+ EnumChatFormatting.RESET };
}
@Override
public void addUIWidgets(ModularWindow.Builder builder, UIBuildContext buildContext) {
int slotIndex = 0;
final Scrollable scrollable = new Scrollable().setVerticalScroll();
for (int row = 0; row * 4 < inventoryHandler.getSlots() - 1; row++) {
int columnsToMake = Math.min(inventoryHandler.getSlots() - row * 4, 4);
for (int column = 0; column < columnsToMake; column++) {
scrollable.widget(
new SlotWidget(inventoryHandler, slotIndex++).setPos(column * 18, row * 18)
.setSize(18, 18));
}
}
builder.widget(
scrollable.setSize(18 * 4 + 4, 18 * 4)
.setPos(52, 7)); // main slots
builder.widget(
new SlotWidget(inventoryHandler, slotIndex).setPos(18, 18)
.setSize(18, 18)); // slot for target
}
}
|