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.
188 lines
6.2 KiB
188 lines
6.2 KiB
#include "selfdrive/ui/qt/onroad.h"
|
|
|
|
#include <QDebug>
|
|
|
|
#include "selfdrive/common/timing.h"
|
|
#include "selfdrive/ui/paint.h"
|
|
#include "selfdrive/ui/qt/util.h"
|
|
#include "selfdrive/ui/qt/api.h"
|
|
#ifdef ENABLE_MAPS
|
|
#include "selfdrive/ui/qt/maps/map.h"
|
|
#endif
|
|
|
|
OnroadWindow::OnroadWindow(QWidget *parent) : QWidget(parent) {
|
|
QVBoxLayout *main_layout = new QVBoxLayout(this);
|
|
main_layout->setMargin(bdr_s);
|
|
QStackedLayout *stacked_layout = new QStackedLayout;
|
|
stacked_layout->setStackingMode(QStackedLayout::StackAll);
|
|
main_layout->addLayout(stacked_layout);
|
|
|
|
nvg = new NvgWindow(VISION_STREAM_RGB_BACK, this);
|
|
|
|
QWidget * split_wrapper = new QWidget;
|
|
split = new QHBoxLayout(split_wrapper);
|
|
split->setContentsMargins(0, 0, 0, 0);
|
|
split->setSpacing(0);
|
|
split->addWidget(nvg);
|
|
|
|
stacked_layout->addWidget(split_wrapper);
|
|
|
|
alerts = new OnroadAlerts(this);
|
|
alerts->setAttribute(Qt::WA_TransparentForMouseEvents, true);
|
|
stacked_layout->addWidget(alerts);
|
|
|
|
// setup stacking order
|
|
alerts->raise();
|
|
|
|
setAttribute(Qt::WA_OpaquePaintEvent);
|
|
QObject::connect(this, &OnroadWindow::updateStateSignal, this, &OnroadWindow::updateState);
|
|
QObject::connect(this, &OnroadWindow::offroadTransitionSignal, this, &OnroadWindow::offroadTransition);
|
|
}
|
|
|
|
void OnroadWindow::updateState(const UIState &s) {
|
|
QColor bgColor = bg_colors[s.status];
|
|
Alert alert = Alert::get(*(s.sm), s.scene.started_frame);
|
|
if (s.sm->updated("controlsState") || !alert.equal({})) {
|
|
alerts->updateAlert(alert, bgColor);
|
|
}
|
|
if (alert.type == "controlsUnresponsive") {
|
|
bgColor = bg_colors[STATUS_ALERT];
|
|
}
|
|
if (bg != bgColor) {
|
|
// repaint border
|
|
bg = bgColor;
|
|
update();
|
|
}
|
|
}
|
|
|
|
void OnroadWindow::mousePressEvent(QMouseEvent* e) {
|
|
if (map != nullptr) {
|
|
bool sidebarVisible = geometry().x() > 0;
|
|
map->setVisible(!sidebarVisible && !map->isVisible());
|
|
}
|
|
// propagation event to parent(HomeWindow)
|
|
QWidget::mousePressEvent(e);
|
|
}
|
|
|
|
void OnroadWindow::offroadTransition(bool offroad) {
|
|
#ifdef ENABLE_MAPS
|
|
if (!offroad) {
|
|
if (map == nullptr && (QUIState::ui_state.has_prime || !MAPBOX_TOKEN.isEmpty())) {
|
|
QMapboxGLSettings settings;
|
|
|
|
// Valid for 4 weeks since we can't swap tokens on the fly
|
|
QString token = MAPBOX_TOKEN.isEmpty() ? CommaApi::create_jwt({}, 4 * 7 * 24 * 3600) : MAPBOX_TOKEN;
|
|
|
|
if (!Hardware::PC()) {
|
|
settings.setCacheDatabasePath("/data/mbgl-cache.db");
|
|
}
|
|
settings.setApiBaseUrl(MAPS_HOST);
|
|
settings.setCacheDatabaseMaximumSize(20 * 1024 * 1024);
|
|
settings.setAccessToken(token.trimmed());
|
|
|
|
MapWindow * m = new MapWindow(settings);
|
|
m->setFixedWidth(topWidget(this)->width() / 2);
|
|
QObject::connect(this, &OnroadWindow::offroadTransitionSignal, m, &MapWindow::offroadTransition);
|
|
split->addWidget(m, 0, Qt::AlignRight);
|
|
map = m;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
alerts->updateAlert({}, bg);
|
|
|
|
// update stream type
|
|
bool wide_cam = Hardware::TICI() && Params().getBool("EnableWideCamera");
|
|
nvg->setStreamType(wide_cam ? VISION_STREAM_RGB_WIDE : VISION_STREAM_RGB_BACK);
|
|
}
|
|
|
|
void OnroadWindow::paintEvent(QPaintEvent *event) {
|
|
QPainter p(this);
|
|
p.fillRect(rect(), QColor(bg.red(), bg.green(), bg.blue(), 255));
|
|
}
|
|
|
|
// ***** onroad widgets *****
|
|
|
|
void OnroadAlerts::updateAlert(const Alert &a, const QColor &color) {
|
|
if (!alert.equal(a) || color != bg) {
|
|
alert = a;
|
|
bg = color;
|
|
update();
|
|
}
|
|
}
|
|
|
|
void OnroadAlerts::paintEvent(QPaintEvent *event) {
|
|
if (alert.size == cereal::ControlsState::AlertSize::NONE) {
|
|
return;
|
|
}
|
|
static std::map<cereal::ControlsState::AlertSize, const int> alert_sizes = {
|
|
{cereal::ControlsState::AlertSize::SMALL, 271},
|
|
{cereal::ControlsState::AlertSize::MID, 420},
|
|
{cereal::ControlsState::AlertSize::FULL, height()},
|
|
};
|
|
int h = alert_sizes[alert.size];
|
|
QRect r = QRect(0, height() - h, width(), h);
|
|
|
|
QPainter p(this);
|
|
|
|
// draw background + gradient
|
|
p.setPen(Qt::NoPen);
|
|
p.setCompositionMode(QPainter::CompositionMode_SourceOver);
|
|
|
|
p.setBrush(QBrush(bg));
|
|
p.drawRect(r);
|
|
|
|
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.fillRect(r, g);
|
|
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) {
|
|
configFont(p, "Open Sans", 74, "SemiBold");
|
|
p.drawText(r, Qt::AlignCenter, alert.text1);
|
|
} else if (alert.size == cereal::ControlsState::AlertSize::MID) {
|
|
configFont(p, "Open Sans", 88, "Bold");
|
|
p.drawText(QRect(0, c.y() - 125, width(), 150), Qt::AlignHCenter | Qt::AlignTop, alert.text1);
|
|
configFont(p, "Open Sans", 66, "Regular");
|
|
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;
|
|
configFont(p, "Open Sans", l ? 132 : 177, "Bold");
|
|
p.drawText(QRect(0, r.y() + (l ? 240 : 270), width(), 600), Qt::AlignHCenter | Qt::TextWordWrap, alert.text1);
|
|
configFont(p, "Open Sans", 88, "Regular");
|
|
p.drawText(QRect(0, r.height() - (l ? 361 : 420), width(), 300), Qt::AlignHCenter | Qt::TextWordWrap, alert.text2);
|
|
}
|
|
}
|
|
|
|
void NvgWindow::initializeGL() {
|
|
CameraViewWidget::initializeGL();
|
|
qInfo() << "OpenGL version:" << QString((const char*)glGetString(GL_VERSION));
|
|
qInfo() << "OpenGL vendor:" << QString((const char*)glGetString(GL_VENDOR));
|
|
qInfo() << "OpenGL renderer:" << QString((const char*)glGetString(GL_RENDERER));
|
|
qInfo() << "OpenGL language version:" << QString((const char*)glGetString(GL_SHADING_LANGUAGE_VERSION));
|
|
|
|
ui_nvg_init(&QUIState::ui_state);
|
|
prev_draw_t = millis_since_boot();
|
|
setBackgroundColor(bg_colors[STATUS_DISENGAGED]);
|
|
}
|
|
|
|
void NvgWindow::paintGL() {
|
|
CameraViewWidget::paintGL();
|
|
ui_draw(&QUIState::ui_state, width(), height());
|
|
|
|
double cur_draw_t = millis_since_boot();
|
|
double dt = cur_draw_t - prev_draw_t;
|
|
if (dt > 66) {
|
|
// warn on sub 15fps
|
|
LOGW("slow frame time: %.2f", dt);
|
|
}
|
|
prev_draw_t = cur_draw_t;
|
|
}
|
|
|