Update: 2026-07-10 19:42:49
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
import UIKit
|
||||
import Flutter
|
||||
import FirebaseCore
|
||||
import CarPlay
|
||||
|
||||
import CoreLocation
|
||||
|
||||
@@ -29,7 +28,6 @@ import CoreLocation
|
||||
|
||||
// تهيئة قنوات الاتصال مع Flutter
|
||||
setupMethodChannel()
|
||||
setupCarNavigationChannel()
|
||||
|
||||
// ضبط مدير الموقع لمتابعة تغييرات الأذونات
|
||||
locationManager.delegate = self
|
||||
@@ -38,33 +36,7 @@ import CoreLocation
|
||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||||
}
|
||||
|
||||
// MARK: - CarPlay Connection (Non-Scene API)
|
||||
|
||||
override func application(
|
||||
_ application: UIApplication,
|
||||
didConnectCarInterfaceController interfaceController: CPInterfaceController,
|
||||
to window: CPWindow
|
||||
) {
|
||||
let sceneDelegate = CarPlaySceneDelegate()
|
||||
sceneDelegate.interfaceController = interfaceController
|
||||
|
||||
let mapTemplate = CPMapTemplate()
|
||||
sceneDelegate.mapTemplate = mapTemplate
|
||||
mapTemplate.guidanceBackgroundStyle = .light
|
||||
|
||||
interfaceController.setRootTemplate(mapTemplate, animated: true)
|
||||
|
||||
CarPlayState.shared.sceneDelegate = sceneDelegate
|
||||
}
|
||||
|
||||
override func application(
|
||||
_ application: UIApplication,
|
||||
didDisconnectCarInterfaceController interfaceController: CPInterfaceController,
|
||||
from window: CPWindow
|
||||
) {
|
||||
CarPlayState.shared.sceneDelegate?.stopNavigation()
|
||||
CarPlayState.shared.sceneDelegate = nil
|
||||
}
|
||||
|
||||
// MARK: - تهيئة القناة بين Swift و Flutter
|
||||
func setupMethodChannel() {
|
||||
@@ -84,95 +56,6 @@ import CoreLocation
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - Car Navigation Method Channel
|
||||
|
||||
func setupCarNavigationChannel() {
|
||||
guard let controller = window?.rootViewController as? FlutterViewController else {
|
||||
return
|
||||
}
|
||||
|
||||
let channel = FlutterMethodChannel(
|
||||
name: "com.siro.siro_driver/car_navigation",
|
||||
binaryMessenger: controller.binaryMessenger
|
||||
)
|
||||
channel.setMethodCallHandler { [weak self] call, result in
|
||||
guard let self = self else { return }
|
||||
switch call.method {
|
||||
case "updateNavState":
|
||||
let lat = (call.arguments as? [String: Any])?["lat"] as? Double ?? 0
|
||||
let lng = (call.arguments as? [String: Any])?["lng"] as? Double ?? 0
|
||||
let bearing = (call.arguments as? [String: Any])?["bearing"] as? Double ?? 0
|
||||
let speed = (call.arguments as? [String: Any])?["speed"] as? Double ?? 0
|
||||
let instruction = (call.arguments as? [String: Any])?["instruction"] as? String ?? ""
|
||||
let distanceToStep = (call.arguments as? [String: Any])?["distanceToStep"] as? Double ?? 0
|
||||
let eta = (call.arguments as? [String: Any])?["eta"] as? Double ?? 0
|
||||
let maneuver = (call.arguments as? [String: Any])?["maneuver"] as? Int ?? 0
|
||||
let isNavigating = (call.arguments as? [String: Any])?["isNavigating"] as? Bool ?? false
|
||||
|
||||
DispatchQueue.main.async {
|
||||
guard let delegate = CarPlayState.shared.sceneDelegate else { return }
|
||||
if isNavigating {
|
||||
if delegate.navigationSession == nil {
|
||||
delegate.startNavigation(
|
||||
instruction: instruction,
|
||||
distance: distanceToStep,
|
||||
eta: eta,
|
||||
maneuverType: maneuver
|
||||
)
|
||||
} else {
|
||||
delegate.updateManeuver(
|
||||
instruction: instruction,
|
||||
distance: distanceToStep,
|
||||
maneuverType: maneuver
|
||||
)
|
||||
delegate.updateArrivalEstimates(eta: eta)
|
||||
}
|
||||
delegate.updateLocation(lat: lat, lng: lng, bearing: bearing)
|
||||
} else {
|
||||
delegate.stopNavigation()
|
||||
}
|
||||
}
|
||||
result(true)
|
||||
|
||||
case "updateLocation":
|
||||
let lat = (call.arguments as? [String: Any])?["lat"] as? Double ?? 0
|
||||
let lng = (call.arguments as? [String: Any])?["lng"] as? Double ?? 0
|
||||
let bearing = (call.arguments as? [String: Any])?["bearing"] as? Double ?? 0
|
||||
|
||||
DispatchQueue.main.async {
|
||||
CarPlayState.shared.sceneDelegate?.updateLocation(
|
||||
lat: lat,
|
||||
lng: lng,
|
||||
bearing: bearing
|
||||
)
|
||||
}
|
||||
result(true)
|
||||
|
||||
case "updateInstruction":
|
||||
let instruction = (call.arguments as? [String: Any])?["instruction"] as? String ?? ""
|
||||
let maneuver = (call.arguments as? [String: Any])?["maneuver"] as? Int ?? 0
|
||||
let distanceToStep = (call.arguments as? [String: Any])?["distanceToStep"] as? Double ?? 0
|
||||
|
||||
DispatchQueue.main.async {
|
||||
CarPlayState.shared.sceneDelegate?.updateManeuver(
|
||||
instruction: instruction,
|
||||
distance: distanceToStep,
|
||||
maneuverType: maneuver
|
||||
)
|
||||
}
|
||||
result(true)
|
||||
|
||||
case "stopNavigation":
|
||||
DispatchQueue.main.async {
|
||||
CarPlayState.shared.sceneDelegate?.stopNavigation()
|
||||
}
|
||||
result(true)
|
||||
|
||||
default:
|
||||
result(FlutterMethodNotImplemented)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - عرض تنبيه عند اكتشاف جهاز مخترق
|
||||
func showSecurityAlert() {
|
||||
|
||||
@@ -4,7 +4,5 @@
|
||||
<dict>
|
||||
<key>aps-environment</key>
|
||||
<string>development</string>
|
||||
<key>com.apple.developer.carplay-driving-task</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
|
||||
Reference in New Issue
Block a user