forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPOI.cs
226 lines (191 loc) · 6.62 KB
/
POI.cs
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
using GMap.NET.WindowsForms;
using MissionPlanner.Controls;
using MissionPlanner.Maps;
using System;
using System.Collections.ObjectModel;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace MissionPlanner.Utilities
{
public class POI
{
/// <summary>
/// Store points of interest
/// </summary>
static ObservableCollection<PointLatLngAlt> POIs = new ObservableCollection<PointLatLngAlt>();
private static EventHandler _POIModified;
public static event EventHandler POIModified
{
add
{
_POIModified += value;
try
{
if (File.Exists(filename))
LoadFile(filename);
}
catch
{
}
}
remove { _POIModified -= value; }
}
private static string filename = Settings.GetUserDataDirectory() + "poi.txt";
private static bool loading;
static POI()
{
POIs.CollectionChanged += POIs_CollectionChanged;
}
private static void POIs_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
try
{
if (loading)
return;
SaveFile(filename);
}
catch { }
}
public static void POIAdd(PointLatLngAlt Point, string tag)
{
// local copy
PointLatLngAlt pnt = Point;
pnt.Tag = tag + "\n" + pnt.ToString();
POI.POIs.Add(pnt);
if (_POIModified != null && !loading)
_POIModified(null, null);
}
public static void POIAdd(PointLatLngAlt Point)
{
if (Point == null)
return;
PointLatLngAlt pnt = Point;
string output = "";
if (DialogResult.OK != InputBox.Show("POI", "Enter ID", ref output))
return;
POIAdd(Point, output);
}
public static void POIDelete(GMapMarkerPOI Point)
{
if (Point == null)
return;
for (int a = 0; a < POI.POIs.Count; a++)
{
if (POI.POIs[a].Point() == Point.Position)
{
POI.POIs.RemoveAt(a);
if (_POIModified != null)
_POIModified(null, null);
return;
}
}
}
public static void POIEdit(GMapMarkerPOI Point)
{
if (Point == null)
return;
string output = "";
if (DialogResult.OK != InputBox.Show("POI", "Enter ID", ref output))
return;
for (int a = 0; a < POI.POIs.Count; a++)
{
if (POI.POIs[a].Point() == Point.Position)
{
POI.POIs[a].Tag = output + "\n" + Point.Position.ToString();
if (_POIModified != null)
_POIModified(null, null);
return;
}
}
}
public static void POIMove(GMapMarkerPOI Point)
{
for (int a = 0; a < POI.POIs.Count; a++)
{
if (POIs[a].Tag == Point.ToolTipText)
{
POIs[a].Lat = Point.Position.Lat;
POIs[a].Lng = Point.Position.Lng;
POIs[a].Tag = POIs[a].Tag.Substring(0, POIs[a].Tag.IndexOf('\n')) + "\n" + Point.Position.ToString();
break;
}
}
if (_POIModified != null)
_POIModified(null, null);
}
public static void POISave()
{
using (SaveFileDialog sfd = new SaveFileDialog())
{
sfd.Filter = "Poi File|*.txt";
if (sfd.ShowDialog() == DialogResult.OK)
{
SaveFile(sfd.FileName);
}
}
}
private static void SaveFile(string fileName)
{
using (Stream file = File.Open(fileName, FileMode.Create))
{
foreach (var item in POI.POIs)
{
string line = item.Lat.ToString(CultureInfo.InvariantCulture) + "\t" +
item.Lng.ToString(CultureInfo.InvariantCulture) + "\t" + item.Tag.Substring(0, item.Tag.IndexOf('\n')) + "\r\n";
byte[] buffer = ASCIIEncoding.ASCII.GetBytes(line);
file.Write(buffer, 0, buffer.Length);
}
}
}
public static void POILoad()
{
using (OpenFileDialog sfd = new OpenFileDialog())
{
sfd.Filter = "Poi File|*.txt";
if (sfd.ShowDialog() == DialogResult.OK)
{
LoadFile(sfd.FileName);
}
}
}
private static void LoadFile(string fileName)
{
loading = true;
using (Stream file = File.Open(fileName, FileMode.Open))
{
using (StreamReader sr = new StreamReader(file))
{
while (!sr.EndOfStream)
{
string[] items = sr.ReadLine().Split('\t');
if (items.Count() < 3)
continue;
POIAdd(new PointLatLngAlt(double.Parse(items[0], CultureInfo.InvariantCulture)
, double.Parse(items[1], CultureInfo.InvariantCulture)), items[2]);
}
}
}
loading = false;
// redraw now
if (_POIModified != null)
_POIModified(null, null);
}
public static void UpdateOverlay(GMap.NET.WindowsForms.GMapOverlay poioverlay)
{
if (poioverlay == null)
return;
poioverlay.Clear();
foreach (var pnt in POIs)
{
poioverlay.Markers.Add(new GMapMarkerPOI(pnt)
{
ToolTipMode = MarkerTooltipMode.OnMouseOver,
ToolTipText = pnt.Tag
});
}
}
}
}