Fix critical bug with roundabout
This commit is contained in:
parent
027d49ae24
commit
ce564e82cf
1 changed files with 17 additions and 10 deletions
|
@ -300,7 +300,7 @@ public class RoutingContext {
|
|||
for (RouteDataObject ro : routes) {
|
||||
for (int i = 0; i < ro.pointsX.length; i++) {
|
||||
if (ro.getPoint31XTile(i) == x31 && ro.getPoint31YTile(i) == y31) {
|
||||
excludeDuplications.put(ro.id, ro);
|
||||
excludeDuplications.put(calcRouteId(ro, i), ro);
|
||||
RouteSegment segment = new RouteSegment(ro, i);
|
||||
segment.next = original;
|
||||
original = segment;
|
||||
|
@ -561,6 +561,10 @@ public class RoutingContext {
|
|||
}
|
||||
|
||||
|
||||
private static long calcRouteId(RouteDataObject o, int ind) {
|
||||
return (o.getId() << 10) + ind;
|
||||
}
|
||||
|
||||
|
||||
public static class RoutingSubregionTile {
|
||||
public final RouteSubregion subregion;
|
||||
|
@ -614,9 +618,9 @@ public class RoutingContext {
|
|||
RouteSegment segment = routes.get(l);
|
||||
while (segment != null) {
|
||||
RouteDataObject ro = segment.road;
|
||||
RouteDataObject toCmp = excludeDuplications.get(ro.id);
|
||||
RouteDataObject toCmp = excludeDuplications.get(calcRouteId(ro, segment.getSegmentStart()));
|
||||
if (toCmp == null || toCmp.getPointsLength() < ro.getPointsLength()) {
|
||||
excludeDuplications.put(ro.id, ro);
|
||||
excludeDuplications.put(calcRouteId(ro, segment.getSegmentStart()), ro);
|
||||
RouteSegment s = new RouteSegment(ro, segment.getSegmentStart());
|
||||
s.next = original;
|
||||
original = s;
|
||||
|
@ -631,18 +635,21 @@ public class RoutingContext {
|
|||
ctx.timeToLoad += (System.nanoTime() - nanoTime);
|
||||
if (res != null) {
|
||||
for (RouteDataObject ro : res) {
|
||||
RouteDataObject toCmp = excludeDuplications.get(ro.id);
|
||||
boolean accept = ro != null && (toCmp == null || toCmp.getPointsLength() < ro.getPointsLength());
|
||||
if (ctx != null && accept) {
|
||||
|
||||
boolean accept = ro != null;
|
||||
if (ctx != null) {
|
||||
accept = ctx.getRouter().acceptLine(ro);
|
||||
}
|
||||
if (accept) {
|
||||
excludeDuplications.put(ro.id, ro);
|
||||
for (int i = 0; i < ro.pointsX.length; i++) {
|
||||
if (ro.getPoint31XTile(i) == x31 && ro.getPoint31YTile(i) == y31) {
|
||||
RouteDataObject toCmp = excludeDuplications.get(calcRouteId(ro, i));
|
||||
if (toCmp == null || toCmp.getPointsLength() < ro.getPointsLength()) {
|
||||
RouteSegment segment = new RouteSegment(ro, i);
|
||||
segment.next = original;
|
||||
original = segment;
|
||||
excludeDuplications.put(calcRouteId(ro, i), ro);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue