summaryrefslogtreecommitdiffstats
path: root/demo3/horizontal/tachometer/app/main.qml
blob: 5172440be09846eea36cbfcb965e8f69c4c5cc94 (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
/*
 * Copyright (c) 2017 TOYOTA MOTOR 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.6
import QtQuick.Layouts 1.3
import QtQuick.Controls 2.0
import QtQuick.Window 2.2
import Camera 1.0
import QtWebSockets 1.0

ApplicationWindow {
    id: root
    width: 1280
    height: 720

    property string request_str: ""
    property string api_str: "low-can"
    property var msgid_enu: { "call":2, "retok":3, "reterr":4, "event":5 }
    property int recirc:0
    property int vehiclespeed: 0
    property real enginespeed: 0
    property int fuellevel: 0
    property string transmissionMode: 'MT'
    property bool isAutoMode: false
    property bool isSport: false
    property string wshift: "N"

    WebSocket {
        id: websocket
        url: bindingAddress

        onStatusChanged: {
            if (websocket.status === WebSocket.Error){
                console.log ("Error: " + websocket.errorString)
                websocket.active = false
                countdown.start()
            }else if (websocket.status === WebSocket.Open){
                console.log ("Socket Open")
                do_subscribe()
            }else if (websocket.status === WebSocket.Closed){
                console.log ("Socket closed")
            }
        }

        onTextMessageReceived: {
            var message_json = JSON.parse(message);
            console.log("Raw response: " + message)

            if (message_json[0] === msgid_enu.event){
                var propertyName = message_json[2].event.split("/")[1]
                if (propertyName === "messages.vehicle.average.speed"){
                    vehiclespeed = message_json[2].data.value
                    console.log("vehiclespeed: " + vehiclespeed)
                }else if (propertyName === "messages.engine.speed"){
                    enginespeed = message_json[2].data.value
                    console.log("enginespeed: " + enginespeed)
                }else if ( message.indexOf("messages.fuel.level") > 0 ){
                    fuellevel = message_json[2].data.value
                }else if (propertyName === "messages.transmission.gearinfo"){
                    if (transmissionMode === "MT" && isAutoMode === false){
                        if( message_json[2].data.value === 0){
                            wshift = 'N'
                        }else{
                            wshift = 'D'+message_json[2].data.value
                        }
                    }
                }else if (propertyName === "messages.transmission.mode"){
                    transmissionMode = message_json[2].data.value
                }else if (propertyName === "messages.DriveMode"){
                    if( message_json[2].data.value === "sport"){
                        wshift = 'S1'
                        isSport = true
                        isAutoMode = true
                    }else if( message_json[2].data.value === "eco"){
                        isSport = false
                        wshift = 'E'
                        isAutoMode = true
                    }else if( message_json[2].data.value === "winter"){
                        isSport = false
                        wshift = 'W'
                        isAutoMode = true
                    }
                }else if ( (propertyName === "messages.transmission.shift.gear") ){
                    if (isSport === true){
                        if(message_json[2].data.value != '0'){
                            wshift = 'S' + message_json[2].data.value
                        }else if(message_json[2].data.value == '0'){
                            wshift = 'D'
                        }

                    }
                }else if (propertyName === "messages.Transmission.SiftPosition.neutral"){
                    if( message_json[2].data.value === true){
                        wshift = 'N'
                        isAutoMode = true
                    }
                }else if (propertyName === "messages.Transmission.SiftPosition.driving"){
                    if( message_json[2].data.value === true){
                        wshift = 'D'
                        isAutoMode = true
                    }
                }else if (propertyName === "messages.Transmission.SiftPosition.parking"){
                    if( message_json[2].data.value === true){
                        wshift = 'P'
                        isAutoMode = true
                    }
                }else if (propertyName === "messages.Transmission.SiftPosition.reverse"){
                    if( message_json[2].data.value === true){
                        wshift = 'R'
                        isAutoMode = true
                    }
                }else if (propertyName === "messages.Transmission.SiftPosition.B"){
                    if( message_json[2].data.value === true){
                        wshift = 'B'
                        isAutoMode = true
                    }
                }
            }else if (message_json[0] === msgid_enu.retok){
                console.log ("Response is OK!")
            }else{
                console.log ("Event type error:", message_json[0])
            }
        }

        active: false
    }

    Timer {
        id: countdown
        repeat: false
        interval: 3000
        triggeredOnStart: false
        onTriggered: {
            websocket.active = true
        }
    }

    Item {
        id: bottomscreen
        width: root.width
        height: root.height
        anchors.bottom: parent.bottom
        Image {
            width: parent.width
            height: parent.height
            asynchronous: true
            fillMode: Image.TileHorizontally
            smooth: true
            source: "images/homescreen/homebg_bottom.svg"
        }
        RowLayout {
            id: smtparts
            anchors.left: parent.left
            anchors.right: parent.right
            Speed {
                id: speedparts
                anchors.left: parent.left
                anchors.leftMargin: 10
                anchors.bottom: parent.bottom
                anchors.bottomMargin: 30
                width: imgwidth
                height: imgheight
            }
            ColumnLayout {
                id: tachoparts
                anchors.horizontalCenter: parent.horizontalCenter
                Tacho {
                    anchors.top: parent.top
                    anchors.topMargin: -40
                    anchors.horizontalCenter: parent.horizontalCenter
                    width: imgwidth
                    height: imgheight
                }

                Item {
                    id: camarea
                    anchors.bottom: parent.bottom
                    anchors.bottomMargin: 80
                    anchors.horizontalCenter: parent.horizontalCenter

                    width: 320
                    height: 180

                    Camera {
                        id: camdev
                        width: camarea.width
                        height: camarea.height
                        onIsrunningChanged: {
                            camerabg_up.visible = !isrunning
                        }
                        Image {
                            id: camerabg_up
                            anchors.centerIn: parent
                            width: 200
                            height: 200
                            source: "images/camera/camera_bg.svg"
                        }
                    }
                    Component.onCompleted: {
                        camdev.enumerateCameras();
                    }
                }
            }
            Mid {
                id: midparts
                anchors.right: parent.right
                anchors.rightMargin: 5
                anchors.bottom: parent.bottom
                anchors.bottomMargin: 15
                width: imgwidth
                height: imgheight
            }
        }
    }

    function changeVisible(visible) {
        if (visible){
            if (!websocket.active){
                websocket.active = true
            }else{
                do_subscribe()
            }
            var number = camdev.camranum();
            camdev.start(number[0], "30", "640*480")
        }else{
            do_subscribe()
            camdev.stop()
        }
    }

    function do_call(binding, verb, event_name) {
        request_str = '[' + msgid_enu.call + ',"99999","' + binding+'/'+verb + '", {"event":"' + event_name + '"} ]'
        websocket.sendTextMessage (request_str)
    }

    function do_subscribe() {
        do_call(api_str, "subscribe", "vehicle.average.speed")
        do_call(api_str, "subscribe", "engine.speed")
        do_call(api_str, "subscribe", "fuel.level")
        do_call(api_str, "subscribe", "transmission.gearinfo")
        do_call(api_str, "subscribe", "transmission.mode")
        do_call(api_str, "subscribe", "DriveMode")
        do_call(api_str, "subscribe", "transmission.shift.gear")
        do_call(api_str, "subscribe", "Transmission.SiftPosition.neutral")
        do_call(api_str, "subscribe", "Transmission.SiftPosition.driving")
        do_call(api_str, "subscribe", "Transmission.SiftPosition.parking")
        do_call(api_str, "subscribe", "Transmission.SiftPosition.reverse")
        do_call(api_str, "subscribe", "Transmission.SiftPosition.B")
    }

    function do_unsubscribe() {
        do_call(api_str, "unsubscribe", "vehicle.average.speed")
        do_call(api_str, "unsubscribe", "engine.speed")
        do_call(api_str, "unsubscribe", "fuel.level")
        do_call(api_str, "unsubscribe", "transmission.gearinfo")
        do_call(api_str, "unsubscribe", "transmission.mode")
        do_call(api_str, "unsubscribe", "DriveMode")
        do_call(api_str, "unsubscribe", "transmission.shift.gear")
        do_call(api_str, "unsubscribe", "Transmission.SiftPosition.neutral")
        do_call(api_str, "unsubscribe", "Transmission.SiftPosition.driving")
        do_call(api_str, "unsubscribe", "Transmission.SiftPosition.parking")
        do_call(api_str, "unsubscribe", "Transmission.SiftPosition.reverse")
        do_call(api_str, "unsubscribe", "Transmission.SiftPosition.B")
    }
}