summaryrefslogtreecommitdiffstats
path: root/GUIModel/Meter/SpeedNeedle.qml
blob: 86767c2a38b56ff092f28c95cfa2a642534d6f31 (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
/*
 * Copyright 2020,2021 Panasonic Corporation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import QtQuick 2.14
import QtGraphicalEffects 1.14

Item {
    id: speedNeedle
    width:444
    height:444
    x: 318
    y: 180
    visible: false
    property real speedValue

    readonly property real speedNeedleMax: 100
    readonly property real speedNeedleMin: 0

    onSpeedValueChanged: {
        setNeedleAngle();
        effectPwrNeedle.angle = (2.25 * speedValue*Math.PI/180)+effectPwrNeedle.angleBase
    }
    
    Connections{
        target: rootItem
        onTransNormalToAdas:{
            normalToAdasAnimation.start()
        }

        onTransAdasToMap:{
            /**/
        }

        onTransMapToNormal:{
            mapToNormalAnimation.start()
        }
    }

    function setNeedleAngle(){
        if(speedNeedleMax < speedValue){
            speedValue = speedNeedleMax
        }else if( speedValue < speedNeedleMin){
            speedValue = speedNeedleMin
        }
        rotateNeedle.angle = 2.25 * speedValue
    }

    /* Needle - visible in ADAS/Map mode */
    Item {
        id:needleGroup
        width:444
        height:444
        
        Image{
            id: pwrNeedle
            source: "qrc:/Images/ADASView/METER/needle.png"
            x: 28
            y: 220
            width:182
            height:4
            visible: false
        }
        
        Item{
            id: needleMask
            visible: false
            anchors.fill:pwrNeedle
            property double maskPercent: 0
            
            Rectangle{
                id: needleMaskInvisible
                color: "red"
                opacity: 0
                anchors.left: parent.left
                width: pwrNeedle.width * (1.0 - needleMask.maskPercent/100.0)
                height: pwrNeedle.height
                visible: true
            }
            Rectangle{
                id: needleMaskVisible
                color: "blue"
                anchors.right: parent.right
                opacity: 1
                width: pwrNeedle.width * (needleMask.maskPercent/100.0)
                height: pwrNeedle.height
                visible: true
            }
        }
        
        
        OpacityMask {
            id: maskedPwrNeedle
            cached: false
            width: pwrNeedle.x
            height:pwrNeedle.y
            anchors.fill:pwrNeedle
            source: pwrNeedle
            maskSource: needleMask
        }
        
        transform: Rotation{
            id:rotateNeedle
            origin.x: needleGroup.width / 2
            origin.y: needleGroup.height / 2
            angle : 0
        }
        
        
    }
    
    Item{
        id: centerCircleGroup
        width:124
        height:126
        x:160
        y:166
        Image{
            id: centerCircle
            source: "qrc:/Images/ADASView/METER/center_circle.png"
            width:124
            height:126
            anchors.horizontalCenter: parent.horizontalCenter
            anchors.verticalCenter: parent.verticalCenter
            visible: true
        }
    }
    
    Item {
        id: pwrNeedleEffect
        width:444
        height:444
        x: 0
        y: 0
        visible: false
        
        Image{
            source: "qrc:/Images/ADASView/METER/pwr_wave.png"
            width:444
            height:442
            visible: true
        }
        
        Image{
            source: "qrc:/Images/ADASView/METER/pwr_glow.png"
            width:444
            height:442
            visible: true
        }
    }
    

    ShaderEffect{
        id: effectPwrNeedle
        anchors.fill: pwrNeedleEffect
        visible: false
        blending: true
        supportsAtlasTextures: true
        property real angleBase: -pi*1/2
        property real angle:-pi*1/2
        property var src: ShaderEffectSource{
            sourceItem: pwrNeedleEffect
        }

        readonly property real pi: 3.1415926535

        vertexShader: "qrc:/Shaders/vert/guageMask.vert"
        fragmentShader:"qrc:/Shaders/frag/guageMask.frag"
    }
    
    
    SequentialAnimation{
        id: normalToAdasAnimation
        onStarted: rootItem.focus=false
        onStopped: rootItem.focus=true
        PauseAnimation {
            duration: 330 + 891
        }
        
        PropertyAnimation{
            target: speedNeedle
            property: "visible"
            duration: 0
            from:false
            to:true
        }
        
        NumberAnimation{
            target: centerCircle
            property: "scale"
            duration: 396
            easing.type: Easing.InOutSine
            from: 0
            to: 1
        }
        
        PropertyAnimation{
            target:effectPwrNeedle
            property:"visible"
            duration:0
            from:false
            to:true
        }
        
        ParallelAnimation{
            NumberAnimation {
                target:needleMask
                property: "maskPercent"
                duration: 198
                from:0.0
                to:100.0
            }
            
            NumberAnimation{
                target:effectPwrNeedle
                property:"opacity"
                duration:198
                from:0
                to:1
            }
        }
        PauseAnimation {
            duration: 330
        }
        
    }
    
    SequentialAnimation{
        id: mapToNormalAnimation
        onStarted: rootItem.focus=false
        ParallelAnimation{
            NumberAnimation {
                target:needleMask
                property: "maskPercent"
                duration: 198
                from:100.0
                to:0.0
            }
            
            NumberAnimation{
                target:effectPwrNeedle
                property:"opacity"
                duration:198
                from:1
                to:0
            }
        }
        
        PropertyAnimation{
            target:effectPwrNeedle
            property:"visible"
            duration:0
            from:true
            to:false
        }
        
        NumberAnimation{
            target: centerCircle
            property: "scale"
            duration: 396
            easing.type: Easing.InOutSine
            from: 1
            to: 0
        }
        
        PropertyAnimation{
            target: speedNeedle
            property: "visible"
            duration: 0
            from:true
            to:false
        }
    }
    
}