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