use of me.desht.pneumaticcraft.common.network.PacketProgrammerUpdate in project pnc-repressurized by TeamPneumatic.
the class GuiProgrammer method initGui.
@Override
public void initGui() {
if (pastebinGui != null && pastebinGui.outputTag != null) {
te.readProgWidgetsFromNBT(pastebinGui.outputTag);
pastebinGui = null;
NetworkHandler.sendToServer(new PacketProgrammerUpdate(te));
}
super.initGui();
if (programmerUnit != null) {
te.translatedX = programmerUnit.getTranslatedX();
te.translatedY = programmerUnit.getTranslatedY();
te.zoomState = programmerUnit.getLastZoom();
}
programmerUnit = new GuiUnitProgrammer(te.progWidgets, fontRenderer, guiLeft, guiTop, xSize, width, height, PROGRAMMING_START_X, PROGRAMMING_START_Y, PROGRAMMING_WIDTH, PROGRAMMING_HEIGHT, te.translatedX, te.translatedY, te.zoomState);
addWidget(programmerUnit.getScrollBar());
int xStart = (width - xSize) / 2;
int yStart = (height - ySize) / 2;
// addProgWidgetTabs(xStart, yStart);
importButton = new GuiButtonSpecial(1, xStart + 301, yStart + 3, 20, 15, "<--");
importButton.setTooltipText("Import program");
buttonList.add(importButton);
exportButton = new GuiButtonSpecial(2, xStart + 301, yStart + 20, 20, 15, "-->");
buttonList.add(exportButton);
buttonList.add(new GuiButton(3, xStart + 294, yStart + 174, 10, 10, "-"));
buttonList.add(new GuiButton(4, xStart + 335, yStart + 174, 10, 10, "+"));
allWidgetsButton = new GuiButtonSpecial(8, xStart + 321, yStart + 159, 10, 10, "<");
allWidgetsButton.setTooltipText(I18n.format("gui.programmer.button.openPanel.tooltip"));
addWidget(allWidgetsButton);
difficultyButtons = new ArrayList<>();
for (int i = 0; i < IProgWidget.WidgetDifficulty.values().length; i++) {
GuiRadioButton radioButton = new GuiRadioButton(i, xStart + 263, yStart + 200 + i * 12, 0xFF000000, IProgWidget.WidgetDifficulty.values()[i].getLocalizedName());
radioButton.checked = ConfigHandler.getProgrammerDifficulty() == i;
addWidget(radioButton);
difficultyButtons.add(radioButton);
radioButton.otherChoices = difficultyButtons;
if (i == 1)
radioButton.setTooltip(I18n.format("gui.programmer.difficulty.medium.tooltip"));
if (i == 2)
radioButton.setTooltip(I18n.format("gui.programmer.difficulty.advanced.tooltip"));
}
buttonList.add(new GuiButton(5, xStart + 5, yStart + 175, 87, 20, I18n.format("gui.programmer.button.showStart")));
buttonList.add(new GuiButton(6, xStart + 5, yStart + 197, 87, 20, I18n.format("gui.programmer.button.showLatest")));
addWidget(showInfo = new GuiCheckBox(-1, xStart + 5, yStart + 220, 0xFF000000, "gui.programmer.checkbox.showInfo").setChecked(te.showInfo));
addWidget(showFlow = new GuiCheckBox(-1, xStart + 5, yStart + 232, 0xFF000000, "gui.programmer.checkbox.showFlow").setChecked(te.showFlow));
GuiButtonSpecial pastebinButton = new GuiButtonSpecial(7, guiLeft - 24, guiTop + 44, 20, 20, "");
pastebinButton.setTooltipText(I18n.format("gui.remote.button.pastebinButton"));
pastebinButton.setRenderedIcon(Textures.GUI_PASTEBIN_ICON_LOCATION);
buttonList.add(pastebinButton);
undoButton = new GuiButtonSpecial(9, guiLeft - 24, guiTop + 2, 20, 20, "");
redoButton = new GuiButtonSpecial(10, guiLeft - 24, guiTop + 23, 20, 20, "");
GuiButtonSpecial clearAllButton = new GuiButtonSpecial(11, guiLeft - 24, guiTop + 65, 20, 20, "");
convertToRelativeButton = new GuiButtonSpecial(12, guiLeft - 24, guiTop + 86, 20, 20, "Rel");
undoButton.setRenderedIcon(Textures.GUI_UNDO_ICON_LOCATION);
redoButton.setRenderedIcon(Textures.GUI_REDO_ICON_LOCATION);
clearAllButton.setRenderedIcon(Textures.GUI_DELETE_ICON_LOCATION);
undoButton.setTooltipText(I18n.format("gui.programmer.button.undoButton.tooltip"));
redoButton.setTooltipText(I18n.format("gui.programmer.button.redoButton.tooltip"));
clearAllButton.setTooltipText(I18n.format("gui.programmer.button.clearAllButton.tooltip"));
buttonList.add(undoButton);
buttonList.add(redoButton);
buttonList.add(clearAllButton);
buttonList.add(convertToRelativeButton);
String containerName = I18n.format(te.getName() + ".name");
addLabel(containerName, guiLeft + 7, guiTop + 5, 0xFF404040);
nameField = new WidgetTextField(fontRenderer, guiLeft + 200, guiTop + 5, 98, fontRenderer.FONT_HEIGHT);
addWidget(nameField);
filterField = new FilterTextField(fontRenderer, guiLeft + 78, guiTop + 26, 100, fontRenderer.FONT_HEIGHT);
filterField.setListener(this);
addWidget(filterField);
String name = I18n.format("gui.programmer.name");
addLabel(name, guiLeft + 197 - fontRenderer.getStringWidth(name), guiTop + 5, 0xFF404040);
updateVisibleProgWidgets();
}
Aggregations