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

Last change on this file since 17518 was 17518, checked in by stoecker, 15 years ago

updated deprecated

  • 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.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}
Note: See TracBrowser for help on using the repository browser.