-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathCoverAbstractEnderLink.java
More file actions
424 lines (374 loc) · 17.5 KB
/
CoverAbstractEnderLink.java
File metadata and controls
424 lines (374 loc) · 17.5 KB
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
package gregtech.common.covers.ender;
import gregtech.api.capability.GregtechDataCodes;
import gregtech.api.capability.IControllable;
import gregtech.api.cover.CoverBase;
import gregtech.api.cover.CoverDefinition;
import gregtech.api.cover.CoverWithUI;
import gregtech.api.cover.CoverableView;
import gregtech.api.mui.GTGuiTextures;
import gregtech.api.mui.GTGuis;
import gregtech.api.util.virtualregistry.EntryTypes;
import gregtech.api.util.virtualregistry.VirtualEnderRegistry;
import gregtech.api.util.virtualregistry.VirtualEntry;
import gregtech.common.mui.widget.InteractableText;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.network.PacketBuffer;
import net.minecraft.util.EnumActionResult;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumHand;
import net.minecraft.util.ITickable;
import codechicken.lib.raytracer.CuboidRayTraceResult;
import com.cleanroommc.modularui.api.drawable.IKey;
import com.cleanroommc.modularui.api.widget.IWidget;
import com.cleanroommc.modularui.drawable.DynamicDrawable;
import com.cleanroommc.modularui.drawable.GuiTextures;
import com.cleanroommc.modularui.drawable.Rectangle;
import com.cleanroommc.modularui.factory.GuiData;
import com.cleanroommc.modularui.factory.SidedPosGuiData;
import com.cleanroommc.modularui.network.NetworkUtils;
import com.cleanroommc.modularui.screen.ModularPanel;
import com.cleanroommc.modularui.utils.Color;
import com.cleanroommc.modularui.value.sync.BooleanSyncValue;
import com.cleanroommc.modularui.value.sync.PanelSyncHandler;
import com.cleanroommc.modularui.value.sync.PanelSyncManager;
import com.cleanroommc.modularui.value.sync.StringSyncValue;
import com.cleanroommc.modularui.value.sync.SyncHandler;
import com.cleanroommc.modularui.widgets.ButtonWidget;
import com.cleanroommc.modularui.widgets.ListWidget;
import com.cleanroommc.modularui.widgets.ToggleButton;
import com.cleanroommc.modularui.widgets.layout.Flow;
import com.cleanroommc.modularui.widgets.layout.Row;
import com.cleanroommc.modularui.widgets.textfield.TextFieldWidget;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.lwjgl.input.Keyboard;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.UUID;
import java.util.regex.Pattern;
@SuppressWarnings("SameParameterValue")
public abstract class CoverAbstractEnderLink<T extends VirtualEntry> extends CoverBase
implements CoverWithUI, ITickable, IControllable {
protected static final Pattern COLOR_INPUT_PATTERN = Pattern.compile("[0-9a-fA-F]*");
protected T activeEntry = null;
protected String color = VirtualEntry.DEFAULT_COLOR;
protected UUID playerUUID = null;
private boolean isPrivate = false;
private boolean workingEnabled = true;
private boolean ioEnabled = false;
public CoverAbstractEnderLink(@NotNull CoverDefinition definition, @NotNull CoverableView coverableView,
@NotNull EnumFacing attachedSide) {
super(definition, coverableView, attachedSide);
updateLink();
}
protected void updateLink() {
this.activeEntry = VirtualEnderRegistry.getOrCreateEntry(getOwner(), getType(), createName());
this.activeEntry.setColor(this.color);
markDirty();
}
protected abstract EntryTypes<T> getType();
public String getColorStr() {
return this.color;
}
protected final String createName() {
return identifier() + this.color;
}
protected abstract String identifier();
protected final UUID getOwner() {
return isPrivate ? playerUUID : null;
}
@Override
public void readCustomData(int discriminator, @NotNull PacketBuffer buf) {
super.readCustomData(discriminator, buf);
if (discriminator == GregtechDataCodes.UPDATE_PRIVATE) {
setPrivate(buf.readBoolean());
updateLink();
}
}
@Override
public @NotNull EnumActionResult onScrewdriverClick(@NotNull EntityPlayer playerIn, @NotNull EnumHand hand,
@NotNull CuboidRayTraceResult hitResult) {
if (!getWorld().isRemote) {
openUI((EntityPlayerMP) playerIn);
}
return EnumActionResult.SUCCESS;
}
@Override
public void onAttachment(@NotNull CoverableView coverableView, @NotNull EnumFacing side,
@Nullable EntityPlayer player, @NotNull ItemStack itemStack) {
super.onAttachment(coverableView, side, player, itemStack);
if (player != null) {
this.playerUUID = player.getUniqueID();
}
}
public void updateColor(String str) {
if (str.length() == 8) {
this.color = str.toUpperCase();
updateLink();
}
}
@Override
public boolean usesMui2() {
return true;
}
@Override
public ModularPanel buildUI(SidedPosGuiData guiData, PanelSyncManager guiSyncManager) {
var panel = GTGuis.createPanel(this, 176, 192);
this.playerUUID = guiData.getPlayer().getUniqueID();
return panel.child(CoverWithUI.createTitleRow(getPickItem()))
.child(createWidgets(guiData, guiSyncManager))
.bindPlayerInventory();
}
protected Flow createWidgets(GuiData data, PanelSyncManager syncManager) {
var name = new StringSyncValue(this::getColorStr, this::updateColor);
var entrySelectorSH = syncManager.panel("entry_selector", entrySelector(getType()), true);
return Flow.column().coverChildrenHeight().top(24)
.margin(7, 0).widthRel(1f)
.child(new Row().marginBottom(2)
.coverChildrenHeight()
.child(createPrivateButton())
.child(createColorIcon())
.child(new TextFieldWidget()
.height(18)
.value(name)
.setPattern(COLOR_INPUT_PATTERN)
.widthRel(0.5f)
.marginRight(2))
.child(createEntrySlot())
.child(new ButtonWidget<>()
.overlay(GTGuiTextures.MENU_OVERLAY)
.background(GTGuiTextures.MC_BUTTON)
.disableHoverBackground()
.addTooltipLine(IKey.lang("cover.generic.ender.open_selector"))
.onMousePressed(i -> {
if (entrySelectorSH.isPanelOpen()) {
entrySelectorSH.closePanel();
entrySelectorSH.deleteCachedPanel();
} else {
entrySelectorSH.openPanel();
}
return true;
})))
.child(createIoRow());
}
protected abstract IWidget createEntrySlot();
protected IWidget createColorIcon() {
return new DynamicDrawable(() -> new Rectangle()
.setColor(this.activeEntry.getColor())
.asIcon().size(16))
.asWidget()
.background(GTGuiTextures.SLOT)
.size(18)
.marginRight(2);
}
protected IWidget createPrivateButton() {
return new ToggleButton()
.value(new BooleanSyncValue(this::isPrivate, this::setPrivate))
.tooltip(tooltip -> tooltip.setAutoUpdate(true))
.background(GTGuiTextures.PRIVATE_MODE_BUTTON[0])
.hoverBackground(GTGuiTextures.PRIVATE_MODE_BUTTON[0])
.selectedBackground(GTGuiTextures.PRIVATE_MODE_BUTTON[1])
.selectedHoverBackground(GTGuiTextures.PRIVATE_MODE_BUTTON[1])
.tooltipBuilder(tooltip -> tooltip.addLine(IKey.lang(this.isPrivate ?
"cover.ender_fluid_link.private.tooltip.enabled" :
"cover.ender_fluid_link.private.tooltip.disabled")))
.marginRight(2);
}
protected IWidget createIoRow() {
return Flow.row().marginBottom(2)
.coverChildrenHeight()
.child(new ToggleButton()
.value(new BooleanSyncValue(this::isIoEnabled, this::setIoEnabled))
.overlay(IKey.dynamic(() -> IKey.lang(this.ioEnabled ?
"behaviour.soft_hammer.enabled" :
"behaviour.soft_hammer.disabled").get())
.color(Color.WHITE.darker(1)))
.widthRel(0.6f)
.left(0));
}
@Override
public boolean isWorkingEnabled() {
return workingEnabled;
}
@Override
public void setWorkingEnabled(boolean isActivationAllowed) {
this.workingEnabled = isActivationAllowed;
}
public boolean isIoEnabled() {
return ioEnabled;
}
protected void setIoEnabled(boolean ioEnabled) {
this.ioEnabled = ioEnabled;
}
private boolean isPrivate() {
return isPrivate;
}
private void setPrivate(boolean isPrivate) {
this.isPrivate = isPrivate;
updateLink();
writeCustomData(GregtechDataCodes.UPDATE_PRIVATE, buffer -> buffer.writeBoolean(this.isPrivate));
}
@Override
public void writeInitialSyncData(PacketBuffer packetBuffer) {
packetBuffer.writeString(this.playerUUID == null ? "null" : this.playerUUID.toString());
}
@Override
public void readInitialSyncData(PacketBuffer packetBuffer) {
// does client even need uuid info? just in case
String uuidStr = packetBuffer.readString(36);
this.playerUUID = uuidStr.equals("null") ? null : UUID.fromString(uuidStr);
}
@Override
public void readFromNBT(@NotNull NBTTagCompound nbt) {
super.readFromNBT(nbt);
this.ioEnabled = nbt.getBoolean("IOAllowed");
this.isPrivate = nbt.getBoolean("Private");
this.workingEnabled = nbt.getBoolean("WorkingAllowed");
this.playerUUID = UUID.fromString(nbt.getString("PlacedUUID"));
int color = nbt.getInteger("Frequency");
this.color = Integer.toHexString(color).toUpperCase();
updateLink();
}
@Override
public void writeToNBT(@NotNull NBTTagCompound nbt) {
super.writeToNBT(nbt);
nbt.setBoolean("IOAllowed", ioEnabled);
nbt.setBoolean("Private", isPrivate);
nbt.setBoolean("WorkingAllowed", workingEnabled);
nbt.setString("PlacedUUID", playerUUID.toString());
nbt.setInteger("Frequency", activeEntry.getColor());
}
protected PanelSyncHandler.IPanelBuilder entrySelector(EntryTypes<T> type) {
return (syncManager, syncHandler) -> {
List<IWidget> rows = new ArrayList<>();
for (String name : VirtualEnderRegistry.getEntryNames(getOwner(), type)) {
rows.add(createRow(name, syncManager, type));
}
return GTGuis.createPopupPanel("entry_selector", 168, 112)
.child(IKey.lang("cover.generic.ender.known_channels")
.color(UI_TITLE_COLOR)
.asWidget()
.top(6)
.left(4))
.child(new ListWidget<>()
.children(rows)
// .builder(names, name -> createRow(name, syncManager, type))
.background(GTGuiTextures.DISPLAY.asIcon()
.width(168 - 8)
.height(112 - 20))
.paddingTop(1)
.size(168 - 12, 112 - 24)
.left(4)
.bottom(6));
};
}
protected PanelSyncHandler.IPanelBuilder entryDescription(String key, T entry) {
return (syncManager, syncHandler) -> {
var sync = new StringSyncValue(entry::getDescription, entry::setDescription);
return GTGuis.createPopupPanel(key, 168, 36 + 6)
.child(IKey.lang("cover.generic.ender.set_description.title", entry.getColorStr())
.color(UI_TITLE_COLOR)
.asWidget()
.left(4)
.top(6))
.child(new TextFieldWidget() {
// todo move this to new class?
@Override
public @NotNull Result onKeyPressed(char character, int keyCode) {
var result = super.onKeyPressed(character, keyCode);
if (result == Result.SUCCESS && keyCode == Keyboard.KEY_RETURN) {
sync.setStringValue(getText());
if (syncHandler.isPanelOpen()) {
syncHandler.closePanel();
}
}
return result;
}
}.setTextColor(Color.WHITE.darker(1))
.value(sync)
.widthRel(0.95f)
.height(18)
.alignX(0.5f)
.bottom(6));
};
}
protected IWidget createRow(final String name, final PanelSyncManager syncManager, final EntryTypes<T> type) {
final T entry = VirtualEnderRegistry.getEntry(getOwner(), type, name);
var key = String.format("entry#%s_description", entry.getColorStr());
var syncKey = PanelSyncManager.makeSyncKey(key, isPrivate ? 1 : 0);
final var panelHandler = (PanelSyncHandler) syncManager.panel(syncKey,
entryDescription(key, entry), true);
final var syncHandler = new EnderCoverSyncHandler();
syncManager.syncValue(key + "_handler", syncHandler);
return Flow.row()
.left(4)
.marginBottom(2)
.height(18)
.widthRel(0.98f)
.setEnabledIf(row -> VirtualEnderRegistry.hasEntry(getOwner(), type, name))
.child(new Rectangle()
.setColor(entry.getColor())
.asWidget()
.marginRight(4)
.size(16)
.background(GTGuiTextures.SLOT.asIcon().size(18))
.top(1))
.child(new InteractableText<>(entry, this::updateColor)
.tooltip(tooltip -> tooltip.setAutoUpdate(true))
.tooltipBuilder(tooltip -> {
String desc = entry.getDescription();
if (!desc.isEmpty()) tooltip.add(desc);
})
.width(64)
.height(16)
.top(1)
.marginRight(4))
.child(new ButtonWidget<>()
.overlay(GuiTextures.GEAR)
.addTooltipLine(IKey.lang("cover.generic.ender.set_description.tooltip"))
.onMousePressed(i -> {
// open entry settings
if (panelHandler.isPanelOpen()) {
panelHandler.closePanel();
} else {
panelHandler.openPanel();
}
return true;
}))
.child(createSlotWidget(entry))
.child(new ButtonWidget<>()
.overlay(GTGuiTextures.BUTTON_CROSS)
.setEnabledIf(w -> !Objects.equals(entry.getColor(), activeEntry.getColor()))
.addTooltipLine(IKey.lang("cover.generic.ender.delete_entry"))
.onMousePressed(i -> {
// todo option to force delete, maybe as a popup?
deleteEntry(getOwner(), name);
syncHandler.syncToServer(1, buffer -> {
NetworkUtils.writeStringSafe(buffer,
getOwner() == null ? "null" : getOwner().toString());
NetworkUtils.writeStringSafe(buffer, name);
});
return true;
}));
}
protected abstract IWidget createSlotWidget(T entry);
protected abstract void deleteEntry(UUID player, String name);
private final class EnderCoverSyncHandler extends SyncHandler {
private static final int DELETE_ENTRY = 1;
@Override
public void readOnClient(int i, PacketBuffer packetBuffer) {}
@Override
public void readOnServer(int i, PacketBuffer packetBuffer) {
if (i == DELETE_ENTRY) {
var s = NetworkUtils.readStringSafe(packetBuffer);
UUID uuid = "null".equals(s) ? null : UUID.fromString(s);
String name = NetworkUtils.readStringSafe(packetBuffer);
deleteEntry(uuid, name);
}
}
}
}