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
|
/*
* 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.mechanicedit;
import kr.syeyoung.dungeonsguide.dungeon.data.OffsetPoint;
import kr.syeyoung.dungeonsguide.dungeon.data.OffsetPointSet;
import kr.syeyoung.dungeonsguide.dungeon.mechanics.DungeonBreakableWall;
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.utils.TextUtils;
import net.minecraft.init.Blocks;
import java.awt.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Collections;
public class ValueEditBreakableWall extends MPanel implements ValueEdit<DungeonBreakableWall> {
private Parameter parameter;
// scroll pane
// just create
// add set
private final DungeonBreakableWall dungeonBreakableWall;
private final MLabel label;
private final MValue<OffsetPointSet> value;
private final MTextField preRequisite;
private final MLabelAndElement preRequisite2;
private final MButton updateOnlyAir;
public ValueEditBreakableWall(final Parameter parameter2) {
this.parameter = parameter2;
this.dungeonBreakableWall = (DungeonBreakableWall) parameter2.getNewData();
label = new MLabel();
label.setText("Wall Points");
label.setAlignment(MLabel.Alignment.LEFT);
add(label);
value = new MValue(dungeonBreakableWall.getSecretPoint(), Collections.emptyList());
add(value);
updateOnlyAir = new MButton();
updateOnlyAir.setText("Update Air");
updateOnlyAir.setBackgroundColor(Color.green);
updateOnlyAir.setForeground(Color.black);
updateOnlyAir.setBounds(new Rectangle(0,40,getBounds().width, 20));
add(updateOnlyAir);
updateOnlyAir.setOnActionPerformed(new Runnable() {
@Override
public void run() {
OffsetPointSet ofs = dungeonBreakableWall.getSecretPoint();
List<OffsetPoint> filtered = new ArrayList<OffsetPoint>();
for (OffsetPoint offsetPoint : ofs.getOffsetPointList()) {
if (offsetPoint.getBlock(EditingContext.getEditingContext().getRoom()) != Blocks.air) continue;
filtered.add(offsetPoint);
}
dungeonBreakableWall.getSecretPoint().setOffsetPointList(filtered);
}
});
preRequisite = new MTextField() {
@Override
public void edit(String str) {
dungeonBreakableWall.setPreRequisite(Arrays.asList(str.split(",")));
}
};
preRequisite.setText(TextUtils.join(dungeonBreakableWall.getPreRequisite(), ","));
preRequisite2 = new MLabelAndElement("Req.",preRequisite);
preRequisite2.setBounds(new Rectangle(0,60,getBounds().width,20));
add(preRequisite2);
}
@Override
public void onBoundsUpdate() {
label.setBounds(new Rectangle(0,0,getBounds().width, 20));
value.setBounds(new Rectangle(0,20,getBounds().width, 20));
updateOnlyAir.setBounds(new Rectangle(0,40,getBounds().width, 20));
preRequisite2.setBounds(new Rectangle(0,60,getBounds().width,20));
}
@Override
public void setParameter(Parameter parameter) {
this.parameter = parameter;
}
@Override
public void renderWorld(float partialTicks) {
dungeonBreakableWall.highlight(new Color(0,255,255,50), parameter.getName(), EditingContext.getEditingContext().getRoom(), partialTicks);
}
@Override
public void resize(int parentWidth, int parentHeight) {
this.setBounds(new Rectangle(0,0,parentWidth, parentHeight));
}
public static class Generator implements ValueEditCreator<ValueEditBreakableWall> {
@Override
public ValueEditBreakableWall createValueEdit(Parameter parameter) {
return new ValueEditBreakableWall(parameter);
}
@Override
public Object createDefaultValue(Parameter parameter) {
return new DungeonBreakableWall();
}
@Override
public Object cloneObj(Object object) {
try {
return ((DungeonBreakableWall)object).clone();
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
assert false;
return null;
}
}
}
|