Files
StarPilot/system/manager/launch_param_migrations.py
T
firestar5683 b8a84d6196 honda
2026-05-04 11:19:20 -05:00

157 lines
4.9 KiB
Python

#!/usr/bin/env python3
from __future__ import annotations
import sys
from pathlib import Path
from typing import Protocol
LONG_PITCH_KEY = "LongPitch"
STEER_KP_KEY = "SteerKP"
STEER_KP_STOCK_KEY = "SteerKPStock"
DEFAULT_STEER_KP = 0.6
LEGACY_STEER_KP = 0.7
QT_STEER_KP_PLACEHOLDER = 1.0
LAUNCH_PARAM_MIGRATION_MARKER = ".starpilot_launch_param_migrations_v2"
BRANCH_DEFAULTS_MIGRATION_MARKER = ".starpilot_branch_defaults_migrations_v1"
ACCELERATION_PROFILE_MIGRATION_MARKER = ".starpilot_acceleration_profile_default_v1"
STANDARD_ACCELERATION_PROFILE = 0
BRANCH_BOOL_DEFAULTS = {
"ConditionalExperimental": True,
"CELead": True,
"CESlowerLead": True,
"CEStoppedLead": False,
"ForceStops": True,
}
BRANCH_FLOAT_DEFAULTS = {
"AggressiveFollow": 1.25,
"AggressiveFollowHigh": 1.0,
"AggressiveJerkAcceleration": 50.0,
"AggressiveJerkDanger": 100.0,
"AggressiveJerkDeceleration": 50.0,
"AggressiveJerkSpeed": 50.0,
"AggressiveJerkSpeedDecrease": 50.0,
"StandardFollow": 1.45,
"StandardFollowHigh": 1.2,
"StandardJerkAcceleration": 100.0,
"StandardJerkDanger": 100.0,
"StandardJerkDeceleration": 100.0,
"StandardJerkSpeed": 100.0,
"StandardJerkSpeedDecrease": 100.0,
"RelaxedFollow": 1.6,
"RelaxedFollowHigh": 1.4,
"RelaxedJerkAcceleration": 100.0,
"RelaxedJerkDanger": 100.0,
"RelaxedJerkDeceleration": 100.0,
"RelaxedJerkSpeed": 100.0,
"RelaxedJerkSpeedDecrease": 100.0,
}
class ParamsLike(Protocol):
def get_param_path(self, key: str = "") -> str: ...
def get_bool(self, key: str) -> bool: ...
def get_int(self, key: str) -> int: ...
def get_float(self, key: str) -> float: ...
def put_bool(self, key: str, value: bool) -> None: ...
def put_int(self, key: str, value: int) -> None: ...
def put_float(self, key: str, value: float) -> None: ...
def _approx_equal(lhs: float, rhs: float, tolerance: float = 1e-6) -> bool:
return abs(lhs - rhs) <= tolerance
def _default_marker_path(params: ParamsLike) -> Path:
return Path(params.get_param_path()) / LAUNCH_PARAM_MIGRATION_MARKER
def _branch_defaults_marker_path(params: ParamsLike) -> Path:
return Path(params.get_param_path()) / BRANCH_DEFAULTS_MIGRATION_MARKER
def _acceleration_profile_marker_path(params: ParamsLike) -> Path:
return Path(params.get_param_path()) / ACCELERATION_PROFILE_MIGRATION_MARKER
def _apply_legacy_launch_param_migrations(params: ParamsLike, marker: Path) -> None:
if marker.exists():
return
marker.parent.mkdir(parents=True, exist_ok=True)
if not params.get_bool(LONG_PITCH_KEY):
params.put_bool(LONG_PITCH_KEY, True)
steer_kp = params.get_float(STEER_KP_KEY)
if _approx_equal(steer_kp, 0.0) or _approx_equal(steer_kp, LEGACY_STEER_KP):
params.put_float(STEER_KP_KEY, DEFAULT_STEER_KP)
steer_kp_stock = params.get_float(STEER_KP_STOCK_KEY)
if (_approx_equal(steer_kp_stock, 0.0) or
_approx_equal(steer_kp_stock, LEGACY_STEER_KP) or
_approx_equal(steer_kp_stock, QT_STEER_KP_PLACEHOLDER)):
params.put_float(STEER_KP_STOCK_KEY, DEFAULT_STEER_KP)
# Initialize UsePrebuilt to True if never explicitly set, so the UI default
# matches the shell script's default of USE_PREBUILT=1.
if not Path(params.get_param_path("UsePrebuilt")).exists():
params.put_bool("UsePrebuilt", True)
marker.touch()
def _apply_branch_default_migration(params: ParamsLike, marker: Path) -> None:
if marker.exists():
return
marker.parent.mkdir(parents=True, exist_ok=True)
for key, value in BRANCH_BOOL_DEFAULTS.items():
params.put_bool(key, value)
for key, value in BRANCH_FLOAT_DEFAULTS.items():
params.put_float(key, value)
marker.touch()
def _apply_acceleration_profile_default_migration(params: ParamsLike, marker: Path) -> None:
if marker.exists():
return
marker.parent.mkdir(parents=True, exist_ok=True)
params.put_int("AccelerationProfile", STANDARD_ACCELERATION_PROFILE)
marker.touch()
def apply_launch_param_migrations(params: ParamsLike, marker_path: Path | None = None,
branch_defaults_marker_path: Path | None = None,
acceleration_profile_marker_path: Path | None = None) -> None:
_apply_legacy_launch_param_migrations(params, marker_path or _default_marker_path(params))
# Keep branch-default rollout on its own marker so older installs that already
# have the legacy marker still receive this one-time param reset.
_apply_branch_default_migration(params, branch_defaults_marker_path or _branch_defaults_marker_path(params))
_apply_acceleration_profile_default_migration(
params, acceleration_profile_marker_path or _acceleration_profile_marker_path(params)
)
def main() -> int:
try:
from openpilot.common.params import Params
apply_launch_param_migrations(Params())
except Exception as exc:
print(f"launch_param_migrations.py failed: {exc}", file=sys.stderr)
return 1
return 0
if __name__ == "__main__":
raise SystemExit(main())