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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
|
# Copyright (C) 2023 Suchinton Chakravarty
# Copyright (C) 2024 Konsulko Group
#
# SPDX-License-Identifier: Apache-2.0
import os
import logging
import sys
from PyQt6 import uic, QtCore, QtWidgets
from PyQt6.QtWidgets import QApplication
from PyQt6.QtGui import QIcon, QPixmap, QPainter
from PyQt6.QtCore import QObject, pyqtSignal, QThread
from PyQt6.QtWidgets import QWidget, QFrame, QDockWidget
from PyQt6.QtQuickWidgets import QQuickWidget
from PyQt6.QtCore import QTimer
import threading
current_dir = os.path.dirname(os.path.abspath(__file__))
# ========================================
sys.path.append(os.path.dirname(current_dir))
Form, Base = uic.loadUiType(os.path.join(current_dir, "../ui/IC.ui"))
# ========================================
import extras.config as config
from extras.KuksaClient import KuksaClient
from extras.VehicleSimulator import VehicleSimulator
from Scripts.record_playback import CAN_playback
import res_rc
from Widgets.animatedToggle import AnimatedToggle
def Gauge(gaugeType):
"""QWidget
This function creates gauge widgest of types RPM, Speed, Fuel and Coolant.
Returns:
- A QQuickWidget object representing the gauge widget.
"""
RPM_GaugeQML = os.path.join(
current_dir, "../QMLWidgets/Full_Gauge/RPMGauge.qml")
Speed_GaugeQML = os.path.join(
current_dir, "../QMLWidgets/Full_Gauge/SpeedGauge.qml")
Fuel_GaugeQML = os.path.join(
current_dir, "../QMLWidgets/Half_Gauge/FuelGauge.qml")
Coolant_GaugeQML = os.path.join(
current_dir, "../QMLWidgets/Half_Gauge/CoolantGauge.qml")
gauge = QQuickWidget()
if gaugeType == "RPM":
gauge.setSource(QtCore.QUrl(RPM_GaugeQML))
elif gaugeType == "Speed":
gauge.setSource(QtCore.QUrl(Speed_GaugeQML))
elif gaugeType == "Fuel":
gauge.setSource(QtCore.QUrl(Fuel_GaugeQML))
elif gaugeType == "Coolant":
gauge.setSource(QtCore.QUrl(Coolant_GaugeQML))
gauge.setResizeMode(QQuickWidget.ResizeMode.SizeRootObjectToView)
gauge.setSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding,
QtWidgets.QSizePolicy.Policy.Expanding)
gauge.rootContext().setContextObject(gauge)
return gauge
class IC_Paths():
def __init__(self):
self.speed = "Vehicle.Speed"
self.engineRPM = "Vehicle.Powertrain.CombustionEngine.Speed"
self.leftIndicator = "Vehicle.Body.Lights.DirectionIndicator.Left.IsSignaling"
self.rightIndicator = "Vehicle.Body.Lights.DirectionIndicator.Right.IsSignaling"
self.hazard = "Vehicle.Body.Lights.Hazard.IsSignaling"
self.fuelLevel = "Vehicle.Powertrain.FuelSystem.RelativeLevel"
self.coolantTemp = "Vehicle.Powertrain.CombustionEngine.ECT"
self.selectedGear = "Vehicle.Powertrain.Transmission.SelectedGear"
class ICWidget(Base, Form):
"""
This class represents the ICWidget which is a widget for the AGL Demo Control Panel.
It inherits from the Base and Form classes.
"""
def __init__(self, parent=None):
"""
Initializes the ICWidget object.
Args:
- parent: The parent widget. Defaults to None.
"""
super(self.__class__, self).__init__(parent)
self.setupUi(self)
self.IC = IC_Paths()
self.kuksa_client = KuksaClient()
self.simulator = VehicleSimulator()
self.simulator_running = False
header_frame = self.findChild(QWidget, "header_frame")
layout = header_frame.layout()
self.Frame_1 = self.findChild(QWidget, "frame_1")
self.Fuel_Gauge_Frame = self.findChild(QFrame, "fuel_gauge_frame")
self.Coolant_Gauge_Frame = self.findChild(
QFrame, "coolant_gauge_frame")
self.Script_toggle = AnimatedToggle()
layout.replaceWidget(self.demoToggle, self.Script_toggle)
self.demoToggle.deleteLater()
buttons = [self.parkBtn,
self.reverseBtn,
self.neutralBtn,
self.driveBtn]
# group for the buttons for mutual exclusion
self.simulator.speed_changed.connect(self.set_Vehicle_Speed)
self.simulator.rpm_changed.connect(self.set_Vehicle_RPM)
self.driveGroupBtns = QtWidgets.QButtonGroup(self)
self.driveGroupBtns.setExclusive(True)
for button in buttons:
self.driveGroupBtns.addButton(button)
self.driveGroupBtns.buttonClicked.connect(self.driveBtnClicked)
Speed_Gauge_Placeholder = self.findChild(
QWidget, "Speed_Gauge_Placeholder")
self.Speed_Gauge = Gauge("Speed")
self.Frame_1.layout().replaceWidget(Speed_Gauge_Placeholder, self.Speed_Gauge)
self.Speed_slider.setMinimum(0)
self.Speed_slider.setMaximum(240)
RPM_Gauge_Placeholder = self.findChild(
QWidget, "RPM_Gauge_Placeholder")
self.RPM_Gauge = Gauge("RPM")
self.Frame_1.layout().replaceWidget(RPM_Gauge_Placeholder, self.RPM_Gauge)
self.RPM_slider.setMinimum(0)
self.RPM_slider.setMaximum(8000)
fuel_Gauge_Placeholder = self.findChild(
QWidget, "fuel_Gauge_Placeholder")
self.Fuel_Gauge = Gauge("Fuel")
self.Fuel_Gauge_Frame.layout().replaceWidget(
fuel_Gauge_Placeholder, self.Fuel_Gauge)
coolant_Gauge_Placeholder = self.findChild(
QWidget, "coolant_Gauge_Placeholder")
self.Coolant_Gauge = Gauge("Coolant")
self.Coolant_Gauge_Frame.layout().replaceWidget(
coolant_Gauge_Placeholder, self.Coolant_Gauge)
self.leftIndicatorBtn.setCheckable(True)
self.rightIndicatorBtn.setCheckable(True)
self.hazardBtn.setCheckable(True)
self.leftIndicatorBtn.toggled.connect(self.leftIndicatorBtnClicked)
self.rightIndicatorBtn.toggled.connect(self.rightIndicatorBtnClicked)
self.hazardBtn.toggled.connect(self.hazardBtnClicked)
self.Script_toggle.clicked.connect(self.handle_Script_toggle)
try:
self.Playback = CAN_playback()
self.Playback_connections()
except Exception as e:
logging.error(f"Error creating playback object {e}")
self.TirePressureDock = self.findChild(QDockWidget, "TirePressureDock")
self.TirePressureBtn = self.findChild(
QtWidgets.QPushButton, "TirePressureBtn")
self.TirePressureBtn.clicked.connect(self.toggle_TirePressureDock)
# after 2 seconds reconnect the signals
QTimer.singleShot(500, self.reconnectSignals)
# hide Tirepressure dock by default
self.Hide_TirePressure(True)
# function to reconnect all the gauge signals
def reconnectSignals(self):
self.Speed_Gauge.rootObject().speedValueChanged.connect(lambda value: self.update_Speed("gauge", value))
self.Speed_slider.valueChanged.connect(lambda : self.update_Speed("slider", self.Speed_slider.value()))
self.RPM_Gauge.rootObject().rpmValueChanged.connect(lambda value: self.update_RPM("gauge", value))
self.RPM_slider.valueChanged.connect(lambda : self.update_RPM("slider", self.RPM_slider.value()))
self.Coolant_Gauge.rootObject().coolantTempValueChanged.connect(lambda value: self.update_coolantTemp("gauge", value))
self.coolantTemp_slider.valueChanged.connect(lambda : self.update_coolantTemp("slider", self.coolantTemp_slider.value()))
self.Fuel_Gauge.rootObject().fuelLevelValueChanged.connect(lambda value: self.update_fuelLevel("gauge", value))
self.fuelLevel_slider.valueChanged.connect(lambda : self.update_fuelLevel("slider", self.fuelLevel_slider.value()))
def toggle_TirePressureDock(self):
if self.TirePressureBtn.isChecked():
self.Hide_TirePressure(True)
self.TirePressureBtn.setChecked(True)
else:
self.Hide_TirePressure(False)
self.TirePressureBtn.setChecked(False)
def Hide_TirePressure(self, bool_arg):
self.TirePressureDock.setVisible(bool_arg)
def Playback_connections(self):
self.Playback.speedUpdate.connect(self.set_Vehicle_Speed)
self.Playback.gearUpdate.connect(self.playback_set_Vehicle_Gear)
self.Playback.engineSpeedUpdate.connect(self.set_Vehicle_RPM)
self.Playback.indicatorUpdate.connect(
self.playback_set_Vehicle_Indicators)
def playback_set_Vehicle_Gear(self, gear):
if gear == "P":
self.parkBtn.setChecked(True)
if gear == "D":
self.driveBtn.setChecked(True)
if gear == "R":
self.reverseBtn.setChecked(True)
if gear == "N":
self.neutralBtn.setChecked(True)
def playback_set_Vehicle_Indicators(self, indicator):
if indicator == "HazardOn":
self.hazardBtn.setChecked(True)
elif indicator == "HazardOff":
self.hazardBtn.setChecked(False)
elif indicator == "LeftBlinkerOn":
self.leftIndicatorBtn.setChecked(True)
elif indicator == "LeftBlinkerOff":
self.leftIndicatorBtn.setChecked(False)
elif indicator == "RightBlinkerOn":
self.rightIndicatorBtn.setChecked(True)
elif indicator == "RightBlinkerOff":
self.rightIndicatorBtn.setChecked(False)
def set_Vehicle_Speed(self, speed):
self.Speed_Gauge.rootObject().setProperty('value', speed)
def set_Vehicle_RPM(self, rpm):
self.RPM_Gauge.rootObject().setProperty('value', rpm)
def update_Speed(self, source, value):
"""
Updates the speed value with the current value from either the gauge or the slider.
Parameters:
value: The speed value to update.
source: A string indicating the source of the value ('gauge' or 'slider').
"""
speed = int(value)
if source == 'gauge':
# Update slider to reflect the gauge's value
self.Speed_slider.blockSignals(True)
self.Speed_slider.setValue(speed)
print(speed)
self.Speed_slider.blockSignals(False)
elif source == 'slider':
# Set animation duration to 0 for immediate update
self.Speed_Gauge.rootObject().setProperty('animationDuration', 0)
# Update gauge to reflect the slider's value
self.Speed_Gauge.blockSignals(True)
self.Speed_Gauge.rootObject().setProperty('value', speed)
self.Speed_Gauge.blockSignals(False)
# Reset animation duration for smooth transitions
self.Speed_Gauge.rootObject().setProperty('animationDuration', 500)
# Send updated speed to kuksa if simulator is not running
if not self.simulator_running:
try:
self.kuksa_client.set(self.IC.speed, str(speed), 'value')
except Exception as e:
logging.error(f"Error sending values to kuksa {e}")
def update_RPM(self, source, value):
"""
Updates the RPM value with the current value from either the gauge or the slider.
Parameters:
value: The RPM value to update.
source: A string indicating the source of the value ('gauge' or 'slider').
"""
rpm = int(value)
if source == 'gauge':
# Update slider to reflect the gauge's value
self.RPM_slider.blockSignals(True)
self.RPM_slider.setValue(int(rpm))
self.RPM_slider.blockSignals(False)
elif source == 'slider':
# Set animation duration to 0 for immediate update
self.RPM_Gauge.rootObject().setProperty('animationDuration', 0)
# Update gauge to reflect the slider's value
self.RPM_Gauge.blockSignals(True)
self.RPM_Gauge.rootObject().setProperty('value', rpm)
self.RPM_Gauge.blockSignals(False)
# Reset animation duration for smooth transitions
self.RPM_Gauge.rootObject().setProperty('animationDuration', 1000)
# Send updated RPM to kuksa if simulator is not running
if not self.simulator_running:
try:
self.kuksa_client.set(self.IC.engineRPM, str(rpm), 'value')
except Exception as e:
logging.error(f"Error sending values to kuksa {e}")
def update_coolantTemp(self, source, value):
"""
Updates the coolant temperature with the current coolant temperature value from the gauge. or the slider.
"""
coolantTemp = int(value)
if source == 'gauge':
# Update slider to reflect the gauge's value
self.coolantTemp_slider.blockSignals(True)
self.coolantTemp_slider.setValue(coolantTemp)
self.coolantTemp_slider.blockSignals(False)
elif source == 'slider':
# Update gauge to reflect the slider's value
self.Coolant_Gauge.rootObject().setProperty('animationDuration', 0)
self.Coolant_Gauge.blockSignals(True)
self.Coolant_Gauge.rootObject().setProperty('value', coolantTemp)
self.Coolant_Gauge.blockSignals(False)
self.Coolant_Gauge.rootObject().setProperty('animationDuration', 1000)
try:
self.kuksa_client.set(
self.IC.coolantTemp, str(coolantTemp), 'value')
except Exception as e:
logging.error(f"Error sending values to kuksa {e}")
def update_fuelLevel(self, source, value):
"""
Updates the fuel level with the current fuel level value from the gauge. or the slider.
"""
fuelLevel = int(value)
if source == 'gauge':
# Update slider to reflect the gauge's value
self.fuelLevel_slider.blockSignals(True)
self.fuelLevel_slider.setValue(fuelLevel)
self.fuelLevel_slider.blockSignals(False)
elif source == 'slider':
# Update gauge to reflect the slider's value
self.Fuel_Gauge.rootObject().setProperty('animationDuration', 0)
self.Fuel_Gauge.blockSignals(True)
self.Fuel_Gauge.rootObject().setProperty('value', fuelLevel)
self.Fuel_Gauge.blockSignals(False)
self.Fuel_Gauge.rootObject().setProperty('animationDuration', 1000)
try:
self.kuksa_client.set(self.IC.fuelLevel, str(fuelLevel))
except Exception as e:
logging.error(f"Error sending values to kuksa {e}")
def hazardBtnClicked(self):
"""
Handles the hazard button click event.
"""
hazardIcon = QPixmap(":/Images/Images/hazard.png")
painter = QPainter(hazardIcon)
painter.setCompositionMode(
QPainter.CompositionMode.CompositionMode_SourceIn)
if self.hazardBtn.isChecked():
color = QtCore.Qt.GlobalColor.yellow
value = "true"
else:
color = QtCore.Qt.GlobalColor.black
value = "false"
painter.fillRect(hazardIcon.rect(), color)
painter.end()
self.hazardBtn.setIcon(QIcon(hazardIcon))
self.leftIndicatorBtn.setChecked(self.hazardBtn.isChecked())
self.rightIndicatorBtn.setChecked(self.hazardBtn.isChecked())
try:
self.kuksa_client.set(self.IC.leftIndicator, value, "targetValue")
self.kuksa_client.set(self.IC.rightIndicator, value, "targetValue")
self.kuksa_client.set(self.IC.hazard, value, "targetValue")
except Exception as e:
logging.error(f"Error sending values to kuksa {e}")
def leftIndicatorBtnClicked(self):
"""
Handles the left indicator button click event.
"""
leftIndicatorIcon = QPixmap(":/Images/Images/left.png")
painter = QPainter(leftIndicatorIcon)
painter.setCompositionMode(
QPainter.CompositionMode.CompositionMode_SourceIn)
if self.leftIndicatorBtn.isChecked():
color = QtCore.Qt.GlobalColor.green
value = "true"
else:
color = QtCore.Qt.GlobalColor.black
value = "false"
painter.fillRect(leftIndicatorIcon.rect(), color)
painter.end()
self.leftIndicatorBtn.setIcon(QIcon(leftIndicatorIcon))
try:
self.kuksa_client.set(self.IC.leftIndicator, value)
except Exception as e:
logging.error(f"Error sending values to kuksa {e}")
def rightIndicatorBtnClicked(self):
"""
Handles the right indicator button click event.
"""
rightIndicatorIcon = QPixmap(":/Images/Images/right.png")
painter = QPainter(rightIndicatorIcon)
painter.setCompositionMode(
QPainter.CompositionMode.CompositionMode_SourceIn)
if self.rightIndicatorBtn.isChecked():
color = QtCore.Qt.GlobalColor.green
value = "true"
else:
color = QtCore.Qt.GlobalColor.black
value = "false"
painter.fillRect(rightIndicatorIcon.rect(), color)
painter.end()
self.rightIndicatorBtn.setIcon(QIcon(rightIndicatorIcon))
try:
self.kuksa_client.set(self.IC.rightIndicator, value)
except Exception as e:
logging.error(f"Error sending values to kuksa {e}")
def accelerationBtnPressed(self):
"""
Handles the acceleration button press event.
"""
self.startTime = QtCore.QTime.currentTime()
self.acceleration_timer = QtCore.QTimer()
self.acceleration_timer.timeout.connect(
lambda: self.updateSpeedAndEngineRpm("Accelerate"))
self.acceleration_timer.start(100)
def accelerationBtnReleased(self):
if self.Speed_slider.value() <= 0:
self.acceleration_timer.stop()
else:
self.acceleration_timer.timeout.connect(
lambda: self.updateSpeedAndEngineRpm("Decelerate"))
self.acceleration_timer.start(100)
def handle_Script_toggle(self):
if config.file_playback_enabled():
if not config.can_interface_enabled():
self.Script_toggle.showError()
self.Script_toggle.setChecked(False)
return
if self.Script_toggle.isChecked():
# self.Playback.start()
print("Playback started")
try:
if self.Playback is None:
self.Playback = CAN_playback()
except Exception as e:
logging.error(f"Error creating playback object {e}")
self.Script_toggle.showError()
return
if not self.Playback.isRunning():
self.Playback.start_playback()
else:
self.Playback_connections()
# hide sliders from the layout, their space will be taken by the playback widgets
self.Speed_slider.hide()
self.RPM_slider.hide()
# set default values for coolent and fuel
self.coolantTemp_slider.setValue(90)
self.fuelLevel_slider.setValue(50)
else:
# self.Playback.stop_and_join()
if self.Playback and self.Playback.isRunning:
self.Playback.stop_playback()
self.Playback.wait()
#self.Playback.finished.connect(self.Playback.deleteLater)
self.Playback = None
print("Playback stopped")
self.Speed_slider.show()
self.RPM_slider.show()
else:
if self.Script_toggle.isChecked():
self.Speed_slider.setEnabled(False)
self.RPM_slider.setEnabled(False)
# self.accelerationBtn.setEnabled(False)
for button in self.driveGroupBtns.buttons():
button.setEnabled(False)
self.set_Vehicle_RPM(1000)
self.set_Vehicle_Speed(0)
self.simulator_running = True
self.simulator.start()
else:
self.simulator.stop()
self.simulator_running = False
self.Speed_slider.setEnabled(True)
self.RPM_slider.setEnabled(True)
# self.accelerationBtn.setEnabled(True)
for button in self.driveGroupBtns.buttons():
button.setEnabled(True)
def updateSpeedAndEngineRpm(self, action, acceleration=(60/5)):
if action == "Accelerate":
pass
elif action == "Decelerate":
acceleration = -acceleration
currentTime = QtCore.QTime.currentTime()
duration = self.startTime.msecsTo(currentTime)
self.current_speed = AccelerationFns.calculate_speed(
duration, acceleration)
self.current_rpm = AccelerationFns.calculate_engine_rpm(
self.current_speed)
if self.current_speed <= 0:
self.current_speed = 0
self.current_rpm = 0
self.acceleration_timer.stop()
if self.current_speed >= 240:
self.current_speed = 240
self.current_rpm = 0
self.acceleration_timer.stop()
self.Speed_slider.setValue(self.current_speed)
self.RPM_slider.setValue(self.current_rpm)
self.update_Speed_gauge()
self.update_RPM_Gauge()
def driveBtnClicked(self):
gear_mapping = {
self.driveBtn: "127",
self.parkBtn: "126",
self.reverseBtn: "-1",
self.neutralBtn: "0"
}
checked_button = self.driveGroupBtns.checkedButton()
if checked_button in gear_mapping:
gear_value = gear_mapping[checked_button]
# self.accelerationBtn.setEnabled(True)
self.Speed_slider.setEnabled(checked_button != self.neutralBtn)
self.RPM_slider.setEnabled(True)
try:
self.kuksa_client.set(self.IC.selectedGear, gear_value)
except Exception as e:
logging.error(f"Error sending values to kuksa {e}")
else:
print("Unknown button checked!")
class AccelerationFns():
def calculate_speed(time, acceleration) -> int:
# acceleration = 60 / 5 # acceleration from 0 to 60 in 5 seconds
time = time / 1000 # convert milliseconds to seconds
speed = acceleration * time # calculate speed
return int(speed)
def calculate_engine_rpm(speed) -> int:
wheel_diameter = 0.48 # in meters
wheel_circumference = wheel_diameter * 3.14 # in meters
# Adjust the gear ratios to match the desired speed and rpm
gear_ratios = [3.36, 2.10, 1.48, 1.16, 0.95, 0.75]
speed = speed * 1000 / 3600 # Convert speed from km/h to m/s
wheel_rps = speed / wheel_circumference
current_gear = None
for i in range(len(gear_ratios)):
if wheel_rps * gear_ratios[i] < 8000 / 60:
current_gear = i + 1
break
# If no gear is found, use the highest gear
if current_gear is None:
current_gear = len(gear_ratios)
engine_rpm = wheel_rps * gear_ratios[current_gear - 1] * 60
return int(engine_rpm)
if __name__ == '__main__':
app = QApplication(sys.argv)
w = ICWidget()
w.show()
sys.exit(app.exec())
|