aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui')
-rwxr-xr-xsrc/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonAddSet.java143
-rwxr-xr-xsrc/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonParameterEdit.java179
-rwxr-xr-xsrc/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonRoomEdit.java75
-rwxr-xr-xsrc/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonValueEdit.java133
4 files changed, 0 insertions, 530 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonAddSet.java b/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonAddSet.java
deleted file mode 100755
index 4410d08e..00000000
--- a/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonAddSet.java
+++ /dev/null
@@ -1,143 +0,0 @@
-/*
- * Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
- * Copyright (C) 2021 cyoung06
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published
- * by the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
-
-package kr.syeyoung.dungeonsguide.roomedit.gui;
-
-import kr.syeyoung.dungeonsguide.dungeon.data.OffsetPoint;
-import kr.syeyoung.dungeonsguide.gui.MGui;
-import kr.syeyoung.dungeonsguide.roomedit.EditingContext;
-import kr.syeyoung.dungeonsguide.gui.MPanel;
-import kr.syeyoung.dungeonsguide.gui.elements.*;
-import kr.syeyoung.dungeonsguide.roomedit.valueedit.ValueEditOffsetPointSet;
-import kr.syeyoung.dungeonsguide.utils.RenderUtils;
-import lombok.Getter;
-import net.minecraft.client.Minecraft;
-import net.minecraft.client.gui.GuiScreen;
-import net.minecraft.client.gui.ScaledResolution;
-import net.minecraft.client.renderer.GlStateManager;
-import org.lwjgl.input.Mouse;
-import org.lwjgl.opengl.GL11;
-
-import java.awt.*;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.List;
-
-public class GuiDungeonAddSet extends MGui {
-
- private final ValueEditOffsetPointSet valueEditOffsetPointSet;
-
- private final MButton add;
- private final MButton back;
-
-
- @Getter
- private final OffsetPoint start;
- @Getter
- private final OffsetPoint end;
-
- public void onWorldRender(float partialTicks) {
- for (OffsetPoint pos:getBlockPoses()) {
- RenderUtils.highlightBlock(pos.getBlockPos(EditingContext.getEditingContext().getRoom()), new Color(0,255,255,50), partialTicks);
- }
- RenderUtils.highlightBlock(start.getBlockPos(EditingContext.getEditingContext().getRoom()), new Color(255,0,0,100), partialTicks);
- RenderUtils.highlightBlock(end.getBlockPos(EditingContext.getEditingContext().getRoom()), new Color(0,255,0,100), partialTicks);
- }
-
- public List<OffsetPoint> getBlockPoses() {
- int minX = Math.min(start.getX(), end.getX());
- int minY = Math.min(start.getY(), end.getY());
- int minZ = Math.min(start.getZ(), end.getZ());
- int maxX = Math.max(start.getX(), end.getX());
- int maxY = Math.max(start.getY(), end.getY());
- int maxZ = Math.max(start.getZ(), end.getZ());
-
- List<OffsetPoint> offsetPoints = new ArrayList<OffsetPoint>();
- for (int z = minZ; z <= maxZ; z++) {
- for (int x = minX; x <=maxX; x++) {
- for (int y = maxY; y >= minY; y --) {
- offsetPoints.add(new OffsetPoint(x,y,z));
- }
- }
- }
- return offsetPoints;
- }
-
- public void add() {
- valueEditOffsetPointSet.addAll(getBlockPoses());
- }
-
- public GuiDungeonAddSet(final ValueEditOffsetPointSet processorParameterEditPane) {
- this.valueEditOffsetPointSet = processorParameterEditPane;
- getMainPanel().setBackgroundColor(new Color(17, 17, 17, 179));
- {
- start = new OffsetPoint(EditingContext.getEditingContext().getRoom(), Minecraft.getMinecraft().thePlayer.getPosition());
- end = new OffsetPoint(EditingContext.getEditingContext().getRoom(), Minecraft.getMinecraft().thePlayer.getPosition());
- }
- {
- MValue mValue = new MValue(start, Collections.emptyList());
- mValue.setBounds(new Rectangle(0,0,150,20));
- getMainPanel().add(mValue);
- MValue mValue2 = new MValue(end,Collections.emptyList());
- mValue2.setBounds(new Rectangle(0,20,150,20));
- getMainPanel().add(mValue2);
- }
- {
- add = new MButton() {
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(0,parentHeight - 20, parentWidth / 2, 20));
- }
- };
- add.setText("Add");
- add.setBackgroundColor(Color.red);
- add.setOnActionPerformed(new Runnable() {
- @Override
- public void run() {
- add();
- EditingContext.getEditingContext().goBack();
- }
- });
-
- back = new MButton(){
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(parentWidth / 2,parentHeight - 20, parentWidth / 2, 20));
- }
- };
- back.setText("Go back");
- back.setBackgroundColor(Color.green);
- back.setOnActionPerformed(new Runnable() {
- @Override
- public void run() {
- EditingContext.getEditingContext().goBack();
- }
- });
- getMainPanel().add(add);
- getMainPanel().add(back);
- }
- }
-
- @Override
- public void initGui() {
- super.initGui();
- // update bounds
- getMainPanel().setBounds(new Rectangle(10, Math.min((Minecraft.getMinecraft().displayHeight - 300) / 2, Minecraft.getMinecraft().displayHeight),200,300));
- }
-}
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonParameterEdit.java b/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonParameterEdit.java
deleted file mode 100755
index 584d8472..00000000
--- a/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonParameterEdit.java
+++ /dev/null
@@ -1,179 +0,0 @@
-/*
- * Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
- * Copyright (C) 2021 cyoung06
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published
- * by the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
-
-package kr.syeyoung.dungeonsguide.roomedit.gui;
-
-import kr.syeyoung.dungeonsguide.dungeon.roomfinder.DungeonRoom;
-import kr.syeyoung.dungeonsguide.gui.MGui;
-import kr.syeyoung.dungeonsguide.roomedit.EditingContext;
-import kr.syeyoung.dungeonsguide.gui.MPanel;
-import kr.syeyoung.dungeonsguide.roomedit.Parameter;
-import kr.syeyoung.dungeonsguide.gui.elements.*;
-import kr.syeyoung.dungeonsguide.roomedit.panes.DynamicEditor;
-import kr.syeyoung.dungeonsguide.roomedit.valueedit.ValueEdit;
-import kr.syeyoung.dungeonsguide.roomedit.valueedit.ValueEditCreator;
-import kr.syeyoung.dungeonsguide.roomedit.valueedit.ValueEditRegistry;
-import lombok.Getter;
-import net.minecraft.client.Minecraft;
-import net.minecraft.client.gui.GuiScreen;
-import net.minecraft.client.gui.ScaledResolution;
-import net.minecraft.client.renderer.GlStateManager;
-import org.lwjgl.input.Mouse;
-import org.lwjgl.opengl.GL11;
-
-import java.awt.*;
-import java.io.IOException;
-
-public class GuiDungeonParameterEdit extends MGui {
-
- private final Parameter parameter;
- private final DungeonRoom dungeonRoom;
-
- private String classSelection;
-
- private final MPanel currentValueEdit;
-
- private final MButton save;
- private final MButton delete;
-
- @Getter
- private ValueEdit valueEdit;
-
- public GuiDungeonParameterEdit(final MParameter parameter2, final DynamicEditor processorParameterEditPane) {
- dungeonRoom = EditingContext.getEditingContext().getRoom();
- getMainPanel().setBackgroundColor(new Color(17, 17, 17, 179));
- this.parameter = parameter2.getParameter();
- {
- MTextField mTextField = new MTextField() {
- @Override
- public void edit(String str) {
- parameter.setName(str);
- }
- };
- MLabelAndElement mLabelAndElement = new MLabelAndElement("Name", mTextField);
-
- mTextField.setText(parameter.getName());
- mLabelAndElement.setBounds(new Rectangle(0,0,200, 20));
- getMainPanel().add(mLabelAndElement);
- }
- {
- classSelection = parameter.getNewData() == null ?"null" : parameter.getNewData().getClass().getName();
- final MStringSelectionButton mStringSelectionButton = new MStringSelectionButton(processorParameterEditPane.allowedClass(), classSelection) {
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(0, 20, parentWidth,20));
- }
-
- @Override
- public String selectionToDisplay(String selection) {
- String[] split = selection.split("\\.");
- return super.selectionToDisplay(split[split.length - 1]);
- }
- };
-
- mStringSelectionButton.setOnUpdate(new Runnable() {
- @Override
- public void run() {
- classSelection = mStringSelectionButton.getSelected();
- updateClassSelection();
- }
- });
- mStringSelectionButton.setBounds(new Rectangle(0,20,150,20));
- getMainPanel().add(mStringSelectionButton);
- }
- {
- currentValueEdit = new MPanel(){
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(0, 40, parentWidth,parentHeight - 60));
- }
- };
- getMainPanel().add(currentValueEdit);
- }
- {
- delete = new MButton() {
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(0,parentHeight - 20, parentWidth / 2, 20));
- }
- };
- delete.setText("Delete");
- delete.setBackgroundColor(Color.red);
- delete.setOnActionPerformed(new Runnable() {
- @Override
- public void run() {
- processorParameterEditPane.delete(parameter2);
- EditingContext.getEditingContext().goBack();
- }
- });
-
- save = new MButton(){
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(parentWidth / 2,parentHeight - 20, parentWidth / 2, 20));
- }
- };
- save.setText("Go back");
- save.setBackgroundColor(Color.green);
- save.setOnActionPerformed(new Runnable() {
- @Override
- public void run() {
- EditingContext.getEditingContext().goBack();
- }
- });
- getMainPanel().add(delete);
- getMainPanel().add(save);
- }
- updateClassSelection();
- }
-
- public void updateClassSelection() {
- currentValueEdit.getChildComponents().clear();
-
- ValueEditCreator valueEditCreator = ValueEditRegistry.getValueEditMap(classSelection);
-
- if (!classSelection.equals(parameter.getNewData() == null ?"null" :parameter.getNewData().getClass().getName())) {
- parameter.setNewData(valueEditCreator.createDefaultValue(parameter));
- parameter.setPreviousData(valueEditCreator.cloneObj(parameter.getNewData()));
- }
-
- MPanel valueEdit = (MPanel) valueEditCreator.createValueEdit(parameter);
- if (valueEdit == null) {
- MLabel valueEdit2 = new MLabel() {
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(0, 0, parentWidth,20));
- }
- };
- valueEdit2.setText("No Value Edit");
- valueEdit2.setBounds(new Rectangle(0,0,150,20));
- valueEdit = valueEdit2;
- this.valueEdit = null;
- } else{
- this.valueEdit = (ValueEdit) valueEdit;
- }
- valueEdit.resize0(currentValueEdit.getBounds().width, currentValueEdit.getBounds().height);
- currentValueEdit.add(valueEdit);
- }
- @Override
- public void initGui() {
- super.initGui();
- // update bounds
- getMainPanel().setBounds(new Rectangle(10, Math.min((Minecraft.getMinecraft().displayHeight - 300) / 2, Minecraft.getMinecraft().displayHeight),200,300));
- }
-}
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonRoomEdit.java b/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonRoomEdit.java
deleted file mode 100755
index 18c05ae5..00000000
--- a/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonRoomEdit.java
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
- * Copyright (C) 2021 cyoung06
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published
- * by the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
-
-package kr.syeyoung.dungeonsguide.roomedit.gui;
-
-import kr.syeyoung.dungeonsguide.dungeon.roomfinder.DungeonRoom;
-import kr.syeyoung.dungeonsguide.gui.MGui;
-import kr.syeyoung.dungeonsguide.gui.MPanel;
-import kr.syeyoung.dungeonsguide.gui.elements.MTabbedPane;
-import kr.syeyoung.dungeonsguide.roomedit.panes.*;
-import lombok.Getter;
-import net.minecraft.client.Minecraft;
-import net.minecraft.client.gui.GuiScreen;
-import net.minecraft.client.gui.ScaledResolution;
-import net.minecraft.client.renderer.GlStateManager;
-import org.lwjgl.input.Mouse;
-import org.lwjgl.opengl.GL11;
-
-import java.awt.*;
-import java.io.IOException;
-
-public class GuiDungeonRoomEdit extends MGui {
-
- private final DungeonRoom room;
-
- private final MTabbedPane tabbedPane;
- @Getter
- private final SecretEditPane sep;
-
- public GuiDungeonRoomEdit(DungeonRoom room) {
- this.room = room;
-
- MTabbedPane tabbedPane = new MTabbedPane();
- getMainPanel().add(tabbedPane);
- tabbedPane.setBackground2(new Color(17, 17, 17, 179));
-
-
- tabbedPane.addTab("General", new GeneralEditPane(room));
- tabbedPane.addTab("Match", new RoomDataDisplayPane(room));
- tabbedPane.addTab("Secrets", sep = new SecretEditPane(room));
- tabbedPane.addTab("Actions", new ActionDisplayPane(room));
- tabbedPane.addTab("Test", new RoommatchingPane(room));
- tabbedPane.addTab("Proc.Params", new ProcessorParameterEditPane(room));
- this.tabbedPane = tabbedPane;
- }
-
- public boolean isEditingSelected() {
- return "Secrets".equals(tabbedPane.getSelectedKey());
- }
- public void endEditing() {
- tabbedPane.setSelectedKey("General");
- }
-
- @Override
- public void initGui() {
- super.initGui();
- // update bounds
- getMainPanel().setBounds(new Rectangle(Math.min((Minecraft.getMinecraft().displayWidth - 500) / 2, Minecraft.getMinecraft().displayWidth), Math.min((Minecraft.getMinecraft().displayHeight - 300) / 2, Minecraft.getMinecraft().displayHeight),500,300));
- }
-}
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonValueEdit.java b/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonValueEdit.java
deleted file mode 100755
index 56192361..00000000
--- a/src/main/java/kr/syeyoung/dungeonsguide/roomedit/gui/GuiDungeonValueEdit.java
+++ /dev/null
@@ -1,133 +0,0 @@
-/*
- * Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
- * Copyright (C) 2021 cyoung06
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published
- * by the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
-
-package kr.syeyoung.dungeonsguide.roomedit.gui;
-
-import kr.syeyoung.dungeonsguide.dungeon.roomfinder.DungeonRoom;
-import kr.syeyoung.dungeonsguide.gui.MGui;
-import kr.syeyoung.dungeonsguide.roomedit.EditingContext;
-import kr.syeyoung.dungeonsguide.gui.MPanel;
-import kr.syeyoung.dungeonsguide.roomedit.Parameter;
-import kr.syeyoung.dungeonsguide.gui.elements.*;
-import kr.syeyoung.dungeonsguide.roomedit.valueedit.ValueEdit;
-import kr.syeyoung.dungeonsguide.roomedit.valueedit.ValueEditCreator;
-import kr.syeyoung.dungeonsguide.roomedit.valueedit.ValueEditRegistry;
-import lombok.Getter;
-import net.minecraft.client.Minecraft;
-import net.minecraft.client.gui.GuiScreen;
-import net.minecraft.client.gui.ScaledResolution;
-import net.minecraft.client.renderer.GlStateManager;
-import org.lwjgl.input.Mouse;
-import org.lwjgl.opengl.GL11;
-
-import java.awt.*;
-import java.util.List;
-import java.io.IOException;
-
-public class GuiDungeonValueEdit extends MGui {
- private DungeonRoom dungeonRoom;
-
-
- private MPanel currentValueEdit;
-
- private MButton save;
-
- @Getter
- private ValueEdit valueEdit;
-
- private List<MPanel> addons;
-
- private Object editingObj;
-
- public GuiDungeonValueEdit(final Object object, final List<MPanel> addons) {
- try {
- dungeonRoom = EditingContext.getEditingContext().getRoom();
- this.addons = addons;
- this.editingObj = object;
- getMainPanel().setBackgroundColor(new Color(17, 17, 17, 179));
- {
- currentValueEdit = new MPanel() {
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(0, 0, parentWidth, parentHeight - 20 - addons.size() * 20));
- }
- };
- getMainPanel().add(currentValueEdit);
- }
-
- for (MPanel addon : addons) {
- getMainPanel().add(addon);
- }
- {
- save = new MButton() {
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(0, parentHeight - 20, parentWidth, 20));
- }
- };
- save.setText("Go back");
- save.setBackgroundColor(Color.green);
- save.setOnActionPerformed(new Runnable() {
- @Override
- public void run() {
- EditingContext.getEditingContext().goBack();
- }
- });
- getMainPanel().add(save);
- }
- updateClassSelection();
- } catch (Exception e){}
- }
-
- public void updateClassSelection() {
- currentValueEdit.getChildComponents().clear();
-
- ValueEditCreator valueEditCreator = ValueEditRegistry.getValueEditMap(editingObj == null ?"null":editingObj.getClass().getName());
-
- MPanel valueEdit = (MPanel) valueEditCreator.createValueEdit(new Parameter("", editingObj, editingObj));
- if (valueEdit == null) {
- MLabel valueEdit2 = new MLabel() {
- @Override
- public void resize(int parentWidth, int parentHeight) {
- setBounds(new Rectangle(0, 0, parentWidth,20));
- }
- };
- valueEdit2.setText("No Value Edit");
- valueEdit2.setBounds(new Rectangle(0,0,150,20));
- valueEdit = valueEdit2;
- this.valueEdit = null;
- } else{
- this.valueEdit = (ValueEdit) valueEdit;
- }
- valueEdit.resize0(currentValueEdit.getBounds().width, currentValueEdit.getBounds().height);
- currentValueEdit.add(valueEdit);
- }
- @Override
- public void initGui() {
- super.initGui();
- // update bounds
- getMainPanel().setBounds(new Rectangle(10, Math.min((Minecraft.getMinecraft().displayHeight - 300) / 2, Minecraft.getMinecraft().displayHeight),200,300));
-
-
- for (int i = 0; i < addons.size(); i++) {
- addons.get(i).setBounds(new Rectangle(0, getMainPanel().getBounds().height - (i+1) * 20 - 20, getMainPanel().getBounds().width, 20));
- }
- save.setBounds(new Rectangle(0 ,getMainPanel().getBounds().height - 20, getMainPanel().getBounds().width, 20));
- }
-
-}