-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCharacterSelection.qml
More file actions
596 lines (505 loc) · 19.4 KB
/
CharacterSelection.qml
File metadata and controls
596 lines (505 loc) · 19.4 KB
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
import QtQuick
import QtQuick.Layouts
import qmlcomponents
import QtQuick.LegacyControls
TibiaDialog {
id: root
caption: qsTrId("characterselection_caption")
width: 745
required property QtObject controller
property string accountStatusText: controller.accountPremiumStatus
property alias charactersModel: characterList.model
property alias selectedCharacterRowIndex: characterList.currentRow
property bool allowMultiselection: false
property bool showOutfit: controller.showOutfits
property bool recoverySetupComplete: controller != null ? controller.recoverySetupComplete : true
function confirmCharacterSelection() {
var selectedCharacterRowIndices = []
if (okButton.enabled) {
characterList.selection.forEach( function(rowIndex) { selectedCharacterRowIndices.push(rowIndex); } )
controller.onCharacterSelectionConfirmed(selectedCharacterRowIndices);
}
} //function selectCharacter
onReturnPressedFunction: confirmCharacterSelection;
onCancelPressedFunction: function() {
controller.onCancelClicked()
}
initialFocusItem: characterList
property string searchString: ""
Keys.onPressed: (event) => {
if (event.key >= Qt.Key_A && event.key <= Qt.Key_Z || event.key == Qt.Key_Space) {
var pressedCharacter = event.text.toUpperCase();
searchString = searchString + event.text;
resetSearchStringTimer.restart();
var index = controller.getCharacterIndexForSearchString(searchString);
if (index >= 0) {
characterList.selection.clear();
characterList.selectRow(index);
}
event.accepted = true;
}
} //Keys.onPressed
Timer {
id: resetSearchStringTimer
interval: TibiaStyle.searchDelay
repeat: false
onTriggered: {
root.searchString = "";
} //onTriggered
} //Timer
Component {
id: accountManagementComponent
Item {
implicitHeight: layoutWrapper.height
RowLayout {
id: layoutWrapper
anchors.left: parent.left
anchors.right: parent.right
TibiaText {
Layout.fillWidth: true
styleType: "MessageWarning"
text: qsTrId("recovery_setup_not_complete_message")
visible: !recoverySetupComplete
}
Item {
Layout.fillWidth: true
}
TibiaButton {
text: qsTrId("create_character")
Layout.preferredWidth: TibiaStyle.buttonWidthWider
enabled: !disableTimer.running
Timer {
id: disableTimer
interval: 1000
running: false
repeat: false
}
onClicked: {
if (controller != null) {
controller.createCharacterPressed();
disableTimer.start();
}
} //onClicked
}
TibiaButton {
text: qsTrId("manage_account")
Layout.preferredWidth: TibiaStyle.buttonWidthWider
onClicked: {
if (controller != null) {
controller.manageAccountPressed();
}
} //onClicked
} // TibiaButton
}
}
}
ColumnLayout {
id: columns
anchors { left: parent.left; right: parent.right}
spacing: TibiaStyle.marginUnrelated
ColumnLayout {
Layout.preferredHeight: 340
spacing: TibiaStyle.marginUnrelated
Layout.fillWidth: true
Loader {
id: recoverySetupNotCompleteLoader
sourceComponent: accountManagementComponent
onItemChanged: {
if (item) {
recoverySetupNotCompleteLoader.Layout.fillWidth = true;
}
}
}
TibiaTableView {
id: characterList
selectionMode: allowMultiselection ? SelectionMode.ExtendedSelection : SelectionMode.SingleSelection
Layout.fillHeight: true
Layout.fillWidth: true
KeyNavigation.tab: characterList
Keys.forwardTo: [root]
model: controller.characterList
onModelChanged: {
applyLastSelectedIndex();
} //onModleChanged
focus: true
headerVisible: true
sortIndicatorVisible: true
sortIndicatorColumn: controller.sortColumn
sortIndicatorOrder: controller.sortOrder
onSortIndicatorColumnChanged: refreshSortingTimer.restart()
onSortIndicatorOrderChanged: refreshSortingTimer.restart()
Timer {
id: refreshSortingTimer
interval: 0
repeat: false
onTriggered: {
//prevent sorting by outfit
if (characterList.sortIndicatorColumn == 0) { //0 = Outfit
if (controller.sortColumn == 1) { // 1 = Name
characterList.sortIndicatorOrder = characterList.sortIndicatorOrder == Qt.AscendingOrder ? Qt.DescendingOrder : Qt.AscendingOrder;
}
characterList.sortIndicatorColumn = 1;
}
controller.setSortOrder(characterList.sortIndicatorColumn,
characterList.sortIndicatorOrder);
} //onTriggered
} //Timer
Component.onCompleted: {
forceActiveFocus();
} //Component.onCompleted
rowHeight: root.showOutfit ? 66 : 29
// dynamic height needs redraw, eg by toggling between 2 row delegates
Component {
id: outfitShownDelegate
TibiaTableViewRowDelegate {
rowHeight: characterList.rowHeight
alternatingRowColors: characterList.alternatingRowColors
}
}
Component {
id: outfitHiddenDelegate
TibiaTableViewRowDelegate {
rowHeight: characterList.rowHeight
alternatingRowColors: characterList.alternatingRowColors
}
}
onRowHeightChanged: {
rowDelegate = root.showOutfit ? outfitShownDelegate : outfitHiddenDelegate
applyLastSelectedIndex();
} //onRowHeightChanged
TableViewColumn {
id: columnOutfit
role: "outfit"
resizable: false
movable: false
width: 66
visible: root.showOutfit
delegate: OutfitAppearanceInstanceRenderer {
width: columnOutfit.width
height: width
smoothTextureFiltering: controller.clientSettingSmoothFiltering
outfitId: modelData != null ? modelData.outfit.id : 0
headColor: modelData != null ? modelData.outfit.headColor : "black"
torsoColor: modelData != null ? modelData.outfit.torsoColor : "black"
legsColor: modelData != null ? modelData.outfit.legsColor : "black"
detailColor: modelData != null ? modelData.outfit.detailColor : "black"
firstAddOn: modelData != null ? modelData.outfit.firstAddOn : false
secondAddOn: modelData != null ? modelData.outfit.secondAddOn : false
} // delegate: OutfitAppearanceInstanceRenderer
} //TableViewColumn
TableViewColumn {
id: columnCharacter
title: qsTrId("character")
role: "characterName"
resizable: false
movable: false
width: characterList.contentItem.width - columnStatus.width
- columnLevel.width
- columnVocation.width
- columnWorld.width
- (columnOutfit.visible ? columnOutfit.width : 0)
delegate: Item {
id: delegateRoot
anchors.fill: parent
readonly property int availableWidth: width - (separator.visible ? separator.width : 0)
TibiaButton {
id: pinnButton
width: 12
height: width
anchors.top: parent.top
anchors.topMargin: 1
anchors.right: parent.right
anchors.rightMargin: separator.width + 1
visible: modelData && modelData.isPinned || styleData.selected
imageSource: "/images/icon-pin.png"
tooltipText: qsTrId("characterselection_pin_character_tooltip")
tooltipTextChecked: qsTrId("characterselection_unpin_character_tooltip")
checkable: true
useButtonShouldBeChecked: true
buttonShouldBeChecked: modelData && modelData.isPinned
onClicked: {
controller.onPinnedChanged(styleData.value,
!checked);
} //onClicked
} //TibiaButton
ColumnLayout {
anchors { left: parent.left; right:parent.right }
anchors.leftMargin: TibiaStyle.marginNarrow
anchors.rightMargin: TibiaStyle.marginRelated
spacing: 0
RowLayout {
spacing: TibiaStyle.marginNarrow
TibiaText {
Layout.maximumWidth: delegateRoot.availableWidth
- (mainCharacterNotification.visible? (mainCharacterNotification.width + TibiaStyle.marginRelated) : 0)
- (pinnButton.visible? (pinnButton.width + TibiaStyle.marginRelated) : 0)
text: styleData.value
color: styleData.selected ? TibiaStyle.textFieldSelectionTextColor
: TibiaStyle.textFieldTextColor
elide: styleData.elideMode
horizontalAlignment: styleData.textAlignment
//see texthelper.cpp:15 and http://doc.qt.io/qt-5/qml-qtquick-text.html#elide-prop
textFormat: text.indexOf("\x9C") != -1 ? Text.PlainText
: Text.StyledText
} //TibiaText
Image {
id: mainCharacterNotification
visible: modelData && modelData.isMainCharacter
source: "/images/maincharacter.png"
Tooltip {
anchors.fill: parent
text: qsTrId("characterselection_maincharacter_tooltip")
}
} // Image
} // RowLayout
} //ColumnLayout
TibiaVerticalSeparator {
id: separator
visible: characterList.headerVisible && characterList.columnCount > 1
&& styleData.column < characterList.columnCount-1
anchors { top: parent.top; bottom: parent.bottom; right: parent.right }
} // TibiaVerticalSeparator
} //delegate: Item
} //TableViewColumn
TableViewColumn {
id: columnStatus
title: qsTrId("status")
role: "dailyRewardState"
resizable: false
movable: false
width: 55
delegate: Item {
anchors.fill: parent
RowLayout {
anchors.left: parent.left
anchors.right: separator.left
anchors.top: parent.top
anchors.leftMargin: TibiaStyle.marginNarrow
anchors.rightMargin: TibiaStyle.marginNarrow
anchors.topMargin: 1
spacing: TibiaStyle.marginRelated
TibiaDailyRewardStatus {
Layout.alignment: Qt.AlignTop
dailyRewardState: modelData ? modelData.dailyRewardState : TibiaEnums.DailyRewardStateNotAvailable
} //TibiaDailyRewardStatus
Image {
source: "/images/icon-status-hidden.png"
visible: modelData != null && modelData.isHidden
Tooltip {
anchors.fill: parent
text: qsTrId("characterselection_hidden_tooltip")
} //Tooltip
} //Image
Item {
Layout.fillWidth: true
Layout.leftMargin: -parent.spacing
} //Item
} //RowLayout
TibiaVerticalSeparator {
id: separator
anchors { top: parent.top; bottom: parent.bottom; right: parent.right }
} // TibiaVerticalSeparator
} //delegate: Item
} //TableViewColumn
TableViewColumn {
id: columnLevel
title: qsTrId("level")
role: "level"
resizable: false
movable: false
width: 50
} //TableViewColumn
TableViewColumn {
id: columnVocation
title: qsTrId("vocation")
role: "vocation"
resizable: false
movable: false
width: 115
} //TableViewColumn
TableViewColumn {
id: columnWorld
title: qsTrId("characterselection_column_world")
role: "world"
resizable: false
movable: false
width: 200
delegate: Item {
anchors.fill: parent
ColumnLayout {
anchors { left: parent.left; right:parent.right }
anchors.leftMargin: TibiaStyle.marginNarrow
anchors.rightMargin: TibiaStyle.marginRelated
spacing: 0
TibiaText {
Layout.fillWidth: true
text: styleData.value
color: styleData.selected
? TibiaStyle.textFieldSelectionTextColor
: TibiaStyle.textFieldTextColor
elide: styleData.elideMode
horizontalAlignment: styleData.textAlignment
//see texthelper.cpp:15 and http://doc.qt.io/qt-5/qml-qtquick-text.html#elide-prop
textFormat: text.indexOf("\x9C") != -1 ? Text.PlainText
: Text.StyledText
} //TibiaText
TibiaText {
Layout.fillWidth: true
text: modelData ? "(" + modelData.worldRules + ")" : qsTrId("dummy_unknown")
color: styleData.selected
? TibiaStyle.textFieldSelectionTextColor
: TibiaStyle.textFieldTextColor
elide: styleData.elideMode
horizontalAlignment: styleData.textAlignment
//see texthelper.cpp:15 and http://doc.qt.io/qt-5/qml-qtquick-text.html#elide-prop
textFormat: text.indexOf("\x9C") != -1 ? Text.PlainText
: Text.StyledText
} //TibiaText
} //ColumnLayout
TibiaVerticalSeparator {
visible: characterList.headerVisible && characterList.columnCount > 1
&& styleData.column < characterList.columnCount-1
anchors { top: parent.top; bottom: parent.bottom; right: parent.right }
} // TibiaVerticalSeparator
} //delegate: Item
} //TableViewColumn
function selectRow(row) {
if (rowCount > 0 && model != null && model.length > 0) {
characterList.currentRow = row;
characterList.selection.clear();
characterList.selection.select(row);
}
} //function selectRow(row)
function applyLastSelectedIndex() {
selectDelay.restart();
} //function applyLastSelectedIndex()
Timer {
id: selectDelay
interval: 0
onTriggered: {
if (controller.lastSelectedIndex < characterList.rowCount) {
characterList.selectRow(controller.lastSelectedIndex);
}
} //onTriggered
} //Timer
onVisibleChanged: {
applyLastSelectedIndex();
} //onVisibleChanged
onDoubleClicked: {
if (rowCount > 0) {
confirmCharacterSelection();
}
}
} //TibiaTableView
RowLayout {
Layout.fillWidth: true
spacing: 0
ColumnLayout {
spacing: TibiaStyle.marginRelated
TibiaText {
text: qsTrId("characterselection_accountstatus_caption")
textFormat: Text.RichText
} //TibiaText
RowLayout {
Image {
source: controller.isPremium ? "/images/premium/icon-premium.png"
: "/images/premium/icon-nopremium.png"
} //Image
TibiaText {
text: accountStatusText
textFormat: Text.RichText
} //TibiaText
} //RowLayout
} //ColumnLayout
Item { Layout.fillWidth: true }
TibiaButton {
Layout.alignment: Qt.AlignBottom | Qt.AlignRight
text: qsTrId("get_premium")
Layout.preferredWidth: TibiaStyle.buttonWidthWide
color: "green"
visible: controller.showGetPremiumButton
onClicked: {
controller.onGetPremiumClicked();
} //onClicked
} //TibiaButton
} //RowLayout
ColumnLayout {
Layout.fillWidth: true
spacing: TibiaStyle.marginRelated
visible: !controller.isPremium
TibiaHorizontalSeparator {
Layout.fillWidth: true
} //TibiaHorizontalSeparator
TibiaText {
Layout.alignment: Qt.AlignHCenter
text: qsTrId("characterselection_premium_benefits_caption")
} //TibiaText
GridLayout {
id: premiumFeaturView
Layout.fillWidth: true
columns: 3
columnSpacing: TibiaStyle.marginNarrow
rowSpacing: TibiaStyle.marginRelated
Repeater {
model: controller.premiumFeaturesModel
delegate: ColumnLayout {
Layout.alignment: Qt.AlignTop
spacing: TibiaStyle.marginRelated
Image {
Layout.alignment: Qt.AlignHCenter
source: modelData.imageUrl
} //Image
TibiaText {
Layout.maximumWidth: Math.floor((columns.width -2*premiumFeaturView.rowSpacing) / 3)
Layout.minimumWidth: Layout.maximumWidth
text: modelData.message
wrapMode: Text.Wrap
horizontalAlignment: Text.AlignHCenter
} //TibiaText
} //delegate: ColumnLayout
} //Repeater
} //GridLayout
TibiaClickableLink {
text: qsTrId("characterselection_premium_many_more")
onLinkClicked: {
controller.onMorePremiumFeaturesClicked();
}
} // TibiaClickableLink
} //ColumnLayout
} //ColumnLayout
TibiaHorizontalSeparator {
Layout.fillWidth: true
} // TibiaHorizontalSeparator
RowLayout {
spacing: TibiaStyle.marginUnrelated
TibiaMenuOptionCheckBox {
text: qsTrId("characterselection_show_hidden_characters")
checked: controller.showHiddenCharacters
onCheckedChanged: {
controller.setShowHiddenCharacters(checked);
} //onCheckedChanged
} //TibiaMenuOptionCheckBox
TibiaMenuOptionCheckBox {
text: qsTrId("characterselection_show_outfits")
checked: controller.showOutfits
onCheckedChanged: {
controller.setShowOutfits(checked);
} //onCheckedChanged
} //TibiaMenuOptionCheckBox
Item {
Layout.fillWidth: true
} //Item
TibiaButton {
id: okButton
text: qsTrId("ok")
enabled: characterList.rowCount > 0 && characterList.selection.count > 0
onClicked: { confirmCharacterSelection(); }
} //TibiaButton
TibiaButton {
id: cancelButton
text: qsTrId("cancel")
onClicked: controller.onCancelClicked()
} //TibiaButton
} //RowLayout
}//ColumnLayout
} //TibiaDialog