qmlFrontend/qml/qmlFrontend/GameConfig.qml
author unc0rr
Tue, 17 May 2016 23:18:08 +0300
branchqmlfrontend
changeset 11827 8c71c5a1172f
parent 11787 bcba7938ccb5
permissions -rw-r--r--
- Add state to engine callback for it to know what engine is sending - Display suggested hogs number in preview
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10422
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
     1
import QtQuick 2.0
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
     2
import Hedgewars.Engine 1.0
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
     3
10442
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
     4
10422
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
     5
Rectangle {
11426
ab6a6d9ebfc0 Small ui rework
unc0rr
parents: 10888
diff changeset
     6
    Column {
ab6a6d9ebfc0 Small ui rework
unc0rr
parents: 10888
diff changeset
     7
        spacing: 8
ab6a6d9ebfc0 Small ui rework
unc0rr
parents: 10888
diff changeset
     8
10422
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
     9
    HWButton {
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
    10
        id: btnPreview
11786
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    11
        // this, as well as the positions of images, seems to have the border thickness (3px) into account
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    12
        width: 262
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    13
        height: 134
10422
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
    14
10432
b0abef0ee78c Quick Game PoC
unc0rr
parents: 10428
diff changeset
    15
        onClicked: HWEngine.getPreview()
10422
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
    16
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
    17
        Connections {
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
    18
            target: HWEngine
11786
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    19
            onPreviewImageChanged: {
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    20
                previewImage.visible = true
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    21
                previewImage.source = "image://preview/image"
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    22
                previewWaitImage.visible = false
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    23
            }
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    24
            onPreviewIsRendering: {
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    25
                previewImage.source = ""
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    26
                previewImage.visible = false
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    27
                previewWaitImage.visible = true
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    28
            }
11827
8c71c5a1172f - Add state to engine callback for it to know what engine is sending
unc0rr
parents: 11787
diff changeset
    29
            onPreviewHogCountChanged: {
8c71c5a1172f - Add state to engine callback for it to know what engine is sending
unc0rr
parents: 11787
diff changeset
    30
                hogCount.text = count
8c71c5a1172f - Add state to engine callback for it to know what engine is sending
unc0rr
parents: 11787
diff changeset
    31
            }
11786
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    32
        }
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    33
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    34
        Image {
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    35
            id: previewBackground
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    36
            x: 3
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    37
            y: 3
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    38
            width: 256
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    39
            height: 128
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    40
            cache: true
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    41
            source: "qrc:/res/prevBg.png"
10422
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
    42
        }
10434
1614b13ad35e Themes model, also add some files I forgot to add previously
unc0rr
parents: 10432
diff changeset
    43
1614b13ad35e Themes model, also add some files I forgot to add previously
unc0rr
parents: 10432
diff changeset
    44
        Image {
1614b13ad35e Themes model, also add some files I forgot to add previously
unc0rr
parents: 10432
diff changeset
    45
            id: previewImage
11786
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    46
            x: 3
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    47
            y: 3
10434
1614b13ad35e Themes model, also add some files I forgot to add previously
unc0rr
parents: 10432
diff changeset
    48
            width: 256
1614b13ad35e Themes model, also add some files I forgot to add previously
unc0rr
parents: 10432
diff changeset
    49
            height: 128
1614b13ad35e Themes model, also add some files I forgot to add previously
unc0rr
parents: 10432
diff changeset
    50
            cache: false
11786
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    51
            source: ""
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    52
        }
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    53
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    54
        Image {
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    55
            id: previewWaitImage
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    56
            x: 117
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    57
            y: 53
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    58
            width: 26
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    59
            height: 26
0aa4b3d02cba qmlfrontend: tweak map preview a little in an attempt to buy back unC0Rr's <3
sheepluva
parents: 11443
diff changeset
    60
            cache: true
11434
23912c93935a - Implement engine runs queue
unc0rr
parents: 11433
diff changeset
    61
            source: "qrc:/res/iconTime.png"
10434
1614b13ad35e Themes model, also add some files I forgot to add previously
unc0rr
parents: 10432
diff changeset
    62
        }
11787
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    63
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    64
        Image {
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    65
            id: hogCountBackground
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    66
            x: 216
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    67
            y: 6
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    68
            width: 41
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    69
            height: 21
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    70
            cache: true
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    71
            source: "qrc:/res/hogCntBg.png"
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    72
        }
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    73
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    74
        Text {
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    75
            id: hogCount
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    76
            x: 230
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    77
            y: 10
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    78
            text: "?"
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    79
            horizontalAlignment: Text.AlignHRight
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    80
            font.family: "MS Shell Dlg"
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    81
            font.pixelSize: 12
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    82
            color: "#ffcc00"
bcba7938ccb5 qmlfrontend/map-preview: add hog count display thingy (only displays "?" for now)
sheepluva
parents: 11786
diff changeset
    83
        }
10422
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
    84
    }
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
    85
10519
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
    86
    HWComboBox {
10608
b85759f2ba18 Some more progress at custom combobox
unc0rr
parents: 10519
diff changeset
    87
        id: cbTheme
10610
eadf2cea55e0 Finish combobox implementation (except for visual part)
unc0rr
parents: 10608
diff changeset
    88
        width: 256
eadf2cea55e0 Finish combobox implementation (except for visual part)
unc0rr
parents: 10608
diff changeset
    89
        height: 64
10519
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
    90
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
    91
        model: themesModel
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
    92
        delegate: Rectangle {
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
    93
            height: 25
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
    94
            width: 100
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
    95
            color: "transparent"
10610
eadf2cea55e0 Finish combobox implementation (except for visual part)
unc0rr
parents: 10608
diff changeset
    96
eadf2cea55e0 Finish combobox implementation (except for visual part)
unc0rr
parents: 10608
diff changeset
    97
            property alias itemIconSource: themeIcon.source
eadf2cea55e0 Finish combobox implementation (except for visual part)
unc0rr
parents: 10608
diff changeset
    98
            property alias itemText: themeName.text
eadf2cea55e0 Finish combobox implementation (except for visual part)
unc0rr
parents: 10608
diff changeset
    99
10608
b85759f2ba18 Some more progress at custom combobox
unc0rr
parents: 10519
diff changeset
   100
            Row {
10610
eadf2cea55e0 Finish combobox implementation (except for visual part)
unc0rr
parents: 10608
diff changeset
   101
                Image {id: themeIcon; width: height; height: parent.height; source: "image://theme/" + modelData}
10608
b85759f2ba18 Some more progress at custom combobox
unc0rr
parents: 10519
diff changeset
   102
                Text {id: themeName; text: modelData }
b85759f2ba18 Some more progress at custom combobox
unc0rr
parents: 10519
diff changeset
   103
            }
10610
eadf2cea55e0 Finish combobox implementation (except for visual part)
unc0rr
parents: 10608
diff changeset
   104
10519
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   105
            MouseArea {
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   106
                 z: 1
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   107
                 anchors.fill: parent
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   108
                 onClicked: {
10608
b85759f2ba18 Some more progress at custom combobox
unc0rr
parents: 10519
diff changeset
   109
                     cbTheme.currentIndex = index
10519
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   110
                     HWEngine.setTheme(themeName.text)
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   111
                 }
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   112
            }
11437
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   113
        }
11432
97e3e62ea5f9 Update seed, theme and script from net in UI
unc0rr
parents: 11426
diff changeset
   114
11437
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   115
        Connections {
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   116
            target: HWEngine
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   117
            onThemeChanged: cbTheme.showItem({"iconSource" : "image://theme/" + theme, "text" : theme});
10519
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   118
        }
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   119
    }
af019fa70080 Attempt on a custom combobox
unc0rr
parents: 10456
diff changeset
   120
10612
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   121
    HWComboBox {
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   122
        id: cbScript
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   123
        width: 256
11426
ab6a6d9ebfc0 Small ui rework
unc0rr
parents: 10888
diff changeset
   124
        height: 32
10612
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   125
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   126
        model: scriptsModel
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   127
        delegate: Rectangle {
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   128
            height: 25
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   129
            width: 100
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   130
            color: "transparent"
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   131
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   132
            property string itemIconSource: ""
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   133
            property alias itemText: scriptName.text
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   134
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   135
            Row {
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   136
                //Image {id: themeIcon; width: height; height: parent.height; source: "image://theme/" + modelData}
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   137
                Text {id: scriptName; text: modelData }
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   138
            }
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   139
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   140
            MouseArea {
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   141
                 z: 1
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   142
                 anchors.fill: parent
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   143
                 onClicked: {
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   144
                     cbScript.currentIndex = index
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   145
                     HWEngine.setScript(scriptName.text)
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   146
                 }
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   147
            }
11437
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   148
        }
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   149
        Connections {
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   150
            target: HWEngine
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   151
            onScriptChanged: cbScript.showItem({"iconSource" : "", "text" : script});
10436
084e046f6bd5 flib provides theme icons, qmlFrontend shows them
unc0rr
parents: 10434
diff changeset
   152
        }
10612
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   153
    }
eb3c1a289a23 Script combobox.wiki
unc0rr
parents: 10610
diff changeset
   154
10616
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   155
    HWComboBox {
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   156
        id: cbScheme
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   157
        width: 256
11426
ab6a6d9ebfc0 Small ui rework
unc0rr
parents: 10888
diff changeset
   158
        height: 32
10616
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   159
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   160
        model: schemesModel
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   161
        delegate: Rectangle {
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   162
            height: 25
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   163
            width: 100
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   164
            color: "transparent"
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   165
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   166
            property string itemIconSource: ""
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   167
            property alias itemText: schemeName.text
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   168
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   169
            Row {
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   170
                //Image {id: themeIcon; width: height; height: parent.height; source: "image://theme/" + modelData}
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   171
                Text {id: schemeName; text: modelData }
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   172
            }
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   173
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   174
            MouseArea {
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   175
                 z: 1
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   176
                 anchors.fill: parent
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   177
                 onClicked: {
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   178
                     cbScheme.currentIndex = index
10819
57e21f7621b0 Send selected scheme config on engine initialization (WIP)
unc0rr
parents: 10616
diff changeset
   179
                     HWEngine.setScheme(schemeName.text)
10616
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   180
                 }
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   181
            }
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   182
        }
11440
330c14f4ba69 Accept scheme from net
unc0rr
parents: 11437
diff changeset
   183
        Connections {
330c14f4ba69 Accept scheme from net
unc0rr
parents: 11437
diff changeset
   184
            target: HWEngine
330c14f4ba69 Accept scheme from net
unc0rr
parents: 11437
diff changeset
   185
            onSchemeChanged: cbScheme.showItem({"iconSource" : "", "text" : scheme});
330c14f4ba69 Accept scheme from net
unc0rr
parents: 11437
diff changeset
   186
        }
10616
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   187
    }
20a2d5e6930a Schemes list combobox with their names
unc0rr
parents: 10612
diff changeset
   188
10442
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   189
10823
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   190
    HWComboBox {
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   191
        id: cbAmmo
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   192
        width: 256
11426
ab6a6d9ebfc0 Small ui rework
unc0rr
parents: 10888
diff changeset
   193
        height: 32
10823
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   194
10888
a04e04aaf599 Ammo schemes list, almost works
unc0rr
parents: 10823
diff changeset
   195
        model: ammosModel
10823
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   196
        delegate: Rectangle {
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   197
            height: 25
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   198
            width: 100
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   199
            color: "transparent"
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   200
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   201
            property string itemIconSource: ""
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   202
            property alias itemText: ammoName.text
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   203
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   204
            Row {
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   205
                //Image {id: themeIcon; width: height; height: parent.height; source: "image://theme/" + modelData}
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   206
                Text {id: ammoName; text: modelData }
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   207
            }
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   208
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   209
            MouseArea {
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   210
                 z: 1
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   211
                 anchors.fill: parent
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   212
                 onClicked: {
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   213
                     cbAmmo.currentIndex = index
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   214
                     HWEngine.setAmmo(ammoName.text)
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   215
                 }
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   216
            }
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   217
        }
11437
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   218
        Connections {
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   219
            target: HWEngine
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   220
            onAmmoChanged: cbAmmo.showItem({"iconSource" : "", "text" : ammo});
6e641b5453f9 Accept ammo scheme from network
unc0rr
parents: 11434
diff changeset
   221
        }
10823
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   222
    }
11426
ab6a6d9ebfc0 Small ui rework
unc0rr
parents: 10888
diff changeset
   223
    }
10823
1ff3dd3705b1 Introducing cbAmmo
unc0rr
parents: 10819
diff changeset
   224
10442
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   225
    ListView {
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   226
        id: playingTeamsList
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   227
        x: 440
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   228
        y: 16
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   229
        width: 100
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   230
        height: 192
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   231
        highlight: Rectangle { color: "#eaea00"; radius: 4 }
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   232
        focus: true
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   233
        clip: true
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   234
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   235
        model: ListModel {
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   236
            id: playingTeamsModel
10442
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   237
        }
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   238
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   239
        delegate: Rectangle {
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   240
            id: teamDelegate
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   241
            height: 24
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   242
            width: parent.width
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   243
            radius: 8
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   244
            border.width: 2
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   245
            border.color: "#eaea00"
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   246
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   247
            Row {
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   248
                Rectangle {
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   249
                    height: 20
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   250
                    width: height
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   251
                    color: teamColor
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   252
                    border.width: 2
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   253
                    border.color: "#eaea00"                    
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   254
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   255
                    MouseArea {
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   256
                        z: 1
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   257
                        anchors.fill: parent
10454
2b590e7972b1 Allow using right button or wheel to change team color
unc0rr
parents: 10452
diff changeset
   258
                        acceptedButtons: Qt.LeftButton | Qt.RightButton
2b590e7972b1 Allow using right button or wheel to change team color
unc0rr
parents: 10452
diff changeset
   259
                        onClicked: {
2b590e7972b1 Allow using right button or wheel to change team color
unc0rr
parents: 10452
diff changeset
   260
                            if (mouse.button === Qt.LeftButton)
2b590e7972b1 Allow using right button or wheel to change team color
unc0rr
parents: 10452
diff changeset
   261
                                HWEngine.changeTeamColor(name, 1)
2b590e7972b1 Allow using right button or wheel to change team color
unc0rr
parents: 10452
diff changeset
   262
                            else if (mouse.button === Qt.RightButton)
2b590e7972b1 Allow using right button or wheel to change team color
unc0rr
parents: 10452
diff changeset
   263
                                HWEngine.changeTeamColor(name, -1)
2b590e7972b1 Allow using right button or wheel to change team color
unc0rr
parents: 10452
diff changeset
   264
                        }
2b590e7972b1 Allow using right button or wheel to change team color
unc0rr
parents: 10452
diff changeset
   265
                        onWheel: HWEngine.changeTeamColor(name, -wheel.angleDelta.y)
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   266
                   }
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   267
                }
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   268
11443
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   269
                Text {
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   270
                    text: name
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   271
                    MouseArea {
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   272
                        z: 1
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   273
                        anchors.fill: parent
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   274
                        onClicked: HWEngine.tryRemoveTeam(name)
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   275
                   }
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   276
                }
11443
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   277
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   278
                Text {
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   279
                    text: hedgehogsNumber
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   280
                }
10442
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   281
            }
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   282
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   283
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   284
        }
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   285
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   286
        Connections {
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   287
            target: HWEngine
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   288
            onPlayingTeamAdded: playingTeamsModel.append({
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   289
                                                             "aiLevel": aiLevel
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   290
                                                             , "name": teamName
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   291
                                                             , "local": isLocal
11443
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   292
                                                             , "hedgehogsNumber" : 4
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   293
                                                             , "teamColor": "#000000"
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   294
                                                         })
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   295
            onPlayingTeamRemoved: {
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   296
                var i = playingTeamsModel.count - 1;
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   297
                while ((i >= 0) && (playingTeamsModel.get(i).name !== teamName)) --i
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   298
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   299
                if(i >= 0) playingTeamsModel.remove(i, 1)
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   300
            }
10452
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   301
            onTeamColorChanged: {
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   302
                var i = playingTeamsModel.count - 1;
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   303
                while ((i >= 0) && (playingTeamsModel.get(i).name !== teamName)) --i
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   304
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   305
                if(i >= 0) playingTeamsModel.setProperty(i, "teamColor", colorValue)
03519fd9f98d Show team color in teams list widget, also allow to change it on mouse click
unc0rr
parents: 10450
diff changeset
   306
            }
11443
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   307
            onHedgehogsNumberChanged: {
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   308
                var i = playingTeamsModel.count - 1;
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   309
                while ((i >= 0) && (playingTeamsModel.get(i).name !== teamName)) --i
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   310
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   311
                if(i >= 0) playingTeamsModel.setProperty(i, "hedgehogsNumber", hedgehogsNumber)
5182d44fb733 - Hedgehogs number display
unc0rr
parents: 11440
diff changeset
   312
            }
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   313
        }
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   314
    }
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   315
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   316
    ListView {
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   317
        id: localTeamsList
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   318
        x: 440
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   319
        y: 224
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   320
        width: 100
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   321
        height: 192
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   322
        highlight: Rectangle { color: "#eaea00"; radius: 4 }
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   323
        focus: true
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   324
        clip: true
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   325
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   326
        model: ListModel {
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   327
            id: localTeamsModel
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   328
        }
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   329
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   330
        delegate: Rectangle {
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   331
            id: localTeamDelegate
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   332
            height: 24
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   333
            width: parent.width
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   334
            radius: 8
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   335
            border.width: 2
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   336
            border.color: "#eaea00"
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   337
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   338
            Row {
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   339
                Text { text: name }
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   340
            }
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   341
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   342
            MouseArea {
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   343
                 z: 1
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   344
                 anchors.fill: parent
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   345
                 onClicked: HWEngine.tryAddTeam(name)
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   346
            }
10442
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   347
        }
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   348
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   349
        Connections {
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   350
            target: HWEngine
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   351
            onLocalTeamAdded: localTeamsModel.append({"aiLevel": aiLevel, "name": teamName})
10444
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   352
            onLocalTeamRemoved: {
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   353
                var i = localTeamsModel.count - 1;
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   354
                while ((i >= 0) && (localTeamsModel.get(i).name !== teamName)) --i
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   355
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   356
                if(i >= 0) localTeamsModel.remove(i, 1)
47a6231f1fc1 Teams widget now allows to add and remove teams (basic implementation, no checks performed, no colors, no hedgehogs)
unc0rr
parents: 10442
diff changeset
   357
            }
10442
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   358
        }
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   359
    }
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   360
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   361
    Component.onCompleted: {
10450
bf9e30b4ef9b - Store index of color instead of its value
unc0rr
parents: 10448
diff changeset
   362
        HWEngine.resetGameConfig()
10442
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   363
        HWEngine.getTeamsList()
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   364
        HWEngine.getPreview()
c58db813240b Load and show local teams list
unc0rr
parents: 10436
diff changeset
   365
    }
10422
4cf23d4c7624 - Pages
unc0rr
parents:
diff changeset
   366
}