]> git.tdb.fi Git - ext/subsurface.git/blob - profile.c
Merge branch 'change_quit2' of http://ambre.pingoured.fr/cgit/subsurface
[ext/subsurface.git] / profile.c
1 /* profile.c */
2 /* creates all the necessary data for drawing the dive profile 
3  * uses cairo to draw it
4  */
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <stdarg.h>
8 #include <string.h>
9 #include <time.h>
10
11 #include "dive.h"
12 #include "display.h"
13 #include "divelist.h"
14 #include "color.h"
15
16 int selected_dive = 0;
17 int *selectiontracker;
18
19 typedef enum { STABLE, SLOW, MODERATE, FAST, CRAZY } velocity_t;
20
21 /* Plot info with smoothing, velocity indication
22  * and one-, two- and three-minute minimums and maximums */
23 struct plot_info {
24         int nr;
25         int maxtime;
26         int meandepth, maxdepth;
27         int maxpressure;
28         int mintemp, maxtemp;
29         struct plot_data {
30                 unsigned int same_cylinder:1;
31                 unsigned int cylinderindex;
32                 int sec;
33                 /* pressure[0] is sensor pressure
34                  * pressure[1] is interpolated pressure */
35                 int pressure[2];
36                 int temperature;
37                 /* Depth info */
38                 int depth;
39                 int smoothed;
40                 velocity_t velocity;
41                 struct plot_data *min[3];
42                 struct plot_data *max[3];
43                 int avg[3];
44         } entry[];
45 };
46
47 #define SENSOR_PR 0
48 #define INTERPOLATED_PR 1
49 #define SENSOR_PRESSURE(_entry) (_entry)->pressure[SENSOR_PR]
50 #define INTERPOLATED_PRESSURE(_entry) (_entry)->pressure[INTERPOLATED_PR]
51 #define GET_PRESSURE(_entry) (SENSOR_PRESSURE(_entry) ? : INTERPOLATED_PRESSURE(_entry))
52
53 #define SAC_COLORS_START_IDX SAC_1
54 #define SAC_COLORS 9
55 #define VELOCITY_COLORS_START_IDX VELO_STABLE
56 #define VELOCITY_COLORS 5
57
58 typedef enum {
59         /* SAC colors. Order is important, the SAC_COLORS_START_IDX define above. */
60         SAC_1, SAC_2, SAC_3, SAC_4, SAC_5, SAC_6, SAC_7, SAC_8, SAC_9,
61
62         /* Velocity colors.  Order is still important, ref VELOCITY_COLORS_START_IDX. */
63         VELO_STABLE, VELO_SLOW, VELO_MODERATE, VELO_FAST, VELO_CRAZY,
64
65         /* Other colors */
66         TEXT_BACKGROUND, ALERT_BG, ALERT_FG, EVENTS, SAMPLE_DEEP, SAMPLE_SHALLOW,
67         SMOOTHED, MINUTE, TIME_GRID, TIME_TEXT, DEPTH_GRID, MEAN_DEPTH, DEPTH_TOP,
68         DEPTH_BOTTOM, TEMP_TEXT, TEMP_PLOT, SAC_DEFAULT, BOUNDING_BOX, PRESSURE_TEXT, BACKGROUND
69 } color_indice_t;
70
71 typedef struct {
72         /* media[0] is screen, and media[1] is printer */
73         struct rgba {
74                 double r,g,b,a;
75         } media[2];
76 } color_t;
77
78 /* [color indice] = {{screen color, printer color}} */
79 static const color_t profile_color[] = {
80         [SAC_1]           = {{FUNGREEN1, BLACK1_LOW_TRANS}},
81         [SAC_2]           = {{APPLE1, BLACK1_LOW_TRANS}},
82         [SAC_3]           = {{ATLANTIS1, BLACK1_LOW_TRANS}},
83         [SAC_4]           = {{ATLANTIS2, BLACK1_LOW_TRANS}},
84         [SAC_5]           = {{EARLSGREEN1, BLACK1_LOW_TRANS}},
85         [SAC_6]           = {{HOKEYPOKEY1, BLACK1_LOW_TRANS}},
86         [SAC_7]           = {{TUSCANY1, BLACK1_LOW_TRANS}},
87         [SAC_8]           = {{CINNABAR1, BLACK1_LOW_TRANS}},
88         [SAC_9]           = {{REDORANGE1, BLACK1_LOW_TRANS}},
89
90         [VELO_STABLE]     = {{CAMARONE1, BLACK1_LOW_TRANS}},
91         [VELO_SLOW]       = {{LIMENADE1, BLACK1_LOW_TRANS}},
92         [VELO_MODERATE]   = {{RIOGRANDE1, BLACK1_LOW_TRANS}},
93         [VELO_FAST]       = {{PIRATEGOLD1, BLACK1_LOW_TRANS}},
94         [VELO_CRAZY]      = {{RED1, BLACK1_LOW_TRANS}},
95
96         [TEXT_BACKGROUND] = {{CONCRETE1_LOWER_TRANS, WHITE1}},
97         [ALERT_BG]        = {{BROOM1_LOWER_TRANS, BLACK1_LOW_TRANS}},
98         [ALERT_FG]        = {{BLACK1_LOW_TRANS, BLACK1_LOW_TRANS}},
99         [EVENTS]          = {{REDORANGE1, BLACK1_LOW_TRANS}},
100         [SAMPLE_DEEP]     = {{PERSIANRED1, BLACK1_LOW_TRANS}},
101         [SAMPLE_SHALLOW]  = {{PERSIANRED1, BLACK1_LOW_TRANS}},
102         [SMOOTHED]        = {{REDORANGE1_HIGH_TRANS, BLACK1_LOW_TRANS}},
103         [MINUTE]          = {{MEDIUMREDVIOLET1_HIGHER_TRANS, BLACK1_LOW_TRANS}},
104         [TIME_GRID]       = {{WHITE1, TUNDORA1_MED_TRANS}},
105         [TIME_TEXT]       = {{FORESTGREEN1, BLACK1_LOW_TRANS}},
106         [DEPTH_GRID]      = {{WHITE1, TUNDORA1_MED_TRANS}},
107         [MEAN_DEPTH]      = {{REDORANGE1_MED_TRANS, BLACK1_LOW_TRANS}},
108         [DEPTH_BOTTOM]    = {{GOVERNORBAY1_MED_TRANS, TUNDORA1_MED_TRANS}},
109         [DEPTH_TOP]       = {{MERCURY1_MED_TRANS, WHITE1_MED_TRANS}},
110         [TEMP_TEXT]       = {{GOVERNORBAY2, BLACK1_LOW_TRANS}},
111         [TEMP_PLOT]       = {{ROYALBLUE2_LOW_TRANS, BLACK1_LOW_TRANS}},
112         [SAC_DEFAULT]     = {{WHITE1, BLACK1_LOW_TRANS}},
113         [BOUNDING_BOX]    = {{WHITE1, BLACK1_LOW_TRANS}},
114         [PRESSURE_TEXT]   = {{KILLARNEY1, BLACK1_LOW_TRANS}},
115         [BACKGROUND]      = {{SPRINGWOOD1, BLACK1_LOW_TRANS}},
116 };
117
118 #define plot_info_size(nr) (sizeof(struct plot_info) + (nr)*sizeof(struct plot_data))
119
120 /* Scale to 0,0 -> maxx,maxy */
121 #define SCALEX(gc,x)  (((x)-gc->leftx)/(gc->rightx-gc->leftx)*gc->maxx)
122 #define SCALEY(gc,y)  (((y)-gc->topy)/(gc->bottomy-gc->topy)*gc->maxy)
123 #define SCALE(gc,x,y) SCALEX(gc,x),SCALEY(gc,y)
124
125 static void move_to(struct graphics_context *gc, double x, double y)
126 {
127         cairo_move_to(gc->cr, SCALE(gc, x, y));
128 }
129
130 static void line_to(struct graphics_context *gc, double x, double y)
131 {
132         cairo_line_to(gc->cr, SCALE(gc, x, y));
133 }
134
135 static void set_source_rgba(struct graphics_context *gc, color_indice_t c)
136 {
137         const color_t *col = &profile_color[c];
138         struct rgba rgb = col->media[gc->printer];
139         double r = rgb.r;
140         double g = rgb.g;
141         double b = rgb.b;
142         double a = rgb.a;
143
144         cairo_set_source_rgba(gc->cr, r, g, b, a);
145 }
146
147 void init_profile_background(struct graphics_context *gc)
148 {
149         set_source_rgba(gc, BACKGROUND);
150 }
151
152 void pattern_add_color_stop_rgba(struct graphics_context *gc, cairo_pattern_t *pat, double o, color_indice_t c)
153 {
154         const color_t *col = &profile_color[c];
155         struct rgba rgb = col->media[gc->printer];
156         cairo_pattern_add_color_stop_rgba(pat, o, rgb.r, rgb.g, rgb.b, rgb.a);
157 }
158
159 #define ROUND_UP(x,y) ((((x)+(y)-1)/(y))*(y))
160
161 /* debugging tool - not normally used */
162 static void dump_pi (struct plot_info *pi)
163 {
164         int i;
165
166         printf("pi:{nr:%d maxtime:%d meandepth:%d maxdepth:%d \n"
167                 "    maxpressure:%d mintemp:%d maxtemp:%d\n",
168                 pi->nr, pi->maxtime, pi->meandepth, pi->maxdepth,
169                 pi->maxpressure, pi->mintemp, pi->maxtemp);
170         for (i = 0; i < pi->nr; i++)
171                 printf("    entry[%d]:{same_cylinder:%d cylinderindex:%d sec:%d pressure:{%d,%d}\n"
172                         "                time:%d:%02d temperature:%d depth:%d smoothed:%d}\n",
173                         i, pi->entry[i].same_cylinder, pi->entry[i].cylinderindex, pi->entry[i].sec,
174                         pi->entry[i].pressure[0], pi->entry[i].pressure[1],
175                         pi->entry[i].sec / 60, pi->entry[i].sec % 60,
176                         pi->entry[i].temperature, pi->entry[i].depth, pi->entry[i].smoothed);
177         printf("   }\n");
178 }
179
180 /*
181  * When showing dive profiles, we scale things to the
182  * current dive. However, we don't scale past less than
183  * 30 minutes or 90 ft, just so that small dives show
184  * up as such.
185  * we also need to add 180 seconds at the end so the min/max
186  * plots correctly
187  */
188 static int get_maxtime(struct plot_info *pi)
189 {
190         int seconds = pi->maxtime;
191         /* min 30 minutes, rounded up to 5 minutes, with at least 2.5 minutes to spare */
192         return MAX(30*60, ROUND_UP(seconds+150, 60*5));
193 }
194
195 static int get_maxdepth(struct plot_info *pi)
196 {
197         unsigned mm = pi->maxdepth;
198         /* Minimum 30m, rounded up to 10m, with at least 3m to spare */
199         return MAX(30000, ROUND_UP(mm+3000, 10000));
200 }
201
202 typedef struct {
203         int size;
204         color_indice_t color;
205         double hpos, vpos;
206 } text_render_options_t;
207
208 #define RIGHT (-1.0)
209 #define CENTER (-0.5)
210 #define LEFT (0.0)
211
212 #define TOP (1)
213 #define MIDDLE (0)
214 #define BOTTOM (-1)
215
216 static void plot_text(struct graphics_context *gc, const text_render_options_t *tro,
217                       double x, double y, const char *fmt, ...)
218 {
219         cairo_t *cr = gc->cr;
220         cairo_font_extents_t fe;
221         cairo_text_extents_t extents;
222         double dx, dy;
223         char buffer[80];
224         va_list args;
225
226         va_start(args, fmt);
227         vsnprintf(buffer, sizeof(buffer), fmt, args);
228         va_end(args);
229
230         cairo_set_font_size(cr, tro->size);
231         cairo_font_extents(cr, &fe);
232         cairo_text_extents(cr, buffer, &extents);
233         dx = tro->hpos * extents.width + extents.x_bearing;
234         dy = tro->vpos * extents.height + fe.descent;
235
236         move_to(gc, x, y);
237         cairo_rel_move_to(cr, dx, dy);
238
239         cairo_text_path(cr, buffer);
240         set_source_rgba(gc, TEXT_BACKGROUND);
241         cairo_stroke(cr);
242
243         move_to(gc, x, y);
244         cairo_rel_move_to(cr, dx, dy);
245
246         set_source_rgba(gc, tro->color);
247         cairo_show_text(cr, buffer);
248 }
249
250 struct ev_select {
251         char *ev_name;
252         gboolean plot_ev;
253 };
254 static struct ev_select *ev_namelist;
255 static int evn_allocated;
256 static int evn_used;
257
258 void evn_foreach(void (*callback)(const char *, int *, void *), void *data)
259 {
260         int i;
261
262         for (i = 0; i < evn_used; i++) {
263                 callback(ev_namelist[i].ev_name, &ev_namelist[i].plot_ev, data);
264         }
265 }
266
267 void remember_event(const char *eventname)
268 {
269         int i=0, len;
270
271         if (!eventname || (len = strlen(eventname)) == 0)
272                 return;
273         while (i < evn_used) {
274                 if (!strncmp(eventname,ev_namelist[i].ev_name,len))
275                         return;
276                 i++;
277         }
278         if (evn_used == evn_allocated) {
279                 evn_allocated += 10;
280                 ev_namelist = realloc(ev_namelist, evn_allocated * sizeof(struct ev_select));
281                 if (! ev_namelist)
282                         /* we are screwed, but let's just bail out */
283                         return;
284         }
285         ev_namelist[evn_used].ev_name = strdup(eventname);
286         ev_namelist[evn_used].plot_ev = TRUE;
287         evn_used++;
288 }
289
290 static void plot_one_event(struct graphics_context *gc, struct plot_info *pi, struct event *event, const text_render_options_t *tro)
291 {
292         int i, depth = 0;
293         int x,y;
294
295         /* is plotting this event disabled? */
296         if (event->name) {
297                 for (i = 0; i < evn_used; i++) {
298                         if (! strcmp(event->name, ev_namelist[i].ev_name)) {
299                                 if (ev_namelist[i].plot_ev)
300                                         break;
301                                 else
302                                         return;
303                         }
304                 }
305         }
306         for (i = 0; i < pi->nr; i++) {
307                 struct plot_data *data = pi->entry + i;
308                 if (event->time.seconds < data->sec)
309                         break;
310                 depth = data->depth;
311         }
312         /* draw a little tirangular marker and attach tooltip */
313         x = SCALEX(gc, event->time.seconds);
314         y = SCALEY(gc, depth);
315         set_source_rgba(gc, ALERT_BG);
316         cairo_move_to(gc->cr, x-15, y+6);
317         cairo_line_to(gc->cr, x-3  , y+6);
318         cairo_line_to(gc->cr, x-9, y-6);
319         cairo_line_to(gc->cr, x-15, y+6);
320         cairo_stroke_preserve(gc->cr);
321         cairo_fill(gc->cr);
322         set_source_rgba(gc, ALERT_FG);
323         cairo_move_to(gc->cr, x-9, y-3);
324         cairo_line_to(gc->cr, x-9, y+1);
325         cairo_move_to(gc->cr, x-9, y+4);
326         cairo_line_to(gc->cr, x-9, y+4);
327         cairo_stroke(gc->cr);
328         attach_tooltip(x-15, y-6, 12, 12, event->name);
329 }
330
331 static void plot_events(struct graphics_context *gc, struct plot_info *pi, struct dive *dive)
332 {
333         static const text_render_options_t tro = {14, EVENTS, CENTER, TOP};
334         struct event *event = dive->events;
335
336         if (gc->printer)
337                 return;
338
339         while (event) {
340                 plot_one_event(gc, pi, event, &tro);
341                 event = event->next;
342         }
343 }
344
345 static void render_depth_sample(struct graphics_context *gc, struct plot_data *entry, const text_render_options_t *tro)
346 {
347         int sec = entry->sec, decimals;
348         double d;
349
350         d = get_depth_units(entry->depth, &decimals, NULL);
351
352         plot_text(gc, tro, sec, entry->depth, "%.*f", decimals, d);
353 }
354
355 static void plot_text_samples(struct graphics_context *gc, struct plot_info *pi)
356 {
357         static const text_render_options_t deep = {14, SAMPLE_DEEP, CENTER, TOP};
358         static const text_render_options_t shallow = {14, SAMPLE_SHALLOW, CENTER, BOTTOM};
359         int i;
360         int last = -1;
361
362         for (i = 0; i < pi->nr; i++) {
363                 struct plot_data *entry = pi->entry + i;
364
365                 if (entry->depth < 2000)
366                         continue;
367
368                 if ((entry == entry->max[2]) && entry->depth != last) {
369                         render_depth_sample(gc, entry, &deep);
370                         last = entry->depth;
371                 }
372
373                 if ((entry == entry->min[2]) && entry->depth != last) {
374                         render_depth_sample(gc, entry, &shallow);
375                         last = entry->depth;
376                 }
377
378                 if (entry->depth != last)
379                         last = -1;
380         }
381 }
382
383 static void plot_depth_text(struct graphics_context *gc, struct plot_info *pi)
384 {
385         int maxtime, maxdepth;
386
387         /* Get plot scaling limits */
388         maxtime = get_maxtime(pi);
389         maxdepth = get_maxdepth(pi);
390
391         gc->leftx = 0; gc->rightx = maxtime;
392         gc->topy = 0; gc->bottomy = maxdepth;
393
394         plot_text_samples(gc, pi);
395 }
396
397 static void plot_smoothed_profile(struct graphics_context *gc, struct plot_info *pi)
398 {
399         int i;
400         struct plot_data *entry = pi->entry;
401
402         set_source_rgba(gc, SMOOTHED);
403         move_to(gc, entry->sec, entry->smoothed);
404         for (i = 1; i < pi->nr; i++) {
405                 entry++;
406                 line_to(gc, entry->sec, entry->smoothed);
407         }
408         cairo_stroke(gc->cr);
409 }
410
411 static void plot_minmax_profile_minute(struct graphics_context *gc, struct plot_info *pi,
412                                 int index)
413 {
414         int i;
415         struct plot_data *entry = pi->entry;
416
417         set_source_rgba(gc, MINUTE);
418         move_to(gc, entry->sec, entry->min[index]->depth);
419         for (i = 1; i < pi->nr; i++) {
420                 entry++;
421                 line_to(gc, entry->sec, entry->min[index]->depth);
422         }
423         for (i = 1; i < pi->nr; i++) {
424                 line_to(gc, entry->sec, entry->max[index]->depth);
425                 entry--;
426         }
427         cairo_close_path(gc->cr);
428         cairo_fill(gc->cr);
429 }
430
431 static void plot_minmax_profile(struct graphics_context *gc, struct plot_info *pi)
432 {
433         if (gc->printer)
434                 return;
435         plot_minmax_profile_minute(gc, pi, 2);
436         plot_minmax_profile_minute(gc, pi, 1);
437         plot_minmax_profile_minute(gc, pi, 0);
438 }
439
440 static void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi)
441 {
442         int i, incr;
443         cairo_t *cr = gc->cr;
444         int sec, depth;
445         struct plot_data *entry;
446         int maxtime, maxdepth, marker;
447         int increments[4] = { 5*60, 10*60, 15*60, 30*60 };
448
449         /* Get plot scaling limits */
450         maxtime = get_maxtime(pi);
451         maxdepth = get_maxdepth(pi);
452
453         /* Time markers: at most every 5 min, but no more than 12 markers
454          * and for convenience we do 5, 10, 15 or 30 min intervals.
455          * This allows for 6h dives - enough (I hope) for even the craziest
456          * divers - but just in case, for those 8h depth-record-breaking dives,
457          * we double the interval if this still doesn't get us to 12 or fewer
458          * time markers */
459         i = 0;
460         while (maxtime / increments[i] > 12 && i < 4)
461                 i++;
462         incr = increments[i];
463         while (maxtime / incr > 12)
464                 incr *= 2;
465
466         gc->leftx = 0; gc->rightx = maxtime;
467         gc->topy = 0; gc->bottomy = 1.0;
468         set_source_rgba(gc, TIME_GRID);
469         cairo_set_line_width(gc->cr, 2);
470
471         for (i = incr; i < maxtime; i += incr) {
472                 move_to(gc, i, 0);
473                 line_to(gc, i, 1);
474         }
475         cairo_stroke(cr);
476
477         /* now the text on every second time marker */
478         text_render_options_t tro = {10, TIME_TEXT, CENTER, TOP};
479         for (i = incr; i < maxtime; i += 2 * incr)
480                 plot_text(gc, &tro, i, 1, "%d", i/60);
481
482         /* Depth markers: every 30 ft or 10 m*/
483         gc->leftx = 0; gc->rightx = 1.0;
484         gc->topy = 0; gc->bottomy = maxdepth;
485         switch (output_units.length) {
486         case METERS: marker = 10000; break;
487         case FEET: marker = 9144; break;        /* 30 ft */
488         }
489
490         set_source_rgba(gc, DEPTH_GRID);
491         for (i = marker; i < maxdepth; i += marker) {
492                 move_to(gc, 0, i);
493                 line_to(gc, 1, i);
494         }
495         cairo_stroke(cr);
496
497         /* Show mean depth */
498         if (! gc->printer) {
499                 set_source_rgba(gc, MEAN_DEPTH);
500                 move_to(gc, 0, pi->meandepth);
501                 line_to(gc, 1, pi->meandepth);
502                 cairo_stroke(cr);
503         }
504
505         gc->leftx = 0; gc->rightx = maxtime;
506
507         /*
508          * These are good for debugging text placement etc,
509          * but not for actual display..
510          */
511         if (0) {
512                 plot_smoothed_profile(gc, pi);
513                 plot_minmax_profile(gc, pi);
514         }
515
516         /* Do the depth profile for the neat fill */
517         gc->topy = 0; gc->bottomy = maxdepth;
518
519         cairo_pattern_t *pat;
520         pat = cairo_pattern_create_linear (0.0, 0.0,  0.0, 256.0);
521         pattern_add_color_stop_rgba (gc, pat, 1, DEPTH_BOTTOM);
522         pattern_add_color_stop_rgba (gc, pat, 0, DEPTH_TOP);
523
524         cairo_set_source(gc->cr, pat);
525         cairo_pattern_destroy(pat);
526         cairo_set_line_width(gc->cr, 2);
527
528         entry = pi->entry;
529         move_to(gc, 0, 0);
530         for (i = 0; i < pi->nr; i++, entry++)
531                 line_to(gc, entry->sec, entry->depth);
532         cairo_close_path(gc->cr);
533
534         cairo_fill(gc->cr);
535
536         /* Now do it again for the velocity colors */
537         entry = pi->entry;
538         for (i = 1; i < pi->nr; i++) {
539                 entry++;
540                 sec = entry->sec;
541                 /* we want to draw the segments in different colors
542                  * representing the vertical velocity, so we need to
543                  * chop this into short segments */
544                 depth = entry->depth;
545                 set_source_rgba(gc, VELOCITY_COLORS_START_IDX + entry->velocity);
546                 move_to(gc, entry[-1].sec, entry[-1].depth);
547                 line_to(gc, sec, depth);
548                 cairo_stroke(cr);
549         }
550 }
551
552 static int setup_temperature_limits(struct graphics_context *gc, struct plot_info *pi)
553 {
554         int maxtime, mintemp, maxtemp, delta;
555
556         /* Get plot scaling limits */
557         maxtime = get_maxtime(pi);
558         mintemp = pi->mintemp;
559         maxtemp = pi->maxtemp;
560
561         gc->leftx = 0; gc->rightx = maxtime;
562         /* Show temperatures in roughly the lower third, but make sure the scale
563            is at least somewhat reasonable */
564         delta = maxtemp - mintemp;
565         if (delta > 3000) { /* more than 3K in fluctuation */
566                 gc->topy = maxtemp + delta*2;
567                 gc->bottomy = mintemp - delta/2;
568         } else {
569                 gc->topy = maxtemp + 1500 + delta*2;
570                 gc->bottomy = mintemp - delta/2;
571         }
572
573         return maxtemp > mintemp;
574 }
575
576 static void plot_single_temp_text(struct graphics_context *gc, int sec, int mkelvin)
577 {
578         double deg;
579         const char *unit;
580         static const text_render_options_t tro = {12, TEMP_TEXT, LEFT, TOP};
581
582         deg = get_temp_units(mkelvin, &unit);
583
584         plot_text(gc, &tro, sec, mkelvin, "%d%s", (int)(deg + 0.5), unit);
585 }
586
587 static void plot_temperature_text(struct graphics_context *gc, struct plot_info *pi)
588 {
589         int i;
590         int last = -300, sec = 0;
591         int last_temperature = 0, last_printed_temp = 0;
592
593         if (!setup_temperature_limits(gc, pi))
594                 return;
595
596         for (i = 0; i < pi->nr; i++) {
597                 struct plot_data *entry = pi->entry+i;
598                 int mkelvin = entry->temperature;
599
600                 if (!mkelvin)
601                         continue;
602                 last_temperature = mkelvin;
603                 sec = entry->sec;
604                 /* don't print a temperature
605                  * if it's been less than 5min and less than a 2K change OR
606                  * if it's been less than 2min OR if the change from the
607                  * last print is less than .4K (and therefore less than 1F */
608                 if (((sec < last + 300) && (abs(mkelvin - last_printed_temp) < 2000)) ||
609                         (sec < last + 120) ||
610                         (abs(mkelvin - last_printed_temp) < 400))
611                         continue;
612                 last = sec;
613                 plot_single_temp_text(gc,sec,mkelvin);
614                 last_printed_temp = mkelvin;
615         }
616         /* it would be nice to print the end temperature, if it's
617          * different or if the last temperature print has been more
618          * than a quarter of the dive back */
619         if ((abs(last_temperature - last_printed_temp) > 500) ||
620                 ((double)last / (double)sec < 0.75))
621                 plot_single_temp_text(gc, sec, last_temperature);
622 }
623
624 static void plot_temperature_profile(struct graphics_context *gc, struct plot_info *pi)
625 {
626         int i;
627         cairo_t *cr = gc->cr;
628         int last = 0;
629
630         if (!setup_temperature_limits(gc, pi))
631                 return;
632
633         cairo_set_line_width(gc->cr, 2);
634         set_source_rgba(gc, TEMP_PLOT);
635         for (i = 0; i < pi->nr; i++) {
636                 struct plot_data *entry = pi->entry + i;
637                 int mkelvin = entry->temperature;
638                 int sec = entry->sec;
639                 if (!mkelvin) {
640                         if (!last)
641                                 continue;
642                         mkelvin = last;
643                 }
644                 if (last)
645                         line_to(gc, sec, mkelvin);
646                 else
647                         move_to(gc, sec, mkelvin);
648                 last = mkelvin;
649         }
650         cairo_stroke(cr);
651 }
652
653 /* gets both the actual start and end pressure as well as the scaling factors */
654 static int get_cylinder_pressure_range(struct graphics_context *gc, struct plot_info *pi)
655 {
656         gc->leftx = 0;
657         gc->rightx = get_maxtime(pi);
658
659         gc->bottomy = 0; gc->topy = pi->maxpressure * 1.5;
660         return pi->maxpressure != 0;
661 }
662
663 /* set the color for the pressure plot according to temporary sac rate
664  * as compared to avg_sac; the calculation simply maps the delta between
665  * sac and avg_sac to indexes 0 .. (SAC_COLORS - 1) with everything
666  * more than 6000 ml/min below avg_sac mapped to 0 */
667
668 static void set_sac_color(struct graphics_context *gc, int sac, int avg_sac)
669 {
670         int sac_index = 0;
671         int delta = sac - avg_sac + 7000;
672
673         if (!gc->printer) {
674                 sac_index = delta / 2000;
675                 if (sac_index < 0)
676                         sac_index = 0;
677                 if (sac_index > SAC_COLORS - 1)
678                         sac_index = SAC_COLORS - 1;
679                 set_source_rgba(gc, SAC_COLORS_START_IDX + sac_index);
680         } else {
681                 set_source_rgba(gc, SAC_DEFAULT);
682         }
683 }
684
685 /* calculate the current SAC in ml/min and convert to int */
686 #define GET_LOCAL_SAC(_entry1, _entry2, _dive)  (int)                           \
687         ((GET_PRESSURE((_entry1)) - GET_PRESSURE((_entry2))) *                  \
688                 (_dive)->cylinder[(_entry1)->cylinderindex].type.size.mliter /  \
689                 (((_entry2)->sec - (_entry1)->sec) / 60.0) /                    \
690                 (1 + ((_entry1)->depth + (_entry2)->depth) / 20000.0) /         \
691                 1000.0)
692
693 #define SAC_WINDOW 45   /* sliding window in seconds for current SAC calculation */
694
695 static void plot_cylinder_pressure(struct graphics_context *gc, struct plot_info *pi,
696                                 struct dive *dive)
697 {
698         int i;
699         int last = -1;
700         int lift_pen = FALSE;
701         int first_plot = TRUE;
702         int sac = 0;
703         struct plot_data *last_entry = NULL;
704
705         if (!get_cylinder_pressure_range(gc, pi))
706                 return;
707
708         cairo_set_line_width(gc->cr, 2);
709
710         for (i = 0; i < pi->nr; i++) {
711                 int mbar;
712                 struct plot_data *entry = pi->entry + i;
713
714                 mbar = GET_PRESSURE(entry);
715                 if (!entry->same_cylinder) {
716                         lift_pen = TRUE;
717                         last_entry = NULL;
718                 }
719                 if (!mbar) {
720                         lift_pen = TRUE;
721                         continue;
722                 }
723                 if (!last_entry) {
724                         last = i;
725                         last_entry = entry;
726                         sac = GET_LOCAL_SAC(entry, pi->entry + i + 1, dive);
727                 } else {
728                         int j;
729                         sac = 0;
730                         for (j = last; j < i; j++)
731                                 sac += GET_LOCAL_SAC(pi->entry + j, pi->entry + j + 1, dive);
732                         sac /= (i - last);
733                         if (entry->sec - last_entry->sec >= SAC_WINDOW) {
734                                 last++;
735                                 last_entry = pi->entry + last;
736                         }
737                 }
738                 set_sac_color(gc, sac, dive->sac);
739                 if (lift_pen) {
740                         if (!first_plot && entry->same_cylinder) {
741                                 /* if we have a previous event from the same tank,
742                                  * draw at least a short line */
743                                 int prev_pr;
744                                 prev_pr = GET_PRESSURE(entry - 1);
745                                 move_to(gc, (entry-1)->sec, prev_pr);
746                                 line_to(gc, entry->sec, mbar);
747                         } else {
748                                 first_plot = FALSE;
749                                 move_to(gc, entry->sec, mbar);
750                         }
751                         lift_pen = FALSE;
752                 } else {
753                         line_to(gc, entry->sec, mbar);
754                 }
755                 cairo_stroke(gc->cr);
756                 move_to(gc, entry->sec, mbar);
757         }
758 }
759
760 static void plot_pressure_value(struct graphics_context *gc, int mbar, int sec,
761                                 int xalign, int yalign)
762 {
763         int pressure;
764         const char *unit;
765
766         pressure = get_pressure_units(mbar, &unit);
767         text_render_options_t tro = {10, PRESSURE_TEXT, xalign, yalign};
768         plot_text(gc, &tro, sec, mbar, "%d %s", pressure, unit);
769 }
770
771 static void plot_cylinder_pressure_text(struct graphics_context *gc, struct plot_info *pi)
772 {
773         int i;
774         int mbar, cyl;
775         int seen_cyl[MAX_CYLINDERS] = { FALSE, };
776         int last_pressure[MAX_CYLINDERS] = { 0, };
777         int last_time[MAX_CYLINDERS] = { 0, };
778         struct plot_data *entry;
779
780         if (!get_cylinder_pressure_range(gc, pi))
781                 return;
782
783         /* only loop over the actual events from the dive computer
784          * plus the second synthetic event at the start (to make sure
785          * we get "time=0" right)
786          * sadly with a recent change that first entry may no longer
787          * have any pressure reading - in that case just grab the
788          * pressure from the second entry */
789         if (GET_PRESSURE(pi->entry + 1) == 0 && GET_PRESSURE(pi->entry + 2) !=0)
790                 INTERPOLATED_PRESSURE(pi->entry + 1) = GET_PRESSURE(pi->entry + 2);
791         for (i = 1; i < pi->nr; i++) {
792                 entry = pi->entry + i;
793
794                 if (!entry->same_cylinder) {
795                         cyl = entry->cylinderindex;
796                         if (!seen_cyl[cyl]) {
797                                 mbar = GET_PRESSURE(entry);
798                                 plot_pressure_value(gc, mbar, entry->sec, LEFT, BOTTOM);
799                                 seen_cyl[cyl] = TRUE;
800                         }
801                         if (i > 2) {
802                                 /* remember the last pressure and time of
803                                  * the previous cylinder */
804                                 cyl = (entry - 1)->cylinderindex;
805                                 last_pressure[cyl] = GET_PRESSURE(entry - 1);
806                                 last_time[cyl] = (entry - 1)->sec;
807                         }
808                 }
809         }
810         cyl = entry->cylinderindex;
811         if (GET_PRESSURE(entry))
812                 last_pressure[cyl] = GET_PRESSURE(entry);
813         last_time[cyl] = entry->sec;
814
815         for (cyl = 0; cyl < MAX_CYLINDERS; cyl++) {
816                 if (last_time[cyl]) {
817                         plot_pressure_value(gc, last_pressure[cyl], last_time[cyl], CENTER, TOP);
818                 }
819         }
820 }
821
822 static void analyze_plot_info_minmax_minute(struct plot_data *entry, struct plot_data *first, struct plot_data *last, int index)
823 {
824         struct plot_data *p = entry;
825         int time = entry->sec;
826         int seconds = 90*(index+1);
827         struct plot_data *min, *max;
828         int avg, nr;
829
830         /* Go back 'seconds' in time */
831         while (p > first) {
832                 if (p[-1].sec < time - seconds)
833                         break;
834                 p--;
835         }
836
837         /* Then go forward until we hit an entry past the time */
838         min = max = p;
839         avg = p->depth;
840         nr = 1;
841         while (++p < last) {
842                 int depth = p->depth;
843                 if (p->sec > time + seconds)
844                         break;
845                 avg += depth;
846                 nr ++;
847                 if (depth < min->depth)
848                         min = p;
849                 if (depth > max->depth)
850                         max = p;
851         }
852         entry->min[index] = min;
853         entry->max[index] = max;
854         entry->avg[index] = (avg + nr/2) / nr;
855 }
856
857 static void analyze_plot_info_minmax(struct plot_data *entry, struct plot_data *first, struct plot_data *last)
858 {
859         analyze_plot_info_minmax_minute(entry, first, last, 0);
860         analyze_plot_info_minmax_minute(entry, first, last, 1);
861         analyze_plot_info_minmax_minute(entry, first, last, 2);
862 }
863
864 static velocity_t velocity(int speed)
865 {
866         velocity_t v;
867
868         if (speed < -304) /* ascent faster than -60ft/min */
869                 v = CRAZY;
870         else if (speed < -152) /* above -30ft/min */
871                 v = FAST;
872         else if (speed < -76) /* -15ft/min */
873                 v = MODERATE;
874         else if (speed < -25) /* -5ft/min */
875                 v = SLOW;
876         else if (speed < 25) /* very hard to find data, but it appears that the recommendations
877                                 for descent are usually about 2x ascent rate; still, we want 
878                                 stable to mean stable */
879                 v = STABLE;
880         else if (speed < 152) /* between 5 and 30ft/min is considered slow */
881                 v = SLOW;
882         else if (speed < 304) /* up to 60ft/min is moderate */
883                 v = MODERATE;
884         else if (speed < 507) /* up to 100ft/min is fast */
885                 v = FAST;
886         else /* more than that is just crazy - you'll blow your ears out */
887                 v = CRAZY;
888
889         return v;
890 }
891 static struct plot_info *analyze_plot_info(struct plot_info *pi)
892 {
893         int i;
894         int nr = pi->nr;
895
896         /* Do pressure min/max based on the non-surface data */
897         for (i = 0; i < nr; i++) {
898                 struct plot_data *entry = pi->entry+i;
899                 int pressure = GET_PRESSURE(entry);
900                 int temperature = entry->temperature;
901
902                 if (pressure) {
903                         if (pressure > pi->maxpressure)
904                                 pi->maxpressure = pressure;
905                 }
906
907                 if (temperature) {
908                         if (!pi->mintemp || temperature < pi->mintemp)
909                                 pi->mintemp = temperature;
910                         if (temperature > pi->maxtemp)
911                                 pi->maxtemp = temperature;
912                 }
913         }
914
915         /* Smoothing function: 5-point triangular smooth */
916         for (i = 2; i < nr; i++) {
917                 struct plot_data *entry = pi->entry+i;
918                 int depth;
919
920                 if (i < nr-2) {
921                         depth = entry[-2].depth + 2*entry[-1].depth + 3*entry[0].depth + 2*entry[1].depth + entry[2].depth;
922                         entry->smoothed = (depth+4) / 9;
923                 }
924                 /* vertical velocity in mm/sec */
925                 /* Linus wants to smooth this - let's at least look at the samples that aren't FAST or CRAZY */
926                 if (entry[0].sec - entry[-1].sec) {
927                         entry->velocity = velocity((entry[0].depth - entry[-1].depth) / (entry[0].sec - entry[-1].sec));
928                         /* if our samples are short and we aren't too FAST*/
929                         if (entry[0].sec - entry[-1].sec < 15 && entry->velocity < FAST) {
930                                 int past = -2;
931                                 while (i+past > 0 && entry[0].sec - entry[past].sec < 15)
932                                         past--;
933                                 entry->velocity = velocity((entry[0].depth - entry[past].depth) / 
934                                                         (entry[0].sec - entry[past].sec));
935                         }
936                 } else
937                         entry->velocity = STABLE;
938         }
939
940         /* One-, two- and three-minute minmax data */
941         for (i = 0; i < nr; i++) {
942                 struct plot_data *entry = pi->entry +i;
943                 analyze_plot_info_minmax(entry, pi->entry, pi->entry+nr);
944         }
945         
946         return pi;
947 }
948
949 /*
950  * simple structure to track the beginning and end tank pressure as
951  * well as the integral of depth over time spent while we have no
952  * pressure reading from the tank */
953 typedef struct pr_track_struct pr_track_t;
954 struct pr_track_struct {
955         int start;
956         int end;
957         int t_start;
958         int t_end;
959         double pressure_time;
960         pr_track_t *next;
961 };
962
963 static pr_track_t *pr_track_alloc(int start, int t_start) {
964         pr_track_t *pt = malloc(sizeof(pr_track_t));
965         pt->start = start;
966         pt->t_start = t_start;
967         pt->end = 0;
968         pt->t_end = 0;
969         pt->pressure_time = 0.0;
970         pt->next = NULL;
971         return pt;
972 }
973
974 /* poor man's linked list */
975 static pr_track_t *list_last(pr_track_t *list)
976 {
977         pr_track_t *tail = list;
978         if (!tail)
979                 return NULL;
980         while (tail->next) {
981                 tail = tail->next;
982         }
983         return tail;
984 }
985
986 static pr_track_t *list_add(pr_track_t *list, pr_track_t *element)
987 {
988         pr_track_t *tail = list_last(list);
989         if (!tail)
990                 return element;
991         tail->next = element;
992         return list;
993 }
994
995 static void list_free(pr_track_t *list)
996 {
997         if (!list)
998                 return;
999         list_free(list->next);
1000         free(list);
1001 }
1002
1003 static void dump_pr_track(pr_track_t **track_pr)
1004 {
1005         int cyl;
1006         pr_track_t *list;
1007
1008         for (cyl = 0; cyl < MAX_CYLINDERS; cyl++) {
1009                 list = track_pr[cyl];
1010                 while (list) {
1011                         printf("cyl%d: start %d end %d t_start %d t_end %d pt %6.3f\n", cyl,
1012                                 list->start, list->end, list->t_start, list->t_end, list->pressure_time);
1013                         list = list->next;
1014                 }
1015         }
1016 }
1017
1018 static void fill_missing_tank_pressures(struct plot_info *pi, pr_track_t **track_pr)
1019 {
1020         pr_track_t *list = NULL;
1021         pr_track_t *nlist = NULL;
1022         double pt, magic;
1023         int cyl, i;
1024         struct plot_data *entry;
1025         int cur_pr[MAX_CYLINDERS];
1026
1027         if (0) {
1028                 /* another great debugging tool */
1029                 dump_pr_track(track_pr);
1030         }
1031         for (cyl = 0; cyl < MAX_CYLINDERS; cyl++) {
1032                 cur_pr[cyl] = track_pr[cyl]->start;
1033         }
1034
1035         /* The first two are "fillers", but in case we don't have a sample
1036          * at time 0 we need to process the second of them here */
1037         for (i = 1; i < pi->nr; i++) {
1038                 entry = pi->entry + i;
1039                 if (SENSOR_PRESSURE(entry)) {
1040                         cur_pr[entry->cylinderindex] = SENSOR_PRESSURE(entry);
1041                 } else {
1042                         if(!list || list->t_end < entry->sec) {
1043                                 nlist = track_pr[entry->cylinderindex];
1044                                 list = NULL;
1045                                 while (nlist && nlist->t_start <= entry->sec) {
1046                                         list = nlist;
1047                                         nlist = list->next;
1048                                 }
1049                                 /* there may be multiple segments - so
1050                                  * let's assemble the length */
1051                                 nlist = list;
1052                                 pt = list->pressure_time;
1053                                 while (!nlist->end) {
1054                                         nlist = nlist->next;
1055                                         if (!nlist) {
1056                                                 /* oops - we have no end pressure,
1057                                                  * so this means this is a tank without
1058                                                  * gas consumption information */
1059                                                 break;
1060                                         }
1061                                         pt += nlist->pressure_time;
1062                                 }
1063                                 if (!nlist) {
1064                                         /* just continue without calculating
1065                                          * interpolated values */
1066                                         INTERPOLATED_PRESSURE(entry) = cur_pr[entry->cylinderindex];
1067                                         list = NULL;
1068                                         continue;
1069                                 }
1070                                 magic = (nlist->end - cur_pr[entry->cylinderindex]) / pt;
1071                         }
1072                         if (pt != 0.0) {
1073                                 double cur_pt = (entry->sec - (entry-1)->sec) *
1074                                         (1 + (entry->depth + (entry-1)->depth) / 20000.0);
1075                                 INTERPOLATED_PRESSURE(entry) =
1076                                         cur_pr[entry->cylinderindex] + cur_pt * magic + 0.5;
1077                                 cur_pr[entry->cylinderindex] = INTERPOLATED_PRESSURE(entry);
1078                         } else
1079                                 INTERPOLATED_PRESSURE(entry) = cur_pr[entry->cylinderindex];
1080                 }
1081         }
1082 }
1083
1084 static int get_cylinder_index(struct dive *dive, struct event *ev)
1085 {
1086         int i;
1087
1088         /*
1089          * Try to find a cylinder that matches the O2 percentage
1090          * in the gas change event 'value' field.
1091          *
1092          * Crazy suunto gas change events. We really should do
1093          * this in libdivecomputer or something.
1094          */
1095         for (i = 0; i < MAX_CYLINDERS; i++) {
1096                 cylinder_t *cyl = dive->cylinder+i;
1097                 int o2 = (cyl->gasmix.o2.permille + 5) / 10;
1098                 if (o2 == ev->value)
1099                         return i;
1100         }
1101
1102         return 0;
1103 }
1104
1105 static struct event *get_next_gaschange(struct event *event)
1106 {
1107         while (event) {
1108                 if (!strcmp(event->name, "gaschange"))
1109                         return event;
1110                 event = event->next;
1111         }
1112         return event;
1113 }
1114
1115 static int set_cylinder_index(struct plot_info *pi, int i, int cylinderindex, unsigned int end)
1116 {
1117         while (i < pi->nr) {
1118                 struct plot_data *entry = pi->entry+i;
1119                 if (entry->sec > end)
1120                         break;
1121                 if (entry->cylinderindex != cylinderindex) {
1122                         entry->cylinderindex = cylinderindex;
1123                         entry->pressure[0] = 0;
1124                 }
1125                 i++;
1126         }
1127         return i;
1128 }
1129
1130 static void check_gas_change_events(struct dive *dive, struct plot_info *pi)
1131 {
1132         int i = 0, cylinderindex = 0;
1133         struct event *ev = get_next_gaschange(dive->events);
1134
1135         if (!ev)
1136                 return;
1137
1138         do {
1139                 i = set_cylinder_index(pi, i, cylinderindex, ev->time.seconds);
1140                 cylinderindex = get_cylinder_index(dive, ev);
1141                 ev = get_next_gaschange(ev->next);
1142         } while (ev);
1143         set_cylinder_index(pi, i, cylinderindex, ~0u);
1144 }
1145
1146 /* for computers that track gas changes through events */
1147 static int count_gas_change_events(struct dive *dive)
1148 {
1149         int count = 0;
1150         struct event *ev = get_next_gaschange(dive->events);
1151
1152         while (ev) {
1153                 count++;
1154                 ev = get_next_gaschange(ev->next);
1155         }
1156         return count;
1157 }
1158
1159 /*
1160  * Create a plot-info with smoothing and ranged min/max
1161  *
1162  * This also makes sure that we have extra empty events on both
1163  * sides, so that you can do end-points without having to worry
1164  * about it.
1165  */
1166 static struct plot_info *create_plot_info(struct dive *dive, int nr_samples, struct sample *dive_sample)
1167 {
1168         int cylinderindex = -1;
1169         int lastdepth, lastindex;
1170         int i, pi_idx, nr, sec, cyl;
1171         size_t alloc_size;
1172         struct plot_info *pi;
1173         pr_track_t *track_pr[MAX_CYLINDERS] = {NULL, };
1174         pr_track_t *pr_track, *current;
1175         gboolean missing_pr = FALSE;
1176         struct plot_data *entry = NULL;
1177         struct event *ev;
1178
1179         /* we want to potentially add synthetic plot_info elements for the gas changes */
1180         nr = nr_samples + 4 + 2 * count_gas_change_events(dive);
1181         alloc_size = plot_info_size(nr);
1182         pi = malloc(alloc_size);
1183         if (!pi)
1184                 return pi;
1185         memset(pi, 0, alloc_size);
1186         pi->nr = nr;
1187         pi_idx = 2; /* the two extra events at the start */
1188         /* check for gas changes before the samples start */
1189         ev = get_next_gaschange(dive->events);
1190         while (ev && ev->time.seconds < dive_sample->time.seconds) {
1191                 entry = pi->entry + pi_idx;
1192                 entry->sec = ev->time.seconds;
1193                 entry->depth = 0; /* is that always correct ? */
1194                 pi_idx++;
1195                 ev = get_next_gaschange(ev->next);
1196         }
1197         if (ev && ev->time.seconds == dive_sample->time.seconds) {
1198                 /* we already have a sample at the time of the event */
1199                 ev = get_next_gaschange(ev->next);
1200         }
1201         sec = 0;
1202         lastindex = 0;
1203         lastdepth = -1;
1204         for (i = 0; i < nr_samples; i++) {
1205                 int depth;
1206                 int delay = 0;
1207                 struct sample *sample = dive_sample+i;
1208
1209                 entry = pi->entry + i + pi_idx;
1210                 while (ev && ev->time.seconds < sample->time.seconds) {
1211                         /* insert two fake plot info structures for the end of
1212                          * the old tank and the start of the new tank */
1213                         if (ev->time.seconds == sample->time.seconds - 1) {
1214                                 entry->sec = ev->time.seconds - 1;
1215                                 (entry+1)->sec = ev->time.seconds;
1216                         } else {
1217                                 entry->sec = ev->time.seconds;
1218                                 (entry+1)->sec = ev->time.seconds + 1;
1219                         }
1220                         /* we need a fake depth - let's interpolate */
1221                         if (i) {
1222                                 entry->depth = sample->depth.mm -
1223                                         (sample->depth.mm - (sample-1)->depth.mm) / 2;
1224                         } else
1225                                 entry->depth = sample->depth.mm;
1226                         (entry+1)->depth = entry->depth;
1227                         pi_idx += 2;
1228                         entry = pi->entry + i + pi_idx;
1229                         ev = get_next_gaschange(ev->next);
1230                 }
1231                 if (ev && ev->time.seconds == sample->time.seconds) {
1232                         /* we already have a sample at the time of the event
1233                          * just add a new one for the old tank and delay the
1234                          * real even by one second (to keep time monotonous) */
1235                         entry->sec = ev->time.seconds;
1236                         entry->depth = sample->depth.mm;
1237                         pi_idx++;
1238                         entry = pi->entry + i + pi_idx;
1239                         ev = get_next_gaschange(ev->next);
1240                         delay = 1;
1241                 }
1242                 sec = entry->sec = sample->time.seconds + delay;
1243                 depth = entry->depth = sample->depth.mm;
1244                 entry->cylinderindex = sample->cylinderindex;
1245                 SENSOR_PRESSURE(entry) = sample->cylinderpressure.mbar;
1246                 entry->temperature = sample->temperature.mkelvin;
1247
1248                 if (depth || lastdepth)
1249                         lastindex = i + pi_idx;
1250
1251                 lastdepth = depth;
1252                 if (depth > pi->maxdepth)
1253                         pi->maxdepth = depth;
1254         }
1255         entry = pi->entry + i + pi_idx;
1256         /* are there still unprocessed gas changes? that would be very strange */
1257         while (ev) {
1258                 entry->sec = ev->time.seconds;
1259                 entry->depth = 0; /* why are there gas changes after the dive is over? */
1260                 pi_idx++;
1261                 entry = pi->entry + i + pi_idx;
1262                 ev = get_next_gaschange(ev->next);
1263         }
1264         nr = nr_samples + pi_idx - 2;
1265         check_gas_change_events(dive, pi);
1266
1267         for (cyl = 0; cyl < MAX_CYLINDERS; cyl++) /* initialize the start pressures */
1268                 track_pr[cyl] = pr_track_alloc(dive->cylinder[cyl].start.mbar, -1);
1269         current = track_pr[pi->entry[2].cylinderindex];
1270         for (i = 0; i < nr + 1; i++) {
1271                 entry = pi->entry + i + 1;
1272
1273                 entry->same_cylinder = entry->cylinderindex == cylinderindex;
1274                 cylinderindex = entry->cylinderindex;
1275
1276                 /* track the segments per cylinder and their pressure/time integral */
1277                 if (!entry->same_cylinder) {
1278                         current->end = SENSOR_PRESSURE(entry-1);
1279                         current->t_end = (entry-1)->sec;
1280                         current = pr_track_alloc(SENSOR_PRESSURE(entry), entry->sec);
1281                         track_pr[cylinderindex] = list_add(track_pr[cylinderindex], current);
1282                 } else { /* same cylinder */
1283                         if ((!SENSOR_PRESSURE(entry) && SENSOR_PRESSURE(entry-1)) ||
1284                                 (SENSOR_PRESSURE(entry) && !SENSOR_PRESSURE(entry-1))) {
1285                                 /* transmitter changed its working status */
1286                                 current->end = SENSOR_PRESSURE(entry-1);
1287                                 current->t_end = (entry-1)->sec;
1288                                 current = pr_track_alloc(SENSOR_PRESSURE(entry), entry->sec);
1289                                 track_pr[cylinderindex] =
1290                                         list_add(track_pr[cylinderindex], current);
1291                         }
1292                 }
1293                 /* finally, do the discrete integration to get the SAC rate equivalent */
1294                 current->pressure_time += (entry->sec - (entry-1)->sec) *
1295                         (1 + (entry->depth + (entry-1)->depth) / 20000.0);
1296                 missing_pr |= !SENSOR_PRESSURE(entry);
1297         }
1298
1299         if (entry)
1300                 current->t_end = entry->sec;
1301
1302         for (cyl = 0; cyl < MAX_CYLINDERS; cyl++) { /* initialize the end pressures */
1303                 int pr = dive->cylinder[cyl].end.mbar;
1304                 if (pr && track_pr[cyl]) {
1305                         pr_track = list_last(track_pr[cyl]);
1306                         pr_track->end = pr;
1307                 }
1308         }
1309         /* Fill in the last two entries with empty values but valid times
1310          * without creating a false cylinder change event */
1311         i = nr + 2;
1312         pi->entry[i].sec = sec + 20;
1313         pi->entry[i].same_cylinder = 1;
1314         pi->entry[i].cylinderindex = pi->entry[i-1].cylinderindex;
1315         INTERPOLATED_PRESSURE(pi->entry + i) = GET_PRESSURE(pi->entry + i - 1);
1316         pi->entry[i+1].sec = sec + 40;
1317         pi->entry[i+1].same_cylinder = 1;
1318         pi->entry[i+1].cylinderindex = pi->entry[i-1].cylinderindex;
1319         INTERPOLATED_PRESSURE(pi->entry + i + 1) = GET_PRESSURE(pi->entry + i - 1);
1320         /* the number of actual entries - some computers have lots of
1321          * depth 0 samples at the end of a dive, we want to make sure
1322          * we have exactly one of them at the end */
1323         pi->nr = lastindex+1;
1324         while (pi->nr <= i+2 && pi->entry[pi->nr-1].depth > 0)
1325                 pi->nr++;
1326         pi->maxtime = pi->entry[lastindex].sec;
1327
1328         /* Analyze_plot_info() will do the sample max pressures,
1329          * this handles the manual pressures
1330          */
1331         pi->maxpressure = 0;
1332         for (cyl = 0; cyl < MAX_CYLINDERS; cyl++) {
1333                 unsigned int mbar = dive->cylinder[cyl].start.mbar;
1334                 if (mbar > pi->maxpressure)
1335                         pi->maxpressure = mbar;
1336         }
1337
1338         pi->meandepth = dive->meandepth.mm;
1339
1340         if (missing_pr) {
1341                 fill_missing_tank_pressures(pi, track_pr);
1342         }
1343         for (cyl = 0; cyl < MAX_CYLINDERS; cyl++)
1344                 list_free(track_pr[cyl]);
1345         if (0) /* awesome for debugging - not useful otherwise */
1346                 dump_pi(pi);
1347         return analyze_plot_info(pi);
1348 }
1349
1350 void plot(struct graphics_context *gc, cairo_rectangle_int_t *drawing_area, struct dive *dive)
1351 {
1352         struct plot_info *pi;
1353         static struct sample fake[4];
1354         struct sample *sample = dive->sample;
1355         int nr = dive->samples;
1356
1357         if (!nr) {
1358                 int duration = dive->duration.seconds;
1359                 int maxdepth = dive->maxdepth.mm;
1360                 sample = fake;
1361                 fake[1].time.seconds = duration * 0.05;
1362                 fake[1].depth.mm = maxdepth;
1363                 fake[2].time.seconds = duration * 0.95;
1364                 fake[2].depth.mm = maxdepth;
1365                 fake[3].time.seconds = duration * 1.00;
1366                 nr = 4;
1367         }
1368
1369         pi = create_plot_info(dive, nr, sample);
1370
1371         cairo_translate(gc->cr, drawing_area->x, drawing_area->y);
1372         cairo_set_line_width(gc->cr, 1);
1373         cairo_set_line_cap(gc->cr, CAIRO_LINE_CAP_ROUND);
1374         cairo_set_line_join(gc->cr, CAIRO_LINE_JOIN_ROUND);
1375
1376         /*
1377          * We can use "cairo_translate()" because that doesn't
1378          * scale line width etc. But the actual scaling we need
1379          * do set up ourselves..
1380          *
1381          * Snif. What a pity.
1382          */
1383         gc->maxx = (drawing_area->width - 2*drawing_area->x);
1384         gc->maxy = (drawing_area->height - 2*drawing_area->y);
1385
1386         /* Depth profile */
1387         plot_depth_profile(gc, pi);
1388         plot_events(gc, pi, dive);
1389
1390         /* Temperature profile */
1391         plot_temperature_profile(gc, pi);
1392
1393         /* Cylinder pressure plot */
1394         plot_cylinder_pressure(gc, pi, dive);
1395
1396         /* Text on top of all graphs.. */
1397         plot_temperature_text(gc, pi);
1398         plot_depth_text(gc, pi);
1399         plot_cylinder_pressure_text(gc, pi);
1400
1401         /* Bounding box last */
1402         gc->leftx = 0; gc->rightx = 1.0;
1403         gc->topy = 0; gc->bottomy = 1.0;
1404
1405         set_source_rgba(gc, BOUNDING_BOX);
1406         cairo_set_line_width(gc->cr, 1);
1407         move_to(gc, 0, 0);
1408         line_to(gc, 0, 1);
1409         line_to(gc, 1, 1);
1410         line_to(gc, 1, 0);
1411         cairo_close_path(gc->cr);
1412         cairo_stroke(gc->cr);
1413
1414         free(pi);
1415 }