Merge branch 'dev_robotaxi-d_250417_8.0.0_routing' into dev_robotaxi-d_250709_8.2.0_advideo

# Conflicts:
#	OCH/charter/passenger/src/main/java/com/mogo/och/charter/passenger/model/MusicModel.kt
#	OCH/common/common/src/main/java/com/mogo/och/common/module/constant/OchCommonConst.kt
This commit is contained in:
yangyakun
2025-07-29 16:43:30 +08:00
145 changed files with 4302 additions and 1389 deletions

View File

@@ -299,6 +299,13 @@ object CallerHmiManager {
hmiProviderApi?.hideTurnLightView()
}
/**
* taxi无人化司机端 是否在执行任务中(无人化模式和算路验证模式 都复用此变量)
*/
fun isShuttleDriverPerformTask(): Boolean {
return hmiProviderApi?.isShuttleDriverPerformTask() ?: false
}
/**
* taxi无人化司机端 是否在执行任务中(无人化模式和算路验证模式 都复用此变量)
*/

View File

@@ -55,4 +55,11 @@ object CallerSopSettingManager: CallerBase<ISopSettingListener>() {
}
}
fun invokeRoutingListener(status: Boolean){
M_LISTENERS.forEach {
val listener = it.value
listener.onRoutingClickEvent(status)
}
}
}