]> git.tdb.fi Git - ext/subsurface.git/blob - statistics.c
Merge branch 'mac' of git://git.hohndel.org/subsurface
[ext/subsurface.git] / statistics.c
1 /* statistics.c */
2 /* creates the UI for the Info & Stats page -
3  * controlled through the following interfaces:
4  *
5  * void show_dive_stats(struct dive *dive)
6  * void flush_dive_stats_changes(struct dive *dive)
7  *
8  * called from gtk-ui:
9  * GtkWidget *stats_widget(void)
10  */
11 #include <stdio.h>
12 #include <string.h>
13 #include <stdlib.h>
14 #include <stdarg.h>
15 #include <time.h>
16
17 #include "dive.h"
18 #include "display.h"
19 #include "display-gtk.h"
20 #include "divelist.h"
21
22 typedef struct {
23         GtkWidget *date,
24                 *dive_time,
25                 *surf_intv,
26                 *max_depth,
27                 *avg_depth,
28                 *water_temp,
29                 *sac,
30                 *otu,
31                 *o2he,
32                 *gas_used,
33                 *total_time,
34                 *avg_time,
35                 *max_overall_depth,
36                 *avg_overall_depth,
37                 *min_sac,
38                 *avg_sac,
39                 *max_sac;
40 } info_stat_widget_t;
41
42 static info_stat_widget_t info_stat_w;
43
44 typedef struct {
45         duration_t total_time;
46         /* avg_time is simply total_time / nr -- let's not keep this */
47         depth_t max_depth;
48         depth_t avg_depth;
49         volume_t max_sac;
50         volume_t min_sac;
51         volume_t avg_sac;
52 } info_stat_t;
53
54 static info_stat_t info_stat;
55
56 static void process_all_dives(struct dive *dive, struct dive **prev_dive)
57 {
58         int idx;
59         struct dive *dp;
60         int old_tt, sac_time = 0;
61
62         *prev_dive = NULL;
63         memset(&info_stat, 0, sizeof(info_stat));
64         /* this relies on the fact that the dives in the dive_table
65          * are in chronological order */
66         for (idx = 0; idx < dive_table.nr; idx++) {
67                 dp = dive_table.dives[idx];
68                 if (dp->when == dive->when) {
69                         /* that's the one we are showing */
70                         if (idx > 0)
71                                 *prev_dive = dive_table.dives[idx-1];
72                 }
73                 old_tt = info_stat.total_time.seconds;
74                 info_stat.total_time.seconds += dp->duration.seconds;
75                 if (dp->maxdepth.mm > info_stat.max_depth.mm)
76                         info_stat.max_depth.mm = dp->maxdepth.mm;
77                 info_stat.avg_depth.mm = (1.0 * old_tt * info_stat.avg_depth.mm +
78                                 dp->duration.seconds * dp->meandepth.mm) / info_stat.total_time.seconds;
79                 if (dp->sac > 2800) { /* less than .1 cuft/min (2800ml/min) is bogus */
80                         int old_sac_time = sac_time;
81                         sac_time += dp->duration.seconds;
82                         info_stat.avg_sac.mliter = (1.0 * old_sac_time * info_stat.avg_sac.mliter +
83                                                 dp->duration.seconds * dp->sac) / sac_time ;
84                         if (dp->sac > info_stat.max_sac.mliter)
85                                 info_stat.max_sac.mliter = dp->sac;
86                         if (info_stat.min_sac.mliter == 0 || dp->sac < info_stat.min_sac.mliter)
87                                 info_stat.min_sac.mliter = dp->sac;
88                 }
89         }
90 }
91
92 static void set_label(GtkWidget *w, const char *fmt, ...)
93 {
94         char buf[80];
95         va_list args;
96
97         va_start(args, fmt);
98         vsnprintf(buf, sizeof(buf), fmt, args);
99         va_end(args);
100         gtk_label_set_text(GTK_LABEL(w), buf);
101 }
102
103 static char * get_time_string(int seconds, int maxdays)
104 {
105         static char buf[80];
106         if (maxdays && seconds > 3600 * 24 * maxdays)
107                 snprintf(buf, sizeof(buf), "more than %d days", maxdays);
108         else {
109                 int days = seconds / 3600 / 24;
110                 int hours = (seconds - days * 3600 * 24) / 3600;
111                 int minutes = (seconds - days * 3600 * 24 - hours * 3600) / 60;
112                 if (days > 0)
113                         snprintf(buf, sizeof(buf), "%dd %dh %dmin", days, hours, minutes);
114                 else
115                         snprintf(buf, sizeof(buf), "%dh %dmin", hours, minutes);
116         }
117         return buf;
118 }
119
120 void show_dive_stats(struct dive *dive)
121 {
122         char buf[80];
123         double value;
124         int decimals;
125         const char *unit;
126         int idx, offset, gas_used;
127         struct dive *prev_dive;
128         struct tm *tm;
129
130         process_all_dives(dive, &prev_dive);
131
132         tm = gmtime(&dive->when);
133         snprintf(buf, sizeof(buf),
134                 "%s, %s %d, %d %2d:%02d",
135                 weekday(tm->tm_wday),
136                 monthname(tm->tm_mon),
137                 tm->tm_mday, tm->tm_year + 1900,
138                 tm->tm_hour, tm->tm_min);
139
140         set_label(info_stat_w.date, buf);
141         set_label(info_stat_w.dive_time, "%d min", (dive->duration.seconds + 30) / 60);
142         if (prev_dive)
143                 set_label(info_stat_w.surf_intv, 
144                         get_time_string(dive->when - (prev_dive->when + prev_dive->duration.seconds), 4));
145         else
146                 set_label(info_stat_w.surf_intv, "unknown");
147         value = get_depth_units(dive->maxdepth.mm, &decimals, &unit);
148         set_label(info_stat_w.max_depth, "%.*f %s", decimals, value, unit);
149         value = get_depth_units(dive->meandepth.mm, &decimals, &unit);
150         set_label(info_stat_w.avg_depth, "%.*f %s", decimals, value, unit);
151         if (dive->watertemp.mkelvin) {
152                 value = get_temp_units(dive->watertemp.mkelvin, &unit);
153                 set_label(info_stat_w.water_temp, "%.1f %s", value, unit);
154         } else
155                 set_label(info_stat_w.water_temp, "");
156         value = get_volume_units(dive->sac, &decimals, &unit);
157         if (value > 0) {
158                 set_label(info_stat_w.sac, "%.*f %s/min", decimals, value, unit);
159         } else
160                 set_label(info_stat_w.sac, "");
161         set_label(info_stat_w.otu, "%d", dive->otu);
162         offset = 0;
163         gas_used = 0;
164         buf[0] = '\0';
165         /* for the O2/He readings just create a list of them */
166         for (idx = 0; idx < MAX_CYLINDERS; idx++) {
167                 cylinder_t *cyl = &dive->cylinder[idx];
168                 unsigned int start, end;
169
170                 start = cyl->start.mbar ? : cyl->sample_start.mbar;
171                 end = cyl->end.mbar ? : cyl->sample_end.mbar;
172                 if (!cylinder_none(cyl)) {
173                         /* 0% O2 strangely means air, so 21% - I don't like that at all */
174                         int o2 = cyl->gasmix.o2.permille ? : AIR_PERMILLE;
175                         if (offset > 0) {
176                                 snprintf(buf+offset, 80-offset, ", ");
177                                 offset += 2;
178                         }
179                         snprintf(buf+offset, 80-offset, "%d/%d", (o2 + 5) / 10,
180                                 (cyl->gasmix.he.permille + 5) / 10);
181                         offset = strlen(buf);
182                 }
183                 /* and if we have size, start and end pressure, we can
184                  * calculate the total gas used */
185                 if (cyl->type.size.mliter && start && end)
186                         gas_used += cyl->type.size.mliter / 1000.0 * (start - end);
187         }
188         set_label(info_stat_w.o2he, buf);
189         if (gas_used) {
190                 value = get_volume_units(gas_used, &decimals, &unit);
191                 set_label(info_stat_w.gas_used, "%.*f %s", decimals, value, unit);
192         } else
193                 set_label(info_stat_w.gas_used, "");
194         /* and now do the statistics */
195         set_label(info_stat_w.total_time, get_time_string(info_stat.total_time.seconds, 0));
196         set_label(info_stat_w.avg_time, get_time_string(info_stat.total_time.seconds / dive_table.nr, 0));
197         value = get_depth_units(info_stat.max_depth.mm, &decimals, &unit);
198         set_label(info_stat_w.max_overall_depth, "%.*f %s", decimals, value, unit);
199         value = get_depth_units(info_stat.avg_depth.mm, &decimals, &unit);
200         set_label(info_stat_w.avg_overall_depth, "%.*f %s", decimals, value, unit);
201         value = get_volume_units(info_stat.max_sac.mliter, &decimals, &unit);
202         set_label(info_stat_w.max_sac, "%.*f %s/min", decimals, value, unit);
203         value = get_volume_units(info_stat.min_sac.mliter, &decimals, &unit);
204         set_label(info_stat_w.min_sac, "%.*f %s/min", decimals, value, unit);
205         value = get_volume_units(info_stat.avg_sac.mliter, &decimals, &unit);
206         set_label(info_stat_w.avg_sac, "%.*f %s/min", decimals, value, unit);
207 }
208
209 void flush_dive_stats_changes(struct dive *dive)
210 {
211         /* We do nothing: we require the "Ok" button press */
212 }
213
214 static GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label)
215 {
216         GtkWidget *label_widget;
217         GtkWidget *frame;
218
219         frame = gtk_frame_new(label);
220         label_widget = gtk_label_new(NULL);
221         gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3);
222         gtk_container_add(GTK_CONTAINER(frame), label_widget);
223
224         return label_widget;
225 }
226
227 GtkWidget *stats_widget(void)
228 {
229
230         GtkWidget *vbox, *hbox, *infoframe, *statsframe, *framebox;
231
232         vbox = gtk_vbox_new(FALSE, 3);
233
234         infoframe = gtk_frame_new("Dive Info");
235         gtk_box_pack_start(GTK_BOX(vbox), infoframe, TRUE, FALSE, 3);
236         framebox = gtk_vbox_new(FALSE, 3);
237         gtk_container_add(GTK_CONTAINER(infoframe), framebox);
238
239         /* first row */
240         hbox = gtk_hbox_new(FALSE, 3);
241         gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
242
243         info_stat_w.date = new_info_label_in_frame(hbox, "Date");
244         info_stat_w.dive_time = new_info_label_in_frame(hbox, "Dive Time");
245         info_stat_w.surf_intv = new_info_label_in_frame(hbox, "Surf Intv");
246
247         /* second row */
248         hbox = gtk_hbox_new(FALSE, 3);
249         gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
250
251         info_stat_w.max_depth = new_info_label_in_frame(hbox, "Max Depth");
252         info_stat_w.avg_depth = new_info_label_in_frame(hbox, "Avg Depth");
253         info_stat_w.water_temp = new_info_label_in_frame(hbox, "Water Temp");
254
255         /* third row */
256         hbox = gtk_hbox_new(FALSE, 3);
257         gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
258
259         info_stat_w.sac = new_info_label_in_frame(hbox, "SAC");
260         info_stat_w.otu = new_info_label_in_frame(hbox, "OTU");
261         info_stat_w.o2he = new_info_label_in_frame(hbox, "O" UTF8_SUBSCRIPT_2 " / He");
262         info_stat_w.gas_used = new_info_label_in_frame(hbox, "Gas Used");
263
264         statsframe = gtk_frame_new("Statistics");
265         gtk_box_pack_start(GTK_BOX(vbox), statsframe, TRUE, FALSE, 3);
266         framebox = gtk_vbox_new(FALSE, 3);
267         gtk_container_add(GTK_CONTAINER(statsframe), framebox);
268
269         /* first row */
270         hbox = gtk_hbox_new(FALSE, 3);
271         gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
272
273         info_stat_w.total_time = new_info_label_in_frame(hbox, "Total Time");
274         info_stat_w.avg_time = new_info_label_in_frame(hbox, "Avg Time");
275         info_stat_w.max_overall_depth = new_info_label_in_frame(hbox, "Max Depth");
276         info_stat_w.avg_overall_depth = new_info_label_in_frame(hbox, "Avg Depth");
277
278         /* second row */
279         hbox = gtk_hbox_new(FALSE, 3);
280         gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
281
282         info_stat_w.max_sac = new_info_label_in_frame(hbox, "Max SAC");
283         info_stat_w.min_sac = new_info_label_in_frame(hbox, "Min SAC");
284         info_stat_w.avg_sac = new_info_label_in_frame(hbox, "Avg SAC");
285
286         return vbox;
287 }