2011-08-31 01:40:25 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
2011-08-31 02:48:00 +00:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
#include <cairo.h>
|
2011-08-31 01:40:25 +00:00
|
|
|
|
|
|
|
#include "dive.h"
|
|
|
|
|
|
|
|
static void show_dive(int nr, struct dive *dive)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct tm *tm;
|
|
|
|
|
|
|
|
tm = gmtime(&dive->when);
|
|
|
|
|
|
|
|
printf("At %02d:%02d:%02d %04d-%02d-%02d (%d ft max, %d minutes)\n",
|
|
|
|
tm->tm_hour, tm->tm_min, tm->tm_sec,
|
|
|
|
tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
|
|
|
|
to_feet(dive->maxdepth), dive->duration.seconds / 60);
|
|
|
|
|
|
|
|
if (!verbose)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < dive->samples; i++) {
|
|
|
|
struct sample *s = dive->sample + i;
|
|
|
|
|
|
|
|
printf("%4d:%02d: %3d ft, %2d C, %4d PSI\n",
|
|
|
|
s->time.seconds / 60,
|
|
|
|
s->time.seconds % 60,
|
|
|
|
to_feet(s->depth),
|
|
|
|
to_C(s->temperature),
|
|
|
|
to_PSI(s->tankpressure));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sortfn(const void *_a, const void *_b)
|
|
|
|
{
|
|
|
|
const struct dive *a = *(void **)_a;
|
|
|
|
const struct dive *b = *(void **)_b;
|
|
|
|
|
|
|
|
if (a->when < b->when)
|
|
|
|
return -1;
|
|
|
|
if (a->when > b->when)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-31 02:48:00 +00:00
|
|
|
/*
|
|
|
|
* This doesn't really report anything at all. We just sort the
|
|
|
|
* dives, the GUI does the reporting
|
|
|
|
*/
|
2011-08-31 01:40:25 +00:00
|
|
|
static void report_dives(void)
|
|
|
|
{
|
|
|
|
qsort(dive_table.dives, dive_table.nr, sizeof(struct dive *), sortfn);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parse_argument(const char *arg)
|
|
|
|
{
|
|
|
|
const char *p = arg+1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
switch (*p) {
|
|
|
|
case 'v':
|
|
|
|
verbose++;
|
|
|
|
continue;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Bad argument '%s'\n", arg);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
} while (*++p);
|
|
|
|
}
|
|
|
|
|
2011-08-31 02:48:00 +00:00
|
|
|
static void on_destroy(GtkWidget* w, gpointer data)
|
|
|
|
{
|
|
|
|
gtk_main_quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean on_expose(GtkWidget* w, GdkEventExpose* e, gpointer data)
|
|
|
|
{
|
|
|
|
cairo_t* cr;
|
|
|
|
cr = gdk_cairo_create(w->window);
|
|
|
|
cairo_destroy(cr);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-08-31 01:40:25 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
2011-08-31 02:48:00 +00:00
|
|
|
GtkWidget* win;
|
2011-08-31 01:40:25 +00:00
|
|
|
|
|
|
|
parse_xml_init();
|
|
|
|
|
2011-08-31 02:48:00 +00:00
|
|
|
gtk_init(&argc, &argv);
|
|
|
|
|
2011-08-31 01:40:25 +00:00
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
const char *a = argv[i];
|
|
|
|
|
|
|
|
if (a[0] == '-') {
|
|
|
|
parse_argument(a);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
parse_xml_file(a);
|
|
|
|
}
|
2011-08-31 02:48:00 +00:00
|
|
|
|
2011-08-31 01:40:25 +00:00
|
|
|
report_dives();
|
2011-08-31 02:48:00 +00:00
|
|
|
|
|
|
|
win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
|
|
|
g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(on_destroy), NULL);
|
|
|
|
g_signal_connect(G_OBJECT(win), "expose-event", G_CALLBACK(on_expose), NULL);
|
|
|
|
gtk_widget_set_app_paintable(win, TRUE);
|
|
|
|
gtk_widget_show_all(win);
|
|
|
|
|
|
|
|
gtk_main();
|
2011-08-31 01:40:25 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|