31#include <wx/glcanvas.h>
35#include <wx/fileconf.h>
36#include <wx/stdpaths.h>
44double g_ContentScaleFactor;
52extern "C" DECL_EXP
void destroy_pi(
opencpn_plugin *p) {
delete p; }
54extern int m_DialogStyle;
78 wxFileName::GetPathSeparator() + _T(
"grib_pi") +
79 wxFileName::GetPathSeparator() + _T(
"data") +
80 wxFileName::GetPathSeparator();
81 wxImage panelIcon(shareLocn + _T(
"grib_panel_icon.png"));
83 m_panelBitmap = wxBitmap(panelIcon);
85 wxLogMessage(_T(
" GRIB panel icon NOT loaded"));
87 m_pLastTimelineSet =
nullptr;
89 m_GUIScaleFactor = -1.;
93grib_pi::~grib_pi(
void) {
96 delete m_pLastTimelineSet;
103 m_CtrlBarxy = wxPoint(0, 0);
104 m_CursorDataxy = wxPoint(0, 0);
106 m_pGribCtrlBar =
nullptr;
107 m_pGRIBOverlayFactory =
nullptr;
109 ::wxDisplaySize(&m_display_width, &m_display_height);
111 m_DialogStyleChanged =
false;
123 g_ContentScaleFactor = m_parent_window->GetContentScaleFactor();
129 wxFileName::GetPathSeparator() + _T(
"grib_pi") +
130 wxFileName::GetPathSeparator() + _T(
"data") +
131 wxFileName::GetPathSeparator();
133 wxString local_grib_catalog =
"sources.json";
135 wxFileName::GetPathSeparator() +
"grib_pi";
136 if (!wxDirExists(data_path)) {
139 m_local_sources_catalog =
140 data_path + wxFileName::GetPathSeparator() + local_grib_catalog;
141 if (!wxFileExists(m_local_sources_catalog)) {
142 wxCopyFile(shareLocn + local_grib_catalog, m_local_sources_catalog);
144 if (m_bGRIBShowIcon) {
145 wxString normalIcon = shareLocn + _T(
"grib.svg");
146 wxString toggledIcon = shareLocn + _T(
"grib_toggled.svg");
147 wxString rolloverIcon = shareLocn + _T(
"grib_rollover.svg");
153 toggledIcon = _T(
"");
154 rolloverIcon = _T(
"");
157 wxLogMessage(normalIcon);
159 _T(
""), normalIcon, rolloverIcon, toggledIcon, wxITEM_CHECK, _(
"Grib"),
160 _T(
""),
nullptr, GRIB_TOOL_POSITION, 0,
this);
163 if (!QualifyCtrlBarPosition(m_CtrlBarxy, m_CtrlBar_Sizexy)) {
164 m_CtrlBarxy = wxPoint(20, 60);
165 m_CursorDataxy = wxPoint(20, 170);
175 if (m_pGribCtrlBar) {
176 m_pGribCtrlBar->Close();
177 delete m_pGribCtrlBar;
178 m_pGribCtrlBar =
nullptr;
181 delete m_pGRIBOverlayFactory;
182 m_pGRIBOverlayFactory =
nullptr;
203 "GRIB PlugIn for OpenCPN\n\
204Provides basic GRIB file overlay capabilities for several GRIB file types\n\
205and a request function to get GRIB files by eMail.\n\n\
206Supported GRIB data include:\n\
207- wind direction and speed (at 10 m)\n\
212- significant wave height and direction\n\
213- air surface temperature (at 2 m)\n\
214- sea surface temperature\n\
215- surface current direction and speed\n\
216- Convective Available Potential Energy (CAPE)\n\
217- wind, altitude, temperature and relative humidity at 300, 500, 700, 850 hPa.");
222int grib_pi::GetToolBarToolCount(
void) {
return 1; }
225 if ((m_pGribCtrlBar && m_pGribCtrlBar->pReq_Dialog))
236 Pref->m_cbUseHiDef->SetValue(m_bGRIBUseHiDef);
237 Pref->m_cbUseGradualColors->SetValue(m_bGRIBUseGradualColors);
238 Pref->m_cbDrawBarbedArrowHead->SetValue(m_bDrawBarbedArrowHead);
239 Pref->m_cZoomToCenterAtInit->SetValue(m_bZoomToCenterAtInit);
240 Pref->m_cbCopyFirstCumulativeRecord->SetValue(m_bCopyFirstCumRec);
241 Pref->m_cbCopyMissingWaveRecord->SetValue(m_bCopyMissWaveRec);
242 Pref->m_rbTimeFormat->SetSelection(m_bTimeZone);
243 Pref->m_rbLoadOptions->SetSelection(m_bLoadLastOpenFile);
244 Pref->m_rbStartOptions->SetSelection(m_bStartOptions);
249 pConf->SetPath(_T (
"/Directories" ));
250 pConf->Read(_T (
"GRIBDirectory" ), &l_grib_dir);
251 Pref->m_grib_dir_sel = l_grib_dir;
255 int val = (m_GribIconsScaleFactor * 10.) - 10;
256 Pref->m_sIconSizeFactor->SetValue(val);
259#ifdef __OCPN__ANDROID__
260 if (m_parent_window) {
261 int xmax = m_parent_window->GetSize().GetWidth();
262 int ymax = m_parent_window->GetParent()
265 Pref->SetSize(xmax, ymax);
273 int display_width, display_height;
274 wxDisplaySize(&display_width, &display_height);
277 if (display_height < 600) {
280 Pref->SetSize(wxSize(60 * char_width, canvas_size.x * 8 / 10));
281 Pref->CentreOnScreen();
284 Pref->SetSize(wxSize(60 * char_width, 32 * char_height));
292 m_bGRIBUseHiDef = Pref->m_cbUseHiDef->GetValue();
293 m_bGRIBUseGradualColors = Pref->m_cbUseGradualColors->GetValue();
294 m_bLoadLastOpenFile = Pref->m_rbLoadOptions->GetSelection();
295 m_bDrawBarbedArrowHead = Pref->m_cbDrawBarbedArrowHead->GetValue();
296 m_bZoomToCenterAtInit = Pref->m_cZoomToCenterAtInit->GetValue();
298 double val = Pref->m_sIconSizeFactor->GetValue();
299 m_GribIconsScaleFactor = 1. + (val / 10);
302 if (m_pGRIBOverlayFactory)
303 m_pGRIBOverlayFactory->SetSettings(m_bGRIBUseHiDef, m_bGRIBUseGradualColors,
304 m_bDrawBarbedArrowHead);
308 if (m_bStartOptions != Pref->m_rbStartOptions->GetSelection()) {
309 m_bStartOptions = Pref->m_rbStartOptions->GetSelection();
313 if (m_bTimeZone != Pref->m_rbTimeFormat->GetSelection()) {
314 m_bTimeZone = Pref->m_rbTimeFormat->GetSelection();
315 if (m_pGRIBOverlayFactory) m_pGRIBOverlayFactory->SetTimeZone(m_bTimeZone);
319 bool copyrec = Pref->m_cbCopyFirstCumulativeRecord->GetValue();
320 bool copywave = Pref->m_cbCopyMissingWaveRecord->GetValue();
321 if (m_bCopyFirstCumRec != copyrec || m_bCopyMissWaveRec != copywave) {
322 m_bCopyFirstCumRec = copyrec;
323 m_bCopyMissWaveRec = copywave;
327 if (m_pGribCtrlBar) {
328 switch (updatelevel) {
334 m_pGribCtrlBar->CreateActiveFileFromNames(
336 m_pGribCtrlBar->PopulateComboDataList();
337 m_pGribCtrlBar->TimelineChanged();
341 m_pGribCtrlBar->PopulateComboDataList();
342 m_pGribCtrlBar->TimelineChanged();
346 m_pGribCtrlBar->ComputeBestForecastForNow();
349 if (Pref->m_grib_dir_sel.Length()) {
350 m_pGribCtrlBar->
m_grib_dir = Pref->m_grib_dir_sel;
355 if (Pref->m_grib_dir_sel.Length()) {
358 pConf->SetPath(_T (
"/Directories" ));
359 pConf->Write(_T (
"GRIBDirectory" ), Pref->m_grib_dir_sel);
360 pConf->DeleteGroup(_T (
"/Settings/GRIB/FileNames" ));
367bool grib_pi::QualifyCtrlBarPosition(
370 bool b_reset_pos =
false;
375 RECT frame_title_rect;
376 frame_title_rect.left = position.x;
377 frame_title_rect.top = position.y;
378 frame_title_rect.right = position.x + size.x;
379 frame_title_rect.bottom = m_DialogStyle == ATTACHED_HAS_CAPTION
381 : position.y + size.y;
383 if (
nullptr == MonitorFromRect(&frame_title_rect, MONITOR_DEFAULTTONULL))
386 wxRect window_title_rect;
387 window_title_rect.x = position.x;
388 window_title_rect.y = position.y;
389 window_title_rect.width = size.x;
390 window_title_rect.height =
391 m_DialogStyle == ATTACHED_HAS_CAPTION ? 30 : size.y;
393 wxRect ClientRect = wxGetClientDisplayRect();
394 if (!ClientRect.Intersects(window_title_rect)) b_reset_pos =
true;
400void grib_pi::MoveDialog(wxDialog *dialog, wxPoint position) {
402 wxApp *app = wxTheApp;
408 wxPoint p = frame->ScreenToClient(position);
411 if (p.x + dialog->GetSize().GetX() > frame->GetClientSize().GetX())
412 p.x = frame->GetClientSize().GetX() - dialog->GetSize().GetX();
413 if (p.y + dialog->GetSize().GetY() > frame->GetClientSize().GetY())
414 p.y = frame->GetClientSize().GetY() - dialog->GetSize().GetY();
419 dialog->Move(frame->ClientToScreen(p));
425 bool starting =
false;
427 double scale_factor =
430 scale_factor *= m_GribIconsScaleFactor;
432 if (scale_factor != m_GUIScaleFactor) starting =
true;
434 if (!m_pGribCtrlBar) {
436 long style = m_DialogStyle == ATTACHED_HAS_CAPTION
437 ? wxCAPTION | wxCLOSE_BOX | wxSYSTEM_MENU
438 : wxBORDER_NONE | wxSYSTEM_MENU;
440 style |= wxSTAY_ON_TOP;
442 m_pGribCtrlBar =
new GRIBUICtrlBar(m_parent_window, wxID_ANY, wxEmptyString,
443 wxDefaultPosition, wxDefaultSize, style,
445 m_pGribCtrlBar->SetScaledBitmap(scale_factor);
447 wxMenu *dummy =
new wxMenu(_T(
"Plugin"));
449 new wxMenuItem(dummy, wxID_ANY, wxString(_(
"Weather table")),
450 wxEmptyString, wxITEM_NORMAL);
462 m_pGRIBOverlayFactory->SetMessageFont();
463 m_pGRIBOverlayFactory->SetTimeZone(m_bTimeZone);
464 m_pGRIBOverlayFactory->SetParentSize(m_display_width, m_display_height);
465 m_pGRIBOverlayFactory->SetSettings(m_bGRIBUseHiDef, m_bGRIBUseGradualColors,
466 m_bDrawBarbedArrowHead);
468 m_pGribCtrlBar->OpenFile(m_bLoadLastOpenFile == 0);
472 m_bShowGrib = !m_bShowGrib;
477 if (!starting && m_bLoadLastOpenFile == 0) {
478 m_pGribCtrlBar->OpenFile(
true);
482 if (m_pGribCtrlBar->GetFont() != *
OCPNGetFont(_(
"Dialog"))) starting =
true;
484 m_pGRIBOverlayFactory->SetMessageFont();
485 SetDialogFont(m_pGribCtrlBar);
486 m_GUIScaleFactor = scale_factor;
487 m_pGribCtrlBar->SetScaledBitmap(m_GUIScaleFactor);
488 m_pGribCtrlBar->SetDialogsStyleSizePosition(
true);
489 m_pGribCtrlBar->Refresh();
491 MoveDialog(m_pGribCtrlBar, GetCtrlBarXY());
492 if (m_DialogStyle >> 1 == SEPARATED) {
493 MoveDialog(m_pGribCtrlBar->GetCDataDialog(), GetCursorDataXY());
494 m_pGribCtrlBar->GetCDataDialog()->Show(m_pGribCtrlBar->m_CDataIsShown);
496#ifdef __OCPN__ANDROID__
497 m_pGribCtrlBar->SetDialogsStyleSizePosition(
true);
498 m_pGribCtrlBar->Refresh();
501 m_pGribCtrlBar->Show();
504 ArrayOfGribRecordSets *rsa =
506 if (rsa->GetCount() > 1) {
509 if (rsa->GetCount() >= 1) {
510 SendTimelineMessage(m_pGribCtrlBar->TimelineTime());
520 if (m_pGribCtrlBar && m_bZoomToCenterAtInit) {
521 m_pGribCtrlBar->DoZoomToCenter();
526 m_pGribCtrlBar->Close();
529void grib_pi::OnGribCtrlBarClose() {
533 m_pGribCtrlBar->Hide();
541 if (::wxIsBusy()) ::wxEndBusyCursor();
543#ifdef __OCPN__ANDROID__
544 m_DialogStyleChanged =
true;
547 if (m_DialogStyleChanged) {
548 m_pGribCtrlBar->Destroy();
549 m_pGribCtrlBar =
nullptr;
550 m_DialogStyleChanged =
false;
554bool grib_pi::RenderOverlay(wxDC &dc,
PlugIn_ViewPort *vp) {
return false; }
556bool grib_pi::DoRenderOverlay(wxDC &dc,
PlugIn_ViewPort *vp,
int canvasIndex) {
557 if (!m_pGribCtrlBar || !m_pGribCtrlBar->IsShown() || !m_pGRIBOverlayFactory)
560 m_pGRIBOverlayFactory->RenderGribOverlay(dc, vp);
567 if (m_pGribCtrlBar->pReq_Dialog &&
569 m_pGribCtrlBar->pReq_Dialog->GetBoundingBoxCanvasIndex()) {
573 if (::wxIsBusy()) ::wxEndBusyCursor();
581bool grib_pi::DoRenderGLOverlay(wxGLContext *pcontext,
PlugIn_ViewPort *vp,
583 if (!m_pGribCtrlBar || !m_pGribCtrlBar->IsShown() || !m_pGRIBOverlayFactory)
586 m_pGRIBOverlayFactory->RenderGLGribOverlay(pcontext, vp);
593 if (m_pGribCtrlBar->pReq_Dialog &&
595 m_pGribCtrlBar->pReq_Dialog->GetBoundingBoxCanvasIndex()) {
600 if (::wxIsBusy()) ::wxEndBusyCursor();
602#ifdef __OCPN__ANDROID__
603 m_pGribCtrlBar->Raise();
611 return DoRenderGLOverlay(pcontext, vp, canvasIndex);
616 return DoRenderOverlay(dc, vp, canvasIndex);
620 if (m_pGribCtrlBar && m_pGribCtrlBar->IsShown())
621 m_pGribCtrlBar->SetCursorLatLon(lat, lon);
626 m_pGribCtrlBar->ContextMenuItemCallback(
id);
629void grib_pi::SetDialogFont(wxWindow *dialog, wxFont *font) {
630 dialog->SetFont(*font);
631 wxWindowList list = dialog->GetChildren();
632 wxWindowListNode *node = list.GetFirst();
633 for (
size_t i = 0; i < list.GetCount(); i++) {
634 wxWindow *win = node->GetData();
636 node = node->GetNext();
642void grib_pi::SetPluginMessage(wxString &message_id, wxString &message_body) {
643 if (message_id == _T(
"GRIB_VALUES_REQUEST")) {
649 r.
Parse(message_body, &v);
655 wxDateTime time(v[_T(
"Day")].AsInt(),
656 (wxDateTime::Month)v[_T(
"Month")].AsInt(),
657 v[_T(
"Year")].AsInt(), v[_T(
"Hour")].AsInt(),
658 v[_T(
"Minute")].AsInt(), v[_T(
"Second")].AsInt());
659 double lat = v[_T(
"lat")].
AsDouble();
660 double lon = v[_T(
"lon")].
AsDouble();
662 if (m_pGribCtrlBar) {
665 if (m_pGribCtrlBar->getTimeInterpolatedValues(
667 vkn != GRIB_NOTDEF) {
668 v[_T(
"Type")] = wxT(
"Reply");
669 v[_T(
"WIND SPEED")] = vkn;
670 v[_T(
"WIND DIR")] = ang;
672 v.
Remove(_T(
"WIND SPEED"));
678 if (m_pGribCtrlBar->getTimeInterpolatedValues(
681 vkn != GRIB_NOTDEF) {
682 v[_T(
"Type")] = wxT(
"Reply");
683 v[_T(
"CURRENT SPEED")] = vkn;
684 v[_T(
"CURRENT DIR")] = ang;
686 v.
Remove(_T(
"CURRENT SPEED"));
687 v.
Remove(_T(
"CURRENT DIR"));
691 double vkn = m_pGribCtrlBar->getTimeInterpolatedValue(
Idx_WIND_GUST,
693 if (vkn != GRIB_NOTDEF) {
694 v[_T(
"Type")] = wxT(
"Reply");
700 double vkn = m_pGribCtrlBar->getTimeInterpolatedValue(
Idx_HTSIGW, lon,
702 if (vkn != GRIB_NOTDEF) {
703 v[_T(
"Type")] = wxT(
"Reply");
704 v[_T(
"SWELL")] = vkn;
714 }
else if (message_id == _T(
"GRIB_VERSION_REQUEST")) {
723 }
else if (message_id == _T(
"GRIB_TIMELINE_REQUEST")) {
725 SendTimelineMessage(m_pGribCtrlBar ? m_pGribCtrlBar->TimelineTime()
726 : wxDateTime::Now());
727 }
else if (message_id == _T(
"GRIB_TIMELINE_RECORD_REQUEST")) {
730 r.
Parse(message_body, &v);
731 wxDateTime time(v[_T(
"Day")].AsInt(),
732 (wxDateTime::Month)v[_T(
"Month")].AsInt(),
733 v[_T(
"Year")].AsInt(), v[_T(
"Hour")].AsInt(),
734 v[_T(
"Minute")].AsInt(), v[_T(
"Second")].AsInt());
742 snprintf(ptr,
sizeof ptr,
"%p", set);
744 v[_T(
"GribVersionMajor")] = PLUGIN_VERSION_MAJOR;
745 v[_T(
"GribVersionMinor")] = PLUGIN_VERSION_MINOR;
746 v[_T(
"TimelineSetPtr")] = wxString::From8BitData(ptr);
752 delete m_pLastTimelineSet;
753 m_pLastTimelineSet = set;
756 else if (message_id == _T(
"GRIB_APPLY_JSON_CONFIG")) {
757 wxLogMessage(_T(
"Got GRIB_APPLY_JSON_CONFIG"));
759 if (m_pGribCtrlBar) {
760 m_pGribCtrlBar->OpenFileFromJSON(message_body);
764 m_pGribCtrlBar->SetDialogsStyleSizePosition(
true);
769bool grib_pi::LoadConfig(
void) {
770 wxFileConfig *pConf = (wxFileConfig *)m_pconfig;
772 if (!pConf)
return false;
774 pConf->SetPath(_T(
"/PlugIns/GRIB" ));
775 pConf->Read(_T(
"LoadLastOpenFile" ), &m_bLoadLastOpenFile, 0);
776 pConf->Read(_T(
"OpenFileOption" ), &m_bStartOptions, 1);
777 pConf->Read(_T(
"GRIBUseHiDef" ), &m_bGRIBUseHiDef, 0);
778 pConf->Read(_T(
"GRIBUseGradualColors" ), &m_bGRIBUseGradualColors, 0);
779 pConf->Read(_T(
"DrawBarbedArrowHead" ), &m_bDrawBarbedArrowHead, 1);
780 pConf->Read(_T(
"ZoomToCenterAtInit"), &m_bZoomToCenterAtInit, 1);
781 pConf->Read(_T(
"ShowGRIBIcon" ), &m_bGRIBShowIcon, 1);
782 pConf->Read(_T(
"GRIBTimeZone" ), &m_bTimeZone, 2);
783 pConf->Read(_T(
"CopyFirstCumulativeRecord" ), &m_bCopyFirstCumRec, 1);
784 pConf->Read(_T(
"CopyMissingWaveRecord" ), &m_bCopyMissWaveRec, 1);
786 pConf->Read(_T(
"GribIconsScaleFactor"), &m_GribIconsScaleFactor, 1);
789 m_CtrlBar_Sizexy.x = pConf->Read(_T (
"GRIBCtrlBarSizeX" ), 1400L);
790 m_CtrlBar_Sizexy.y = pConf->Read(_T (
"GRIBCtrlBarSizeY" ), 800L);
791 m_CtrlBarxy.x = pConf->Read(_T (
"GRIBCtrlBarPosX" ), 20L);
792 m_CtrlBarxy.y = pConf->Read(_T (
"GRIBCtrlBarPosY" ), 60L);
793 m_CursorDataxy.x = pConf->Read(_T (
"GRIBCursorDataPosX" ), 20L);
794 m_CursorDataxy.y = pConf->Read(_T (
"GRIBCursorDataPosY" ), 170L);
796 pConf->Read(_T (
"GribCursorDataDisplayStyle" ), &m_DialogStyle, 0);
797 if (m_DialogStyle > 3)
803bool grib_pi::SaveConfig(
void) {
804 wxFileConfig *pConf = (wxFileConfig *)m_pconfig;
806 if (!pConf)
return false;
808 pConf->SetPath(_T(
"/PlugIns/GRIB" ));
810 pConf->Write(_T (
"LoadLastOpenFile" ), m_bLoadLastOpenFile);
811 pConf->Write(_T (
"OpenFileOption" ), m_bStartOptions);
812 pConf->Write(_T (
"ShowGRIBIcon" ), m_bGRIBShowIcon);
813 pConf->Write(_T (
"GRIBUseHiDef" ), m_bGRIBUseHiDef);
814 pConf->Write(_T (
"GRIBUseGradualColors" ), m_bGRIBUseGradualColors);
815 pConf->Write(_T (
"GRIBTimeZone" ), m_bTimeZone);
816 pConf->Write(_T (
"CopyFirstCumulativeRecord" ), m_bCopyFirstCumRec);
817 pConf->Write(_T (
"CopyMissingWaveRecord" ), m_bCopyMissWaveRec);
818 pConf->Write(_T (
"DrawBarbedArrowHead" ), m_bDrawBarbedArrowHead);
819 pConf->Write(_T (
"ZoomToCenterAtInit"), m_bZoomToCenterAtInit);
821 pConf->Write(_T(
"GribIconsScaleFactor"), m_GribIconsScaleFactor);
824 pConf->Write(_T (
"GRIBCtrlBarSizeX" ), m_CtrlBar_Sizexy.x);
825 pConf->Write(_T (
"GRIBCtrlBarSizeY" ), m_CtrlBar_Sizexy.y);
826 pConf->Write(_T (
"GRIBCtrlBarPosX" ), m_CtrlBarxy.x);
827 pConf->Write(_T (
"GRIBCtrlBarPosY" ), m_CtrlBarxy.y);
828 pConf->Write(_T (
"GRIBCursorDataPosX" ), m_CursorDataxy.x);
829 pConf->Write(_T (
"GRIBCursorDataPosY" ), m_CursorDataxy.y);
836 if (m_pGribCtrlBar) {
837 if (m_pGRIBOverlayFactory) m_pGRIBOverlayFactory->ClearCachedLabel();
838 if (m_pGribCtrlBar->pReq_Dialog) m_pGribCtrlBar->pReq_Dialog->Refresh();
839 m_pGribCtrlBar->Refresh();
844void grib_pi::SendTimelineMessage(wxDateTime time) {
845 if (!m_pGribCtrlBar)
return;
848 if (time.IsValid()) {
849 v[_T(
"Day")] = time.GetDay();
850 v[_T(
"Month")] = time.GetMonth();
851 v[_T(
"Year")] = time.GetYear();
852 v[_T(
"Hour")] = time.GetHour();
853 v[_T(
"Minute")] = time.GetMinute();
854 v[_T(
"Second")] = time.GetSecond();
860 v[_T(
"Minute")] = -1;
861 v[_T(
"Second")] = -1;
870 m_boat_cog = pfix.
Cog;
871 m_boat_sog = pfix.
Sog;
872 m_boat_lat = pfix.
Lat;
873 m_boat_lon = pfix.
Lon;
877 m_boat_time = wxDateTime::Now().GetTicks();
884void GribPreferencesDialog::OnStartOptionChange(wxCommandEvent &event) {
885 if (m_rbStartOptions->GetSelection() == 2) {
886 OCPNMessageBox_PlugIn(
888 _(
"You have chosen to authorize interpolation.\nDon't forget that data "
889 "displayed at current time will not be real but Recomputed\nThis can "
890 "decrease accuracy!"),
895void GribPreferencesDialog::OnOKClick(wxCommandEvent &event) {
896 if (g_pi) g_pi->UpdatePrefs(
this);
@ Idx_WIND_GUST
Wind gust speed at surface.
@ Idx_WIND_VX
Surface wind velocity X component.
@ Idx_HTSIGW
Significant wave height.
@ Idx_SEACURRENT_VY
Sea current velocity Y component.
@ Idx_WIND_VY
Surface wind velocity Y component.
@ Idx_SEACURRENT_VX
Sea current velocity X component.
ArrayOfGribRecordSets * GetRecordSetArrayPtr(void)
Gets pointer to array of record sets organized by timestamp.
wxArrayString & GetFileNames(void)
Gets the list of source filenames being used.
bool IsOK(void)
Checks if file loading and parsing was successful.
Factory class for creating and managing GRIB data visualizations.
void SetViewPortWithFocus(PlugIn_ViewPort *vp)
Set the ViewPort that has the focus.
GribOverlaySettings m_OverlaySettings
Settings that control how GRIB data is displayed and overlaid.
void SetViewPortUnderMouse(PlugIn_ViewPort *vp)
Set the ViewPort under the mouse.
wxString m_grib_dir
Directory containing GRIB files.
GRIBFile * m_bGRIBActiveFile
Currently active GRIB file being displayed.
wxArrayString m_file_names
List of GRIB filenames being displayed.
GribTimelineRecordSet * GetTimeLineRecordSet(wxDateTime time)
Retrieves or creates a temporally interpolated GRIB record set for a specific timestamp.
bool RenderGlZoneOverlay()
Renders the GRIB area selection overlay using OpenGL.
bool RenderZoneOverlay(wxDC &dc)
Renders the GRIB area selection overlay using standard device context.
bool MouseEventHook(wxMouseEvent &event)
Intercepts mouse events to handle GRIB area selection.
A specialized GribRecordSet that represents temporally interpolated weather data with isobar renderin...
Extended position fix information.
double Cog
Course over ground in degrees.
double Lat
Latitude in decimal degrees.
time_t FixTime
UTC time of fix.
double Lon
Longitude in decimal degrees.
double Sog
Speed over ground in knots.
Contains view parameters and status information for a chart display viewport.
void SetCursorLatLon(double lat, double lon)
Receives cursor lat/lon position updates.
bool RenderGLOverlay(wxGLContext *pcontext, PlugIn_ViewPort *vp)
Renders plugin overlay graphics in OpenGL mode.
wxString GetCommonName()
Get the plugin's common (short) name.
bool DeInit(void)
Clean up plugin resources.
void OnContextMenuItemCallback(int id)
Handles context menu item selection.
int Init(void)
Initialize the plugin and declare its capabilities.
void SetPositionFixEx(PlugIn_Position_Fix_Ex &pfix)
Updates plugin with extended position fix data.
int GetAPIVersionMinor()
Returns the minor version number of the plugin API that this plugin supports.
int GetPlugInVersionMinor()
Returns the minor version number of the plugin itself.
void SetColorScheme(PI_ColorScheme cs)
Updates plugin color scheme.
void OnToolbarToolCallback(int id)
Handles toolbar tool clicks.
int GetPlugInVersionMajor()
Returns the major version number of the plugin itself.
bool MouseEventHook(wxMouseEvent &event)
Handles mouse events from chart window.
wxString GetShortDescription()
Get a brief description of the plugin.
void ShowPreferencesDialog(wxWindow *parent)
Shows the plugin preferences dialog.
void SetDefaults(void)
Sets plugin default options.
wxBitmap * GetPlugInBitmap()
Get the plugin's icon bitmap.
bool RenderOverlayMultiCanvas(wxDC &dc, PlugIn_ViewPort *vp, int canvasIndex)
Renders plugin overlay graphics with canvas selection.
bool RenderGLOverlayMultiCanvas(wxGLContext *pcontext, PlugIn_ViewPort *vp, int canvasIndex)
Renders plugin overlay graphics in OpenGL mode with canvas selection.
wxString GetLongDescription()
Get detailed plugin information.
int GetAPIVersionMajor()
Returns the major version number of the plugin API that this plugin supports.
Base class for OpenCPN plugins.
int Parse(const wxString &doc, wxJSONValue *val)
Parse the JSON document.
The JSON value class implementation.
bool Remove(int index)
Remove the item at the specified index or key.
bool HasMember(unsigned index) const
Return TRUE if the object contains an element at the specified index.
double AsDouble() const
Return the stored value as a double.
The JSON document writer.
void Write(const wxJSONValue &value, wxString &str)
Write the JSONvalue object to a JSON text.
GRIB Weather Data Plugin for OpenCPN.
#define WANTS_NMEA_EVENTS
Receive decoded NMEA events with parsed data.
PI_ColorScheme
Enumeration of color schemes.
#define WANTS_ONPAINT_VIEWPORT
Receive callbacks during chart viewport painting.
#define WANTS_MOUSE_EVENTS
Receive mouse events (clicks, movement, etc).
#define WANTS_PREFERENCES
Plugin will add page(s) to global preferences dialog.
#define WANTS_CONFIG
Plugin requires persistent configuration storage.
#define WANTS_PLUGIN_MESSAGING
Enable message passing between plugins.
#define INSTALLS_TOOLBAR_TOOL
Plugin will add one or more toolbar buttons.
#define WANTS_CURSOR_LATLON
Receive updates when cursor moves over chart.
#define WANTS_TOOLBAR_CALLBACK
Receive notification when user left-clicks plugin's toolbar buttons.
#define WANTS_OVERLAY_CALLBACK
Receive callbacks to render custom overlay graphics on the chart.
wxString * GetpSharedDataLocation(void)
Gets shared application data location.
wxWindow * PluginGetFocusCanvas()
Gets the currently focused chart canvas.
wxWindow * GetOCPNCanvasWindow()
Gets OpenCPN's main canvas window.
void SetCanvasContextMenuItemViz(int item, bool viz)
Temporarily changes context menu item visibility.
wxFont * OCPNGetFont(wxString TextElement, int default_size)
Gets a font for UI elements.
int InsertPlugInToolSVG(wxString label, wxString SVGfile, wxString SVGfileRollover, wxString SVGfileToggled, wxItemKind kind, wxString shortHelp, wxString longHelp, wxObject *clientData, int position, int tool_sel, opencpn_plugin *pplugin)
Adds a tool using SVG graphics.
int GetCanvasIndexUnderMouse(void)
Gets index of chart canvas under mouse cursor.
wxWindow * GetCanvasUnderMouse(void)
Gets canvas window under mouse cursor.
void DimeWindow(wxWindow *win)
Applies system color scheme to window.
double GetOCPNGUIToolScaleFactor_PlugIn()
Gets current global GUI scaling factor.
int AddCanvasContextMenuItem(wxMenuItem *pitem, opencpn_plugin *pplugin)
Adds item to chart canvas context menu.
wxString GetActiveStyleName()
Gets name of currently active style sheet.
void SetToolbarItemState(int item, bool toggle)
Sets toolbar item toggle state.
wxWindow * GetCanvasByIndex(int canvasIndex)
Gets chart canvas window by index.
double OCPN_GetWinDIPScaleFactor()
Gets Windows-specific DPI scaling factor.
void SendPluginMessage(wxString message_id, wxString message_body)
Sends message to other plugins.
void RequestRefresh(wxWindow *win)
Requests window refresh.
bool AddLocaleCatalog(wxString catalog)
Adds a locale catalog for translations.
wxFileConfig * GetOCPNConfigObject(void)
Gets OpenCPN's configuration object.
OpenGL Platform Abstraction Layer.
wxString * GetpPrivateApplicationDataLocation(void)
Gets private application data directory.