|
| 1 | +package com.mapbox.navigation.base.internal.extensions |
| 2 | + |
| 3 | +import com.mapbox.api.directions.v5.models.DirectionsRoute |
| 4 | +import com.mapbox.api.directions.v5.models.RouteOptions |
| 5 | +import com.mapbox.navigation.base.internal.route.Waypoint |
| 6 | +import com.mapbox.navigation.base.trip.model.RouteProgress |
| 7 | + |
| 8 | +/** |
| 9 | + * Return waypoints that are requested explicitly |
| 10 | + */ |
| 11 | +fun List<Waypoint>.requestedWaypoints(): List<Waypoint> = |
| 12 | + this.filter { |
| 13 | + when (it.type) { |
| 14 | + Waypoint.REGULAR, |
| 15 | + Waypoint.SILENT -> true |
| 16 | + Waypoint.EV_CHARGING -> false |
| 17 | + else -> false |
| 18 | + } |
| 19 | + } |
| 20 | + |
| 21 | +/** |
| 22 | + * Return waypoints that tracking in [RouteProgress.currentLegProgress]#legIndex and based on |
| 23 | + * [DirectionsRoute.legs] index |
| 24 | + */ |
| 25 | +fun List<Waypoint>.legsWaypoints(): List<Waypoint> = |
| 26 | + this.filter { |
| 27 | + when (it.type) { |
| 28 | + Waypoint.REGULAR, |
| 29 | + Waypoint.EV_CHARGING -> true |
| 30 | + Waypoint.SILENT -> false |
| 31 | + else -> false |
| 32 | + } |
| 33 | + } |
| 34 | + |
| 35 | +/** |
| 36 | + * Return the index of **next requested** coordinate. See [RouteOptions.coordinatesList] |
| 37 | + * |
| 38 | + * For instance, EV waypoints are not requested explicitly, so they are not taken into account. |
| 39 | + */ |
| 40 | +fun indexOfNextRequestedCoordinate( |
| 41 | + waypoints: List<Waypoint>, |
| 42 | + remainingWaypoints: Int, |
| 43 | +): Int? { |
| 44 | + if (remainingWaypoints > waypoints.size) { |
| 45 | + return null |
| 46 | + } |
| 47 | + val nextWaypointIndex = waypoints.size - remainingWaypoints |
| 48 | + var requestedIndex = 0 |
| 49 | + waypoints.forEachIndexed { index, waypoint -> |
| 50 | + if (waypoint.type == Waypoint.REGULAR || waypoint.type == Waypoint.SILENT) { |
| 51 | + if (index >= nextWaypointIndex) { |
| 52 | + return requestedIndex |
| 53 | + } |
| 54 | + requestedIndex++ |
| 55 | + } |
| 56 | + } |
| 57 | + return null |
| 58 | +} |
0 commit comments