summaryrefslogtreecommitdiffstats
path: root/app/ValueSource.qml
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2020-01-03 18:13:33 -0500
committerScott Murray <scott.murray@konsulko.com>2020-01-03 18:20:12 -0500
commit6095052818bdee3e467f3674837d9279e0d697d0 (patch)
treea15d8d4f1efea632ba13130d582a796c78364f65 /app/ValueSource.qml
parent4dc183bf09c0f4b27cf7327937721f3b57e55c12 (diff)
Add signal-composer speed and steering wheel event supporthalibut_8.0.6halibut_8.0.5halibut/8.0.6halibut/8.0.58.0.68.0.5halibut
Changes include: - Pull in signal-composer support from libqtappfw - Add a configuration file that controls whether the existing canned animation behavior should be used, or events from signal-composer should drive speeds and indicators. - Add new icons provided by LF graphics team for cruise control and lane departure warning, and drive their state based on appropriate steering wheel events. - Hide/show the digital vehicle/engine speed values in the gauges based on the steering wheel info event. This is intended to work in sync with changes to tbtnavi to have it display larger speed indicators via an alternate page. Bug-AGL: SPEC-3045, SPEC-3049 Change-Id: I77249f65b80596fe7f2af9fe29b3ed86b63a8a45 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'app/ValueSource.qml')
-rw-r--r--app/ValueSource.qml54
1 files changed, 51 insertions, 3 deletions
diff --git a/app/ValueSource.qml b/app/ValueSource.qml
index 48e5cf6..80ef95c 100644
--- a/app/ValueSource.qml
+++ b/app/ValueSource.qml
@@ -1,7 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
-** Copyright (C) 2018 Konsulko Group
+** Copyright (C) 2018, 2019 Konsulko Group
** Contact: https://www.qt.io/licensing/
**
** This file is part of the examples of the Qt Toolkit.
@@ -54,7 +54,7 @@ Item {
id: valueSource
property real kph: 0
property bool mphDisplay: true
- property real speedScaling: mphDisplay == true ? 0.621 : 1.0
+ property real speedScaling: mphDisplay == true ? 0.621504 : 1.0
property real rpm: 1
property real fuel: 0.85
property string gear: {
@@ -87,13 +87,61 @@ Item {
property int turnSignal: -1
property bool startUp: false
property real temperature: 0.6
+ property bool cruiseEnabled: false
+ property bool cruiseSet: false
+ property bool laneDepartureWarnEnabled: false
+ property bool displayNumericSpeeds: true
function randomDirection() {
return Math.random() > 0.5 ? Qt.LeftArrow : Qt.RightArrow;
}
+ Connections {
+ target: SignalComposer
+
+ onSignalEvent: {
+ if (uid === "event.vehicle.speed") {
+ var speed_tmp = parseFloat(value)
+ if(units == "mph") {
+ speed_tmp *= 1.609
+ }
+ if(!runAnimation) {
+ valueSource.kph = speed_tmp
+ }
+ }
+ else if (uid === "event.engine.speed") {
+ if(!runAnimation) {
+ valueSource.rpm = parseFloat(value) / 1000
+ }
+ }
+ else if (uid === "event.cruise.enable" && value === "true") {
+ if(valueSource.cruiseEnabled) {
+ valueSource.cruiseEnabled = false
+ valueSource.cruiseSet = false
+ } else {
+ valueSource.cruiseEnabled = true
+ }
+ }
+ else if ((uid === "event.cruise.set" || uid === "event.cruise.resume") &&
+ value === "true") {
+ if(valueSource.cruiseEnabled) {
+ valueSource.cruiseSet = true
+ }
+ }
+ else if (uid === "event.cruise.cancel" && value === "true") {
+ valueSource.cruiseSet = false
+ }
+ else if (uid === "event.lane_departure_warning.enable" && value === "true") {
+ valueSource.laneDepartureWarnEnabled = !valueSource.laneDepartureWarnEnabled
+ }
+ else if (uid === "event.info" && value === "true") {
+ valueSource.displayNumericSpeeds = !valueSource.displayNumericSpeeds
+ }
+ }
+ }
+
SequentialAnimation {
- running: true
+ running: runAnimation
loops: 1
// We want a small pause at the beginning, but we only want it to happen once.