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