This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTamedUI.qml
455 lines (400 loc) · 18.8 KB
/
TamedUI.qml
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
import QtQuick.Layouts 1.3
Pane {
padding: 0
property alias backup: classesView.backup
ListView {
id: classesView
width: parent.width * 0.25
height: parent.height
property string backup
function getCls() {
var index = classesModel.index(classesView.currentIndex, undefined)
return classesModel.data(index, Qt.UserRole + 1)
}
clip: true
focus: true
activeFocusOnTab: true
ScrollIndicator.vertical: ScrollIndicator { }
model: classesModel
delegate: Component {
Item {
width: parent.width
height: labelName.height
Label {
id: labelName
padding: 12
text: model.name
}
MouseArea {
anchors.fill: parent
onClicked: {
classesView.currentIndex = index
tamedView.currentIndex = -1
arkzilla.loadTamed(classesView.backup, model.cls)
}
}
}
}
highlightFollowsCurrentItem: false
highlight: Rectangle {
width: classesView.width
height: classesView.currentItem ? classesView.currentItem.height : 0
y: classesView.currentItem ? classesView.currentItem.y : 0
color: Material.accent
opacity: 0.5
}
Rectangle {
width: parent.height
height: 8
rotation: 90
anchors.left: parent.right
transformOrigin: Item.TopLeft
gradient: Gradient {
GradientStop { color: Qt.rgba(0, 0, 0, 0.15); position: 0 }
GradientStop { color: Qt.rgba(0, 0, 0, 0.05); position: 0.5 }
GradientStop { color: Qt.rgba(0, 0, 0, 0); position: 1 }
}
}
Keys.onEscapePressed: { stackWindow.pop() }
Keys.onReturnPressed: { tamedView.currentIndex = -1; arkzilla.loadTamed(classesView.backup, getCls()) }
Keys.onSpacePressed: { tamedView.currentIndex = -1; arkzilla.loadTamed(classesView.backup, getCls()) }
Keys.onRightPressed: { tamedView.currentIndex = -1; arkzilla.loadTamed(classesView.backup, getCls()) }
Component.onCompleted: {
arkzilla.loadClasses(classesView.backup)
}
}
ListView {
id: tamedView
anchors.left: classesView.right
anchors.right: parent.right
height: parent.height
property int padding: 5
property variant row
clip: true
focus: true
activeFocusOnTab: true
ScrollIndicator.vertical: ScrollIndicator { }
model: tamedModel
header: tamedHeader
headerPositioning: ListView.OverlayHeader
footer: tamedFooter
footerPositioning: ListView.OverlayFooter
delegate: tamedDelegate
highlightFollowsCurrentItem: false
highlight: Rectangle {
width: tamedView.width
height: tamedView.currentItem ? tamedView.currentItem.height : 0
y: tamedView.currentItem ? tamedView.currentItem.y : 0
color: Material.accent
opacity: 0.5
}
Keys.onEscapePressed: { stackWindow.pop() }
Keys.onLeftPressed: { currentIndex = -1; classesView.focus = true }
onCurrentIndexChanged: {
if (currentIndex >= 0) {
var index = tamedModel.index(tamedView.currentIndex, undefined)
row = tamedModel.data(index, Qt.UserRole + 9)
}
}
}
Component {
id: tamedFooter
Pane {
id: tamedPane
width: parent.width
visible: (tamedView.currentIndex >= 0) ? true : false
z: 2
property variant row: tamedView.row
function epochDays(time) {
var epoch = new Date(time*1000)
var days = Math.floor(epoch/8.64e7)
var hours = epoch.getHours()
var mins = epoch.getMinutes()
var seconds = epoch.getSeconds()
return days + ', ' + hours + ':' + mins + ':' + seconds
}
Column {
anchors.fill: parent
GridLayout {
width: parent.width
columns: 2
columnSpacing: 20
FooterSection { text: qsTr('Wild Stats') }
FooterSection {
text: qsTr(' Colors')
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
hoverEnabled: true
onClicked: {
var colors = row.colorSetIndices
var commands = Array()
for (var key in colors) {
if (colors[key])
commands.push('admincheat SetTargetDinoColor ' + key + ' ' + colors[key])
}
var cmd = commands.join(' | ')
arkzilla.clipboardText(cmd)
toast.show(cmd)
}
ToolTip {
visible: parent.containsMouse
timeout: 5000
delay: 1000
text: qsTr('Copy painting command')
}
}
}
WildLevels { levels: row ? row.wildLevels : undefined }
ColorSet { colors: row ? row.colorSetIndices : 0 }
RowLayout {
spacing: 20
GridLayout {
Layout.fillWidth: true
Layout.alignment: Qt.AlignTop | Qt.AlignLeft
columns: 2
FooterSection { Layout.columnSpan:2; text: qsTr('Levels') }
Label { Layout.fillWidth: true; text: qsTr('Full:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.baseLevel + row.extraLevel : '' }
Label { text: qsTr('Wild:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.baseLevel : '' }
Label { text: qsTr('Extra:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.extraLevel : '' }
Label { text: qsTr('Exp:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.experience : '' }
}
GridLayout {
Layout.fillWidth: true
Layout.alignment: Qt.AlignTop | Qt.AlignLeft
columns: 2
FooterSection { Layout.columnSpan:2; text: qsTr('Taming') }
Label { Layout.fillWidth: true; text: qsTr('Tamer:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.tamer : '' }
Label { text: qsTr('Tamed at:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? epochDays(row.tamedAtTime): '' }
Label { text: qsTr('Tamed on:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.tamedOnServerName : '' }
Label { text: qsTr('Effectivness:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.tamingEffectivness : '' }
}
GridLayout {
Layout.fillWidth: true
Layout.alignment: Qt.AlignTop | Qt.AlignLeft
columns: 2
FooterSection {
Layout.columnSpan: 2
text: qsTr(' Location')
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
hoverEnabled: true
onClicked: {
var cmd = 'admincheat SetPlayerPos ' + row.location.x + ' ' + row.location.y + ' ' + row.location.z
arkzilla.clipboardText(cmd)
toast.show(cmd)
}
ToolTip {
visible: parent.containsMouse
timeout: 5000
delay: 1000
text: qsTr('Copy teleport command')
}
}
}
Label { Layout.fillWidth: true; text: qsTr('Lat:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.location.lat : '' }
Label { text: qsTr('Lon:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.location.lon : '' }
Label { text: qsTr('X:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.location.x : '' }
Label { text: qsTr('Y:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.location.y : '' }
Label { text: qsTr('Z:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.location.z : '' }
}
}
GridLayout {
Layout.alignment: Qt.AlignTop | Qt.AlignLeft
columns: 2
FooterSection { Layout.columnSpan: 2; text: qsTr('Other') }
Label { Layout.fillWidth: true; text: qsTr('ID:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.id : '' }
Label { text: qsTr('Owner:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.ownerName : '' }
Label { text: qsTr('Imprinter:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.imprinter : '' }
Label { text: qsTr('Imprinting:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? row.imprintingQuality : '' }
Label { text: qsTr('Last stasis:'); font.bold: true } Label { Layout.alignment: Qt.AlignRight; text: row ? epochDays(row.lastEnterStasisTime) : '' }
}
}
}
}
}
Component {
id: tamedHeader
ToolBar {
id: filterBar
width: parent.width
padding: ListView.view.padding
background: Rectangle { color: Material.background }
z: 2
property alias levelWidth: filterLevel.width
property alias levelBaseWidth: filterBaseLevel.width
property alias nameWidth: filterName.width
property alias tribeWidth: filterTribe.width
property alias latWidth: filterLat.width
property alias lonWidth: filterLon.width
property alias levelImplicitWidth: filterLevel.implicitWidth
property alias levelBaseImplicitWidth: filterBaseLevel.implicitWidth
property alias nameImplicitWidth: filterName.implicitWidth
property alias tribeImplicitWidth: filterTribe.implicitWidth
property alias latImplicitWidth: filterLat.implicitWidth
property alias lonImplicitWidth: filterLon.implicitWidth
property alias headerSpacing: buttons.spacing
RowLayout {
id: buttons
width: parent.width
SortFilterItem {
id: filterLevel
text: qsTr('Level')
sort: true
onCheckStateChanged: {
if (checkState != Qt.Unchecked) {
tamedModel.setSortOrder(Qt.UserRole + 6, checkState - 1)
}
}
}
SortFilterItem {
id: filterBaseLevel
text: qsTr('Base')
sort: true
onCheckStateChanged: {
if (checkState != Qt.Unchecked) {
tamedModel.setSortOrder(Qt.UserRole + 4, checkState - 1)
}
}
}
SortFilterItem {
id: filterName
Layout.minimumWidth: implicitWidth
Layout.fillWidth: true
text: qsTr('Name')
sort: true
filter: true
onCheckStateChanged: {
if (checkState != Qt.Unchecked) {
tamedModel.setSortOrder(Qt.UserRole + 1, checkState - 1)
}
}
onFilterTextChanged: {
if (tamedView.currentIndex > -1) { tamedView.currentIndex = -1 }
if (filterText.length && filterTribe.filterText.length) { filterTribe.clear() }
tamedModel.setFilterString(Qt.UserRole + 1, filterText)
}
}
SortFilterItem {
id: filterTribe
Layout.minimumWidth: implicitWidth
Layout.fillWidth: true
text: qsTr('Tribe')
sort: true
filter: true
onCheckStateChanged: {
if (checkState != Qt.Unchecked) {
tamedModel.setSortOrder(Qt.UserRole + 3, checkState - 1)
}
}
onFilterTextChanged: {
if (tamedView.currentIndex > -1) { tamedView.currentIndex = -1 }
if (filterText.length && filterName.filterText.length) { filterName.clear() }
tamedModel.setFilterString(Qt.UserRole + 3, filterText)
}
}
SortFilterItem {
id: filterLat
text: qsTr('Lat')
}
SortFilterItem {
id: filterLon
text: qsTr('Lon')
}
}
ButtonGroup {
buttons: buttons.children
}
}
}
Component {
id: tamedDelegate
Item {
height: tamedRow.height
width: parent.width
Row {
id: tamedRow
leftPadding: tamedView.padding
rightPadding: tamedView.padding
topPadding: 1
bottomPadding: 1
spacing: tamedView.headerItem.headerSpacing
Label {
width: tamedView.headerItem.levelWidth
padding: tamedView.padding
text: model.level
onWidthChanged: { tamedView.headerItem.levelImplicitWidth = Math.max(tamedView.headerItem.levelImplicitWidth, implicitWidth) }
}
Label {
width: tamedView.headerItem.levelBaseWidth
padding: tamedView.padding
text: model.baseLevel
onWidthChanged: { tamedView.headerItem.levelBaseImplicitWidth = Math.max(tamedView.headerItem.levelBaseImplicitWidth, implicitWidth) }
}
Label {
width: tamedView.headerItem.nameWidth
leftPadding: tamedView.padding + font.pixelSize
topPadding: tamedView.padding
bottomPadding: tamedView.padding
rightPadding: tamedView.padding
text: model.name
background: Label {
padding: tamedView.padding
font.family: faSolid.name
font.pixelSize: parent.font.pixelSize
color: model.female ? Material.color(Material.Red) : Material.color(Material.Blue)
text: model.female ? '' : ''
}
onWidthChanged: { tamedView.headerItem.nameImplicitWidth = Math.max(tamedView.headerItem.nameImplicitWidth, implicitWidth) }
}
Label {
width: tamedView.headerItem.tribeWidth
padding: tamedView.padding
opacity: model.tribe ? 1.0 : 0.5
text: model.tribe ? model.tribe : qsTr('None')
onWidthChanged: { tamedView.headerItem.tribeImplicitWidth = Math.max(tamedView.headerItem.tribeImplicitWidth, implicitWidth) }
}
Label {
width: tamedView.headerItem.latWidth
padding: tamedView.padding
text: model.location.lat.toFixed(1)
onWidthChanged: { tamedView.headerItem.latImplicitWidth = Math.max(tamedView.headerItem.latImplicitWidth, implicitWidth) }
}
Label {
width: tamedView.headerItem.lonWidth
padding: tamedView.padding
text: model.location.lon.toFixed(1)
onWidthChanged: { tamedView.headerItem.lonImplicitWidth = Math.max(tamedView.headerItem.lonImplicitWidth, implicitWidth) }
}
}
MouseArea {
anchors.fill: parent
onClicked: {
tamedView.currentIndex = index
}
}
}
}
Connections {
target: arkzilla
onLoadClassesError: {
toast.show(error, Material.color(Material.Red).toString())
}
onLoadClassesComplete:{
classesView.currentIndex = 0
classesView.forceActiveFocus()
arkzilla.loadTamed(classesView.backup, classesView.getCls())
}
onLoadTamedError: {
toast.show(error, Material.color(Material.Red).toString())
}
onLoadTamedComplete:{
tamedView.currentIndex = 0
tamedView.focus = true
}
}
}