summaryrefslogtreecommitdiff
path: root/altoslib/AltosMapTile.java
blob: fdc8ff65995ab0752843e88ad3f58b62afd52049 (plain) (blame)
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
/*
 * 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_10;

import java.io.*;
import java.util.*;

public abstract class AltosMapTile implements AltosFontListener, AltosMapStoreListener {
	LinkedList<AltosMapTileListener>	listeners = new LinkedList<AltosMapTileListener>();
	public AltosLatLon	upper_left, center;
	public int		px_size;
	int		zoom;
	int		maptype;
	int		scale;
	private AltosMapCache	cache;
	public AltosMapStore	store;
	public int	status;

	static public final int	loaded = 0;	/* loaded from file */
	static public final int	fetched = 1;	/* downloaded to file */
	static public final int	fetching = 2;	/* downloading from net */
	static public final int	failed = 3;	/* loading from file failed */
	static public final int	bad_request = 4;/* downloading failed */
	static public final int	forbidden = 5;	/* downloading failed */

	private File map_file() {
		double lat = center.lat;
		double lon = center.lon;
		char chlat = lat < 0 ? 'S' : 'N';
		char chlon = lon < 0 ? 'W' : 'E';

		if (lat < 0) lat = -lat;
		if (lon < 0) lon = -lon;
		String maptype_string = String.format("%s-", AltosMap.maptype_names[maptype]);
		String format_string;
		if (maptype == AltosMap.maptype_hybrid || maptype == AltosMap.maptype_satellite || maptype == AltosMap.maptype_terrain)
			format_string = "jpg";
		else
			format_string = "png";
		return new File(AltosPreferences.mapdir(),
				String.format("map-%c%.6f,%c%.6f-%s%d%s.%s",
					      chlat, lat, chlon, lon, maptype_string, zoom, scale == 1 ? "" : String.format("-%d", scale), format_string));
	}

	private String map_url() {
		String format_string;
		int z = zoom;

		if (maptype == AltosMap.maptype_hybrid || maptype == AltosMap.maptype_satellite || maptype == AltosMap.maptype_terrain)
			format_string = "jpg";
		else
			format_string = "png32";

		for (int s = 1; s < scale; s <<= 1)
			z--;

		if (AltosVersion.has_google_maps_api_key())
			return String.format("http://maps.google.com/maps/api/staticmap?center=%.6f,%.6f&zoom=%d&size=%dx%d&scale=%d&sensor=false&maptype=%s&format=%s&key=%s",
					     center.lat, center.lon, z, px_size/scale, px_size/scale, scale, AltosMap.maptype_names[maptype], format_string, AltosVersion.google_maps_api_key);
		else
			return String.format("http://maps.google.com/maps/api/staticmap?center=%.6f,%.6f&zoom=%d&size=%dx%d&scale=%d&sensor=false&maptype=%s&format=%s",
					     center.lat, center.lon, z, px_size/scale, px_size/scale, AltosMap.maptype_names[maptype], format_string);
	}

	public void font_size_changed(int font_size) {
	}

	private synchronized void notify_listeners(int status) {
		this.status = status;
		for (AltosMapTileListener listener : listeners)
			listener.notify_tile(this, status);
	}

	public void notify_store(AltosMapStore store, int status) {
//		System.out.printf("AltosMapTile.notify_store %d\n", status);
		notify_listeners(status);
	}

	public void notify_image(AltosImage image) {
		if (image == null)
			status = failed;
		else
			status = loaded;
		notify_listeners(status);
	}

	public abstract void paint(AltosMapTransform t);

	public AltosImage get_image() {
		if (cache == null)
			return null;
		return cache.get(this);
	}

	public synchronized void add_listener(AltosMapTileListener listener) {
		if (!listeners.contains(listener))
			listeners.add(listener);
		listener.notify_tile(this, status);
	}

	public synchronized void remove_listener(AltosMapTileListener listener) {
		listeners.remove(listener);
	}

	public AltosMapTile(AltosMapCache cache, AltosLatLon upper_left, AltosLatLon center, int zoom, int maptype, int px_size, int scale) {
		this.cache = cache;
		this.upper_left = upper_left;

		while (center.lon < -180.0)
			center.lon += 360.0;
		while (center.lon > 180.0)
			center.lon -= 360.0;

		this.center = center;
		this.zoom = zoom;
		this.maptype = maptype;
		this.px_size = px_size;
		this.scale = scale;

		store = AltosMapStore.get(map_url(), map_file());
		store.add_listener(this);
	}

	public AltosMapTile(AltosMapCache cache, AltosLatLon upper_left, AltosLatLon center, int zoom, int maptype, int px_size) {
		this(cache, upper_left, center, zoom, maptype, px_size, 1);
	}
}