source: osm/applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java@ 17323

Last change on this file since 17323 was 16623, checked in by jttt, 15 years ago

Make it work without Main.ds

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