blob: a6e034adcd62c9175693ff99a5f38cf42e247ebe (
plain)
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
|
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
Window {
id: mainWindow
width: 800
height: 600
visible: true
title: "Nissy 3.0 - Preview"
SplitView {
id: splitView
anchors.fill: parent
orientation: Qt.Vertical
handle: Rectangle {
implicitHeight: 3
color: SplitHandle.hovered ? "black" : "#AAAAAA"
}
component MyScrollBar: ScrollBar {
orientation: Qt.Vertical
size: parent.height
policy: ScrollBar.AlwaysOn
anchors.right: parent.right
anchors.top: parent.top
anchors.bottom: parent.bottom
contentItem: Rectangle {
implicitWidth: 4
radius: implicitWidth/2
color: "black"
}
background: Rectangle {
implicitWidth: 4
radius: implicitWidth/2
color: "#AAAAAA"
}
}
ColumnLayout {
id: mainArea
property alias scramble: scrambleRow.scramble
property alias solver: solverCfg.solver
property alias minmoves: solverCfg.minmoves
property alias maxmoves: solverCfg.maxmoves
property alias maxsolutions: solverCfg.maxsolutions
property alias optimal: solverCfg.optimal
property alias sols: sols.text
property alias solsHeader: solsHeader.text
property bool solutionsLoading: false
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: logView.top
anchors.margins: 6
spacing: 10
SplitView.minimumHeight: 180
SplitView.preferredHeight: 500
component Separator: Rectangle {
height: 1
Layout.fillWidth: true
color: "black"
}
component OptionalValue: RowLayout {
property alias currentValue: valueRect.value
property alias from: spinBox.from
property alias to: spinBox.to
property alias defaultValue: spinBox.value
property alias defaultEnabled: sw.checked
property alias label: sw.text
property int defaultSavedValue: 1
property int savedValue: defaultSavedValue
Switch {
id: sw
checked: true
onToggled: () => {
if (checked) {
currentValue = savedValue
} else {
savedValue = currentValue
currentValue = spinBox.to
}
}
}
Rectangle {
id: valueRect
property alias enabled: sw.checked
property alias value: spinBox.value
width: 65
height: 20
SpinBox {
id: spinBox
width: parent.width
editable: true
enabled: parent.enabled
}
}
}
ColumnLayout {
id: scrambleRow
property alias scramble: scrambleRowLayout.scramble
RowLayout {
id: scrambleRowLayout
property alias scramble: scrambleEditor.text
spacing: 6
TextField {
id: scrambleEditor
placeholderText: "Enter scramble here"
Layout.fillWidth: true
padding: 4
readonly property bool empty: text.trim().length == 0
readonly property bool valid: NissyAdapter.isValidScramble(text)
onAccepted: if (!empty && valid) submitScramble()
}
Button {
id: solveButton
enabled: !scrambleEditor.empty && scrambleEditor.valid &&
!mainArea.solutionsLoading
text: "Solve!"
onPressed: submitScramble()
}
}
Label {
id: invalidScrambleWarning
text: scrambleEditor.empty || scrambleEditor.valid ?
"" : "Invalid Scramble"
}
}
Separator {}
ColumnLayout {
id: solverCfg
property alias minmoves: minMaxRow.min
property alias maxmoves: minMaxRow.max
property alias maxsolutions: maxSols.currentValue
property alias optimal: optimal.currentValue
property alias solver: solverRow.solver
RowLayout {
id: solverRow
property alias solver: comboBox.currentValue
Label { text: "Solver" }
ComboBox {
id: comboBox
currentIndex: 3
textRole: "text"
valueRole: "name"
implicitContentWidthPolicy: ComboBox.WidestTextWhenCompleted
model: ListModel {
ListElement { text: "h48 h=0, k=4 (59 Mb)"; name: "h48h0k4" }
ListElement { text: "h48 h=1, k=2 (115 Mb)"; name: "h48h1k2" }
ListElement { text: "h48 h=2, k=2 (171 Mb)"; name: "h48h2k2" }
ListElement { text: "h48 h=3, k=2 (283 Mb)"; name: "h48h3k2" }
ListElement { text: "h48 h=7, k=2 (3.6 Gb)"; name: "h48h7k2" }
}
}
}
RowLayout {
id: minMaxRow
property alias min: slider.min
property alias max: slider.max
Rectangle {
width: 100
height: 20
Label { text: "Min moves: " + slider.min }
}
RangeSlider {
id: slider
from: 0
to: 20
first.value: from
second.value: to
stepSize: 1
snapMode: RangeSlider.SnapAlways
readonly property int min: Math.round(first.value)
readonly property int max: Math.round(second.value)
}
Rectangle {
width: 100
height: 20
Label { text: "Max moves: " + slider.max }
}
}
OptionalValue {
id: optimal
label: "Above optimal by at most"
from: 0
to: 20
defaultValue: 20
defaultEnabled: false
defaultSavedValue: 0
}
OptionalValue {
id: maxSols
label: "Limit number of solutions to"
from: 1
to: 999
defaultValue: 1
defaultEnabled: true
defaultSavedValue: 1
}
}
Separator {}
StackLayout {
Layout.maximumHeight: 30
currentIndex: mainArea.solutionsLoading ? 0 : 1
BusyIndicator { running: mainArea.solutionsLoading }
Label { id: solsHeader }
}
ScrollView {
Layout.fillHeight: true
Layout.fillWidth: true
Layout.bottomMargin: 10
ScrollBar.vertical: MyScrollBar {}
TextEdit {
id: sols
readOnly: true
font.family: "Monospace"
}
}
}
ScrollView {
id: logView
property alias text: logText.text
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.margins: 6
SplitView.preferredHeight: 300
background: Rectangle {
color: "#404040"
radius: 4
}
ScrollBar.vertical: MyScrollBar {
id: scrollBar
position: 1.0 - size
}
Label {
id: logText
font.family: "Monospace"
color: "white"
}
}
}
function submitScramble() {
mainArea.solutionsLoading = true;
mainArea.solsHeader = ""
mainArea.sols = ""
logView.text = ""
NissyAdapter.requestSolve(
mainArea.scramble,
mainArea.solver,
mainArea.minmoves,
mainArea.maxmoves,
mainArea.maxsolutions,
mainArea.optimal
)
}
Connections {
target: NissyAdapter
function onSolutionsReady(header, sols) {
mainArea.solutionsLoading = false
mainArea.solsHeader = header
mainArea.sols = sols
}
function onSolverError(msg) {
mainArea.solutionsLoading = false
mainArea.solsHeader = msg
mainArea.sols = ""
}
function onAppendLog(msg) {
logView.text += msg
}
}
}
|