f9fcc7adab
date: 2026-06-28T09:48:35 master commit: da6313dbe95b3f24bb5d8018b0e5f950f5823ca7
136 lines
5.3 KiB
Python
136 lines
5.3 KiB
Python
"""
|
|
Copyright (c) 2021-, Haibin Wen, sunnypilot, and a number of other contributors.
|
|
|
|
This file is part of sunnypilot and is licensed under the MIT License.
|
|
See the LICENSE.md file in the root directory for more details.
|
|
"""
|
|
|
|
from cereal import log, custom
|
|
from openpilot.selfdrive.selfdrived.events import ET
|
|
from openpilot.selfdrive.selfdrived.state import SOFT_DISABLE_TIME
|
|
from openpilot.common.realtime import DT_CTRL
|
|
|
|
State = custom.ModularAssistiveDrivingSystem.ModularAssistiveDrivingSystemState
|
|
EventName = log.OnroadEvent.EventName
|
|
EventNameSP = custom.OnroadEventSP.EventName
|
|
|
|
ACTIVE_STATES = (State.enabled, State.softDisabling, State.overriding)
|
|
ENABLED_STATES = (State.paused, *ACTIVE_STATES)
|
|
|
|
GEARS_ALLOW_PAUSED_SILENT = [EventNameSP.silentWrongGear, EventNameSP.silentReverseGear, EventNameSP.silentBrakeHold,
|
|
EventNameSP.silentDoorOpen, EventNameSP.silentSeatbeltNotLatched, EventNameSP.silentParkBrake]
|
|
GEARS_ALLOW_PAUSED = [EventName.wrongGear, EventName.reverseGear, EventName.brakeHold,
|
|
EventName.doorOpen, EventName.seatbeltNotLatched, EventName.parkBrake]
|
|
|
|
|
|
class StateMachine:
|
|
def __init__(self, mads):
|
|
self.selfdrive = mads.selfdrive
|
|
self.ss_state_machine = mads.selfdrive.state_machine
|
|
self._events = mads.selfdrive.events
|
|
self._events_sp = mads.selfdrive.events_sp
|
|
|
|
self.state = State.disabled
|
|
|
|
def add_current_alert_types(self, alert_type):
|
|
if not self.selfdrive.enabled:
|
|
self.ss_state_machine.current_alert_types.append(alert_type)
|
|
|
|
def check_contains(self, event_type: str) -> bool:
|
|
return bool(self._events.contains(event_type) or self._events_sp.contains(event_type))
|
|
|
|
def check_contains_in_list(self) -> bool:
|
|
return bool(self._events.contains_in_list(GEARS_ALLOW_PAUSED) or self._events_sp.contains_in_list(GEARS_ALLOW_PAUSED_SILENT))
|
|
|
|
def update(self):
|
|
# soft disable timer and current alert types are from the state machine of openpilot
|
|
# decrement the soft disable timer at every step, as it's reset on
|
|
# entrance in SOFT_DISABLING state
|
|
|
|
# ENABLED, SOFT DISABLING, PAUSED, OVERRIDING
|
|
if self.state != State.disabled:
|
|
# user and immediate disable always have priority in a non-disabled state
|
|
if self.check_contains(ET.USER_DISABLE):
|
|
if self._events_sp.has(EventNameSP.silentLkasDisable):
|
|
self.state = State.paused
|
|
else:
|
|
self.state = State.disabled
|
|
self.ss_state_machine.current_alert_types.append(ET.USER_DISABLE)
|
|
|
|
elif self.check_contains(ET.IMMEDIATE_DISABLE):
|
|
self.state = State.disabled
|
|
self.add_current_alert_types(ET.IMMEDIATE_DISABLE)
|
|
|
|
else:
|
|
# ENABLED
|
|
if self.state == State.enabled:
|
|
if self.check_contains(ET.SOFT_DISABLE):
|
|
self.state = State.softDisabling
|
|
if not self.selfdrive.enabled:
|
|
self.ss_state_machine.soft_disable_timer = int(SOFT_DISABLE_TIME / DT_CTRL)
|
|
self.ss_state_machine.current_alert_types.append(ET.SOFT_DISABLE)
|
|
|
|
elif self.check_contains(ET.OVERRIDE_LATERAL):
|
|
self.state = State.overriding
|
|
self.add_current_alert_types(ET.OVERRIDE_LATERAL)
|
|
|
|
# SOFT DISABLING
|
|
elif self.state == State.softDisabling:
|
|
if not self.check_contains(ET.SOFT_DISABLE):
|
|
# no more soft disabling condition, so go back to ENABLED
|
|
self.state = State.enabled
|
|
|
|
elif self.ss_state_machine.soft_disable_timer > 0:
|
|
self.add_current_alert_types(ET.SOFT_DISABLE)
|
|
|
|
elif self.ss_state_machine.soft_disable_timer <= 0:
|
|
self.state = State.disabled
|
|
|
|
# PAUSED
|
|
elif self.state == State.paused:
|
|
if self.check_contains(ET.ENABLE):
|
|
if self.check_contains(ET.NO_ENTRY):
|
|
self.add_current_alert_types(ET.NO_ENTRY)
|
|
|
|
else:
|
|
if self.check_contains(ET.OVERRIDE_LATERAL):
|
|
self.state = State.overriding
|
|
else:
|
|
self.state = State.enabled
|
|
self.add_current_alert_types(ET.ENABLE)
|
|
|
|
# OVERRIDING
|
|
elif self.state == State.overriding:
|
|
if self.check_contains(ET.SOFT_DISABLE):
|
|
self.state = State.softDisabling
|
|
if not self.selfdrive.enabled:
|
|
self.ss_state_machine.soft_disable_timer = int(SOFT_DISABLE_TIME / DT_CTRL)
|
|
self.ss_state_machine.current_alert_types.append(ET.SOFT_DISABLE)
|
|
elif not self.check_contains(ET.OVERRIDE_LATERAL):
|
|
self.state = State.enabled
|
|
else:
|
|
self.ss_state_machine.current_alert_types += [ET.OVERRIDE_LATERAL]
|
|
|
|
# DISABLED
|
|
elif self.state == State.disabled:
|
|
if self.check_contains(ET.ENABLE):
|
|
if self.check_contains(ET.NO_ENTRY):
|
|
if self.check_contains_in_list():
|
|
self.state = State.paused
|
|
self.add_current_alert_types(ET.NO_ENTRY)
|
|
|
|
else:
|
|
if self.check_contains(ET.OVERRIDE_LATERAL):
|
|
self.state = State.overriding
|
|
else:
|
|
self.state = State.enabled
|
|
self.add_current_alert_types(ET.ENABLE)
|
|
|
|
# check if MADS is engaged and actuators are enabled
|
|
enabled = self.state in ENABLED_STATES
|
|
active = self.state in ACTIVE_STATES
|
|
if active:
|
|
self.add_current_alert_types(ET.WARNING)
|
|
|
|
return enabled, active
|