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.
330 lines
12 KiB
330 lines
12 KiB
import re
|
|
from abc import ABC, abstractmethod
|
|
from collections import namedtuple
|
|
from dataclasses import dataclass, field
|
|
from enum import Enum
|
|
from typing import Dict, List, Optional, Tuple, Union
|
|
|
|
from cereal import car
|
|
from common.conversions import Conversions as CV
|
|
|
|
GOOD_TORQUE_THRESHOLD = 1.0 # m/s^2
|
|
MODEL_YEARS_RE = r"(?<= )((\d{4}-\d{2})|(\d{4}))(,|$)"
|
|
|
|
|
|
class Column(Enum):
|
|
MAKE = "Make"
|
|
MODEL = "Model"
|
|
PACKAGE = "Supported Package"
|
|
LONGITUDINAL = "ACC"
|
|
FSR_LONGITUDINAL = "No ACC accel below"
|
|
FSR_STEERING = "No ALC below"
|
|
STEERING_TORQUE = "Steering Torque"
|
|
AUTO_RESUME = "Resume from stop"
|
|
HARDWARE = "Hardware Needed"
|
|
VIDEO = "Video"
|
|
|
|
|
|
class Star(Enum):
|
|
FULL = "full"
|
|
HALF = "half"
|
|
EMPTY = "empty"
|
|
|
|
|
|
class PartType(Enum):
|
|
connector = "Connector"
|
|
device = "Device"
|
|
cable = "Cable"
|
|
accessory = "Accessory"
|
|
mount = "Mount"
|
|
|
|
|
|
class Part(ABC):
|
|
def __init__(self, name: str):
|
|
self.name = name
|
|
|
|
@property
|
|
@abstractmethod
|
|
def type(self) -> PartType:
|
|
raise NotImplementedError
|
|
|
|
|
|
class Connector(Part):
|
|
@property
|
|
def type(self) -> PartType:
|
|
return PartType.connector
|
|
|
|
|
|
class Accessory(Part):
|
|
@property
|
|
def type(self) -> PartType:
|
|
return PartType.accessory
|
|
|
|
|
|
class Mount(Part):
|
|
@property
|
|
def type(self) -> PartType:
|
|
return PartType.mount
|
|
|
|
|
|
class Cable(Part):
|
|
@property
|
|
def type(self) -> PartType:
|
|
return PartType.cable
|
|
|
|
|
|
class Device(Part):
|
|
@property
|
|
def type(self) -> PartType:
|
|
return PartType.device
|
|
|
|
|
|
class CarPart(Enum):
|
|
nidec = Connector("Honda Nidec connector")
|
|
bosch_a = Connector("Honda Bosch A connector")
|
|
bosch_b = Connector("Honda Bosch B connector")
|
|
toyota = Connector("Toyota connector")
|
|
subaru_a = Connector("Subaru A connector")
|
|
subaru_b = Connector("Subaru B connector")
|
|
fca = Connector("FCA connector")
|
|
ram = Connector("Ram connector")
|
|
vw = Connector("VW connector")
|
|
j533 = Connector("J533 connector")
|
|
hyundai_a = Connector("Hyundai A connector")
|
|
hyundai_b = Connector("Hyundai B connector")
|
|
hyundai_c = Connector("Hyundai C connector")
|
|
hyundai_d = Connector("Hyundai D connector")
|
|
hyundai_e = Connector("Hyundai E connector")
|
|
hyundai_f = Connector("Hyundai F connector")
|
|
hyundai_g = Connector("Hyundai G connector")
|
|
hyundai_h = Connector("Hyundai H connector")
|
|
hyundai_i = Connector("Hyundai I connector")
|
|
hyundai_j = Connector("Hyundai J connector")
|
|
hyundai_k = Connector("Hyundai K connector")
|
|
hyundai_l = Connector("Hyundai L connector")
|
|
hyundai_m = Connector("Hyundai M connector")
|
|
hyundai_n = Connector("Hyundai N connector")
|
|
hyundai_o = Connector("Hyundai O connector")
|
|
hyundai_p = Connector("Hyundai P connector")
|
|
hyundai_q = Connector("Hyundai Q connector")
|
|
custom = Connector("Developer connector")
|
|
obd_ii = Connector("OBD-II connector")
|
|
gm = Connector("GM connector")
|
|
nissan_a = Connector("Nissan A connector")
|
|
nissan_b = Connector("Nissan B connector")
|
|
mazda = Connector("Mazda connector")
|
|
ford_q3 = Connector("Ford Q3 connector")
|
|
ford_q4 = Connector("Ford Q4 connector")
|
|
|
|
comma_3 = Device("comma 3")
|
|
red_panda = Device("red panda")
|
|
|
|
harness_box = Accessory("harness box")
|
|
comma_power_v2 = Accessory("comma power v2")
|
|
|
|
mount = Mount("mount")
|
|
angled_mount = Mount("angled mount")
|
|
|
|
rj45_cable_7ft = Cable("RJ45 cable (7 ft)")
|
|
long_obdc_cable = Cable("long OBD-C cable")
|
|
usb_a_2_a_cable = Cable("USB A-A cable")
|
|
usbc_otg_cable = Cable("USB C OTG cable")
|
|
usbc_coupler = Cable("USB-C coupler")
|
|
obd_c_cable_1_5ft = Cable("OBD-C cable (1.5 ft)")
|
|
right_angle_obd_c_cable_1_5ft = Cable("right angle OBD-C cable (1.5 ft)")
|
|
|
|
|
|
DEFAULT_CAR_PARTS: List[CarPart] = [CarPart.harness_box, CarPart.comma_power_v2, CarPart.rj45_cable_7ft, CarPart.mount, CarPart.right_angle_obd_c_cable_1_5ft]
|
|
|
|
|
|
@dataclass
|
|
class CarParts:
|
|
parts: List[CarPart] = field(default_factory=list)
|
|
|
|
@classmethod
|
|
def common(cls, add: List[CarPart] = None, remove: List[CarPart] = None):
|
|
p = [part for part in (add or []) + DEFAULT_CAR_PARTS if part not in (remove or [])]
|
|
return cls(p)
|
|
|
|
|
|
CarFootnote = namedtuple("CarFootnote", ["text", "column", "docs_only", "shop_footnote"], defaults=(False, False))
|
|
|
|
|
|
class CommonFootnote(Enum):
|
|
EXP_LONG_AVAIL = CarFootnote(
|
|
"Experimental openpilot longitudinal control is available behind a toggle; the toggle is only available in non-release branches such as `devel` or `master-ci`. ",
|
|
Column.LONGITUDINAL, docs_only=True)
|
|
EXP_LONG_DSU = CarFootnote(
|
|
"By default, this car will use the stock Adaptive Cruise Control (ACC) for longitudinal control. If the Driver Support Unit (DSU) is disconnected, openpilot ACC will replace " +
|
|
"stock ACC. <b><i>NOTE: disconnecting the DSU disables Automatic Emergency Braking (AEB).</i></b>",
|
|
Column.LONGITUDINAL)
|
|
|
|
|
|
def get_footnotes(footnotes: List[Enum], column: Column) -> List[Enum]:
|
|
# Returns applicable footnotes given current column
|
|
return [fn for fn in footnotes if fn.value.column == column]
|
|
|
|
|
|
# TODO: store years as a list
|
|
def get_year_list(years):
|
|
years_list = []
|
|
if len(years) == 0:
|
|
return years_list
|
|
|
|
for year in years.split(','):
|
|
year = year.strip()
|
|
if len(year) == 4:
|
|
years_list.append(str(year))
|
|
elif "-" in year and len(year) == 7:
|
|
start, end = year.split("-")
|
|
years_list.extend(map(str, range(int(start), int(f"20{end}") + 1)))
|
|
else:
|
|
raise Exception(f"Malformed year string: {years}")
|
|
return years_list
|
|
|
|
|
|
def split_name(name: str) -> Tuple[str, str, str]:
|
|
make, model = name.split(" ", 1)
|
|
years = ""
|
|
match = re.search(MODEL_YEARS_RE, model)
|
|
if match is not None:
|
|
years = model[match.start():]
|
|
model = model[:match.start() - 1]
|
|
return make, model, years
|
|
|
|
|
|
@dataclass
|
|
class CarInfo:
|
|
# make + model + model years
|
|
name: str
|
|
|
|
# Example for Toyota Corolla MY20
|
|
# requirements: Lane Tracing Assist (LTA) and Dynamic Radar Cruise Control (DRCC)
|
|
# US Market reference: "All", since all Corolla in the US come standard with LTA and DRCC
|
|
|
|
# the simplest description of the requirements for the US market
|
|
package: str
|
|
|
|
# the minimum compatibility requirements for this model, regardless
|
|
# of market. can be a package, trim, or list of features
|
|
requirements: Optional[str] = None
|
|
|
|
video_link: Optional[str] = None
|
|
footnotes: List[Enum] = field(default_factory=list)
|
|
min_steer_speed: Optional[float] = None
|
|
min_enable_speed: Optional[float] = None
|
|
|
|
# all the parts needed for the supported car
|
|
car_parts: CarParts = CarParts()
|
|
|
|
def init(self, CP: car.CarParams, all_footnotes: Dict[Enum, int]):
|
|
self.car_name = CP.carName
|
|
self.car_fingerprint = CP.carFingerprint
|
|
self.make, self.model, self.years = split_name(self.name)
|
|
|
|
# longitudinal column
|
|
op_long = "Stock"
|
|
if CP.openpilotLongitudinalControl and not CP.enableDsu:
|
|
op_long = "openpilot"
|
|
elif CP.experimentalLongitudinalAvailable or CP.enableDsu:
|
|
op_long = "openpilot available"
|
|
if CP.enableDsu:
|
|
self.footnotes.append(CommonFootnote.EXP_LONG_DSU)
|
|
else:
|
|
self.footnotes.append(CommonFootnote.EXP_LONG_AVAIL)
|
|
|
|
# min steer & enable speed columns
|
|
# TODO: set all the min steer speeds in carParams and remove this
|
|
if self.min_steer_speed is not None:
|
|
assert CP.minSteerSpeed == 0, f"{CP.carFingerprint}: Minimum steer speed set in both CarInfo and CarParams"
|
|
else:
|
|
self.min_steer_speed = CP.minSteerSpeed
|
|
|
|
# TODO: set all the min enable speeds in carParams correctly and remove this
|
|
if self.min_enable_speed is None:
|
|
self.min_enable_speed = CP.minEnableSpeed
|
|
|
|
# hardware column
|
|
hardware_col = "None"
|
|
if self.car_parts.parts:
|
|
model_years = self.model + (' ' + self.years if self.years else '')
|
|
buy_link = f'<a href="https://comma.ai/shop/comma-three.html?make={self.make}&model={model_years}">Buy Here</a>'
|
|
parts = '<br>'.join([f"- {self.car_parts.parts.count(part)} {part.value.name}" for part in sorted(set(self.car_parts.parts), key=lambda part: part.name)])
|
|
hardware_col = f'<details><summary>View</summary><sub>{parts}<br>{buy_link}</sub></details>'
|
|
|
|
self.row: Dict[Enum, Union[str, Star]] = {
|
|
Column.MAKE: self.make,
|
|
Column.MODEL: self.model,
|
|
Column.PACKAGE: self.package,
|
|
Column.LONGITUDINAL: op_long,
|
|
Column.FSR_LONGITUDINAL: f"{max(self.min_enable_speed * CV.MS_TO_MPH, 0):.0f} mph",
|
|
Column.FSR_STEERING: f"{max(self.min_steer_speed * CV.MS_TO_MPH, 0):.0f} mph",
|
|
Column.STEERING_TORQUE: Star.EMPTY,
|
|
Column.AUTO_RESUME: Star.FULL if CP.autoResumeSng else Star.EMPTY,
|
|
Column.HARDWARE: hardware_col,
|
|
Column.VIDEO: self.video_link if self.video_link is not None else "", # replaced with an image and link from template in get_column
|
|
}
|
|
|
|
# Set steering torque star from max lateral acceleration
|
|
assert CP.maxLateralAccel > 0.1
|
|
if CP.maxLateralAccel >= GOOD_TORQUE_THRESHOLD:
|
|
self.row[Column.STEERING_TORQUE] = Star.FULL
|
|
|
|
self.all_footnotes = all_footnotes
|
|
self.year_list = get_year_list(self.years)
|
|
self.detail_sentence = self.get_detail_sentence(CP)
|
|
|
|
return self
|
|
|
|
def init_make(self, CP: car.CarParams):
|
|
"""CarInfo subclasses can add make-specific logic for harness selection, footnotes, etc."""
|
|
|
|
def get_detail_sentence(self, CP):
|
|
if not CP.notCar:
|
|
sentence_builder = "openpilot upgrades your <strong>{car_model}</strong> with automated lane centering{alc} and adaptive cruise control{acc}."
|
|
|
|
if self.min_steer_speed > self.min_enable_speed:
|
|
alc = f" <strong>above {self.min_steer_speed * CV.MS_TO_MPH:.0f} mph</strong>," if self.min_steer_speed > 0 else " <strong>at all speeds</strong>,"
|
|
else:
|
|
alc = ""
|
|
|
|
# Exception for cars which do not auto-resume yet
|
|
acc = ""
|
|
if self.min_enable_speed > 0:
|
|
acc = f" <strong>while driving above {self.min_enable_speed * CV.MS_TO_MPH:.0f} mph</strong>"
|
|
elif CP.autoResumeSng:
|
|
acc = " <strong>that automatically resumes from a stop</strong>"
|
|
|
|
if self.row[Column.STEERING_TORQUE] != Star.FULL:
|
|
sentence_builder += " This car may not be able to take tight turns on its own."
|
|
|
|
# experimental mode
|
|
exp_link = "<a href='https://blog.comma.ai/090release/#experimental-mode' target='_blank' class='link-light-new-regular-text'>Experimental mode</a>"
|
|
if CP.openpilotLongitudinalControl or CP.experimentalLongitudinalAvailable:
|
|
sentence_builder += f" Traffic light and stop sign handling is also available in {exp_link}."
|
|
else:
|
|
sentence_builder += f" {exp_link}, with traffic light and stop sign handling, is not currently available for this car, but may be added in a future software update."
|
|
|
|
return sentence_builder.format(car_model=f"{self.make} {self.model}", alc=alc, acc=acc)
|
|
|
|
else:
|
|
if CP.carFingerprint == "COMMA BODY":
|
|
return "The body is a robotics dev kit that can run openpilot. <a href='https://www.commabody.com'>Learn more.</a>"
|
|
else:
|
|
raise Exception(f"This notCar does not have a detail sentence: {CP.carFingerprint}")
|
|
|
|
def get_column(self, column: Column, star_icon: str, video_icon: str, footnote_tag: str) -> str:
|
|
item: Union[str, Star] = self.row[column]
|
|
if isinstance(item, Star):
|
|
item = star_icon.format(item.value)
|
|
elif column == Column.MODEL and len(self.years):
|
|
item += f" {self.years}"
|
|
elif column == Column.VIDEO and len(item) > 0:
|
|
item = video_icon.format(item)
|
|
|
|
footnotes = get_footnotes(self.footnotes, column)
|
|
if len(footnotes):
|
|
sups = sorted([self.all_footnotes[fn] for fn in footnotes])
|
|
item += footnote_tag.format(f'{",".join(map(str, sups))}')
|
|
|
|
return item
|
|
|