181 void SetSettings(
bool hiDefGraphics,
bool GradualColors,
182 bool BarbedArrowHead =
true) {
183 m_hiDefGraphics = hiDefGraphics;
184 m_bGradualColors = GradualColors;
185 m_bDrawBarbedArrowHead = BarbedArrowHead;
188 void SetMessageFont();
189 void SetMessage(wxString message) { m_Message = message; }
190 void SetTimeZone(
int TimeZone) { m_TimeZone = TimeZone; }
191 void SetParentSize(
int w,
int h) {
192 m_ParentSize.SetWidth(w);
193 m_ParentSize.SetHeight(h);
201 void ClearCachedData(
void);
202 void ClearCachedLabel(
void) { m_labelCache.clear(); }
203 void ClearParticles() {
204 delete m_ParticleMap;
205 m_ParticleMap =
nullptr;
211 void GetGraphicColor(
int settings,
double val,
unsigned char &r,
212 unsigned char &g,
unsigned char &b);
213 wxColour GetGraphicColor(
int settings,
double val);
220 void InitColorsTable();
222 void SettingsIdToGribId(
int i,
int &idx,
int &idy,
bool &polar);
237 void RenderGribBarbedArrows(
int config,
GribRecord **pGR,
253 void RenderGribIsobar(
int config,
GribRecord **pGR,
267 void RenderGribDirectionArrows(
int config,
GribRecord **pGR,
312 void OnParticleTimer(wxTimerEvent &event);
314 wxString GetRefString(
GribRecord *rec,
int map);
315 void DrawMessageWindow(wxString msg,
int x,
int y, wxFont *mfont);
317 void DrawProjectedPosition(
int x,
int y);
319 void drawDoubleArrow(
int x,
int y,
double ang, wxColour arrowColor,
320 int arrowWidth,
int arrowSizeIdx,
double scale);
321 void drawSingleArrow(
int x,
int y,
double ang, wxColour arrowColor,
322 int arrowWidth,
int arrowSizeIdx,
double scale);
323 void drawWindArrowWithBarbs(
int settings,
int x,
int y,
double vkn,
324 double ang,
bool south, wxColour arrowColor,
325 double rotate_angle);
326 void drawLineBuffer(
LineBuffer &buffer,
int x,
int y,
double ang,
327 double scale,
bool south =
false,
bool head =
true);
329 void DrawNumbers(wxPoint p,
double value,
int settings, wxColour back_color);
332 wxString getLabelString(
double value,
int settings);
333 wxImage &getLabel(
double value,
int settings, wxColour back_colour);
337 void GetCalibratedGraphicColor(
int settings,
double val_in,
338 unsigned char *data);
341 double x,
double y,
double xs,
double ys);
344 int grib_pixel_size,
const wxPoint &porg);
346 double m_last_vp_scale;
348 GribOverlay *m_pOverlay[GribOverlaySettings::SETTINGS_COUNT];
351 wxString m_Message_Hiden;
355#if wxUSE_GRAPHICS_CONTEXT
356 wxGraphicsContext *m_gdc;
359 wxFont *m_Font_Message;
361 bool m_hiDefGraphics;
362 bool m_bGradualColors;
363 bool m_bDrawBarbedArrowHead;
365 std::map<double, wxImage> m_labelCache;
367 TexFont m_TexFontMessage, m_TexFontNumbers;
373 wxTimer m_tParticleTimer;
374 bool m_bUpdateParticles;
377 LineBuffer m_SingleArrow[2], m_DoubleArrow[2];
Manager for particle animation system.
Individual particle for wind/current animation.
int m_Duration
Duration this particle should exist in animation cycles.