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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
package cgeo.geocaching;
import cgeo.geocaching.enumerations.WaypointType;
import cgeo.geocaching.geopoint.Geopoint;
import org.apache.commons.lang3.StringUtils;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.LayerDrawable;
import android.widget.TextView;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Waypoint implements IWaypoint, Comparable<Waypoint> {
public static final String PREFIX_OWN = "OWN";
private static final int ORDER_UNDEFINED = -2;
private int id = -1;
private String geocode = "geocode";
private WaypointType waypointType = WaypointType.WAYPOINT;
private String prefix = "";
private String lookup = "";
private String name = "";
private String latlon = "";
private Geopoint coords = null;
private String note = "";
private int cachedOrder = ORDER_UNDEFINED;
private boolean own = false;
private boolean visited = false;
/**
* require name and type for every waypoint
*
* @param name
* @param type
*/
public Waypoint(final String name, final WaypointType type, final boolean own) {
this.name = name;
this.waypointType = type;
this.own = own;
}
/**
* copy constructor
*
* @param other
*/
public Waypoint(final Waypoint other) {
merge(other);
this.waypointType = other.waypointType;
id = -1;
}
public void setIcon(final Resources res, final TextView nameView) {
Drawable icon;
if (visited) {
LayerDrawable ld = new LayerDrawable(new Drawable[] {
res.getDrawable(waypointType.markerId),
res.getDrawable(R.drawable.tick) });
ld.setLayerInset(0, 0, 0, 10, 10);
ld.setLayerInset(1, 10, 10, 0, 0);
icon = ld;
} else {
icon = res.getDrawable(waypointType.markerId);
}
final Drawable fIcon = icon;
nameView.setCompoundDrawablesWithIntrinsicBounds(fIcon, null, null, null);
}
public void merge(final Waypoint old) {
if (StringUtils.isBlank(prefix)) {
setPrefix(old.prefix);
}
if (StringUtils.isBlank(lookup)) {
lookup = old.lookup;
}
if (StringUtils.isBlank(name)) {
setName(old.name);
}
if (StringUtils.isBlank(latlon) || latlon.startsWith("?")) { // there are waypoints containing "???"
latlon = old.latlon;
}
if (coords == null) {
coords = old.coords;
}
if (StringUtils.isBlank(note)) {
note = old.note;
}
if (note != null && old.note != null) {
if (old.note.length() > note.length()) {
note = old.note;
}
}
if (id < 0) {
id = old.id;
}
visited = old.visited;
}
public static void mergeWayPoints(final List<Waypoint> newPoints, final List<Waypoint> oldPoints, final boolean forceMerge) {
// Build a map of new waypoints for faster subsequent lookups
final Map<String, Waypoint> newPrefixes = new HashMap<String, Waypoint>(newPoints.size());
for (final Waypoint waypoint : newPoints) {
newPrefixes.put(waypoint.getPrefix(), waypoint);
}
// Copy user modified details of the old waypoints over the new ones
for (final Waypoint oldWaypoint : oldPoints) {
final String prefix = oldWaypoint.getPrefix();
if (newPrefixes.containsKey(prefix)) {
newPrefixes.get(prefix).merge(oldWaypoint);
} else if (oldWaypoint.isUserDefined() || forceMerge) {
newPoints.add(oldWaypoint);
}
}
}
public boolean isUserDefined() {
return own || WaypointType.OWN == waypointType;
}
public void setUserDefined() {
own = true;
setPrefix(PREFIX_OWN);
}
private int computeOrder() {
switch (waypointType) {
case PARKING:
return -1;
case TRAILHEAD:
return 1;
case STAGE: // puzzles and stages with same value
return 2;
case PUZZLE:
return 2;
case FINAL:
return 3;
case OWN:
return 4;
default:
return 0;
}
}
private int order() {
if (cachedOrder == ORDER_UNDEFINED) {
cachedOrder = computeOrder();
}
return cachedOrder;
}
@Override
public int compareTo(Waypoint other) {
return order() - other.order();
}
public String getPrefix() {
return prefix;
}
public void setPrefix(String prefix) {
this.prefix = prefix;
cachedOrder = ORDER_UNDEFINED;
}
public String getUrl() {
return "http://www.geocaching.com//seek/cache_details.aspx?wp=" + geocode;
}
@Override
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
@Override
public String getGeocode() {
return geocode;
}
public void setGeocode(String geocode) {
this.geocode = StringUtils.upperCase(geocode);
}
@Override
public WaypointType getWaypointType() {
return waypointType;
}
public String getLookup() {
return lookup;
}
public void setLookup(String lookup) {
this.lookup = lookup;
}
@Override
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getLatlon() {
return latlon;
}
public void setLatlon(String latlon) {
this.latlon = latlon;
}
@Override
public Geopoint getCoords() {
return coords;
}
public void setCoords(Geopoint coords) {
this.coords = coords;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
@Override
public String toString() {
return name + " " + waypointType.getL10n();
}
/**
* Checks whether a given waypoint is a final and has coordinates
*
* @return True - waypoint is final and has coordinates, False - otherwise
*/
public boolean isFinalWithCoords() {
return WaypointType.FINAL == waypointType && null != coords;
}
@Override
public String getCoordType() {
return "waypoint";
}
public void setVisited(boolean visited) {
this.visited = visited;
}
public boolean isVisited() {
return visited;
}
}
|