blob: 4aeba338cdcbad495ac1cb84c32c003181c301b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
package cgeo.geocaching.sorting;
import cgeo.geocaching.cgCache;
import cgeo.geocaching.geopoint.Geopoint;
/**
* sorts caches by distance to given position
*
*/
public class DistanceComparator extends AbstractCacheComparator {
private final Geopoint coords;
public DistanceComparator(final Geopoint coords) {
this.coords = coords;
}
@Override
protected boolean canCompare(cgCache cache1, cgCache cache2) {
return true;
}
@Override
protected int compareCaches(final cgCache cache1, final cgCache cache2) {
if ((cache1.getCoords() == null || cache2.getCoords() == null)
&& cache1.getDistance() != null && cache2.getDistance() != null) {
return Double.compare(cache1.getDistance(), cache2.getDistance());
} else {
if (cache1.getCoords() == null) {
return 1;
}
if (cache2.getCoords() == null) {
return -1;
}
return Float.compare(coords.distanceTo(cache1.getCoords()),
coords.distanceTo(cache2.getCoords()));
}
}
}
|