mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-06 14:16:39 +08:00
Only draw lead car indicators when controlling longitudinal (#1914)
old-commit-hash: 61548f5a483e0fa7fba6f167017c3fbe73e3f684
This commit is contained in:
@@ -368,11 +368,14 @@ static void ui_draw_world(UIState *s) {
|
||||
// Draw lane edges and vision/mpc tracks
|
||||
ui_draw_vision_lanes(s);
|
||||
|
||||
if (scene->lead_data[0].getStatus()) {
|
||||
draw_lead(s, scene->lead_data[0]);
|
||||
}
|
||||
if (scene->lead_data[1].getStatus() && (std::abs(scene->lead_data[0].getDRel() - scene->lead_data[1].getDRel()) > 3.0)) {
|
||||
draw_lead(s, scene->lead_data[1]);
|
||||
// Draw lead indicators if openpilot is handling longitudinal
|
||||
if (s->longitudinal_control) {
|
||||
if (scene->lead_data[0].getStatus()) {
|
||||
draw_lead(s, scene->lead_data[0]);
|
||||
}
|
||||
if (scene->lead_data[1].getStatus() && (std::abs(scene->lead_data[0].getDRel() - scene->lead_data[1].getDRel()) > 3.0)) {
|
||||
draw_lead(s, scene->lead_data[1]);
|
||||
}
|
||||
}
|
||||
nvgRestore(s->vg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user