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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
/*
* Copyright © 2010 Anthony Towns <aj@erisian.com.au>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
package org.altusmetrum.altoslib_6;
import java.io.*;
import java.lang.*;
import java.util.*;
import java.util.concurrent.*;
public class AltosMap implements AltosFlightDisplay, AltosMapTileListener, AltosMapStoreListener {
static final int px_size = 512;
static final int maptype_hybrid = 0;
static final int maptype_roadmap = 1;
static final int maptype_satellite = 2;
static final int maptype_terrain = 3;
static final int maptype_default = maptype_hybrid;
static final int default_zoom = 15;
static final int min_zoom = 3;
static final int max_zoom = 21;
static final String[] maptype_names = {
"hybrid",
"roadmap",
"satellite",
"terrain"
};
public static final String[] maptype_labels = {
"Hybrid",
"Roadmap",
"Satellite",
"Terrain"
};
AltosMapInterface map_interface;
AltosMapCache cache;
LinkedList<AltosMapMark> marks = new LinkedList<AltosMapMark>();
LinkedList<AltosMapZoomListener> zoom_listeners = new LinkedList<AltosMapZoomListener>();
public void add_zoom_listener(AltosMapZoomListener listener) {
if (!zoom_listeners.contains(listener))
zoom_listeners.add(listener);
}
public void remove_zoom_listener(AltosMapZoomListener listener) {
zoom_listeners.remove(listener);
}
boolean have_boost = false;
boolean have_landed = false;
ConcurrentHashMap<AltosPointInt,AltosMapTile> tiles = new ConcurrentHashMap<AltosPointInt,AltosMapTile>();
int load_radius;
AltosLatLon load_centre = null;
AltosMapTileListener load_listener;
int zoom = AltosMap.default_zoom;
int maptype = AltosMap.maptype_default;
long user_input_time;
/* Milliseconds to wait after user action before auto-scrolling
*/
static final long auto_scroll_delay = 20 * 1000;
AltosMapTransform transform;
AltosLatLon centre;
public void reset() {
// nothing
}
/* MapInterface wrapping functions */
public void set_units() {
map_interface.set_units();
}
public void repaint(AltosMapRectangle damage, int pad) {
map_interface.repaint(damage, pad);
}
public void repaint(double x, double y, double w, double h) {
map_interface.repaint(x, y, w, h);
}
public void repaint() {
map_interface.repaint();
}
public int width() {
return map_interface.width();
}
public int height() {
return map_interface.height();
}
public AltosPointInt floor(AltosPointDouble point) {
return new AltosPointInt ((int) Math.floor(point.x / AltosMap.px_size) * AltosMap.px_size,
(int) Math.floor(point.y / AltosMap.px_size) * AltosMap.px_size);
}
public AltosPointInt ceil(AltosPointDouble point) {
return new AltosPointInt ((int) Math.ceil(point.x / AltosMap.px_size) * AltosMap.px_size,
(int) Math.ceil(point.y / AltosMap.px_size) * AltosMap.px_size);
}
public void notice_user_input() {
user_input_time = System.currentTimeMillis();
}
public boolean recent_user_input() {
return (System.currentTimeMillis() - user_input_time) < auto_scroll_delay;
}
public boolean far_from_centre(AltosLatLon lat_lon) {
if (centre == null || transform == null)
return true;
AltosPointDouble screen = transform.screen(lat_lon);
int width = width();
int dx = Math.abs ((int) (double) screen.x - width/2);
if (dx > width / 4)
return true;
int height = height();
int dy = Math.abs ((int) (double) screen.y - height/2);
if (dy > height / 4)
return true;
return false;
}
public void font_size_changed(int font_size) {
map_interface.line.font_size_changed(font_size);
for (AltosMapTile tile : tiles.values())
tile.font_size_changed(font_size);
repaint();
}
public void units_changed(boolean imperial_units) {
}
private void set_transform() {
transform = new AltosMapTransform(width(), height(), zoom, centre);
repaint();
}
public boolean set_zoom(int zoom) {
if (AltosMap.min_zoom <= zoom && zoom <= AltosMap.max_zoom && zoom != this.zoom) {
this.zoom = zoom;
tiles.clear();
set_transform();
for (AltosMapZoomListener listener : zoom_listeners)
listener.zoom_changed(this.zoom);
return true;
}
return false;
}
public int get_zoom() {
return zoom;
}
public boolean set_maptype(int maptype) {
if (maptype != this.maptype) {
this.maptype = maptype;
tiles.clear();
repaint();
return true;
}
return false;
}
public void show(AltosState state, AltosListenerState listener_state) {
/* If insufficient gps data, nothing to update
*/
AltosGPS gps = state.gps;
if (gps == null)
return;
if (!gps.locked && gps.nsat < 4)
return;
AltosMapRectangle damage = map_interface.path.add(gps.lat, gps.lon, state.state);
switch (state.state) {
case AltosLib.ao_flight_boost:
if (!have_boost) {
add_mark(gps.lat, gps.lon, state.state);
have_boost = true;
}
break;
case AltosLib.ao_flight_landed:
if (!have_landed) {
add_mark(gps.lat, gps.lon, state.state);
have_landed = true;
}
break;
}
if (damage != null)
repaint(damage, AltosMapPath.stroke_width);
maybe_centre(gps.lat, gps.lon);
}
public void centre(AltosLatLon lat_lon) {
centre = lat_lon;
set_transform();
}
public void centre(double lat, double lon) {
centre(new AltosLatLon(lat, lon));
}
public void centre(AltosState state) {
if (!state.gps.locked && state.gps.nsat < 4)
return;
centre(state.gps.lat, state.gps.lon);
}
public void maybe_centre(double lat, double lon) {
AltosLatLon lat_lon = new AltosLatLon(lat, lon);
if (centre == null || (!recent_user_input() && far_from_centre(lat_lon)))
centre(lat_lon);
}
public void add_mark(double lat, double lon, int state) {
synchronized(marks) {
marks.add(map_interface.new_mark(lat, lon, state));
}
repaint();
}
public void clear_marks() {
synchronized(marks) {
marks.clear();
}
}
private void make_tiles() {
AltosPointInt upper_left;
AltosPointInt lower_right;
if (load_centre != null) {
AltosPointInt centre = floor(transform.point(load_centre));
upper_left = new AltosPointInt(centre.x - load_radius * AltosMap.px_size,
centre.y - load_radius * AltosMap.px_size);
lower_right = new AltosPointInt(centre.x + load_radius * AltosMap.px_size,
centre.y + load_radius * AltosMap.px_size);
} else {
upper_left = floor(transform.screen_point(new AltosPointDouble(0.0, 0.0)));
lower_right = floor(transform.screen_point(new AltosPointDouble(width(), height())));
}
LinkedList<AltosPointInt> to_remove = new LinkedList<AltosPointInt>();
for (AltosPointInt point : tiles.keySet()) {
if (point.x < upper_left.x || lower_right.x < point.x ||
point.y < upper_left.y || lower_right.y < point.y) {
to_remove.add(point);
}
}
for (AltosPointInt point : to_remove)
tiles.remove(point);
cache.set_cache_size((width() / AltosMap.px_size + 2) * (height() / AltosMap.px_size + 2));
for (int y = (int) upper_left.y; y <= lower_right.y; y += AltosMap.px_size) {
for (int x = (int) upper_left.x; x <= lower_right.x; x += AltosMap.px_size) {
AltosPointInt point = new AltosPointInt(x, y);
if (!tiles.containsKey(point)) {
AltosLatLon ul = transform.lat_lon(new AltosPointDouble(x, y));
AltosLatLon center = transform.lat_lon(new AltosPointDouble(x + AltosMap.px_size/2, y + AltosMap.px_size/2));
AltosMapTile tile = new AltosMapTile(this, ul, center, zoom, maptype,
AltosMap.px_size);
tiles.put(point, tile);
}
}
}
}
public void set_load_params(double lat, double lon, int radius, AltosMapTileListener listener) {
load_centre = new AltosLatLon(lat, lon);
load_radius = radius;
load_listener = listener;
centre(lat, lon);
make_tiles();
for (AltosMapTile tile : tiles.values()) {
tile.add_store_listener(this);
if (tile.store_status() != AltosMapTile.loading)
listener.notify_tile(tile, tile.store_status());
}
repaint();
}
public String getName() {
return "Map";
}
/* AltosMapTileListener methods */
public synchronized void notify_tile(AltosMapTile tile, int status) {
for (AltosPointInt point : tiles.keySet()) {
if (tile == tiles.get(point)) {
AltosPointInt screen = transform.screen(point);
repaint(screen.x, screen.y, AltosMap.px_size, AltosMap.px_size);
}
}
}
/* AltosMapStoreListener methods */
public synchronized void notify_store(AltosMapStore store, int status) {
if (load_listener != null) {
for (AltosMapTile tile : tiles.values())
if (store.equals(tile.store))
load_listener.notify_tile(tile, status);
}
}
public AltosMap(AltosMapInterface map_interface) {
this.map_interface = map_interface;
cache = new AltosMapCache(map_interface);
centre(0, 0);
}
}
|