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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
package gtPlusPlus.xmod.gregtech.api.metatileentity.implementations;
import com.gtnewhorizons.modularui.api.screen.ModularWindow.Builder;
import com.gtnewhorizons.modularui.api.screen.UIBuildContext;
import com.gtnewhorizons.modularui.common.widget.Scrollable;
import com.gtnewhorizons.modularui.common.widget.SlotWidget;
import gregtech.api.gui.widgets.PhantomItemButton;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.metatileentity.MetaTileEntity;
import gregtech.api.metatileentity.implementations.MTEHatchOutputBus;
import gregtech.api.util.GTUtility;
import gtPlusPlus.core.lib.GTPPCore;
public class MTESuperBusOutput extends MTEHatchOutputBus {
public MTESuperBusOutput(int id, String name, String nameRegional, int tier) {
super(id, name, nameRegional, tier, getSlots(tier));
}
public MTESuperBusOutput(String name, int tier, String[] description, ITexture[][][] textures) {
super(name, tier, getSlots(tier), description, textures);
}
/**
* Returns a factor of 16 based on tier.
*
* @param aTier The tier of this bus.
* @return (1 + aTier) * 16
*/
public static int getSlots(int aTier) {
return (1 + aTier) * 16;
}
@Override
public boolean isValidSlot(int aIndex) {
return true;
}
@Override
public MetaTileEntity newMetaEntity(IGregTechTileEntity aTileEntity) {
return new MTESuperBusOutput(this.mName, this.mTier, mDescriptionArray, this.mTextures);
}
@Override
public void onPostTick(IGregTechTileEntity aBaseMetaTileEntity, long aTimer) {
if (aBaseMetaTileEntity.isServerSide() && aBaseMetaTileEntity.hasInventoryBeenModified()) {
this.fillStacksIntoFirstSlots();
}
super.onPostTick(aBaseMetaTileEntity, aTimer);
}
public void updateSlots() {
for (int i = 0; i < this.mInventory.length; ++i) {
if (this.mInventory[i] != null && this.mInventory[i].stackSize <= 0) {
this.mInventory[i] = null;
}
}
this.fillStacksIntoFirstSlots();
}
protected void fillStacksIntoFirstSlots() {
for (int i = 0; i < this.mInventory.length; ++i) {
for (int j = i + 1; j < this.mInventory.length; ++j) {
if (this.mInventory[j] != null && (this.mInventory[i] == null
|| GTUtility.areStacksEqual(this.mInventory[i], this.mInventory[j]))) {
GTUtility.moveStackFromSlotAToSlotB(
this.getBaseMetaTileEntity(),
this.getBaseMetaTileEntity(),
j,
i,
(byte) 64,
(byte) 1,
(byte) 64,
(byte) 1);
}
}
}
}
@Override
public String[] getDescription() {
return new String[] { "Item Output for Multiblocks", getSlots(this.mTier) + " Slots",
"Left click with data stick to save filter config", "Right click with data stick to load filter config",
GTPPCore.GT_Tooltip.get() };
}
@Override
public void addUIWidgets(Builder builder, UIBuildContext buildContext) {
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, row * 4 + column).setPos(column * 18, row * 18)
.setSize(18, 18));
}
}
builder.widget(
scrollable.setSize(18 * 4 + 4, 18 * 4)
.setPos(52, 7));
if (acceptsItemLock()) {
builder.widget(
new PhantomItemButton(this).setPos(getGUIWidth() - 25, 40)
.setBackground(PhantomItemButton.FILTER_BACKGROUND));
}
}
}
|