You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					113 lines
				
				4.2 KiB
			
		
		
			
		
	
	
					113 lines
				
				4.2 KiB
			| 
											2 years ago
										 | #include "selfdrive/ui/qt/onroad/alerts.h"
 | ||
|  | 
 | ||
|  | #include <QPainter>
 | ||
|  | #include <map>
 | ||
|  | 
 | ||
|  | #include "selfdrive/ui/qt/util.h"
 | ||
|  | 
 | ||
|  | void OnroadAlerts::updateState(const UIState &s) {
 | ||
|  |   Alert a = getAlert(*(s.sm), s.scene.started_frame);
 | ||
|  |   if (!alert.equal(a)) {
 | ||
|  |     alert = a;
 | ||
|  |     update();
 | ||
|  |   }
 | ||
|  | }
 | ||
|  | 
 | ||
|  | void OnroadAlerts::clear() {
 | ||
|  |   alert = {};
 | ||
|  |   update();
 | ||
|  | }
 | ||
|  | 
 | ||
|  | OnroadAlerts::Alert OnroadAlerts::getAlert(const SubMaster &sm, uint64_t started_frame) {
 | ||
|  |   const cereal::ControlsState::Reader &cs = sm["controlsState"].getControlsState();
 | ||
|  |   const uint64_t controls_frame = sm.rcv_frame("controlsState");
 | ||
|  | 
 | ||
|  |   Alert a = {};
 | ||
|  |   if (controls_frame >= started_frame) {  // Don't get old alert.
 | ||
|  |     a = {cs.getAlertText1().cStr(), cs.getAlertText2().cStr(),
 | ||
|  |          cs.getAlertType().cStr(), cs.getAlertSize(), cs.getAlertStatus()};
 | ||
|  |   }
 | ||
|  | 
 | ||
|  |   if (!sm.updated("controlsState") && (sm.frame - started_frame) > 5 * UI_FREQ) {
 | ||
|  |     const int CONTROLS_TIMEOUT = 5;
 | ||
|  |     const int controls_missing = (nanos_since_boot() - sm.rcv_time("controlsState")) / 1e9;
 | ||
|  | 
 | ||
|  |     // Handle controls timeout
 | ||
|  |     if (controls_frame < started_frame) {
 | ||
|  |       // car is started, but controlsState hasn't been seen at all
 | ||
|  |       a = {tr("openpilot Unavailable"), tr("Waiting for controls to start"),
 | ||
|  |            "controlsWaiting", cereal::ControlsState::AlertSize::MID,
 | ||
|  |            cereal::ControlsState::AlertStatus::NORMAL};
 | ||
|  |     } else if (controls_missing > CONTROLS_TIMEOUT && !Hardware::PC()) {
 | ||
|  |       // car is started, but controls is lagging or died
 | ||
|  |       if (cs.getEnabled() && (controls_missing - CONTROLS_TIMEOUT) < 10) {
 | ||
|  |         a = {tr("TAKE CONTROL IMMEDIATELY"), tr("Controls Unresponsive"),
 | ||
|  |              "controlsUnresponsive", cereal::ControlsState::AlertSize::FULL,
 | ||
|  |              cereal::ControlsState::AlertStatus::CRITICAL};
 | ||
|  |       } else {
 | ||
|  |         a = {tr("Controls Unresponsive"), tr("Reboot Device"),
 | ||
|  |              "controlsUnresponsivePermanent", cereal::ControlsState::AlertSize::MID,
 | ||
|  |              cereal::ControlsState::AlertStatus::NORMAL};
 | ||
|  |       }
 | ||
|  |     }
 | ||
|  |   }
 | ||
|  |   return a;
 | ||
|  | }
 | ||
|  | 
 | ||
