2011-11-02 16:10:57 +00:00
|
|
|
/* statistics.c */
|
|
|
|
/* creates the UI for the Info & Stats page -
|
|
|
|
* controlled through the following interfaces:
|
|
|
|
*
|
|
|
|
* void show_dive_stats(struct dive *dive)
|
|
|
|
* void flush_dive_stats_changes(struct dive *dive)
|
|
|
|
*
|
|
|
|
* called from gtk-ui:
|
|
|
|
* GtkWidget *stats_widget(void)
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "dive.h"
|
|
|
|
#include "display.h"
|
|
|
|
#include "display-gtk.h"
|
|
|
|
#include "divelist.h"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GtkWidget *date,
|
|
|
|
*dive_time,
|
|
|
|
*surf_intv,
|
|
|
|
*max_depth,
|
|
|
|
*avg_depth,
|
|
|
|
*water_temp,
|
|
|
|
*sac,
|
|
|
|
*otu,
|
|
|
|
*o2he,
|
2012-01-15 21:19:39 +00:00
|
|
|
*gas_used;
|
|
|
|
} single_stat_widget_t;
|
|
|
|
|
|
|
|
static single_stat_widget_t single_w;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GtkWidget *total_time,
|
2011-11-02 16:10:57 +00:00
|
|
|
*avg_time,
|
|
|
|
*max_overall_depth,
|
|
|
|
*avg_overall_depth,
|
|
|
|
*min_sac,
|
|
|
|
*avg_sac,
|
|
|
|
*max_sac;
|
2012-01-15 21:19:39 +00:00
|
|
|
} total_stats_widget_t;
|
2011-11-02 16:10:57 +00:00
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
static total_stats_widget_t stats_w;
|
2011-11-02 16:10:57 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
duration_t total_time;
|
|
|
|
/* avg_time is simply total_time / nr -- let's not keep this */
|
|
|
|
depth_t max_depth;
|
|
|
|
depth_t avg_depth;
|
|
|
|
volume_t max_sac;
|
|
|
|
volume_t min_sac;
|
|
|
|
volume_t avg_sac;
|
2012-01-15 21:19:39 +00:00
|
|
|
} stats_t;
|
2011-11-02 16:10:57 +00:00
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
static stats_t stats;
|
2011-11-02 16:10:57 +00:00
|
|
|
|
|
|
|
static void process_all_dives(struct dive *dive, struct dive **prev_dive)
|
|
|
|
{
|
|
|
|
int idx;
|
|
|
|
struct dive *dp;
|
|
|
|
int old_tt, sac_time = 0;
|
|
|
|
|
|
|
|
*prev_dive = NULL;
|
2012-01-15 21:19:39 +00:00
|
|
|
memset(&stats, 0, sizeof(stats));
|
2011-11-02 16:10:57 +00:00
|
|
|
/* this relies on the fact that the dives in the dive_table
|
|
|
|
* are in chronological order */
|
|
|
|
for (idx = 0; idx < dive_table.nr; idx++) {
|
|
|
|
dp = dive_table.dives[idx];
|
|
|
|
if (dp->when == dive->when) {
|
|
|
|
/* that's the one we are showing */
|
|
|
|
if (idx > 0)
|
|
|
|
*prev_dive = dive_table.dives[idx-1];
|
|
|
|
}
|
2012-01-15 21:19:39 +00:00
|
|
|
old_tt = stats.total_time.seconds;
|
|
|
|
stats.total_time.seconds += dp->duration.seconds;
|
|
|
|
if (dp->maxdepth.mm > stats.max_depth.mm)
|
|
|
|
stats.max_depth.mm = dp->maxdepth.mm;
|
|
|
|
stats.avg_depth.mm = (1.0 * old_tt * stats.avg_depth.mm +
|
|
|
|
dp->duration.seconds * dp->meandepth.mm) / stats.total_time.seconds;
|
2011-11-02 22:31:41 +00:00
|
|
|
if (dp->sac > 2800) { /* less than .1 cuft/min (2800ml/min) is bogus */
|
2011-11-02 16:10:57 +00:00
|
|
|
int old_sac_time = sac_time;
|
|
|
|
sac_time += dp->duration.seconds;
|
2012-01-15 21:19:39 +00:00
|
|
|
stats.avg_sac.mliter = (1.0 * old_sac_time * stats.avg_sac.mliter +
|
2011-11-02 16:10:57 +00:00
|
|
|
dp->duration.seconds * dp->sac) / sac_time ;
|
2012-01-15 21:19:39 +00:00
|
|
|
if (dp->sac > stats.max_sac.mliter)
|
|
|
|
stats.max_sac.mliter = dp->sac;
|
|
|
|
if (stats.min_sac.mliter == 0 || dp->sac < stats.min_sac.mliter)
|
|
|
|
stats.min_sac.mliter = dp->sac;
|
2011-11-02 16:10:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_label(GtkWidget *w, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char buf[80];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
gtk_label_set_text(GTK_LABEL(w), buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char * get_time_string(int seconds, int maxdays)
|
|
|
|
{
|
|
|
|
static char buf[80];
|
|
|
|
if (maxdays && seconds > 3600 * 24 * maxdays)
|
|
|
|
snprintf(buf, sizeof(buf), "more than %d days", maxdays);
|
|
|
|
else {
|
|
|
|
int days = seconds / 3600 / 24;
|
|
|
|
int hours = (seconds - days * 3600 * 24) / 3600;
|
|
|
|
int minutes = (seconds - days * 3600 * 24 - hours * 3600) / 60;
|
|
|
|
if (days > 0)
|
|
|
|
snprintf(buf, sizeof(buf), "%dd %dh %dmin", days, hours, minutes);
|
|
|
|
else
|
|
|
|
snprintf(buf, sizeof(buf), "%dh %dmin", hours, minutes);
|
|
|
|
}
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
static void show_single_dive_stats(struct dive *dive)
|
2011-11-02 16:10:57 +00:00
|
|
|
{
|
|
|
|
char buf[80];
|
|
|
|
double value;
|
|
|
|
int decimals;
|
|
|
|
const char *unit;
|
|
|
|
int idx, offset, gas_used;
|
|
|
|
struct dive *prev_dive;
|
2011-11-07 05:33:49 +00:00
|
|
|
struct tm *tm;
|
2011-11-02 16:10:57 +00:00
|
|
|
|
|
|
|
process_all_dives(dive, &prev_dive);
|
|
|
|
|
2011-11-07 05:33:49 +00:00
|
|
|
tm = gmtime(&dive->when);
|
|
|
|
snprintf(buf, sizeof(buf),
|
|
|
|
"%s, %s %d, %d %2d:%02d",
|
|
|
|
weekday(tm->tm_wday),
|
|
|
|
monthname(tm->tm_mon),
|
|
|
|
tm->tm_mday, tm->tm_year + 1900,
|
|
|
|
tm->tm_hour, tm->tm_min);
|
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.date, buf);
|
|
|
|
set_label(single_w.dive_time, "%d min", (dive->duration.seconds + 30) / 60);
|
2011-11-02 16:10:57 +00:00
|
|
|
if (prev_dive)
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.surf_intv,
|
2011-11-02 20:27:25 +00:00
|
|
|
get_time_string(dive->when - (prev_dive->when + prev_dive->duration.seconds), 4));
|
2011-11-02 16:10:57 +00:00
|
|
|
else
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.surf_intv, "unknown");
|
2011-11-02 16:10:57 +00:00
|
|
|
value = get_depth_units(dive->maxdepth.mm, &decimals, &unit);
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.max_depth, "%.*f %s", decimals, value, unit);
|
2011-11-02 16:10:57 +00:00
|
|
|
value = get_depth_units(dive->meandepth.mm, &decimals, &unit);
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.avg_depth, "%.*f %s", decimals, value, unit);
|
2011-11-04 22:09:56 +00:00
|
|
|
if (dive->watertemp.mkelvin) {
|
2011-11-04 17:57:26 +00:00
|
|
|
value = get_temp_units(dive->watertemp.mkelvin, &unit);
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.water_temp, "%.1f %s", value, unit);
|
2011-11-04 17:57:26 +00:00
|
|
|
} else
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.water_temp, "");
|
2011-11-02 16:10:57 +00:00
|
|
|
value = get_volume_units(dive->sac, &decimals, &unit);
|
|
|
|
if (value > 0) {
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.sac, "%.*f %s/min", decimals, value, unit);
|
2011-11-02 16:10:57 +00:00
|
|
|
} else
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.sac, "");
|
|
|
|
set_label(single_w.otu, "%d", dive->otu);
|
2011-11-02 16:10:57 +00:00
|
|
|
offset = 0;
|
|
|
|
gas_used = 0;
|
|
|
|
buf[0] = '\0';
|
|
|
|
/* for the O2/He readings just create a list of them */
|
|
|
|
for (idx = 0; idx < MAX_CYLINDERS; idx++) {
|
|
|
|
cylinder_t *cyl = &dive->cylinder[idx];
|
2011-11-09 16:06:17 +00:00
|
|
|
unsigned int start, end;
|
|
|
|
|
|
|
|
start = cyl->start.mbar ? : cyl->sample_start.mbar;
|
|
|
|
end = cyl->end.mbar ? : cyl->sample_end.mbar;
|
2011-12-09 17:52:59 +00:00
|
|
|
if (!cylinder_none(cyl)) {
|
2011-11-02 16:10:57 +00:00
|
|
|
/* 0% O2 strangely means air, so 21% - I don't like that at all */
|
2011-12-31 16:15:59 +00:00
|
|
|
int o2 = cyl->gasmix.o2.permille ? : AIR_PERMILLE;
|
2011-11-02 16:10:57 +00:00
|
|
|
if (offset > 0) {
|
|
|
|
snprintf(buf+offset, 80-offset, ", ");
|
|
|
|
offset += 2;
|
|
|
|
}
|
|
|
|
snprintf(buf+offset, 80-offset, "%d/%d", (o2 + 5) / 10,
|
|
|
|
(cyl->gasmix.he.permille + 5) / 10);
|
|
|
|
offset = strlen(buf);
|
|
|
|
}
|
|
|
|
/* and if we have size, start and end pressure, we can
|
|
|
|
* calculate the total gas used */
|
2011-11-09 16:06:17 +00:00
|
|
|
if (cyl->type.size.mliter && start && end)
|
|
|
|
gas_used += cyl->type.size.mliter / 1000.0 * (start - end);
|
2011-11-02 16:10:57 +00:00
|
|
|
}
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.o2he, buf);
|
2011-11-02 16:10:57 +00:00
|
|
|
if (gas_used) {
|
|
|
|
value = get_volume_units(gas_used, &decimals, &unit);
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.gas_used, "%.*f %s", decimals, value, unit);
|
2011-11-02 16:10:57 +00:00
|
|
|
} else
|
2012-01-15 21:19:39 +00:00
|
|
|
set_label(single_w.gas_used, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void show_total_dive_stats(struct dive *dive)
|
|
|
|
{
|
|
|
|
double value;
|
|
|
|
int decimals;
|
|
|
|
const char *unit;
|
|
|
|
|
|
|
|
set_label(stats_w.total_time, get_time_string(stats.total_time.seconds, 0));
|
|
|
|
set_label(stats_w.avg_time, get_time_string(stats.total_time.seconds / dive_table.nr, 0));
|
|
|
|
value = get_depth_units(stats.max_depth.mm, &decimals, &unit);
|
|
|
|
set_label(stats_w.max_overall_depth, "%.*f %s", decimals, value, unit);
|
|
|
|
value = get_depth_units(stats.avg_depth.mm, &decimals, &unit);
|
|
|
|
set_label(stats_w.avg_overall_depth, "%.*f %s", decimals, value, unit);
|
|
|
|
value = get_volume_units(stats.max_sac.mliter, &decimals, &unit);
|
|
|
|
set_label(stats_w.max_sac, "%.*f %s/min", decimals, value, unit);
|
|
|
|
value = get_volume_units(stats.min_sac.mliter, &decimals, &unit);
|
|
|
|
set_label(stats_w.min_sac, "%.*f %s/min", decimals, value, unit);
|
|
|
|
value = get_volume_units(stats.avg_sac.mliter, &decimals, &unit);
|
|
|
|
set_label(stats_w.avg_sac, "%.*f %s/min", decimals, value, unit);
|
|
|
|
}
|
|
|
|
|
|
|
|
void show_dive_stats(struct dive *dive)
|
|
|
|
{
|
|
|
|
show_single_dive_stats(dive);
|
|
|
|
show_total_dive_stats(dive);
|
2011-11-02 16:10:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void flush_dive_stats_changes(struct dive *dive)
|
|
|
|
{
|
|
|
|
/* We do nothing: we require the "Ok" button press */
|
|
|
|
}
|
|
|
|
|
|
|
|
static GtkWidget *new_info_label_in_frame(GtkWidget *box, const char *label)
|
|
|
|
{
|
|
|
|
GtkWidget *label_widget;
|
|
|
|
GtkWidget *frame;
|
|
|
|
|
|
|
|
frame = gtk_frame_new(label);
|
|
|
|
label_widget = gtk_label_new(NULL);
|
|
|
|
gtk_box_pack_start(GTK_BOX(box), frame, TRUE, TRUE, 3);
|
|
|
|
gtk_container_add(GTK_CONTAINER(frame), label_widget);
|
|
|
|
|
|
|
|
return label_widget;
|
|
|
|
}
|
|
|
|
|
2012-01-15 22:29:08 +00:00
|
|
|
GtkWidget *total_stats_widget(void)
|
2011-11-02 16:10:57 +00:00
|
|
|
{
|
2012-01-15 22:29:08 +00:00
|
|
|
GtkWidget *vbox, *hbox, *statsframe, *framebox;
|
2011-11-02 16:10:57 +00:00
|
|
|
|
2012-01-15 22:29:08 +00:00
|
|
|
vbox = gtk_vbox_new(FALSE, 3);
|
2011-11-02 16:10:57 +00:00
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
statsframe = gtk_frame_new("Statistics");
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), statsframe, TRUE, FALSE, 3);
|
2011-11-02 16:10:57 +00:00
|
|
|
framebox = gtk_vbox_new(FALSE, 3);
|
2012-01-15 21:19:39 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(statsframe), framebox);
|
2011-11-02 16:10:57 +00:00
|
|
|
|
|
|
|
/* first row */
|
|
|
|
hbox = gtk_hbox_new(FALSE, 3);
|
|
|
|
gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
|
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
stats_w.total_time = new_info_label_in_frame(hbox, "Total Time");
|
|
|
|
stats_w.avg_time = new_info_label_in_frame(hbox, "Avg Time");
|
|
|
|
stats_w.max_overall_depth = new_info_label_in_frame(hbox, "Max Depth");
|
|
|
|
stats_w.avg_overall_depth = new_info_label_in_frame(hbox, "Avg Depth");
|
2011-11-02 16:10:57 +00:00
|
|
|
|
|
|
|
/* second row */
|
|
|
|
hbox = gtk_hbox_new(FALSE, 3);
|
|
|
|
gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
|
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
stats_w.max_sac = new_info_label_in_frame(hbox, "Max SAC");
|
|
|
|
stats_w.min_sac = new_info_label_in_frame(hbox, "Min SAC");
|
|
|
|
stats_w.avg_sac = new_info_label_in_frame(hbox, "Avg SAC");
|
2011-11-02 16:10:57 +00:00
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
return vbox;
|
|
|
|
}
|
|
|
|
|
2012-01-15 22:29:08 +00:00
|
|
|
GtkWidget *single_stats_widget(void)
|
2012-01-15 21:19:39 +00:00
|
|
|
{
|
|
|
|
GtkWidget *vbox, *hbox, *infoframe, *framebox;
|
2011-11-02 16:10:57 +00:00
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
vbox = gtk_vbox_new(FALSE, 3);
|
|
|
|
|
|
|
|
infoframe = gtk_frame_new("Dive Info");
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), infoframe, TRUE, FALSE, 3);
|
2011-11-02 16:10:57 +00:00
|
|
|
framebox = gtk_vbox_new(FALSE, 3);
|
2012-01-15 21:19:39 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(infoframe), framebox);
|
2011-11-02 16:10:57 +00:00
|
|
|
|
|
|
|
/* first row */
|
|
|
|
hbox = gtk_hbox_new(FALSE, 3);
|
|
|
|
gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
|
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
single_w.date = new_info_label_in_frame(hbox, "Date");
|
|
|
|
single_w.dive_time = new_info_label_in_frame(hbox, "Dive Time");
|
|
|
|
single_w.surf_intv = new_info_label_in_frame(hbox, "Surf Intv");
|
2011-11-02 16:10:57 +00:00
|
|
|
|
|
|
|
/* second row */
|
|
|
|
hbox = gtk_hbox_new(FALSE, 3);
|
|
|
|
gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
|
|
|
|
|
2012-01-15 21:19:39 +00:00
|
|
|
single_w.max_depth = new_info_label_in_frame(hbox, "Max Depth");
|
|
|
|
single_w.avg_depth = new_info_label_in_frame(hbox, "Avg Depth");
|
|
|
|
single_w.water_temp = new_info_label_in_frame(hbox, "Water Temp");
|
|
|
|
|
|
|
|
/* third row */
|
|
|
|
hbox = gtk_hbox_new(FALSE, 3);
|
|
|
|
gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
|
|
|
|
|
|
|
|
single_w.sac = new_info_label_in_frame(hbox, "SAC");
|
|
|
|
single_w.otu = new_info_label_in_frame(hbox, "OTU");
|
|
|
|
single_w.o2he = new_info_label_in_frame(hbox, "O" UTF8_SUBSCRIPT_2 " / He");
|
|
|
|
single_w.gas_used = new_info_label_in_frame(hbox, "Gas Used");
|
2011-11-02 16:10:57 +00:00
|
|
|
|
|
|
|
return vbox;
|
|
|
|
}
|