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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
/**
*
* Inspired/ported from GregTech 6 under the LGPL license
* <p>
* Copyright (c) 2020 GregTech-6 Team
* <p>
* This file is part of GregTech.
* <p>
* GregTech 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.
* <p>
* GregTech 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.
* <p>
* You should have received a copy of the GNU Lesser General Public License along with GregTech. If not, see
* <http://www.gnu.org/licenses/>.
*/
package gregtech.common.tileentities.machines.long_distance;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_PIPELINE_ITEM_BACK;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_PIPELINE_ITEM_FRONT;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_PIPELINE_ITEM_SIDE_LEFT_RIGHT;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_PIPELINE_ITEM_SIDE_LEFT_RIGHT_GLOW;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_PIPELINE_ITEM_SIDE_UP_DOWN;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_PIPELINE_ITEM_SIDE_UP_DOWN_GLOW;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.ISidedInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import gregtech.api.enums.GTValues;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.render.TextureFactory;
public class MTELongDistancePipelineItem extends MTELongDistancePipelineBase {
public MTELongDistancePipelineItem(int aID, String aName, String aNameRegional, int aTier) {
super(aID, aName, aNameRegional, aTier, "Sends Items over long distances");
}
public MTELongDistancePipelineItem(String aName, int aTier, String aDescription, ITexture[][][] aTextures) {
super(aName, aTier, aDescription, aTextures);
}
@Override
public boolean isSameClass(MTELongDistancePipelineBase other) {
return other instanceof MTELongDistancePipelineItem;
}
@Override
public int getPipeMeta() {
return 1;
}
public IInventory getInventory() {
final IGregTechTileEntity tTile = mTarget.getBaseMetaTileEntity();
TileEntity invTile = tTile.getTileEntityAtSide(tTile.getBackFacing());
if (invTile instanceof IInventory) return (IInventory) invTile;
else return null;
}
@Override
public ItemStack decrStackSize(int aSlot, int aDecrement) {
if (checkTarget()) {
IInventory iInventory = getInventory();
if (iInventory != null) return iInventory.decrStackSize(aSlot, aDecrement);
}
return null;
}
@Override
public ItemStack getStackInSlotOnClosing(int aSlot) {
if (checkTarget()) {
IInventory iInventory = getInventory();
if (iInventory != null) return iInventory.getStackInSlotOnClosing(aSlot);
}
return null;
}
@Override
public ItemStack getStackInSlot(int aSlot) {
if (checkTarget()) {
IInventory iInventory = getInventory();
if (iInventory != null) return iInventory.getStackInSlot(aSlot);
}
return null;
}
@Override
public String getInventoryName() {
if (checkTarget()) {
IInventory iInventory = getInventory();
if (iInventory != null) return iInventory.getInventoryName();
}
return super.getInventoryName();
}
@Override
public int getSizeInventory() {
if (checkTarget()) {
IInventory iInventory = getInventory();
if (iInventory != null) return iInventory.getSizeInventory();
}
return 0;
}
@Override
public int getInventoryStackLimit() {
if (checkTarget()) {
IInventory iInventory = getInventory();
if (iInventory != null) return iInventory.getInventoryStackLimit();
}
return 0;
}
@Override
public void setInventorySlotContents(int aSlot, ItemStack aStack) {
if (checkTarget()) {
IInventory iInventory = getInventory();
if (iInventory != null) iInventory.setInventorySlotContents(aSlot, aStack);
}
}
@Override
public boolean hasCustomInventoryName() {
if (checkTarget()) {
IInventory iInventory = getInventory();
if (iInventory != null) return iInventory.hasCustomInventoryName();
}
return false;
}
@Override
public boolean isItemValidForSlot(int aSlot, ItemStack aStack) {
if (checkTarget()) {
IInventory iInventory = getInventory();
if (iInventory != null) return iInventory.isItemValidForSlot(aSlot, aStack);
}
return false;
}
// // Relay Sided Inventories
//
@Override
public int[] getAccessibleSlotsFromSide(int ordinalSide) {
if (checkTarget()) {
final IGregTechTileEntity tTile = mTarget.getBaseMetaTileEntity();
final IInventory iInventory = getInventory();
if (iInventory instanceof ISidedInventory inv) return inv.getAccessibleSlotsFromSide(
tTile.getFrontFacing()
.ordinal());
if (iInventory != null) {
final int[] tReturn = new int[iInventory.getSizeInventory()];
for (int i = 0; i < tReturn.length; i++) tReturn[i] = i;
return tReturn;
}
}
return GTValues.emptyIntArray;
}
@Override
public boolean canInsertItem(int aSlot, ItemStack aStack, int ordinalSide) {
if (checkTarget()) {
final IGregTechTileEntity tTile = mTarget.getBaseMetaTileEntity();
IInventory iInventory = getInventory();
if (iInventory instanceof ISidedInventory iSidedInventory) return iSidedInventory.canInsertItem(
aSlot,
aStack,
tTile.getFrontFacing()
.ordinal());
return iInventory != null;
}
return false;
}
@Override
public boolean canExtractItem(int aSlot, ItemStack aStack, int ordinalSide) {
return false;
}
@Override
public IMetaTileEntity newMetaEntity(IGregTechTileEntity aTileEntity) {
return new MTELongDistancePipelineItem(mName, mTier, getDescription()[0], mTextures);
}
@Override
public ITexture[] getTextureOverlays() {
ITexture[] overlays = new ITexture[4];
overlays[INPUT_INDEX] = TextureFactory.of(OVERLAY_PIPELINE_ITEM_FRONT);
overlays[OUTPUT_INDEX] = TextureFactory.of(OVERLAY_PIPELINE_ITEM_BACK);
overlays[SIDE_UP_DOWN_INDEX] = TextureFactory.of(
TextureFactory.of(OVERLAY_PIPELINE_ITEM_SIDE_UP_DOWN),
TextureFactory.builder()
.addIcon(OVERLAY_PIPELINE_ITEM_SIDE_UP_DOWN_GLOW)
.glow()
.build());
overlays[SIDE_LEFT_RIGHT_INDEX] = TextureFactory.of(
TextureFactory.of(OVERLAY_PIPELINE_ITEM_SIDE_LEFT_RIGHT),
TextureFactory.builder()
.addIcon(OVERLAY_PIPELINE_ITEM_SIDE_LEFT_RIGHT_GLOW)
.glow()
.build());
return overlays;
}
}
|