OpenCPN Partial API docs
Loading...
Searching...
No Matches
grib_pi.h
Go to the documentation of this file.
1/***************************************************************************
2 * Copyright (C) 2010 by David S. Register *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
36#ifndef _GRIBPI_H_
37#define _GRIBPI_H_
38
39#include "wx/wxprec.h"
40
41#ifndef WX_PRECOMP
42#include "wx/wx.h"
43#include <wx/glcanvas.h>
44#endif // precompiled headers
45
46#define PLUGIN_VERSION_MAJOR 5
47#define PLUGIN_VERSION_MINOR 0
48
49#define MY_API_VERSION_MAJOR 1
50#define MY_API_VERSION_MINOR 16
51
52#include "ocpn_plugin.h"
53
54#include "wx/jsonreader.h"
55#include "wx/jsonwriter.h"
56
57#include "GribSettingsDialog.h"
58#include "GribOverlayFactory.h"
59#include "GribUIDialog.h"
60
62
63//----------------------------------------------------------------------------------------------------------
64// The PlugIn Class Definition
65//----------------------------------------------------------------------------------------------------------
66
67#define GRIB_TOOL_POSITION -1 // Request default positioning of ToolBar tool
68#define STARTING_STATE_STYLE 9999 // style option undifined
69#define ATTACHED 0 // dialog are attached
70#define SEPARATED 1 // dialog are separated
71#define ATTACHED_HAS_CAPTION 0 // dialog attached has a caption
72#define ATTACHED_NO_CAPTION 1 // dialog attached don't have caption
73#define SEPARATED_HORIZONTAL 2 // dialog separated shown honrizontaly
74#define SEPARATED_VERTICAL 3 // dialog separated shown vaerticaly
75
76enum SettingsDisplay {
77 B_ARROWS,
78 ISO_LINE,
79 ISO_ABBR,
80 ISO_LINE_SHORT,
81 ISO_LINE_VISI,
82 D_ARROWS,
83 OVERLAY,
84 NUMBERS,
85 PARTICLES
86};
87
89public:
90 grib_pi(void *ppimgr);
91 ~grib_pi(void);
92
93 // The required PlugIn Methods
94 int Init(void);
95 bool DeInit(void);
96
101 wxBitmap *GetPlugInBitmap();
102 wxString GetCommonName();
103 wxString GetShortDescription();
104 wxString GetLongDescription();
105
106 // The override PlugIn Methods
107 bool MouseEventHook(wxMouseEvent &event);
108 bool RenderOverlay(wxDC &dc, PlugIn_ViewPort *vp);
109 bool RenderOverlayMultiCanvas(wxDC &dc, PlugIn_ViewPort *vp, int canvasIndex);
110 void SetCursorLatLon(double lat, double lon);
111 void OnContextMenuItemCallback(int id);
112 void SetPluginMessage(wxString &message_id, wxString &message_body);
113 bool RenderGLOverlay(wxGLContext *pcontext, PlugIn_ViewPort *vp);
114 bool RenderGLOverlayMultiCanvas(wxGLContext *pcontext, PlugIn_ViewPort *vp,
115 int canvasIndex);
116 void SendTimelineMessage(wxDateTime time);
117 void SetDefaults(void);
118 int GetToolBarToolCount(void);
119 void ShowPreferencesDialog(wxWindow *parent);
120 void OnToolbarToolCallback(int id);
121 bool QualifyCtrlBarPosition(wxPoint position, wxSize size);
122 void MoveDialog(wxDialog *dialog, wxPoint position);
124
125 // Other public methods
126 void SetCtrlBarXY(wxPoint p) { m_CtrlBarxy = p; }
127 void SetCursorDataXY(wxPoint p) { m_CursorDataxy = p; }
128 void SetCtrlBarSizeXY(wxSize p) { m_CtrlBar_Sizexy = p; }
130 void SetDialogFont(wxWindow *window, wxFont *font = OCPNGetFont(_("Dialog")));
137 void SetCurrentViewPort(PlugIn_ViewPort &vp) { m_current_vp = vp; }
138 PlugIn_ViewPort &GetCurrentViewPort() { return m_current_vp; }
139
140 void OnGribCtrlBarClose();
141
142 wxPoint GetCtrlBarXY() { return m_CtrlBarxy; }
143 wxPoint GetCursorDataXY() { return m_CursorDataxy; }
144 const wxString GetTimezoneSelector() {
145 switch (m_bTimeZone) {
146 case 0:
147 return "UTC";
148 case 1:
149 return "Local Time";
150 default:
151 return wxEmptyString;
152 }
153 }
154 void SetTimeZone(int tz);
155 int GetStartOptions() { return m_bStartOptions; }
162 bool GetCopyFirstCumRec() { return m_bCopyFirstCumRec; }
170 bool GetCopyMissWaveRec() { return m_bCopyMissWaveRec; }
171
172 GRIBOverlayFactory *m_pGRIBOverlayFactory;
173 GRIBOverlayFactory *GetGRIBOverlayFactory() { return m_pGRIBOverlayFactory; }
174
175 void UpdatePrefs(GribPreferencesDialog *Pref);
176
177 int m_MenuItem;
178 bool m_DialogStyleChanged;
179
180 wxSize m_coreToolbarSize;
181 wxPoint m_coreToolbarPosn;
182 bool m_bZoomToCenterAtInit;
183 wxString m_local_sources_catalog;
184 double m_boat_lat, m_boat_lon;
185 double m_boat_cog, m_boat_sog;
186 time_t m_boat_time;
187
188private:
189 bool LoadConfig(void);
190 bool SaveConfig(void);
191
192 bool DoRenderGLOverlay(wxGLContext *pcontext, PlugIn_ViewPort *vp,
193 int canvasIndex);
194 bool DoRenderOverlay(wxDC &dc, PlugIn_ViewPort *vp, int canvasIndex);
195
196 wxFileConfig *m_pconfig;
197 wxWindow *m_parent_window;
198
199 GRIBUICtrlBar *m_pGribCtrlBar;
200
201 int m_display_width, m_display_height;
202 int m_leftclick_tool_id;
203
204 wxPoint m_CtrlBarxy, m_CursorDataxy;
205 wxSize m_CtrlBar_Sizexy;
206
207 // Controls added to Preferences panel
208 wxCheckBox *m_pGRIBUseHiDef;
209 wxCheckBox *m_pGRIBUseGradualColors;
210
211 GribTimelineRecordSet *m_pLastTimelineSet;
212
213 // preference data
214 bool m_bGRIBUseHiDef;
215 bool m_bGRIBUseGradualColors;
216 bool m_bDrawBarbedArrowHead;
217 int m_bTimeZone;
222 bool m_bCopyFirstCumRec;
227 bool m_bCopyMissWaveRec;
228 int m_bLoadLastOpenFile;
229 int m_bStartOptions;
230 wxString m_RequestConfig;
231 wxString m_bMailToAddresses;
232 wxString m_bMailFromAddress;
233 wxString m_ZyGribLogin;
234 wxString m_ZyGribCode;
235 double m_GUIScaleFactor;
236#ifdef __WXMSW__
237 double m_GribIconsScaleFactor;
238#endif
239 bool m_bGRIBShowIcon;
240
241 bool m_bShowGrib;
248 PlugIn_ViewPort m_current_vp;
249 wxBitmap m_panelBitmap;
250};
251
252//----------------------------------------------------------------------------------------
253// Preference dialog definition
254//----------------------------------------------------------------------------------------
255
257public:
258 GribPreferencesDialog(wxWindow *pparent)
259 : GribPreferencesDialogBase(pparent) {}
261
262 void OnOKClick(wxCommandEvent &event);
263
264private:
265 void OnStartOptionChange(wxCommandEvent &event);
266};
267#endif
GRIB Data Visualization and Rendering Factory.
GRIB Display Settings Configuration Interface.
GRIB Weather Data Control Interface.
Factory class for creating and managing GRIB data visualizations.
Class GribPreferencesDialogBase.
A specialized GribRecordSet that represents temporally interpolated weather data with isobar renderin...
Extended position fix information.
Contains view parameters and status information for a chart display viewport.
void SetCursorLatLon(double lat, double lon)
Receives cursor lat/lon position updates.
Definition grib_pi.cpp:619
bool RenderGLOverlay(wxGLContext *pcontext, PlugIn_ViewPort *vp)
Renders plugin overlay graphics in OpenGL mode.
Definition grib_pi.cpp:577
wxString GetCommonName()
Get the plugin's common (short) name.
Definition grib_pi.cpp:197
bool DeInit(void)
Clean up plugin resources.
Definition grib_pi.cpp:174
void OnContextMenuItemCallback(int id)
Handles context menu item selection.
Definition grib_pi.cpp:624
int Init(void)
Initialize the plugin and declare its capabilities.
Definition grib_pi.cpp:99
void SetPositionFixEx(PlugIn_Position_Fix_Ex &pfix)
Updates plugin with extended position fix data.
Definition grib_pi.cpp:869
int GetAPIVersionMinor()
Returns the minor version number of the plugin API that this plugin supports.
Definition grib_pi.cpp:189
void SetCurrentViewPort(PlugIn_ViewPort &vp)
Callback invoked by OpenCPN core whenever the current ViewPort changes or through periodic updates.
Definition grib_pi.h:137
int GetPlugInVersionMinor()
Returns the minor version number of the plugin itself.
Definition grib_pi.cpp:193
void SetColorScheme(PI_ColorScheme cs)
Updates plugin color scheme.
Definition grib_pi.cpp:834
void OnToolbarToolCallback(int id)
Handles toolbar tool clicks.
Definition grib_pi.cpp:422
int GetPlugInVersionMajor()
Returns the major version number of the plugin itself.
Definition grib_pi.cpp:191
bool MouseEventHook(wxMouseEvent &event)
Handles mouse events from chart window.
Definition grib_pi.cpp:224
bool GetCopyFirstCumRec()
Returns true if cumulative parameters like precipitation and cloud cover should initialize their star...
Definition grib_pi.h:162
wxString GetShortDescription()
Get a brief description of the plugin.
Definition grib_pi.cpp:199
void ShowPreferencesDialog(wxWindow *parent)
Shows the plugin preferences dialog.
Definition grib_pi.cpp:230
void SetDefaults(void)
Sets plugin default options.
Definition grib_pi.cpp:220
wxBitmap * GetPlugInBitmap()
Get the plugin's icon bitmap.
Definition grib_pi.cpp:195
bool RenderOverlayMultiCanvas(wxDC &dc, PlugIn_ViewPort *vp, int canvasIndex)
Renders plugin overlay graphics with canvas selection.
Definition grib_pi.cpp:614
bool RenderGLOverlayMultiCanvas(wxGLContext *pcontext, PlugIn_ViewPort *vp, int canvasIndex)
Renders plugin overlay graphics in OpenGL mode with canvas selection.
Definition grib_pi.cpp:609
wxString GetLongDescription()
Get detailed plugin information.
Definition grib_pi.cpp:201
bool GetCopyMissWaveRec()
Returns true if wave data should be propagated across time periods where wave records are missing.
Definition grib_pi.h:170
int GetAPIVersionMajor()
Returns the major version number of the plugin API that this plugin supports.
Definition grib_pi.cpp:187
PlugIn Object Definition/API.
PI_ColorScheme
Enumeration of color schemes.
wxFont * OCPNGetFont(wxString TextElement, int default_size)
Gets a font for UI elements.