]> Pileus Git - aweather/blob - src/plugins/radar.h
Remove marching code (now in marching branch)
[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 <gis.h>
25
26 /* TODO: convert */
27 typedef struct {
28         char *name;
29         guint8 data[256][4];
30 } colormap_t;
31 extern colormap_t colormaps[];
32
33 #define GIS_TYPE_PLUGIN_RADAR            (gis_plugin_radar_get_type ())
34 #define GIS_PLUGIN_RADAR(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GIS_TYPE_PLUGIN_RADAR, GisPluginRadar))
35 #define GIS_IS_PLUGIN_RADAR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GIS_TYPE_PLUGIN_RADAR))
36 #define GIS_PLUGIN_RADAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GIS_TYPE_PLUGIN_RADAR, GisPluginRadarClass))
37 #define GIS_IS_PLUGIN_RADAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GIS_TYPE_PLUGIN_RADAR))
38 #define GIS_PLUGIN_RADAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GIS_TYPE_PLUGIN_RADAR, GisPluginRadarClass))
39
40 typedef struct _GisPluginRadar        GisPluginRadar;
41 typedef struct _GisPluginRadarClass   GisPluginRadarClass;
42
43 struct _GisPluginRadar {
44         GObject parent_instance;
45
46         /* instance members */
47         GisViewer   *viewer;
48         GisPrefs    *prefs;
49         GisHttp     *http;
50         GtkWidget   *config_body;
51         GtkWidget   *progress_bar;
52         GtkWidget   *progress_label;
53         guint        time_changed_id;
54         guint        location_changed_id;
55
56         /* Private data for loading radars */
57         char        *cur_site;
58         char        *cur_time;
59         Radar       *cur_radar;
60         Sweep       *cur_sweep;
61         colormap_t  *cur_colormap;
62         guint        cur_sweep_tex;
63 };
64
65 struct _GisPluginRadarClass {
66         GObjectClass parent_class;
67 };
68
69 GType gis_plugin_radar_get_type();
70
71 /* Methods */
72 GisPluginRadar *gis_plugin_radar_new(GisViewer *viewer, GisPrefs *prefs);
73
74 /* Misc. RSL helpers */
75 #define RSL_FOREACH_VOL(radar, volume, count, index) \
76         guint count = 0; \
77         for (guint index = 0; index < radar->h.nvolumes; index++) { \
78                 Volume *volume = radar->v[index]; \
79                 if (volume == NULL) continue; \
80                 count++;
81
82 #define RSL_FOREACH_SWEEP(volume, sweep, count, index) \
83         guint count = 0; \
84         for (guint index = 0; index < volume->h.nsweeps; index++) { \
85                 Sweep *sweep = volume->sweep[index]; \
86                 if (sweep == NULL || sweep->h.elev == 0) continue; \
87                 count++;
88
89 #define RSL_FOREACH_RAY(sweep, ray, count, index) \
90         guint count = 0; \
91         for (guint index = 0; index < sweep->h.nrays; index++) { \
92                 Ray *ray = sweep->ray[index]; \
93                 if (ray == NULL) continue; \
94                 count++;
95
96 #define RSL_FOREACH_BIN(ray, bin, count, index) \
97         guint count = 0; \
98         for (guint index = 0; index < ray->h.nbins; index++) { \
99                 Range bin = ray->range[index]; \
100                 count++;
101
102 #define RSL_FOREACH_END }
103
104 #endif