-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDashboardView.qml
189 lines (163 loc) · 5.22 KB
/
DashboardView.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
import QtQuick 2.4
DashboardForm {
id: main
width: 1280
height: 480
//Start animating gauges after both are loaded
function showGauges() {
if (speedoMeter.status === Loader.Ready
&& flipable.rpm.status === Loader.Ready) {
}
}
property var component: [
"qrc:/DashboardForm.qml",
]
property string mapPositionImage: "image://etc/MapLocationSport.png"
property int videoviewindex: 3
property int parkingviewindex: 4
property int carviewindex: 5
property int preReversingCenterView: -1
property int preReversingRightView
// CarModel animations
property int carModelHighlightType: 0
property bool doorAction: false
property bool actionInProgress: false
property bool loadingInProgress: false
property bool isReversing: false
property int doorsOpen: 2
property bool flatTire: true
property bool lightFailure:true
property int gear: 4
property var cameraView
property bool viewChanged: true
function forceCarView() {
actionInProgress = true
// Make CarView visible before activating the animations
if (car.item && car.item.hidden) {
if (camera.visible)
camera.visible = false
car.opacity = 1.0
centerStack.visible = false
car.visible = true
car.item.hidden = false
}
}
function loadCenterView(nextView, allowParking) {
loadingInProgress = true
var previousViewIndex = centerStack.viewIndex
if (preReversingCenterView != -1 && !allowParking) {
if (centerStack.viewIndex !== preReversingCenterView) {
centerStack.viewIndex = preReversingCenterView
if (centerStack.viewIndex < 0)
centerStack.viewIndex = 5
}
}
else {
centerStack.viewIndex = getViewIndex(centerStack.viewIndex, nextView, allowParking)
}
loadingInProgress = false
if (previousViewIndex === carviewindex)
centerStack.fadeOutCenter.target = car
else if (previousViewIndex === videoviewindex)
centerStack.fadeOutCenter.target = camera
else
centerStack.fadeOutCenter.target = centerStack.loader
centerStack.fadeOutCenter.start()
}
function getViewIndex(viewindex, nextView, allowParking) {
if (allowParking) {
return videoviewindex
}
if (nextView) {
viewindex++
if (viewindex === parkingviewindex) {
viewindex++
}
if (viewindex > 5)
viewindex = 0
} else {
viewindex--
if (viewindex === parkingviewindex) {
viewindex--
}
if (viewindex < 0)
viewindex = 5
}
return viewindex
}
onDoorsOpenChanged: {
if (actionInProgress && !doorAction)
return
// Check all doors & parse a correct value from them
var doors = 0
if (ValueSource.frontLeftOpen)
doors ^= 1
if (ValueSource.frontRightOpen)
doors ^= 2
if (ValueSource.trunkOpen)
doors ^= 4
if (ValueSource.hoodOpen)
doors ^= 8
if (doors != 0) {
forceCarView()
if (car.item)
car.item.highlightDoors(doors)
carModelHighlightType = -1
}
}
onFlatTireChanged: {
if (!actionInProgress && flatTire) {
forceCarView()
carModelHighlightType = car.item.highlightTire()
}
}
onLightFailureChanged: {
if (!actionInProgress && lightFailure) {
forceCarView()
carModelHighlightType = car.item.highlightLamp()
}
}
onGearChanged: {
if (gear === -1)
reversing()
else if (gear >= 0)
returnFromReversing()
}
onViewChangedChanged: changeView(viewChanged)
function reversing() {
isReversing = true
// Car backing up, trigger rear camera view and proximity sensor view
preReversingCenterView = centerStack.viewIndex
loadCenterView(0, true)
flipable.flipped = !flipable.flipped
}
function returnFromReversing() {
if (!isReversing)
return
loadCenterView(true, false)
preReversingCenterView = -1
flipable.flipped = !flipable.flipped
isReversing = false
}
function changeView(nextView) {
if (isReversing)
return
if (actionInProgress || loadingInProgress)
return
if (nextView)
loadCenterView(nextView)
}
Timer {
id: returnView
interval: 1000
running: false
onTriggered: {
if (camera.x === centerStack.x)
camera.visible = true
car.item.hidden = true
car.visible = false
car.opacity = 0.0
centerStack.visible = true
}
}
}