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