1 | import static org.openstreetmap.josm.tools.I18n.tr;
|
---|
2 |
|
---|
3 | import java.awt.event.ActionEvent;
|
---|
4 | import java.io.BufferedReader;
|
---|
5 | import java.io.File;
|
---|
6 | import java.io.FileOutputStream;
|
---|
7 | import java.io.FileReader;
|
---|
8 | import java.io.IOException;
|
---|
9 | import java.io.PrintWriter;
|
---|
10 | import java.util.HashSet;
|
---|
11 |
|
---|
12 | import javax.swing.JLabel;
|
---|
13 | import javax.swing.JMenuItem;
|
---|
14 | import javax.swing.JOptionPane;
|
---|
15 | import javax.swing.JTextField;
|
---|
16 |
|
---|
17 | import org.openstreetmap.josm.Main;
|
---|
18 | import org.openstreetmap.josm.actions.JosmAction;
|
---|
19 | import org.openstreetmap.josm.data.Bounds;
|
---|
20 | import org.openstreetmap.josm.data.coor.LatLon;
|
---|
21 | import org.openstreetmap.josm.data.osm.DataSet;
|
---|
22 | import org.openstreetmap.josm.data.osm.Node;
|
---|
23 | import org.openstreetmap.josm.data.osm.OsmPrimitive;
|
---|
24 | import org.openstreetmap.josm.data.osm.Way;
|
---|
25 | import org.openstreetmap.josm.data.osm.visitor.CollectBackReferencesVisitor;
|
---|
26 | import org.openstreetmap.josm.gui.MainMenu;
|
---|
27 | import org.openstreetmap.josm.gui.MapFrame;
|
---|
28 | import org.openstreetmap.josm.gui.preferences.PreferenceDialog;
|
---|
29 | import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
|
---|
30 | import org.openstreetmap.josm.io.OsmWriter;
|
---|
31 | import org.openstreetmap.josm.plugins.Plugin;
|
---|
32 | import org.openstreetmap.josm.tools.GBC;
|
---|
33 |
|
---|
34 | public class OsmarenderPlugin extends Plugin {
|
---|
35 |
|
---|
36 | private class Action extends JosmAction {
|
---|
37 |
|
---|
38 | public Action() {
|
---|
39 | super(tr("Osmarender"), null, tr("Osmarender"), null, true);
|
---|
40 | }
|
---|
41 |
|
---|
42 | public void actionPerformed(ActionEvent e) {
|
---|
43 | // get all stuff visible on screen
|
---|
44 | LatLon bottomLeft = Main.map.mapView.getLatLon(0,Main.map.mapView.getHeight());
|
---|
45 | LatLon topRight = Main.map.mapView.getLatLon(Main.map.mapView.getWidth(), 0);
|
---|
46 | Bounds b = new Bounds(bottomLeft, topRight);
|
---|
47 |
|
---|
48 | try {
|
---|
49 | writeGenerated(b);
|
---|
50 | } catch(Exception ex) {
|
---|
51 | //how handle the exception?
|
---|
52 | }
|
---|
53 |
|
---|
54 | CollectBackReferencesVisitor backRefsV = new CollectBackReferencesVisitor(Main.main.getCurrentDataSet(), true);
|
---|
55 | DataSet fromDataSet = new DataSet();
|
---|
56 | for (Node n : Main.main.getCurrentDataSet().nodes) {
|
---|
57 | if (n.isUsable() && n.getCoor().isWithin(b)) {
|
---|
58 | fromDataSet.nodes.add(n);
|
---|
59 | n.visit(backRefsV);
|
---|
60 | }
|
---|
61 | }
|
---|
62 | for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.data)) {
|
---|
63 | if (p instanceof Way) {
|
---|
64 | for (Node n : ((Way) p).getNodes()) {
|
---|
65 | if (n.getCoor().isWithin(b))
|
---|
66 | backRefsV.data.add(n);
|
---|
67 | }
|
---|
68 | }
|
---|
69 | }
|
---|
70 | for (OsmPrimitive p : backRefsV.data)
|
---|
71 | fromDataSet.addPrimitive(p);
|
---|
72 |
|
---|
73 | String firefox = Main.pref.get("osmarender.firefox", "firefox");
|
---|
74 | try {
|
---|
75 | // write to plugin dir
|
---|
76 | OsmWriter w = new OsmWriter(new PrintWriter(new FileOutputStream(getPluginDir()+File.separator+"data.osm")), false, fromDataSet.version);
|
---|
77 | w.header();
|
---|
78 | w.writeDataSources(fromDataSet);
|
---|
79 | w.writeContent(fromDataSet);
|
---|
80 | w.footer();
|
---|
81 | w.close();
|
---|
82 |
|
---|
83 | // get the exec line
|
---|
84 | String exec = firefox;
|
---|
85 | if (System.getProperty("os.name").startsWith("Windows"))
|
---|
86 | exec += " file:///"+getPluginDir().replace('\\','/').replace(" ","%20")+File.separator+"generated.xml\"";
|
---|
87 | else
|
---|
88 | exec += " "+getPluginDir()+File.separator+"generated.xml";
|
---|
89 |
|
---|
90 | // launch up the viewer
|
---|
91 | Runtime.getRuntime().exec(exec);
|
---|
92 | } catch (IOException e1) {
|
---|
93 | JOptionPane.showMessageDialog(Main.parent, tr("Firefox not found. Please set firefox executable in the Map Settings page of the preferences."));
|
---|
94 | }
|
---|
95 | }
|
---|
96 | }
|
---|
97 |
|
---|
98 | private JMenuItem osmarenderMenu;
|
---|
99 |
|
---|
100 | public OsmarenderPlugin() throws IOException {
|
---|
101 | osmarenderMenu = MainMenu.add(Main.main.menu.viewMenu, new Action());
|
---|
102 | osmarenderMenu.setVisible(false);
|
---|
103 |
|
---|
104 | // install the xsl and xml file
|
---|
105 | copy("/osmarender.xsl", "osmarender.xsl");
|
---|
106 | copy("/osm-map-features.xml", "osm-map-features.xml");
|
---|
107 | }
|
---|
108 |
|
---|
109 | @Override
|
---|
110 | public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
|
---|
111 | if (oldFrame != null && newFrame == null) {
|
---|
112 | // disable
|
---|
113 | osmarenderMenu.setVisible(false);
|
---|
114 | } else if (oldFrame == null && newFrame != null) {
|
---|
115 | // enable
|
---|
116 | osmarenderMenu.setVisible(true);
|
---|
117 | }
|
---|
118 | }
|
---|
119 |
|
---|
120 | @Override public PreferenceSetting getPreferenceSetting() {
|
---|
121 | return new PreferenceSetting(){
|
---|
122 | private JTextField firefox = new JTextField(10);
|
---|
123 | public void addGui(PreferenceDialog gui) {
|
---|
124 | gui.map.add(new JLabel(tr("osmarender options")), GBC.eol().insets(0,5,0,0));
|
---|
125 | gui.map.add(new JLabel(tr("Firefox executable")), GBC.std().insets(10,5,5,0));
|
---|
126 | gui.map.add(firefox, GBC.eol().insets(0,5,0,0).fill(GBC.HORIZONTAL));
|
---|
127 | firefox.setText(Main.pref.get("osmarender.firefox"));
|
---|
128 | }
|
---|
129 | public boolean ok() {
|
---|
130 | Main.pref.put("osmarender.firefox", firefox.getText());
|
---|
131 | return false;
|
---|
132 | }
|
---|
133 | };
|
---|
134 | }
|
---|
135 |
|
---|
136 | private void writeGenerated(Bounds b) throws IOException {
|
---|
137 | String bounds_tag = "<bounds " +
|
---|
138 | "minlat=\"" + b.min.lat() + "\" " +
|
---|
139 | "maxlat=\"" + b.max.lat() + "\" " +
|
---|
140 | "minlon=\"" + b.min.lon() + "\" " +
|
---|
141 | "maxlon=\"" + b.max.lon() + "\" " + "/>";
|
---|
142 |
|
---|
143 | BufferedReader reader = new BufferedReader(
|
---|
144 | new FileReader( getPluginDir() + File.separator + "osm-map-features.xml") );
|
---|
145 | PrintWriter writer = new PrintWriter( getPluginDir() + File.separator + "generated.xml");
|
---|
146 |
|
---|
147 | // osm-map-fetaures.xml contain two placemark
|
---|
148 | // (bounds_mkr1 and bounds_mkr2). We write the bounds tag
|
---|
149 | // between the two
|
---|
150 | String str = null;
|
---|
151 | while( (str = reader.readLine()) != null ) {
|
---|
152 | if(str.contains("<!--bounds_mkr1-->")) {
|
---|
153 | writer.println(str);
|
---|
154 | writer.println(" " + bounds_tag);
|
---|
155 | while(!str.contains("<!--bounds_mkr2-->")) {
|
---|
156 | str = reader.readLine();
|
---|
157 | }
|
---|
158 | writer.println(str);
|
---|
159 | } else {
|
---|
160 | writer.println(str);
|
---|
161 | }
|
---|
162 | }
|
---|
163 |
|
---|
164 | writer.close();
|
---|
165 | }
|
---|
166 | }
|
---|