]> Pileus Git - aweather/blob - src/plugins/radar.h
Rename aweather-colormap.[ch] to radar-info.[ch]
[aweather] / src / plugins / radar.h
1 /*
2  * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.com>
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 3 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, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __RADAR_H__
19 #define __RADAR_H__
20
21 #include <glib-object.h>
22 #include <rsl.h>
23
24 #include <grits.h>
25 #include "radar-info.h"
26 #include "level2.h"
27
28 #define GRITS_TYPE_PLUGIN_RADAR            (grits_plugin_radar_get_type ())
29 #define GRITS_PLUGIN_RADAR(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GRITS_TYPE_PLUGIN_RADAR, GritsPluginRadar))
30 #define GRITS_IS_PLUGIN_RADAR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GRITS_TYPE_PLUGIN_RADAR))
31 #define GRITS_PLUGIN_RADAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GRITS_TYPE_PLUGIN_RADAR, GritsPluginRadarClass))
32 #define GRITS_IS_PLUGIN_RADAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GRITS_TYPE_PLUGIN_RADAR))
33 #define GRITS_PLUGIN_RADAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GRITS_TYPE_PLUGIN_RADAR, GritsPluginRadarClass))
34
35 typedef struct _GritsPluginRadar      GritsPluginRadar;
36 typedef struct _GritsPluginRadarClass GritsPluginRadarClass;
37
38 typedef struct _RadarConus RadarConus;
39 typedef struct _RadarSite  RadarSite;
40
41 struct _GritsPluginRadar {
42         GObject parent_instance;
43
44         /* instance members */
45         GritsViewer *viewer;
46         GritsPrefs  *prefs;
47         GtkWidget   *config;
48         AWeatherColormap *colormap;
49         gpointer    *hud_ref;
50
51         GHashTable  *sites;
52         GritsHttp   *sites_http;
53
54         RadarConus  *conus;
55         GritsHttp   *conus_http;
56 };
57
58 struct _GritsPluginRadarClass {
59         GObjectClass parent_class;
60 };
61
62 GType grits_plugin_radar_get_type();
63
64 /* Methods */
65 GritsPluginRadar *grits_plugin_radar_new(GritsViewer *viewer, GritsPrefs *prefs);
66
67 /* Misc. RSL helpers */
68 #define RSL_FOREACH_VOL(radar, volume, count, index) \
69         guint count = 0; \
70         for (guint index = 0; index < radar->h.nvolumes; index++) { \
71                 Volume *volume = radar->v[index]; \
72                 if (volume == NULL) continue; \
73                 count++;
74
75 #define RSL_FOREACH_SWEEP(volume, sweep, count, index) \
76         guint count = 0; \
77         for (guint index = 0; index < volume->h.nsweeps; index++) { \
78                 Sweep *sweep = volume->sweep[index]; \
79                 if (sweep == NULL || sweep->h.elev == 0) continue; \
80                 count++;
81
82 #define RSL_FOREACH_RAY(sweep, ray, count, index) \
83         guint count = 0; \
84         for (guint index = 0; index < sweep->h.nrays; index++) { \
85                 Ray *ray = sweep->ray[index]; \
86                 if (ray == NULL) continue; \
87                 count++;
88
89 #define RSL_FOREACH_BIN(ray, bin, count, index) \
90         guint count = 0; \
91         for (guint index = 0; index < ray->h.nbins; index++) { \
92                 Range bin = ray->range[index]; \
93                 count++;
94
95 #define RSL_FOREACH_END }
96
97 #endif