OpenCPN Partial API docs
Loading...
Searching...
No Matches
navutil.h
1/***************************************************************************
2 *
3 * Project: OpenCPN
4 * Purpose: Navigation Utility Functions
5 * Author: David Register
6 *
7 ***************************************************************************
8 * Copyright (C) 2010 by David S. Register *
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
24 **************************************************************************/
25
26#ifndef __NAVUTIL__
27#define __NAVUTIL__
28
29#include <wx/config.h>
30#include <wx/confbase.h>
31#include <wx/fileconf.h>
32#include <wx/sound.h>
33
34#ifdef __WXMSW__
35#include <wx/msw/regconf.h>
36#include <wx/msw/iniconf.h>
37#endif
38
39#include "bbox.h"
40// #include "chcanv.h"
41#include "chartdbs.h"
42// nclude "RoutePoint.h"
43#include "vector2D.h"
44#include "model/select_item.h"
45#include "ocpndc.h"
46#include "model/navutil_base.h"
47
48extern bool LogMessageOnce(const wxString &msg);
49extern double fromUsrDistance(double usr_distance, int unit = -1);
50extern double fromUsrSpeed(double usr_speed, int unit = -1);
51extern double fromUsrWindSpeed(double usr_wspeed, int unit = -1);
52extern double fromUsrTemp(double usr_temp, int unit = -1);
53extern wxString getUsrTempUnit();
54extern wxString formatAngle(double angle);
55
56// User date formats
57#define UTCINPUT 0
58#define LTINPUT 1
59#define LMTINPUT 2
60#define GLOBAL_SETTINGS_INPUT \
61 3
62
71wxDateTime toUsrDateTime(const wxDateTime ts, const int format,
72 const double lon = INFINITY - INFINITY);
81wxDateTime fromUsrDateTime(const wxDateTime ts, const int format,
82 const double lon = INFINITY - INFINITY);
83
84extern void AlphaBlending(ocpnDC &dc, int x, int y, int size_x, int size_y,
85 float radius, wxColour color,
86 unsigned char transparency);
87
88// Central dimmer...
89void DimeControl(wxWindow *ctrl);
90void DimeControl(wxWindow *ctrl, wxColour col, wxColour col1,
91 wxColour back_color, wxColour text_color, wxColour uitext,
92 wxColour udkrd, wxColour gridline);
93wxColor GetDimedColor(const wxColor &c);
94
95class Route;
96class NavObjectCollection;
97class wxGenericProgressDialog;
98class ocpnDC;
100class NavObjectChanges;
101class TrackPoint;
102class RouteList;
103class canvasConfig;
104class RoutePointList;
105class RoutePoint;
106class Track;
107
108//----------------------------------------------------------------------------
109// Static XML Helpers
110//----------------------------------------------------------------------------
111
112// RoutePoint *LoadGPXWaypoint (GpxWptElement *wptnode, wxString
113// def_symbol_name, bool b_fullviz = false ); Route *LoadGPXRoute (GpxRteElement
114// *rtenode, int routenum, bool b_fullviz = false ); Route *LoadGPXTrack
115// (GpxTrkElement *trknode, bool b_fullviz = false ); void GPXLoadTrack (
116// GpxTrkElement *trknode, bool b_fullviz = false ); void GPXLoadRoute (
117// GpxRteElement *rtenode, int routenum, bool b_fullviz = false ); void
118// InsertRoute(Route *pTentRoute, int routenum); void UpdateRoute(Route
119// *pTentRoute);
120
121// GpxWptElement *CreateGPXWpt ( RoutePoint *pr, char * waypoint_type, bool
122// b_props_explicit = false, bool b_props_minimal = false ); GpxRteElement
123// *CreateGPXRte ( Route *pRoute ); GpxTrkElement *CreateGPXTrk ( Route *pRoute
124// );
125
126bool WptIsInRouteList(RoutePoint *pr);
127RoutePoint *WaypointExists(const wxString &name, double lat, double lon);
128RoutePoint *WaypointExists(const wxString &guid);
129Route *RouteExists(const wxString &guid);
130Route *RouteExists(Route *pTentRoute);
131Track *TrackExists(const wxString &guid);
132
133void ExportGPX(wxWindow *parent, bool bviz_only = false, bool blayer = false);
134void UI_ImportGPX(wxWindow *parent, bool islayer = false,
135 wxString dirpath = _T(""), bool isdirectory = true,
136 bool isPersistent = false);
137
138bool ExportGPXRoutes(wxWindow *parent, RouteList *pRoutes,
139 const wxString suggestedName = _T("routes"));
140bool ExportGPXTracks(wxWindow *parent, std::vector<Track *> *pRoutes,
141 const wxString suggestedName = _T("tracks"));
142bool ExportGPXWaypoints(wxWindow *parent, RoutePointList *pRoutePoints,
143 const wxString suggestedName = _T("waypoints"));
144
146public:
148 static double ui_to_config(int slider_pos) {
149 return (2.0 / 100) * static_cast<double>(slider_pos) + 1.02;
150 }
151
153 static int config_to_ui(double value) {
154 return std::round((100.0 * (static_cast<double>(value) - 1.02)) / 2.0);
155 }
156};
157
158//----------------------------------------------------------------------------
159// Config
160//----------------------------------------------------------------------------
161class MyConfig : public wxFileConfig {
162public:
163 MyConfig(const wxString &LocalFileName);
164 ~MyConfig();
165
166 int LoadMyConfig();
167 void LoadS57Config();
168 wxString FindNewestUsableBackup() const;
169 void LoadNavObjects();
170 virtual void AddNewRoute(Route *pr);
171 virtual void UpdateRoute(Route *pr);
172 virtual void DeleteConfigRoute(Route *pr);
173
174 virtual void AddNewTrack(Track *pt);
175 virtual void UpdateTrack(Track *pt);
176 virtual void DeleteConfigTrack(Track *pt);
177
178 virtual void AddNewWayPoint(RoutePoint *pWP, int ConfigRouteNum = -1);
179 virtual void UpdateWayPoint(RoutePoint *pWP);
180 virtual void DeleteWayPoint(RoutePoint *pWP);
181 virtual void AddNewTrackPoint(TrackPoint *pWP, const wxString &parent_GUID);
182
183 virtual void CreateConfigGroups(ChartGroupArray *pGroupArray);
184 virtual void DestroyConfigGroups(void);
185 virtual void LoadConfigGroups(ChartGroupArray *pGroupArray);
186
187 virtual void LoadCanvasConfigs(bool bApplyAsTemplate = false);
188 virtual void LoadConfigCanvas(canvasConfig *cConfig, bool bApplyAsTemplate);
189
190 virtual void SaveCanvasConfigs();
191 virtual void SaveConfigCanvas(canvasConfig *cc);
192
193 virtual bool UpdateChartDirs(ArrayOfCDI &dirarray);
194 virtual bool LoadChartDirArray(ArrayOfCDI &ChartDirArray);
195 virtual void UpdateSettings();
196 virtual void UpdateNavObj(bool bRecreate = false);
197 virtual void UpdateNavObjOnly();
198 virtual bool IsChangesFileDirty();
199
200 bool LoadLayers(wxString &path);
201 int LoadMyConfigRaw(bool bAsTemplate = false);
202
203 void CreateRotatingNavObjBackup();
204
205 wxString m_sNavObjSetFile;
206 wxString m_sNavObjSetChangesFile;
207
208 NavObjectChanges *m_pNavObjectChangesSet;
209 NavObjectCollection1 *m_pNavObjectInputSet;
210};
211
212void SwitchInlandEcdisMode(bool Switch);
213
214#endif
static int config_to_ui(double value)
Convert configuration 1.02..3.0 value to slider scale 1..100.
Definition navutil.h:153
static double ui_to_config(int slider_pos)
Convert a slider scale 1-100 value to configuration value 1.02..3.0.
Definition navutil.h:148
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
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
Encapsulates persistent canvas configuration.
Device context class that can use either wxDC or OpenGL for drawing.
Definition ocpndc.h:64