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
|
/*
* 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.panes;
import kr.syeyoung.dungeonsguide.dungeon.actions.Action;
import kr.syeyoung.dungeonsguide.dungeon.actions.tree.ActionTree;
import kr.syeyoung.dungeonsguide.dungeon.actions.tree.ActionTreeUtil;
import kr.syeyoung.dungeonsguide.dungeon.roomfinder.DungeonRoom;
import kr.syeyoung.dungeonsguide.gui.MPanel;
import kr.syeyoung.dungeonsguide.utils.RenderUtils;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.gui.Gui;
import net.minecraft.client.gui.ScaledResolution;
import net.minecraft.client.renderer.GlStateManager;
import org.lwjgl.opengl.GL11;
import java.awt.*;
import java.util.*;
import java.util.List;
public class ActionTreeDisplayPane extends MPanel {
private int offsetX = 0;
private int offsetY = 0;
private float scale;
private final DungeonRoom dungeonRoom;
private final ActionTree tree;
private List<Action> linearified;
public ActionTreeDisplayPane(DungeonRoom dungeonRoom, ActionTree tree) {
this.dungeonRoom = dungeonRoom;
this.tree = tree;
try {
this.linearified = ActionTreeUtil.linearifyActionTree(tree);
} catch (Exception e) {
linearified = new ArrayList<Action>();
e.printStackTrace();
}
scale = 1.0f;
}
@Override
public void render(int absMousex, int absMousey, int relMousex0, int relMousey0, float partialTicks, Rectangle clip) {
ScaledResolution sr = new ScaledResolution(Minecraft.getMinecraft());
FontRenderer fr = Minecraft.getMinecraft().fontRendererObj;
GlStateManager.pushMatrix();
GlStateManager.translate(offsetX, offsetY, 0);
GlStateManager.scale(scale,scale,1);
int x = renderTree(tree, 5, 5, Minecraft.getMinecraft().fontRendererObj, null, new HashMap<ActionTree, Point>());
renderLinearified(linearified, x, 5, fr);
GlStateManager.popMatrix();
}
public int renderTree(ActionTree actionTree, int x, int y, FontRenderer fr, Point drawLineFrom, HashMap<ActionTree, Point> drawmPoints) {
if (drawmPoints.containsKey(actionTree)) {
// recursive, fu
Point pt = drawmPoints.get(actionTree);
GlStateManager.pushMatrix();
GlStateManager.pushAttrib();
GlStateManager.enableBlend();
GlStateManager.disableDepth();
GlStateManager.disableTexture2D();
GlStateManager.blendFunc(770, 771);
GlStateManager.enableBlend();
GL11.glLineWidth(1);
GlStateManager.color(1, 0, 0, 1);
GL11.glBegin(2);
GL11.glVertex2d(drawLineFrom.x, drawLineFrom.y);
GL11.glVertex2d(pt.x, pt.y);
GL11.glEnd();
GlStateManager.disableBlend();
GlStateManager.enableTexture2D();
GlStateManager.enableDepth();
GlStateManager.disableBlend();
GlStateManager.popMatrix();
GlStateManager.popAttrib();
return 0;
}
Dimension dim = renderAction(actionTree.getCurrent(), x, y, fr);
if (drawLineFrom != null) {
GlStateManager.pushMatrix();
GlStateManager.pushAttrib();
GlStateManager.enableBlend();
GlStateManager.disableDepth();
GlStateManager.disableTexture2D();
GlStateManager.blendFunc(770, 771);
GlStateManager.enableBlend();
GL11.glLineWidth(1);
GlStateManager.color(1, 1, 1, 1);
GL11.glBegin(2);
GL11.glVertex2d(drawLineFrom.x, drawLineFrom.y);
GL11.glVertex2d(x + dim.width / 2, y);
GL11.glEnd();
GlStateManager.disableBlend();
GlStateManager.enableTexture2D();
GlStateManager.enableDepth();
GlStateManager.disableBlend();
GlStateManager.popMatrix();
GlStateManager.popAttrib();
}
Point pt = new Point(x + dim.width / 2, y + dim.height);
drawmPoints.put(actionTree, new Point(x + dim.width / 2, y + dim.height / 2));
int xOff = 0;
for (ActionTree tree:actionTree.getChildren()) {
xOff += renderTree(tree, x + xOff, y + dim.height + 10, fr, pt, drawmPoints) + 10;
}
return Math.max(xOff, dim.width);
}
public void renderLinearified(List<Action> actions, int x, int y, FontRenderer fr) {
Point lastPt = null;
int y2 = y;
for (Action action : actions) {
Dimension dim = renderAction(action, x, y2, fr);
if (lastPt != null) {
GlStateManager.pushMatrix();
GlStateManager.pushAttrib();
GlStateManager.enableBlend();
GlStateManager.disableDepth();
GlStateManager.disableTexture2D();
GlStateManager.blendFunc(770, 771);
GlStateManager.enableBlend();
GL11.glLineWidth(1);
GlStateManager.color(1, 1, 1, 1);
GL11.glBegin(2);
GL11.glVertex2d(lastPt.x, lastPt.y);
GL11.glVertex2d(x + dim.width / 2, y2);
GL11.glEnd();
GlStateManager.disableBlend();
GlStateManager.enableTexture2D();
GlStateManager.enableDepth();
GlStateManager.disableBlend();
GlStateManager.popMatrix();
GlStateManager.popAttrib();
}
lastPt = new Point(x + dim.width / 2, y2 + dim.height);
y2 += dim.height + 10;
}
}
public Dimension renderAction(Action action, int x, int y, FontRenderer fr) {
String[] lines = action.toString().split("\n");
int maxWidth = 0;
for (String line : lines) {
if (fr.getStringWidth(line) > maxWidth) maxWidth= fr.getStringWidth(line);
}
int offset = 2;
int height = (fr.FONT_HEIGHT + offset) * lines.length;
Gui.drawRect(x,y,x + maxWidth +10, y + height + 10, 0xff000000);
Gui.drawRect(x+1,y+1,x + maxWidth +8, y + height + 8, 0xff4d4d4d);
for (int i = 0; i < lines.length; i++) {
fr.drawString(lines[i], x + 5, y + 5 + i*(fr.FONT_HEIGHT + offset), 0xffffffff);
}
return new Dimension(maxWidth + 10, height + 10);
}
@Override
public void resize(int parentWidth, int parentHeight) {
this.setBounds(new Rectangle(0,25,parentWidth,parentHeight-25));
}
private int lastX;
private int lastY;
@Override
public void mouseClicked(int absMouseX, int absMouseY, int relMouseX, int relMouseY, int mouseButton) {
lastX = absMouseX;
lastY = absMouseY;
}
@Override
public void mouseClickMove(int absMouseX, int absMouseY, int relMouseX, int relMouseY, int clickedMouseButton, long timeSinceLastClick) {
int dX = absMouseX - lastX;
int dY = absMouseY - lastY;
offsetX += dX;
offsetY += dY;
lastX = absMouseX;
lastY = absMouseY;
}
@Override
public void mouseScrolled0(int absMouseX, int absMouseY, int relMouseX0, int relMouseY0, int scrollAmount) {
if (scrollAmount > 0) scale += 0.1;
if (scrollAmount < 0) scale -= 0.1;
if (scale < 0) scale = 0.1f;
}
}
|