blob: 24aff433992e723f5149c61ca3bbb51697df766b (
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
|
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 minmoves: solverCfg.minmoves
property alias maxmoves: solverCfg.maxmoves
property alias maxsolutions: solverCfg.maxsolutions
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: 300
component Separator: Rectangle {
height: 1
Layout.fillWidth: true
color: "black"
}
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: maxOptimal.maxsolutions
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 }
}
}
RowLayout {
id: maxOptimal
property alias maxsolutions: maxSolsRect.maxsolutions
Rectangle {
width: 220
height: 20
Label { text: "Maximum number of solutions:" }
}
Rectangle {
id: maxSolsRect
property int maxsolutions: parseInt(textField.text)
width: 35
height: 20
TextField {
id: textField
width: parent.width
text: "1"
validator: IntValidator{ bottom: 1; top: 999; }
onAccepted: submitScramble()
}
}
}
}
Separator {}
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 = "Loading solutions..."
mainArea.sols = ""
logView.text = ""
NissyAdapter.requestSolve(
mainArea.scramble,
"h48h3k2",
mainArea.minmoves,
mainArea.maxmoves,
mainArea.maxsolutions,
-1
)
}
Connections {
target: NissyAdapter
function onSolutionsReady(header, sols) {
mainArea.solutionsLoading = false
mainArea.solsHeader = header
mainArea.sols = sols
}
function onSolverError(msg) {
mainArea.solutionsLoading = false
mainArea.solusHeader = msg
mainArea.sols = ""
}
function onAppendLog(msg) {
logView.text += msg
}
}
}
|