aboutsummaryrefslogtreecommitdiffstats
path: root/app/Als-meter-demo.qml
blob: 486c4bf40be43d2ebd89b96b30872bbed81c9af7 (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
/*
 * 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: 1080
    height: 1487

    property string als_meter_demo_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 string wshift: "N"
    property int circulation: 0

    WebSocket {
        id: websocket
        url: bindingAddressWS

        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.transmission.mode"){
                    wshift = message_json[2].data.value
                }else if (propertyName === "messages.vehicle.average.speed"){
                    vehiclespeed = message_json[2].data.value
                }else if (propertyName === "messages.engine.speed"){
                    enginespeed = message_json[2].data.value
                }
                else if ( message.indexOf("messages.hvac.circulation") > 0 )
                {
                    circulation = message_json[2].data.value ? 1 : 0
                }
            }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: container
        anchors.centerIn: parent
        width: 1080
        height: 1487
        scale: screenInfo.scale_factor()

        Item {
            id: topscreen_up
            width: root.width
            height: (root.height - bottomscreen.height)/2

            CameraControl {
                id:cameracontrol_up
                listWH: true
                device: camera_up
                width: root.width
                height:80
            }
            Camera {
                id: camera_up
                width: root.width
                height: topscreen_up.height - cameracontrol_up.height
                anchors.top: cameracontrol_up.bottom
                onIsrunningChanged: {
                    camerabg_up.visible = !isrunning

                    if (isrunning){
                        if (cameracontrol_dn.device.cameraCnt() === 1)
                            cameracontrol_dn.switchstatus = false;
                    }else{
                        cameracontrol_dn.switchstatus = true;
                    }
                }
                onCamraCntChanged: {
                    if (!camera_dn.isrunning)
                        cameracontrol_dn.number = camera_dn.camranum();

                    if (!camera_up.isrunning)
                        cameracontrol_up.number = camera_up.camranum();
                }

                Image {
                    id: camerabg_up
                    anchors.centerIn: parent
                    width: 200
                    height: 200
                    source: "images/camera/camera_bg.svg"
                }
            }
        }

        Item {
            id: topscreen_dn
            width: root.width
            height: (root.height - bottomscreen.height)/2
            anchors.top: topscreen_up.bottom
            CameraControl {
                id:cameracontrol_dn
                listWH: false
                device: camera_dn
                width: root.width
                height:80
                back:0
            }
            Camera {
                id: camera_dn
                width: root.width
                height: topscreen_dn.height - cameracontrol_dn.height
                anchors.top: cameracontrol_dn.bottom
                onIsrunningChanged: {
                    camerabg_dn.visible = !isrunning

                    if (isrunning){
                        if (cameracontrol_up.device.cameraCnt() === 1)
                            cameracontrol_up.switchstatus = false;
                    }else{
                        cameracontrol_up.switchstatus = true;
                    }
                }

                onCamraCntChanged: {
                    if (!camera_up.isrunning)
                        cameracontrol_up.number = camera_up.camranum();

                    if (!camera_dn.isrunning)
                        cameracontrol_dn.number = camera_dn.camranum();
                }

                Image {
                    id: camerabg_dn
                    anchors.centerIn: parent
                    width: 200
                    height: 200
                    source: "images/camera/camera_bg.svg"
                }
            }
        }

        Item {
            id: bottomscreen
            width: root.width
            height: 600
            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: 30
                    anchors.bottom: parent.bottom
                    anchors.bottomMargin: 120
                    width: imgwidth
                    height: imgheight
                }
                ColumnLayout {
                    id: tachoparts
                    anchors.horizontalCenter: parent.horizontalCenter
                    Tacho {
                        anchors.top: parent.top
                        anchors.topMargin: -60
                        anchors.horizontalCenter: parent.horizontalCenter
                        width: imgwidth
                        height: imgheight
                    }
                    MidOther {
                        anchors.bottom: parent.bottom
                        anchors.bottomMargin: 110
                        anchors.horizontalCenter: parent.horizontalCenter
                        width: imgwidth
                        height: imgheight
                    }
                }
                Mid {
                    id: midparts
                    anchors.right: parent.right
                    anchors.rightMargin: 25
                    anchors.bottom: parent.bottom
                    anchors.bottomMargin: 90
                    width: imgwidth
                    height: imgheight
                }
            }
        }
    }
    onVisibleChanged: {
        if (visible){
            if (!websocket.active){
                websocket.active = true
            }else{
                do_subscribe()
            }
        }
        else {
            countdown.stop()
            if (websocket.active)
                do_unsubscribe()
        }
    }

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

    function do_subscribe() {
        do_call(api_str, "subscribe", "vehicle.average.speed")
        do_call(api_str, "subscribe", "transmission.mode")
        do_call(api_str, "subscribe", "engine.speed")
        do_call(api_str, "subscribe", "hvac.circulation")
    }

    function do_unsubscribe() {
        do_call(api_str, "unsubscribe", "vehicle.average.speed")
        do_call(api_str, "unsubscribe", "transmission.mode")
        do_call(api_str, "unsubscribe", "engine.speed")
        do_call(api_str, "unsubscribe", "hvac.circulation")
    }
}