summaryrefslogtreecommitdiffstats
path: root/CanController/CarUI.qml
blob: b9485152b836eb53d3fadd08934cfa0501501a24 (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
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
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt multiscreen demo application.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

import QtQuick 2.0

Rectangle {
    width: 1024
    height: 768

    property int carNumber: 2

    Rectangle {
        id: leftBackgroundRect
        anchors {
            top: parent.top
            left: parent.left
            bottom: parent.bottom
        }
        width: 353
        color: "#484950"

        Car {
            id: car
            anchors {
                top: parent.top
                topMargin: 20
                horizontalCenter: parent.horizontalCenter
            }

            electricCar: carNumber === 0
            headLight: clusterDataControl.headLight
            //breakLight: brakeLights.pressed

            leftFrontDoorOpen: clusterDataControl.frontLeftDoorOpen
            leftBackDoorOpen: clusterDataControl.rearLeftDoorOpen
            rightFrontDoorOpen: clusterDataControl.frontRightDoorOpen
            rightBackDoorOpen: clusterDataControl.rearRightDoorOpen
            bootDoorOpen: bootDoorButton.pressed//clusterDataControl.trunkOpen
            hoodDoorOpen: clusterDataControl.hoodOpen
            leftBlink: clusterDataControl.leftTurnLight
            rightBlink: clusterDataControl.rightTurnLight
        }

        Gear {
            id: gearController
            visible: carNumber === 1
            gear: 1
            anchors {
                top: car.bottom
                topMargin: 33
                horizontalCenter: parent.horizontalCenter
            }
            onGearChanged: clusterDataControl.gear = gearController.gear
        }

        GearAutomatic {
            id: gearControllerAutomatic
            visible: carNumber !== 1
            gear: 1
            anchors {
                top: car.bottom
                topMargin: 33
                horizontalCenter: parent.horizontalCenter
            }
            onGearChanged: {
                if (gear !== 0 && brakeLights.pressed)
                    brakeLights.pressed = false
                clusterDataControl.gear = gearControllerAutomatic.gear
            }
        }

        Button {
            id: carID
            visible: false
            anchors {
                top: (carNumber === 1) ? gearController.bottom : gearControllerAutomatic.bottom
                topMargin: 33
                horizontalCenter: parent.horizontalCenter
            }
            width: 240
            height: 70
            radius: 6
            color: "#d6d6d6"
            textColor: "#26282a"
            textBlinkColor: "#26282a"
            blinkColor: "#d6d6d6"
            fontPixelSize: 23
            text: "Sports Car"
            onPressedChanged: {
                if (++carNumber > 2)
                    carNumber = 0
                resetButtonStates()
                clusterDataControl.carId = carNumber
                if (carNumber === 0)
                    text = "Electric Car"
                else if (carNumber === 1)
                    text = "Sports Car"
                else
                    text = "Hybrid Car"
            }
        }

        Button {
            id: demoMode
            anchors {
                top: carID.bottom
                topMargin: 10
                horizontalCenter: parent.horizontalCenter
            }
            width: 240
            height: 35
            radius: 6
            color: "#d6d6d6"
            textColor: "#26282a"
            textBlinkColor: "#d6d6d6"
            blinkColor: "#26282a"
            fontPixelSize: 14
            text: "Automatic Demo Mode"
            onPressedChanged: {
                clusterDataControl.parkLight = demoMode.pressed
            }
        }
    }

    Rectangle {
        id: rightBackgroundRect
        anchors {
            top: parent.top
            left: leftBackgroundRect.right
            right: parent.right
            bottom: parent.bottom
        }
        width: 353
        color: "#ffffff"

        Grid {
            id: buttonGrid
            anchors {
                top: parent.top
                topMargin: 42
                left: parent.left
                leftMargin: 42
                right: parent.right
                rightMargin: 42
            }
            spacing: 10

            columns: 7
            rows: 3

            // 1st row
            ButtonHolder {
                id: leftSignalButton
                icon: "qrc:/Icon_TurnLeft_OFF.png"
                iconPressed: "qrc:/Icon_TurnLeft_ON.png"
                text: "Turn Left"
                blinkingEnabled: false
                onPressedChanged: {
                    if (!hazardButton.pressed) {
                        if (leftSignalButton.pressed && rightSignalButton.pressed) {
                            rightSignalButton.pressed = false
                            car.rightBlink = false
                        }
                        clusterDataControl.leftTurnLight = leftSignalButton.pressed
                        car.leftBlink = leftSignalButton.pressed
                    }
                }
                mouseEnabled: !hazardButton.pressed
            }
            ButtonHolder {
                id: rightSignalButton
                icon: "qrc:/Icon_TurnRight_OFF.png"
                iconPressed: "qrc:/Icon_TurnRight_ON.png"
                text: "Turn Right"
                blinkingEnabled: false
                onPressedChanged:  {
                    if (!hazardButton.pressed) {
                        if (rightSignalButton.pressed && leftSignalButton.pressed) {
                            leftSignalButton.pressed = false
                            car.leftBlink = false
                        }
                        clusterDataControl.rightTurnLight = rightSignalButton.pressed
                        car.rightBlink = rightSignalButton.pressed
                    }
                }
                mouseEnabled: !hazardButton.pressed
            }
            ButtonHolder {
                id: hazardButton
                icon: "qrc:/Icon_HazardWarning_OFF.png"
                iconPressed: "qrc:/Icon_HazardWarning_ON.png"
                text: "Hazard Warning"
                blinkingEnabled: false
                property bool leftPreviousState: false
                property bool rightPreviousState: false
                onPressedChanged: {
                    clusterDataControl.hazardSignal = hazardButton.pressed
                    if (hazardButton.pressed) {
                        if (leftSignalButton.pressed)
                            hazardButton.leftPreviousState = true
                        else
                            leftSignalButton.pressed = true
                        if (rightSignalButton.pressed)
                            hazardButton.rightPreviousState = true
                        else
                            rightSignalButton.pressed = true
                    } else {
                        if (hazardButton.leftPreviousState)
                            hazardButton.leftPreviousState = false
                        else
                            leftSignalButton.pressed = false
                        if (hazardButton.rightPreviousState)
                            hazardButton.rightPreviousState = false
                        else
                            rightSignalButton.pressed = false
                    }
                    car.leftBlink = leftSignalButton.pressed
                    car.rightBlink = rightSignalButton.pressed
                }
            }
            /*
            ButtonHolder {
                id: parkLights
                text: "Position Lights"
                 onPressedChanged: clusterDataControl.parkLight = parkLights.pressed
            }
            */
            ButtonHolder {
                id: headLights
                icon: "qrc:/Icon_LowBeam_OFF.png"
                iconPressed: "qrc:/Icon_LowBeam_ON.png"
                text: "Low Beam"
                onPressedChanged: clusterDataControl.headLight = headLights.pressed
            }
            ButtonHolder {
                id: lampFailureButton
                icon: "qrc:/Icon_BulbFailure_OFF.png"
                iconPressed: "qrc:/Icon_BulbFailure_ON.png"
                text: "Bulb Failure"
                onPressedChanged: clusterDataControl.lightFailure = pressed
            }
            ButtonHolder {
                id: tireFailureButton
                text: "Tyre Malfunction"
                icon: "qrc:/Icon_TyreMalfunction_OFF.png"
                iconPressed: "qrc:/Icon_TyreMalfunction_ON.png"
                onPressedChanged: clusterDataControl.flatTire = pressed
            }

            // 2nd row
            /*
            ButtonHolder {
                text: "Seat Belt"
            }
            ButtonHolder {
                text: "Tyre Malfunction"
                icon: "qrc:/Icon_TyreMalfunction_OFF.png"
                iconPressed: "qrc:/Icon_TyreMalfunction_ON.png"
            }
            ButtonHolder {
                text: "Fuel"
            }
            */
            ButtonHolder {
                id: brakeLights
                icon: "qrc:/Icon_ParkingBrake_OFF.png"
                iconPressed: "qrc:/Icon_ParkingBrake_ON.png"
                text: "Parking Brake"
                onPressedChanged: {
                    gearController.gear = 0
                    gearControllerAutomatic.gear = 0
                    clusterDataControl.brake = brakeLights.pressed
                }
            }
            /*
            ButtonHolder {
                text: "Coolant Temp."
            }
            ButtonHolder {
                text: "Battery"
            }
            */

            // 3rd row
            Button {
                id: leftFrontDoorButton
                height: 60
                text: (carNumber === 0) ? "Left Door\nFRONT" : "Left Door"
                onPressedChanged: clusterDataControl.frontLeftDoorOpen = pressed
                visible: carNumber !== 2
            }
            Button {
                id: rightFrontDoorButton
                height: 60
                text: (carNumber === 0) ? "Right Door\nFRONT" : "Right Door"
                onPressedChanged: clusterDataControl.frontRightDoorOpen = pressed
                visible: carNumber !== 2
            }
            Button {
                id: hoodDoorButton
                height: 60
                text: "Hood"
                onPressedChanged: clusterDataControl.hoodOpen = pressed
                visible: carNumber !== 2
            }
            Button {
                id: leftBackDoorButton
                height: 60
                visible: (carNumber === 0)
                text: "Left Door\nBACK"
                onPressedChanged: clusterDataControl.rearLeftDoorOpen = pressed
            }
            Button {
                id: rightBackDoorButton
                height: 60
                visible: (carNumber === 0)
                text: "Right Door\nBACK"
                onPressedChanged: clusterDataControl.rearRightDoorOpen = pressed
            }
            Button {
                id: bootDoorButton
                height: 60
                text: "Trunk"
                onPressedChanged: clusterDataControl.trunkOpen = pressed
                visible: carNumber !== 2
            }
        }
        Row {
            id: viewButtons
            spacing: 10
            visible: false // Center view changing is not used with automotivedemo
            anchors {
                top: buttonGrid.bottom
                horizontalCenter: parent.horizontalCenter
                topMargin: 42
            }
            ViewChange {
                width: 270
                text: (carNumber === 0) ? "CHANGE LEFT VIEW" : "CHANGE CENTER VIEW"
                optionalIcons: carNumber === 2
            }
            ViewChange {
                visible: carNumber === 0
                text: "CHANGE RIGHT VIEW"
                mainView: false
                width: 270
            }
        }

        Column {
            anchors {
                top: viewButtons.bottom
                topMargin: 42
                left: parent.left
                leftMargin: 42
                right: parent.right
                rightMargin: 42
                bottom: parent.bottom
                bottomMargin: 30
            }
            SlideHolder {
                id: batteryLevel
                text: "BATTERY CHARGE"
                max: 100
                steps: 10
                value: 80
                valueStep: 2.5
                onValueChanged: {
                    // Battery charge vs. battery % level
                    // 12.66 V = 100 %
                    // 12.45 V = 75 %
                    // 12.24 V = 50 %
                    // 12.06 V = 25 %
                    // 11.89 V = 0 %
                    //clusterDataControl.batteryPotential = (11.89 + (0.0077 * batteryLevel.value))
                    clusterDataControl.batteryPotential = batteryLevel.value
                }
                Component.onCompleted: clusterDataControl.batteryPotential = batteryLevel.value

            }
            SlideHolder {
                id: waterTemperature
                text: "COOLANT TEMPERATURE"
                visible: carNumber !== 0
                min: 40
                max: 120
                steps: 8
                value: 60
                valueStep: 5
                enabled: !demoMode.pressed
                onValueChanged: clusterDataControl.engineTemp = waterTemperature.value
                Component.onCompleted: clusterDataControl.engineTemp = waterTemperature.value
            }
            SlideHolder {
                id: gasLevel
                text: "FUEL"
                visible: carNumber !== 0
                max: 100
                steps: 10
                value: 67
                onValueChanged: clusterDataControl.gasLevel = gasLevel.value
                Component.onCompleted: clusterDataControl.gasLevel = gasLevel.value
            }
            SlideHolder {
                id: rpm
                visible: carNumber !== 0
                text: "RPM (x1000)"
                max: 8.0
                steps: 8
                value: 4.0
                valueStep: 0.01
                enabled: !demoMode.pressed
                onValueChanged: clusterDataControl.rpm = rpm.value * 1000
                Component.onCompleted: clusterDataControl.rpm = rpm.value * 1000
            }
        }
    }

    function resetButtonStates() {
        headLights.pressed = false
        brakeLights.pressed = false
        //oilPressureWarning.pressed = false
        leftFrontDoorButton.pressed = false
        rightFrontDoorButton.pressed = false
        leftBackDoorButton.pressed = false
        rightBackDoorButton.pressed = false
        bootDoorButton.pressed = false
        hoodDoorButton.pressed = false
        tireFailureButton.pressed = false
        lampFailureButton.pressed = false
        leftSignalButton.pressed = false
        rightSignalButton.pressed = false
        hazardButton.pressed = false
        gearController.gear = 1
        gearControllerAutomatic.gear = 1
    }
}