OpenCPN Partial API docs
Loading...
Searching...
No Matches
route.h
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 *
5 ***************************************************************************
6 * Copyright (C) 2013 by David S. Register *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
22 **************************************************************************/
23
24#ifndef _ROUTE_H__
25#define _ROUTE_H__
26
27#include <functional>
28
29#include <wx/colour.h>
30#include <wx/datetime.h>
31#include <wx/gdicmn.h>
32#include <wx/object.h>
33#include <wx/pen.h>
34#include <wx/string.h>
35
36#include "model/route_point.h"
37#include "model/routeman.h"
38#include "model/hyperlink.h"
39
40#include "bbox.h"
41
42#define WIDTH_UNDEFINED -1
43
44#define ROUTE_DEFAULT_SPEED 5.0
45#define RTE_TIME_DISP_UTC "UTC"
46#define RTE_TIME_DISP_PC "PC"
47#define RTE_TIME_DISP_LOCAL "LOCAL"
48#define RTE_TIME_DISP_GLOBAL "GLOBAL SETTING"
49#define RTE_UNDEF_DEPARTURE wxInvalidDateTime
50
51class WayPointman; // FIXME (leamas) why? routeman.h defines this.
52
53extern WayPointman *pWayPointMan;
54
55const wxString GpxxColorNames[] = {
56 _T("Black"), _T("DarkRed"), _T("DarkGreen"),
57 _T("DarkYellow"), _T("DarkBlue"), _T("DarkMagenta"),
58 _T("DarkCyan"), _T("LightGray"), _T("DarkGray"),
59 _T("Red"), _T("Green"), _T ("Yellow"),
60 _T("Blue"), _T("Magenta"), _T("Cyan"),
61 _T("White")}; // The last color defined by Garmin is transparent - we
62 // ignore it
63const wxColour GpxxColors[] = {
64 wxColour(0x00, 0x00, 0x00), wxColour(0x60, 0x00, 0x00),
65 wxColour(0x00, 0x60, 0x00), wxColour(0x80, 0x80, 0x00),
66 wxColour(0x00, 0x00, 0x60), wxColour(0x60, 0x00, 0x60),
67 wxColour(0x00, 0x80, 0x80), wxColour(0xC0, 0xC0, 0xC0),
68 wxColour(0x60, 0x60, 0x60), wxColour(0xFF, 0x00, 0x00),
69 wxColour(0x00, 0xFF, 0x00), wxColour(0xF0, 0xF0, 0x00),
70 wxColour(0x00, 0x00, 0xFF), wxColour(0xFE, 0x00, 0xFE),
71 wxColour(0x00, 0xFF, 0xFF), wxColour(0xFF, 0xFF, 0xFF)};
72const int StyleValues[] = {-1, wxSOLID, wxDOT,
73 wxLONG_DASH, wxSHORT_DASH, wxDOT_DASH};
74const int WidthValues[] = {-1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
75
96class Route : public wxObject {
97 friend class RouteGui;
98
99public:
100 Route();
101 ~Route();
102
103 virtual int GetnPoints(void) { return pRoutePointList->GetCount(); }
104 wxString IsPointNameValid(RoutePoint *pRP, const wxString &name) const;
105
106 void AddPoint(RoutePoint *pNewPoint, bool b_rename_in_sequence = true,
107 bool b_deferBoxCalc = false);
108 void InsertPointAndSegment(RoutePoint *pNewPoint, int insert_after,
109 bool b_rename_in_sequence = true,
110 bool b_deferBoxCalc = false);
111 void AddPointAndSegment(RoutePoint *pNewPoint,
112 bool b_rename_in_sequence = true,
113 bool b_deferBoxCalc = false);
114 RoutePoint *GetPoint(int nPoint);
115 RoutePoint *GetPoint(const wxString &guid);
116 int GetIndexOf(RoutePoint *prp);
117 RoutePoint *InsertPointBefore(RoutePoint *pRP, double rlat, double rlon,
118 bool bRenamePoints = false);
119 RoutePoint *InsertPointAfter(RoutePoint *pRP, double rlat, double rlon,
120 bool bRenamePoints = false);
121
122 RoutePoint *GetLastPoint();
123 void DeletePoint(RoutePoint *rp, bool bRenamePoints = false);
124 void RemovePoint(RoutePoint *rp, bool bRenamePoints = false);
125 void DeSelectRoute();
126 void FinalizeForRendering();
127 void UpdateSegmentDistance(RoutePoint *prp0, RoutePoint *prp,
128 double planspeed = -1.0);
129 void UpdateSegmentDistances(double planspeed = -1.0);
130 LLBBox &GetBBox();
131 void SetHiLite(int width) { m_hiliteWidth = width; }
132 void Reverse(bool bRenamePoints = false);
133 void RebuildGUIDList(void);
134 void RenameRoutePoints();
135 void ReloadRoutePointIcons();
136 wxString GetNewMarkSequenced(void);
137 void AssembleRoute();
138 bool IsEqualTo(Route *ptargetroute);
139 void CloneRoute(Route *psourceroute, int start_nPoint, int end_nPoint,
140 const wxString &suffix,
141 const bool duplicate_first_point = false);
142 void ClearHighlights(void);
143
144 void SetVisible(bool visible = true, bool includeWpts = true);
145 void SetListed(bool visible = true);
146 bool IsVisible() { return m_bVisible; }
147 bool IsListed() { return m_bListed; }
148 bool IsActive() { return m_bRtIsActive; }
149 bool IsSelected() { return m_bRtIsSelected; }
150
151 bool ContainsSharedWP();
152 void SetSharedWPViz(bool sharedWPVIZ) { m_bsharedWPViz = sharedWPVIZ; }
153 bool GetSharedWPViz() { return m_bsharedWPViz; }
154
155 double GetRouteArrivalRadius(void) { return m_ArrivalRadius; }
156 void SetRouteArrivalRadius(double radius) { m_ArrivalRadius = radius; }
157 void SetDepartureDate(const wxDateTime &dt) {
158 if (dt.IsValid()) m_PlannedDeparture = dt;
159 }
160
161 wxString GetName() const { return m_RouteNameString; }
162 wxString GetTo() const { return m_RouteEndString; }
163 wxString GetGUID() const { return m_GUID; }
164 void ShowWaypointNames(bool bshow);
165 bool AreWaypointNamesVisible();
166
167 int m_ConfigRouteNum;
168 bool m_bRtIsSelected;
169 bool m_bRtIsActive;
170 RoutePoint *m_pRouteActivePoint;
171 bool m_bIsBeingCreated;
172 bool m_bIsBeingEdited;
173 double m_route_length;
174 double m_route_time;
175 wxString m_RouteNameString;
176 wxString m_RouteStartString;
177 wxString m_RouteEndString;
178 wxString m_RouteDescription;
179 bool m_bDeleteOnArrival;
180 wxString m_GUID;
181 bool m_bIsInLayer;
182 int m_LayerID;
183 int m_width;
184 wxPenStyle m_style;
185 int m_lastMousePointIndex;
186 bool m_NextLegGreatCircle;
187 double m_PlannedSpeed;
188 wxDateTime m_PlannedDeparture;
189 wxString m_TimeDisplayFormat;
190
191 RoutePointList *pRoutePointList;
192
193 wxRect active_pt_rect;
194 wxString m_Colour;
195 bool m_btemp;
196 int m_hiliteWidth;
197 HyperlinkList *m_HyperlinkList;
198
199private:
200 LLBBox RBBox;
201
202 int m_nm_sequence;
203 bool m_bVisible; // should this route be drawn?
204 bool m_bListed;
205 double m_ArrivalRadius;
206 bool m_bsharedWPViz;
207};
208
209WX_DECLARE_LIST(Route, RouteList); // establish class Route as list member
210
211#endif // _ROUTE_H__
Represents a waypoint or mark within the navigation system.
Definition route_point.h:68
Represents a navigational route in the navigation system.
Definition route.h:96