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
|
package net.sowgro.npehero.editor;
import javafx.beans.binding.DoubleBinding;
import javafx.geometry.Pos;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import net.sowgro.npehero.Driver;
import net.sowgro.npehero.gameplay.Block;
import net.sowgro.npehero.gui.LevelSurround;
import javafx.scene.layout.VBox;
import javafx.scene.text.Text;
import net.sowgro.npehero.main.*;
public class DiffEditor extends Page
{
Difficulty diff;
ScrollPane scroll;
HBox content = new HBox();
public Page prev;
public DiffEditor(Difficulty diff, Page prev) {
this.diff = diff;
this.prev = prev;
Text folderNameLabel = new Text("Folder name");
TextField folderName = new TextField(diff.thisDir.getName());
folderName.setDisable(true);
Text titleLabel = new Text("Title");
TextField title = new TextField(diff.title);
Button editNotes = new Button("Edit notes");
editNotes.setOnAction(_ -> {
if (diff.level.song == null) {
Driver.setMenu(new ErrorDisplay("You must import a song file before editing the notes!", this));
}
if (diff.bpm != 0.0) {
Driver.setMenu(new ErrorDisplay(
"Note:\nThe new notes editor does not support bpm and beat based songs. If you continue the beats will be converted to seconds.",
this,
new NotesEditor2(diff, this)
));
}
Driver.setMenu(new NotesEditor2(diff, this));
});
Button oldEditNotes = new Button("Edit notes (legacy)");
oldEditNotes.setOnAction(_ -> Driver.setMenu(new ErrorDisplay(
"Warning: \nThe legacy editor will overwrite all existing notes!",
this,
new NotesEditor(diff, this))
));
Label scoresLable = new Label("Scores");
Button editScores = new Button("Clear leaderboard");
editScores.setOnAction(_ -> diff.leaderboard.entries.clear());
Button playLevel = new Button("Play level");
playLevel.setOnAction(_ -> {
if (diff.isValid() && diff.level.isValid()) {
Driver.setMenu(new LevelSurround(diff.level, diff, this));
}
else {
Driver.setMenu(new ErrorDisplay("This Level is not valid!\nCheck that all required fields\nare populated.", this));
}
});
Button save = new Button("Save");
save.setOnAction(_ -> { //assigns text fields to values
diff.title = title.getText();
// diff.bpm = Double.parseDouble(bpm.getText());
// diff.numBeats = Integer.parseInt(numBeats.getText());
diff.write();
});
HBox scrollContent = new HBox();
scroll = new ScrollPane(scrollContent);
scroll.setFitToWidth(true);
scroll.getStyleClass().remove("scroll-pane");
scroll.getStyleClass().add("box");
// scroll.setPrefHeight(400);
scroll.prefWidthProperty().bind(scroll.heightProperty().multiply(0.66));
Pane[] lanes = new Pane[5];
for (int i = 0; i < lanes.length; i++) {
lanes[i] = new Pane();
}
scrollContent.getChildren().addAll(lanes);
scrollContent.setSpacing(5);
scrollContent.setAlignment(Pos.CENTER);
diff.notes.list.forEach(n -> lanes[n.lane].getChildren().add(drawNote(n)));
VBox notePreview = new VBox();
ValidIndicator validNotes = new ValidIndicator();
if (diff.notes.list.isEmpty()) {
validNotes.setInvalid("This difficulty does not contain any notes!");
}
HBox notesLabel = new HBox(new Label("Notes"), validNotes);
Pane scrollHolder = new Pane(scroll);
scroll.prefHeightProperty().bind(scrollHolder.heightProperty());
scrollHolder.setPrefHeight(400);
notePreview.getChildren().addAll(notesLabel, scrollHolder, editNotes, oldEditNotes);
notePreview.setSpacing(10);
VBox left = new VBox();
left.getChildren().addAll(folderNameLabel,folderName,titleLabel,title,scoresLable,editScores,playLevel);
left.setSpacing(10);
HBox main = new HBox();
main.getChildren().addAll(left, notePreview);
main.setSpacing(30);
Button exit = new Button();
exit.setText("Back");
exit.setOnAction(e -> {
Sound.playSfx(Sound.BACKWARD);
Driver.setMenu(prev);
});
HBox bottom = new HBox(exit,save);
bottom.setSpacing(10);
bottom.setAlignment(Pos.CENTER);
VBox centerBox = new VBox();
centerBox.getChildren().addAll(main, bottom);
centerBox.setSpacing(10);
centerBox.setAlignment(Pos.CENTER);
content.getChildren().add(centerBox);
content.setAlignment(Pos.CENTER);
}
@Override
public Pane getContent() {
return content;
}
// Duplicates of NotesEditor2 methods, should be made generic and combined
private Block drawNote(Note n) {
Color color = diff.level.colors[n.lane];
Block b = new Block(color,20, 20, 5, false, n);
b.heightProperty().bind(scroll.widthProperty().divide(8));
b.widthProperty().bind(scroll.widthProperty().divide(8));
b.arcHeightProperty().bind(scroll.widthProperty().divide(25));
b.arcWidthProperty().bind(scroll.widthProperty().divide(25));
b.strokeWidthProperty().bind(scroll.widthProperty().divide(120));
b.layoutYProperty().bind(secondToScreenPos(n.time.add(0)));
return b;
}
private DoubleBinding secondToScreenPos(double second) {
return scroll.heightProperty().multiply(second * 0.9);
}
private DoubleBinding secondToScreenPos(DoubleBinding second) {
return scroll.heightProperty().multiply(second).multiply(0.9);
}
}
|