]> Pileus Git - grits/blob - src/plugin-radar.c
fixing more memory leaks
[grits] / src / plugin-radar.c
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 #include <config.h>
19 #include <gtk/gtk.h>
20 #include <gtk/gtkgl.h>
21 #include <GL/gl.h>
22 #include <math.h>
23
24 #include "rsl.h"
25
26 #include "aweather-gui.h"
27 #include "plugin-radar.h"
28 #include "data.h"
29
30 GtkWidget *drawing;
31 GtkWidget *config_body;
32 static Sweep *cur_sweep = NULL;  // make this not global
33 //static int nred, ngreen, nblue;
34 //static char red[256], green[256], blue[256];
35 static colormap_t *colormap;
36 static guint sweep_tex = 0;
37 static Radar *radar = NULL;
38
39 static AWeatherGui *gui = NULL;
40
41 /**************************
42  * Data loading functions *
43  **************************/
44 /* Convert a sweep to an 2d array of data points */
45 static void bscan_sweep(Sweep *sweep, guint8 **data, int *width, int *height)
46 {
47         /* Calculate max number of bins */
48         int i, max_bins = 0;
49         for (i = 0; i < sweep->h.nrays; i++)
50                 max_bins = MAX(max_bins, sweep->ray[i]->h.nbins);
51
52         /* Allocate buffer using max number of bins for each ray */
53         guint8 *buf = g_malloc0(sweep->h.nrays * max_bins * 4);
54
55         /* Fill the data */
56         int ri, bi;
57         for (ri = 0; ri < sweep->h.nrays; ri++) {
58                 Ray *ray  = sweep->ray[ri];
59                 for (bi = 0; bi < ray->h.nbins; bi++) {
60                         /* copy RGBA into buffer */
61                         //guint val   = dz_f(ray->range[bi]);
62                         guint8 val   = (guint8)ray->h.f(ray->range[bi]);
63                         guint  buf_i = (ri*max_bins+bi)*4;
64                         buf[buf_i+0] = colormap->data[val][0];
65                         buf[buf_i+1] = colormap->data[val][1];
66                         buf[buf_i+2] = colormap->data[val][2];
67                         buf[buf_i+3] = colormap->data[val][3];
68                         if (val == BADVAL     || val == RFVAL      || val == APFLAG ||
69                             val == NOTFOUND_H || val == NOTFOUND_V || val == NOECHO) {
70                                 buf[buf_i+3] = 0x00; // transparent
71                         }
72                 }
73         }
74
75         /* set output */
76         *width  = max_bins;
77         *height = sweep->h.nrays;
78         *data   = buf;
79 }
80
81 static void load_color_table(char *table)
82 {
83         for (int i = 0; colormaps[i].name; i++)
84                 if (g_str_equal(colormaps[i].name, table))
85                         colormap = &colormaps[i];
86 }
87
88 /* Load a sweep as the active texture */
89 static void load_sweep(Sweep *sweep)
90 {
91         aweather_gui_gl_begin(gui);
92         cur_sweep = sweep;
93         int height, width;
94         guint8 *data;
95         bscan_sweep(sweep, &data, &width, &height);
96         glDeleteTextures(1, &sweep_tex);
97         glGenTextures(1, &sweep_tex);
98         glBindTexture(GL_TEXTURE_2D, sweep_tex);
99         glPixelStorei(GL_PACK_ALIGNMENT, 1);
100         glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
101         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
102         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
103         glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height, 0,
104                         GL_RGBA, GL_UNSIGNED_BYTE, data);
105         g_free(data);
106         gtk_widget_queue_draw(aweather_gui_get_widget(gui, "drawing"));
107         aweather_gui_gl_end(gui);
108 }
109
110 /* Add selectors to the config area for the sweeps */
111 static void load_radar_gui(Radar *radar)
112 {
113         /* Clear existing items */
114         GtkWidget *child = gtk_bin_get_child(GTK_BIN(config_body));
115         if (child)
116                 gtk_widget_destroy(child);
117
118         GtkWidget *hbox = gtk_hbox_new(TRUE, 0);
119         GtkWidget *button = NULL;
120         int vi = 0, si = 0;
121         for (vi = 0; vi < radar->h.nvolumes; vi++) {
122                 Volume *vol = radar->v[vi];
123                 if (vol == NULL) continue;
124                 GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
125                 for (si = 0; si < vol->h.nsweeps; si++) {
126                         Sweep *sweep = vol->sweep[si];
127                         if (sweep == NULL) continue;
128                         char *label = g_strdup_printf("Tilt: %.2f (%s)",
129                                         sweep->h.elev, vol->h.type_str);
130                         button = gtk_radio_button_new_with_label_from_widget(
131                                         GTK_RADIO_BUTTON(button), label);
132                         g_object_set(button, "draw-indicator", FALSE, NULL);
133                         g_signal_connect_swapped(button, "clicked",
134                                         G_CALLBACK(load_color_table), vol->h.type_str);
135                         g_signal_connect_swapped(button, "clicked",
136                                         G_CALLBACK(load_sweep), sweep);
137                         gtk_box_pack_start(GTK_BOX(vbox), button, FALSE, TRUE, 0);
138                         g_free(label);
139                 }
140                 gtk_box_pack_start(GTK_BOX(hbox), vbox, TRUE, TRUE, 0);
141         }
142         gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(config_body), hbox);
143         gtk_widget_show_all(hbox);
144 }
145
146 /* Load a radar from a file */
147 static void load_radar_rsl(GPid pid, gint status, gpointer _path)
148 {
149         gchar *path = _path;
150         if (status != 0) {
151                 g_warning("wsr88ddec exited with status %d", status);
152                 return;
153         }
154         char *dir  = g_path_get_dirname(path);
155         char *site = g_path_get_basename(dir);
156         g_free(dir);
157         RSL_read_these_sweeps("all", NULL);
158         if (radar) {
159                 g_message("Freeing radar");
160                 RSL_free_radar(radar);
161         }
162         g_message("Allocating radar");
163         radar = RSL_wsr88d_to_radar(path, site);
164         if (radar == NULL) {
165                 g_warning("fail to load radar: path=%s, site=%s", path, site);
166                 g_free(path);
167                 g_free(site);
168                 return;
169         }
170         g_free(path);
171         g_free(site);
172
173         /* Load the first sweep by default */
174         if (radar->h.nvolumes < 1 || radar->v[0]->h.nsweeps < 1) {
175                 g_warning("No sweeps found\n");
176         } else {
177                 /* load first available sweep */
178                 for (int vi = 0; vi < radar->h.nvolumes; vi++) {
179                         if (radar->v[vi]== NULL) continue;
180                         for (int si = 0; si < radar->v[vi]->h.nsweeps; si++) {
181                                 if (radar->v[vi]->sweep[si]== NULL) continue;
182                                 load_color_table(radar->v[vi]->h.type_str);
183                                 load_sweep(radar->v[vi]->sweep[si]);
184                                 break;
185                         }
186                         break;
187                 }
188         }
189
190         load_radar_gui(radar);
191 }
192
193 /* decompress a radar file, then chain to the actuall loading function */
194 static void load_radar(char *path, gpointer user_data)
195 {
196         char *raw  = g_strconcat(path, ".raw", NULL);
197         if (g_file_test(raw, G_FILE_TEST_EXISTS)) {
198                 load_radar_rsl(0, 0, raw);
199         } else {
200                 char *argv[] = {"wsr88ddec", path, raw, NULL};
201                 GPid pid;
202                 GError *error = NULL;
203                 g_spawn_async(
204                         NULL,    // const gchar *working_directory,
205                         argv,    // gchar **argv,
206                         NULL,    // gchar **envp,
207                         G_SPAWN_SEARCH_PATH|
208                         G_SPAWN_DO_NOT_REAP_CHILD, 
209                                  // GSpawnFlags flags,
210                         NULL,    // GSpawnChildSetupFunc child_setup,
211                         NULL,    // gpointer user_data,
212                         &pid,    // GPid *child_pid,
213                         &error); // GError **error
214                 if (error) {
215                         g_warning("failed to decompress WSR88D data: %s",
216                                         error->message);
217                         g_error_free(error);
218                 }
219                 g_child_watch_add(pid, load_radar_rsl, raw);
220         }
221 }
222
223 /*************
224  * Callbacks *
225  *************/
226 static gboolean expose(GtkWidget *da, GdkEventExpose *event, gpointer user_data)
227 {
228         g_message("radar:expose");
229         if (cur_sweep == NULL)
230                 return FALSE;
231         Sweep *sweep = cur_sweep;
232
233         /* Draw the rays */
234
235         glMatrixMode(GL_MODELVIEW);
236         glPushMatrix();
237         glBindTexture(GL_TEXTURE_2D, sweep_tex);
238         glEnable(GL_TEXTURE_2D);
239         glDisable(GL_ALPHA_TEST);
240         glColor4f(1,1,1,1);
241         glBegin(GL_QUAD_STRIP);
242         for (int ri = 0; ri <= sweep->h.nrays+1; ri++) {
243                 /* Do the first sweep twice to complete the last Quad */
244                 Ray *ray = sweep->ray[ri % sweep->h.nrays];
245
246                 /* right and left looking out from radar */
247                 double left  = ((ray->h.azimuth - ((double)ray->h.beam_width/2.))*M_PI)/180.0; 
248                 //double right = ((ray->h.azimuth + ((double)ray->h.beam_width/2.))*M_PI)/180.0; 
249
250                 double lx = sin(left);
251                 double ly = cos(left);
252
253                 double near_dist = ray->h.range_bin1;
254                 double far_dist  = ray->h.nbins*ray->h.gate_size + ray->h.range_bin1;
255
256                 /* (find middle of bin) / scale for opengl */
257                 // near left
258                 glTexCoord2f(0.0, (double)ri/sweep->h.nrays);
259                 glVertex3f(lx*near_dist, ly*near_dist, 2.0);
260
261                 // far  left
262                 glTexCoord2f(1.0, (double)ri/sweep->h.nrays);
263                 glVertex3f(lx*far_dist,  ly*far_dist,  2.0);
264         }
265         //g_print("ri=%d, nr=%d, bw=%f\n", _ri, sweep->h.nrays, sweep->h.beam_width);
266         glEnd();
267         glPopMatrix();
268
269         /* Texture debug */
270         //glBegin(GL_QUADS);
271         //glTexCoord2d( 0.,  0.); glVertex3f(-1.,  0., 0.); // bot left
272         //glTexCoord2d( 0.,  1.); glVertex3f(-1.,  1., 0.); // top left
273         //glTexCoord2d( 1.,  1.); glVertex3f( 0.,  1., 0.); // top right
274         //glTexCoord2d( 1.,  0.); glVertex3f( 0.,  0., 0.); // bot right
275         //glEnd();
276
277         /* Print the color table */
278         glDisable(GL_TEXTURE_2D);
279         glDisable(GL_DEPTH_TEST);
280         glMatrixMode(GL_MODELVIEW ); glPushMatrix(); glLoadIdentity();
281         glMatrixMode(GL_PROJECTION); glPushMatrix(); glLoadIdentity();
282         glBegin(GL_QUADS);
283         int i;
284         for (i = 0; i < 256; i++) {
285                 glColor4ub(colormap->data[i][0],
286                            colormap->data[i][1],
287                            colormap->data[i][2],
288                            colormap->data[i][3]);
289                 glVertex3f(-1.0, (float)((i  ) - 256/2)/(256/2), 0.0); // bot left
290                 glVertex3f(-1.0, (float)((i+1) - 256/2)/(256/2), 0.0); // top left
291                 glVertex3f(-0.9, (float)((i+1) - 256/2)/(256/2), 0.0); // top right
292                 glVertex3f(-0.9, (float)((i  ) - 256/2)/(256/2), 0.0); // bot right
293         }
294         glEnd();
295         glEnable(GL_DEPTH_TEST);
296         glEnable(GL_ALPHA_TEST);
297         glMatrixMode(GL_PROJECTION); glPopMatrix(); 
298         glMatrixMode(GL_MODELVIEW ); glPopMatrix();
299         return FALSE;
300 }
301
302 static void set_time(AWeatherView *view, char *time, gpointer user_data)
303 {
304         g_message("radar:setting time");
305         // format: http://mesonet.agron.iastate.edu/data/nexrd2/raw/KABR/KABR_20090510_0323
306         char *site = aweather_view_get_location(view);
307         char *base = "http://mesonet.agron.iastate.edu/data/";
308         char *path = g_strdup_printf("nexrd2/raw/K%s/K%s_%s", site, site, time);
309         //g_message("caching %s/%s", base, path);
310         cur_sweep = NULL; // Clear radar
311         gtk_widget_queue_draw(aweather_gui_get_widget(gui, "drawing"));
312         cache_file(base, path, load_radar, NULL);
313         g_free(path);
314 }
315
316 static void set_site(AWeatherView *view, char *site, gpointer user_data)
317 {
318         g_message("Loading wsr88d list for %s", site);
319         cur_sweep = NULL; // Clear radar
320
321         char *list_uri = g_strdup_printf(
322                         "http://mesonet.agron.iastate.edu/data/nexrd2/raw/K%s/dir.list",
323                         site);
324         GFile *list    = g_file_new_for_uri(list_uri);
325         g_free(list_uri);
326
327         gchar *data;
328         gsize length;
329         GError *error = NULL;
330         gtk_widget_queue_draw(aweather_gui_get_widget(gui, "drawing"));
331         g_file_load_contents(list, NULL, &data, &length, NULL, &error);
332         g_object_unref(list);
333         if (error) {
334                 g_warning("Error loading list for %s: %s", site, error->message);
335                 g_error_free(error);
336                 return;
337         }
338         gchar **lines = g_strsplit(data, "\n", -1);
339         GtkTreeView  *tview  = GTK_TREE_VIEW(aweather_gui_get_widget(gui, "time"));
340         GtkListStore *lstore = GTK_LIST_STORE(gtk_tree_view_get_model(tview));
341         gtk_list_store_clear(lstore);
342         radar = NULL;
343         GtkTreeIter iter;
344         for (int i = 0; lines[i] && lines[i][0]; i++) {
345                 // format: `841907 KABR_20090510_0159'
346                 //g_message("\tadding %p [%s]", lines[i], lines[i]);
347                 char **parts = g_strsplit(lines[i], " ", 2);
348                 char *time = parts[1]+5;
349                 gtk_list_store_insert(lstore, &iter, 0);
350                 gtk_list_store_set(lstore, &iter, 0, time, -1);
351                 g_strfreev(parts);
352         }
353         char *time = NULL;
354         gtk_tree_model_get(GTK_TREE_MODEL(lstore), &iter, 0, &time, -1);
355         aweather_view_set_time(view, time);
356         g_free(time);
357         g_free(data);
358         g_strfreev(lines);
359 }
360
361 /* Init */
362 gboolean radar_init(AWeatherGui *_gui)
363 {
364         gui = _gui;
365         drawing = aweather_gui_get_widget(gui, "drawing");
366         GtkWidget    *config  = aweather_gui_get_widget(gui, "tabs");
367         AWeatherView *view    = aweather_gui_get_view(gui);
368
369         /* Add configuration tab */
370         config_body = gtk_scrolled_window_new(NULL, NULL);
371         gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(config_body),
372                         gtk_label_new("No radar loaded"));
373         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(config_body),
374                         GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
375         gtk_notebook_prepend_page(GTK_NOTEBOOK(config),
376                         config_body, gtk_label_new("Radar"));
377
378         /* Set up OpenGL Stuff */
379         g_signal_connect(drawing, "expose-event",     G_CALLBACK(expose),   NULL);
380         g_signal_connect(view,    "location-changed", G_CALLBACK(set_site), NULL);
381         g_signal_connect(view,    "time-changed",     G_CALLBACK(set_time), NULL);
382
383         return TRUE;
384 }