]> Pileus Git - grits/blob - src/plugin-radar.h
2db7980c7fc4edd4f23bd8ee00e67ac3c3c5f016
[grits] / src / plugin-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 "marching.h"
26
27 /* TODO: convert */
28 typedef struct {
29         char *name;
30         guint8 data[256][4];
31 } colormap_t;
32 extern colormap_t colormaps[];
33
34 #define AWEATHER_TYPE_RADAR            (aweather_radar_get_type ())
35 #define AWEATHER_RADAR(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   AWEATHER_TYPE_RADAR, AWeatherRadar))
36 #define AWEATHER_IS_RADAR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   AWEATHER_TYPE_RADAR))
37 #define AWEATHER_RADAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), AWEATHER_TYPE_RADAR, AWeatherRadarClass))
38 #define AWEATHER_IS_RADAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), AWEATHER_TYPE_RADAR))
39 #define AWEATHER_RADAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   AWEATHER_TYPE_RADAR, AWeatherRadarClass))
40
41 typedef struct _AWeatherRadar        AWeatherRadar;
42 typedef struct _AWeatherRadarClass   AWeatherRadarClass;
43
44 struct _AWeatherRadar {
45         GObject parent_instance;
46
47         /* instance members */
48         AWeatherGui *gui;
49         GtkWidget   *config_body;
50         GtkWidget   *progress_bar;
51         GtkWidget   *progress_label;
52         SoupSession *soup;
53
54         /* Private data for loading radars */
55         Radar       *cur_radar;
56         Sweep       *cur_sweep;
57         colormap_t  *cur_colormap;
58         guint        cur_sweep_tex;
59         TRIANGLE    *cur_triangles;
60         guint        cur_num_triangles;
61 };
62
63 struct _AWeatherRadarClass {
64         GObjectClass parent_class;
65 };
66
67 GType aweather_radar_get_type();
68
69 /* Methods */
70 AWeatherRadar *aweather_radar_new(AWeatherGui *gui);
71
72 #endif