|  | void OnroadAlerts::paintEvent(QPaintEvent *event) {
 | ||
|  |   if (alert.size == cereal::ControlsState::AlertSize::NONE) {
 | ||
|  |     return;
 | ||
|  |   }
 | ||
|  |   static std::map<cereal::ControlsState::AlertSize, const int> alert_heights = {
 | ||
|  |     {cereal::ControlsState::AlertSize::SMALL, 271},
 | ||
|  |     {cereal::ControlsState::AlertSize::MID, 420},
 | ||
|  |     {cereal::ControlsState::AlertSize::FULL, height()},
 | ||
|  |   };
 | ||
|  |   int h = alert_heights[alert.size];
 | ||
|  | 
 | ||
|  |   int margin = 40;
 | ||
|  |   int radius = 30;
 | ||
|  |   if (alert.size == cereal::ControlsState::AlertSize::FULL) {
 | ||
|  |     margin = 0;
 | ||
|  |     radius = 0;
 | ||
|  |   }
 | ||
|  |   QRect r = QRect(0 + margin, height() - h + margin, width() - margin*2, h - margin*2);
 | ||
|  | 
 | ||
|  |   QPainter p(this);
 | ||
|  | 
 | ||
|  |   // draw background + gradient
 | ||
|  |   p.setPen(Qt::NoPen);
 | ||
|  |   p.setCompositionMode(QPainter::CompositionMode_SourceOver);
 | ||
|  |   p.setBrush(QBrush(alert_colors[alert.status]));
 | ||
|  |   p.drawRoundedRect(r, radius, radius);
 | ||
|  | 
 | ||
|  |   QLinearGradient g(0, r.y(), 0, r.bottom());
 | ||
|  |   g.setColorAt(0, QColor::fromRgbF(0, 0, 0, 0.05));
 | ||
|  |   g.setColorAt(1, QColor::fromRgbF(0, 0, 0, 0.35));
 | ||
|  | 
 | ||
|  |   p.setCompositionMode(QPainter::CompositionMode_DestinationOver);
 | ||
|  |   p.setBrush(QBrush(g));
 | ||
|  |   p.drawRoundedRect(r, radius, radius);
 | ||
|  |   p.setCompositionMode(QPainter::CompositionMode_SourceOver);
 | ||
|  | 
 | ||
|  |   // text
 | ||
|  |   const QPoint c = r.center();
 | ||
|  |   p.setPen(QColor(0xff, 0xff, 0xff));
 | ||
|  |   p.setRenderHint(QPainter::TextAntialiasing);
 | ||
|  |   if (alert.size == cereal::ControlsState::AlertSize::SMALL) {
 | ||
|  |     p.setFont(InterFont(74, QFont::DemiBold));
 | ||
|  |     p.drawText(r, Qt::AlignCenter, alert.text1);
 | ||
|  |   } else if (alert.size == cereal::ControlsState::AlertSize::MID) {
 | ||
|  |     p.setFont(InterFont(88, QFont::Bold));
 | ||
|  |     p.drawText(QRect(0, c.y() - 125, width(), 150), Qt::AlignHCenter | Qt::AlignTop, alert.text1);
 | ||
|  |     p.setFont(InterFont(66));
 | ||
|  |     p.drawText(QRect(0, c.y() + 21, width(), 90), Qt::AlignHCenter, alert.text2);
 | ||
|  |   } else if (alert.size == cereal::ControlsState::AlertSize::FULL) {
 | ||
|  |     bool l = alert.text1.length() > 15;
 | ||
|  |     p.setFont(InterFont(l ? 132 : 177, QFont::Bold));
 | ||
|  |     p.drawText(QRect(0, r.y() + (l ? 240 : 270), width(), 600), Qt::AlignHCenter | Qt::TextWordWrap, alert.text1);
 | ||
|  |     p.setFont(InterFont(88));
 | ||
|  |     p.drawText(QRect(0, r.height() - (l ? 361 : 420), width(), 300), Qt::AlignHCenter | Qt::TextWordWrap, alert.text2);
 | ||
|  |   }
 | ||
|  | }
 |