OpenCPN Partial API docs
Loading...
Searching...
No Matches
track.h
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 * Purpose: Navigation Utility Functions
5 * Authors: David Register
6 * Sean D'Epagnier
7 *
8 ***************************************************************************
9 * Copyright (C) 2016 by David S. Register *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
25 **************************************************************************/
26#ifndef _TRACK_H__
27#define _TRACK_H__
28
29#include <wx/progdlg.h>
30
31#include <deque>
32#include <list>
33#include <vector>
34
35#include "model/datetime.h"
36#include "bbox.h"
37#include "hyperlink.h"
38#include "route.h"
39#include "vector2D.h"
40
41extern std::vector<Track *> g_TrackList;
42
43struct SubTrack {
44 SubTrack() {}
45
46 LLBBox m_box;
47 double m_scale;
48};
49
54public:
55 TrackPoint(double lat, double lon, wxString ts = "");
56 TrackPoint(double lat, double lon, wxDateTime dt);
59
60 wxDateTime GetCreateTime(void);
61 void SetCreateTime(wxDateTime dt);
62 const char *GetTimeString() { return m_stimestring.c_str(); }
63 bool HasValidTimestamp() {
64 if (m_stimestring.size() < strlen("YYYY-MM-DDTHH:MM:SSZ")) return false;
65 return true;
66 };
67
68 double m_lat, m_lon;
69 int m_GPXTrkSegNo;
70
71private:
72 void SetCreateTime(wxString ts);
73 std::string m_stimestring;
74};
75
79class Track {
80 friend class TrackGui;
81
82public:
83 Track();
84 virtual ~Track();
85
86 int GetnPoints(void) { return TrackPoints.size(); }
87
88 void SetVisible(bool visible = true) { m_bVisible = visible; }
89 TrackPoint *GetPoint(int nWhichPoint);
90 TrackPoint *GetLastPoint();
91 void AddPoint(TrackPoint *pNewPoint);
92 void AddPointFinalized(TrackPoint *pNewPoint);
93 TrackPoint *AddNewPoint(vector2D point, wxDateTime time);
94
95 void SetListed(bool listed = true) { m_bListed = listed; }
96 virtual bool IsRunning() { return false; }
97
98 bool IsVisible() { return m_bVisible; }
99 bool IsListed() { return m_bListed; }
100
101 int GetCurrentTrackSeg() { return m_CurrentTrackSeg; }
102 void SetCurrentTrackSeg(int seg) { m_CurrentTrackSeg = seg; }
103
104 double Length();
105 int Simplify(double maxDelta);
106 Route *RouteFromTrack(wxGenericProgressDialog *pprog);
107
108 void ClearHighlights();
109
110 /* Return the name of the track, or the start date/time of the track if no
111 * name has been set. */
112 wxString GetName(bool auto_if_empty = false) const {
113 if (!auto_if_empty || !m_TrackNameString.IsEmpty()) {
114 return m_TrackNameString;
115 } else {
116 return GetDateTime(_("(Unnamed Track)"));
117 }
118 }
119 void SetName(const wxString name) { m_TrackNameString = name; }
120
121 /* Return the start date/time of the track, formatted as ISO 8601 timestamp.
122 * The separator between date and time is a space character. */
123 wxString GetIsoDateTime(
124 const wxString label_for_invalid_date = _("(Unknown Date)")) const;
125
126 /* Return the start date/time of the track, formatted using the global
127 * timezone settings. */
128 wxString GetDateTime(
129 const wxString label_for_invalid_date = _("(Unknown Date)")) const;
130
131 wxString m_GUID;
132 bool m_bIsInLayer;
133 int m_LayerID;
134
135 wxString m_TrackDescription;
136
137 wxString m_TrackStartString;
138 wxString m_TrackEndString;
139
140 int m_width;
141 wxPenStyle m_style;
142 wxString m_Colour;
143
144 bool m_bVisible;
145 bool m_bListed;
146 bool m_btemp;
147
148 int m_CurrentTrackSeg;
149
150 HyperlinkList *m_HyperlinkList;
151 int m_HighlightedTrackPoint;
152
153 void Clone(Track *psourcetrack, int start_nPoint, int end_nPoint,
154 const wxString &suffix);
155
156protected:
157 // void Segments(ChartCanvas *cc, std::list<std::list<wxPoint> > &pointlists,
158 // const LLBBox &box, double scale);
159 void DouglasPeuckerReducer(std::vector<TrackPoint *> &list,
160 std::vector<bool> &keeplist, int from, int to,
161 double delta);
162 double GetXTE(TrackPoint *fm1, TrackPoint *fm2, TrackPoint *to);
163 double GetXTE(double fm1Lat, double fm1Lon, double fm2Lat, double fm2Lon,
164 double toLat, double toLon);
165
166 std::vector<TrackPoint *> TrackPoints;
167 std::vector<std::vector<SubTrack> > SubTracks;
168
169private:
170 // void GetPointLists(ChartCanvas *cc,
171 // std::list<std::list<wxPoint> > &pointlists, ViewPort
172 // &VP, const LLBBox &box);
173 void Finalize();
174 double ComputeScale(int left, int right);
175 void InsertSubTracks(LLBBox &box, int level, int pos);
176 //
177 // void AddPointToList(ChartCanvas *cc,
178 // std::list<std::list<wxPoint> > &pointlists, int n);
179 // void AddPointToLists(ChartCanvas *cc,
180 // std::list<std::list<wxPoint> > &pointlists, int
181 // &last, int n);
182 //
183 // void Assemble(ChartCanvas *cc, std::list<std::list<wxPoint> > &pointlists,
184 // const LLBBox &box, double scale, int &last, int level, int
185 // pos);
186 //
187 wxString m_TrackNameString;
188};
189
190class Route;
194class ActiveTrack : public wxEvtHandler, public Track {
195public:
196 ActiveTrack();
197 ~ActiveTrack();
198
199 void SetPrecision(int precision);
200
201 void Start(void);
202 void Stop(bool do_add_point = false);
203 Track *DoExtendDaily();
204 bool IsRunning() { return m_bRunning; }
205
206 void AdjustCurrentTrackPoint(TrackPoint *prototype);
207
208private:
209 void OnTimerTrack(wxTimerEvent &event);
210 void AddPointNow(bool do_add_point = false);
211
212 bool m_bRunning;
213 wxTimer m_TimerTrack;
214
215 int m_nPrecision;
216 double m_TrackTimerSec;
217 double m_allowedMaxXTE;
218 double m_allowedMaxAngle;
219
220 vector2D m_lastAddedPoint;
221 double m_prev_dist;
222 wxDateTime m_prev_time;
223
224 TrackPoint *m_lastStoredTP;
225 TrackPoint *m_removeTP;
226 TrackPoint *m_prevFixedTP;
227 TrackPoint *m_fixedTP;
228 int m_track_run;
229 double m_minTrackpoint_delta;
230
231 enum eTrackPointState {
232 firstPoint,
233 secondPoint,
234 potentialPoint
235 } trackPointState;
236
237 std::deque<vector2D> skipPoints;
238 std::deque<wxDateTime> skipTimes;
239
240 DECLARE_EVENT_TABLE()
241};
242
243#endif
Represents an active track that is currently being recorded.
Definition track.h:194
Represents a navigational route in the navigation system.
Definition route.h:96
Represents a single point in a track.
Definition track.h:53
Represents a track, which is a series of connected track points.
Definition track.h:79