blob: fab7bb11e9602de422589c9f7f388872e0b60d5c (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/**
*
*/
package cgeo.geocaching.sorting;
import cgeo.geocaching.DataStore;
import cgeo.geocaching.Geocache;
import cgeo.geocaching.enumerations.LogType;
/**
* sorts caches by popularity ratio (favorites per find in %).
* only caches with 10 finds and more are counted to obtain meaningful statistics
*/
public class PopularityRatioComparator extends AbstractCacheComparator {
@Override
protected boolean canCompare(final Geocache cache1, final Geocache cache2) {
return true;
}
@Override
protected int compareCaches(final Geocache cache1, final Geocache cache2) {
float ratio1 = 0.0f;
float ratio2 = 0.0f;
int finds1 = getFindsCount(cache1);
int finds2 = getFindsCount(cache2);
if (finds1 != 0 && finds1 > 9) {
ratio1 = (((float) cache1.getFavoritePoints()) / ((float) finds1));
}
if (finds2 != 0 && finds2 > 9) {
ratio2 = (((float) cache2.getFavoritePoints()) / ((float) finds2));
}
if ((ratio2 - ratio1) > 0.0f) {
return 1;
} else if ((ratio2 - ratio1) < 0.0f) {
return -1;
}
return 0;
}
private static int getFindsCount(Geocache cache) {
if (cache.getLogCounts().isEmpty()) {
cache.setLogCounts(DataStore.loadLogCounts(cache.getGeocode()));
}
Integer logged = cache.getLogCounts().get(LogType.FOUND_IT);
if (logged != null) {
return logged;
}
return 0;
}
}
|