Skip to content

Commit ee210c1

Browse files
committed
- Added Waypoints to NavigationRoute; - RouteOptionsUpdater refactored.
1 parent 4557c36 commit ee210c1

File tree

21 files changed

+783
-301
lines changed

21 files changed

+783
-301
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Mapbox welcomes participation and contributions from everyone.
99
- Fixed an issue with `NavigationView` that caused road label position to not update in some cases. [#6508](https://github.com/mapbox/mapbox-navigation-android/pull/6508)
1010
- Fixed an issue where the SDK was trying to send telemetry events when telemetry is switched off globally. [#6512](https://github.com/mapbox/mapbox-navigation-android/pull/6512)
1111

12+
:warning: `RouteProgress#remainingWaypoints` defines the amount of all remaining waypoints, include explicit (requested with `RouteOptions#coorinatesList`) and implicit (added on the fly, like Electric Vehicle waypoints - [see](https://docs.mapbox.com/api/navigation/directions/#electric-vehicle-routing)).
13+
1214
## Mapbox Navigation SDK 2.9.0-beta.3 - 21 October, 2022
1315
### Changelog
1416
[Changes between v2.9.0-beta.2 and v2.9.0-beta.3](https://github.com/mapbox/mapbox-navigation-android/compare/v2.9.0-beta.2...v2.9.0-beta.3)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
package com.mapbox.navigation.base.internal.route
2+
3+
import androidx.annotation.IntDef
4+
import com.mapbox.geojson.Point
5+
6+
class Waypoint(
7+
val location: Point,
8+
@Type val type: Int,
9+
val name: String,
10+
val target: Point?,
11+
) {
12+
companion object {
13+
const val REGULAR = 1
14+
const val SILENT = 2
15+
const val EV_CHARGING = 3
16+
}
17+
18+
@Target(
19+
AnnotationTarget.PROPERTY,
20+
AnnotationTarget.VALUE_PARAMETER,
21+
AnnotationTarget.FUNCTION,
22+
AnnotationTarget.TYPE
23+
)
24+
@Retention(AnnotationRetention.BINARY)
25+
@IntDef(REGULAR, SILENT, EV_CHARGING)
26+
annotation class Type
27+
28+
override fun equals(other: Any?): Boolean {
29+
if (this === other) return true
30+
if (javaClass != other?.javaClass) return false
31+
32+
other as Waypoint
33+
34+
if (location != other.location) return false
35+
if (type != other.type) return false
36+
if (name != other.name) return false
37+
if (target != other.target) return false
38+
39+
return true
40+
}
41+
42+
override fun hashCode(): Int {
43+
var result = location.hashCode()
44+
result = 31 * result + type
45+
result = 31 * result + name.hashCode()
46+
result = 31 * result + target.hashCode()
47+
return result
48+
}
49+
50+
override fun toString(): String {
51+
return "Waypoint(location=$location, type=$type, name='$name', target=$target)"
52+
}
53+
}

libnavigation-base/src/main/java/com/mapbox/navigation/base/internal/utils/DirectionsRouteEx.kt

+19
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ package com.mapbox.navigation.base.internal.utils
44

55
import com.mapbox.api.directions.v5.models.DirectionsRoute
66
import com.mapbox.api.directions.v5.models.LegStep
7+
import com.mapbox.navigation.base.internal.route.Waypoint
78
import com.mapbox.navigation.base.utils.ifNonNull
89

910
/**
@@ -36,3 +37,21 @@ private fun DirectionsRoute.stepsNamesAsString(): String? =
3637
?.joinToString { leg ->
3738
leg.steps()?.joinToString { step -> step.name() ?: "" } ?: ""
3839
}
40+
41+
internal fun List<com.mapbox.navigator.Waypoint>.mapToSdk(): List<Waypoint> =
42+
map { nativeWaypoint ->
43+
Waypoint(
44+
location = nativeWaypoint.location,
45+
type = nativeWaypoint.type.mapToSdk(),
46+
name = nativeWaypoint.name,
47+
target = nativeWaypoint.target,
48+
)
49+
}
50+
51+
@Waypoint.Type
52+
private fun com.mapbox.navigator.WaypointType.mapToSdk(): Int =
53+
when (this) {
54+
com.mapbox.navigator.WaypointType.REGULAR -> Waypoint.REGULAR
55+
com.mapbox.navigator.WaypointType.SILENT -> Waypoint.SILENT
56+
com.mapbox.navigator.WaypointType.EV_CHARGING -> Waypoint.EV_CHARGING
57+
}

libnavigation-base/src/main/java/com/mapbox/navigation/base/internal/utils/RouterEx.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package com.mapbox.navigation.base.internal.utils
22

3+
import com.mapbox.navigation.base.internal.route.Waypoint
4+
import com.mapbox.navigation.base.route.NavigationRoute
35
import com.mapbox.navigator.RouterOrigin
46

57
fun RouterOrigin.mapToSdkRouteOrigin(): com.mapbox.navigation.base.route.RouterOrigin =
@@ -15,3 +17,5 @@ fun com.mapbox.navigation.base.route.RouterOrigin.mapToNativeRouteOrigin(): Rout
1517
com.mapbox.navigation.base.route.RouterOrigin.Onboard -> RouterOrigin.ONBOARD
1618
is com.mapbox.navigation.base.route.RouterOrigin.Custom -> RouterOrigin.CUSTOM
1719
}
20+
21+
fun NavigationRoute.internalWaypoints(): List<Waypoint> = waypoints

libnavigation-base/src/main/java/com/mapbox/navigation/base/route/NavigationRoute.kt

+5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ import com.mapbox.navigation.base.internal.NativeRouteParserWrapper
1717
import com.mapbox.navigation.base.internal.SDKRouteParser
1818
import com.mapbox.navigation.base.internal.factory.RoadObjectFactory.toUpcomingRoadObjects
1919
import com.mapbox.navigation.base.internal.route.RouteCompatibilityCache
20+
import com.mapbox.navigation.base.internal.route.Waypoint
21+
import com.mapbox.navigation.base.internal.route.toNavigationRoute
2022
import com.mapbox.navigation.base.internal.utils.DirectionsRouteMissingConditionsCheck
23+
import com.mapbox.navigation.base.internal.utils.mapToSdk
2124
import com.mapbox.navigation.base.internal.utils.mapToSdkRouteOrigin
2225
import com.mapbox.navigation.base.trip.model.roadobject.UpcomingRoadObject
2326
import com.mapbox.navigation.utils.internal.ThreadController
@@ -293,6 +296,8 @@ class NavigationRoute internal constructor(
293296
*/
294297
val upcomingRoadObjects = nativeRoute.routeInfo.alerts.toUpcomingRoadObjects()
295298

299+
internal val waypoints: List<Waypoint> by lazy { nativeRoute.waypoints.mapToSdk() }
300+
296301
/**
297302
* Indicates whether some other object is "equal to" this one.
298303
*

libnavigation-base/src/main/java/com/mapbox/navigation/base/trip/model/RouteProgress.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ import com.mapbox.navigation.base.trip.model.roadobject.UpcomingRoadObject
3333
* @param durationRemaining [Double] seconds time remaining until the route destination is reached.
3434
* @param fractionTraveled [Float] fraction traveled along the current route. This value is
3535
* between 0 and 1 and isn't guaranteed to reach 1 before the user reaches the end of the route.
36-
* @param remainingWaypoints [Int] number of waypoints remaining on the current route.
36+
* @param remainingWaypoints [Int] number of waypoints remaining on the current route. The waypoints number can be different
37+
* with number of requested coordinates. For instance, [EV routing](https://docs.mapbox.com/api/navigation/directions/#electric-vehicle-routing)
38+
* is adding additional waypoints, that are not requested explicitly.
3739
* @param upcomingRoadObjects list of upcoming road objects.
3840
* @param stale `true` if there were no location updates for a significant amount which causes
3941
* a lack of confidence in the progress updates being sent.

0 commit comments

Comments
 (0)