]> git.tdb.fi Git - ext/subsurface.git/blob - profile.c
Move text rendering function upwards
[ext/subsurface.git] / profile.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdarg.h>
4 #include <time.h>
5
6 #include "dive.h"
7 #include "display.h"
8 #include "divelist.h"
9
10 int selected_dive = 0;
11
12 /*
13  * Cairo scaling really is horribly horribly mis-designed.
14  *
15  * Which is sad, because I really like Cairo otherwise. But
16  * the fact that the line width is scaled with the same scale
17  * as the coordinate system is a f*&%ing disaster. So we
18  * can't use it, and instead have this butt-ugly wrapper thing..
19  */
20 struct graphics_context {
21         cairo_t *cr;
22         double maxx, maxy;
23         double scalex, scaley;
24 };
25
26 /* Scale to 0,0 -> maxx,maxy */
27 #define SCALE(gc,x,y) (x)*gc->maxx/gc->scalex,(y)*gc->maxy/gc->scaley
28
29 static void move_to(struct graphics_context *gc, double x, double y)
30 {
31         cairo_move_to(gc->cr, SCALE(gc, x, y));
32 }
33
34 static void line_to(struct graphics_context *gc, double x, double y)
35 {
36         cairo_line_to(gc->cr, SCALE(gc, x, y));
37 }
38
39 #define ROUND_UP(x,y) ((((x)+(y)-1)/(y))*(y))
40
41 /*
42  * When showing dive profiles, we scale things to the
43  * current dive. However, we don't scale past less than
44  * 30 minutes or 90 ft, just so that small dives show
45  * up as such.
46  */
47 static int round_seconds_up(int seconds)
48 {
49         return MAX(30*60, ROUND_UP(seconds, 60*10));
50 }
51
52 static int round_depth_up(depth_t depth)
53 {
54         unsigned mm = depth.mm;
55         /* Minimum 30m */
56         return MAX(30000, ROUND_UP(mm+3000, 10000));
57 }
58
59 typedef struct {
60         int size;
61         double r,g,b;
62         enum {CENTER,LEFT} halign;
63         enum {MIDDLE,TOP,BOTTOM} valign;
64 } text_render_options_t;
65
66 static void plot_text(struct graphics_context *gc, text_render_options_t *tro,
67                       double x, double y, const char *fmt, ...)
68 {
69         cairo_t *cr = gc->cr;
70         cairo_text_extents_t extents;
71         double dx, dy;
72         char buffer[80];
73         va_list args;
74
75         va_start(args, fmt);
76         vsnprintf(buffer, sizeof(buffer), fmt, args);
77         va_end(args);
78
79         cairo_set_font_size(cr, tro->size);
80         cairo_text_extents(cr, buffer, &extents);
81         dx = 0;
82         switch (tro->halign) {
83         case CENTER:
84                 dx = -(extents.width/2 + extents.x_bearing);
85                 break;
86         case LEFT:
87                 dx = 0;
88                 break;
89         }
90         switch (tro->valign) {
91         case TOP:
92                 dy = extents.height * 1.2;
93                 break;
94         case BOTTOM:
95                 dy = -extents.height * 0.8;
96                 break;
97         case MIDDLE:
98                 dy = 0;
99                 break;
100         }
101
102         move_to(gc, x, y);
103         cairo_rel_move_to(cr, dx, dy);
104
105         cairo_text_path(cr, buffer);
106         cairo_set_source_rgb(cr, 0, 0, 0);
107         cairo_stroke(cr);
108
109         move_to(gc, x, y);
110         cairo_rel_move_to(cr, dx, dy);
111
112         cairo_set_source_rgb(cr, tro->r, tro->g, tro->b);
113         cairo_show_text(cr, buffer);
114 }
115
116 static void render_depth_sample(struct graphics_context *gc, struct sample *sample)
117 {
118         text_render_options_t tro = {14, 1.0, 0.2, 0.2, CENTER, TOP};
119         int sec = sample->time.seconds;
120         depth_t depth = sample->depth;
121         const char *fmt;
122         double d;
123
124         switch (output_units.length) {
125         case METERS:
126                 d = depth.mm / 1000.0;
127                 fmt = "%.1f";
128                 break;
129         case FEET:
130                 d = to_feet(depth);
131                 fmt = "%.0f";
132                 break;
133         }
134         plot_text(gc, &tro, sec, depth.mm, fmt, d);
135 }
136
137 /*
138  * Find the next minimum/maximum point.
139  *
140  * We exit early if we hit "enough" of a depth reversal,
141  * which is roughly 10 feet.
142  */
143 static struct sample *next_minmax(struct sample *sample, struct sample *end, int minmax)
144 {
145         const int enough = 3000;
146         struct sample *result;
147         int depthlimit;
148
149         if (sample >= end)
150                 return 0;
151
152         depthlimit = sample->depth.mm;
153         result = NULL;
154
155         for (;;) {
156                 int time, depth;
157
158                 sample++;
159                 if (sample >= end)
160                         return NULL;
161                 time = sample->time.seconds;
162                 depth = sample->depth.mm;
163
164                 if (minmax) {
165                         if (depth <= depthlimit) {
166                                 if (depthlimit - depth > enough)
167                                         break;
168                                 continue;
169                         }
170                 } else {
171                         if (depth >= depthlimit) {
172                                 if (depth - depthlimit > enough)
173                                         break;
174                                 continue;
175                         }
176                 }
177
178                 result = sample;
179                 depthlimit = depth;
180         }
181         return result;
182 }
183
184 static void plot_text_samples(struct graphics_context *gc, struct sample *a, struct sample *b)
185 {
186         for (;;) {
187                 if (b <= a)
188                         break;
189                 a = next_minmax(a, b, 1);
190                 if (!a)
191                         break;
192                 render_depth_sample(gc, a);
193                 a = next_minmax(a, b, 0);
194                 if (!a)
195                         break;
196         }
197 }
198
199 static void plot_depth_text(struct dive *dive, struct graphics_context *gc)
200 {
201         struct sample *sample, *end;
202         int maxtime, maxdepth;
203
204         /* Get plot scaling limits */
205         maxtime = round_seconds_up(dive->duration.seconds);
206         maxdepth = round_depth_up(dive->maxdepth);
207
208         gc->scalex = maxtime;
209         gc->scaley = maxdepth;
210
211         sample = dive->sample;
212         end = dive->sample + dive->samples;
213
214         plot_text_samples(gc, sample, end);
215 }
216
217 static void plot_depth_profile(struct dive *dive, struct graphics_context *gc)
218 {
219         cairo_t *cr = gc->cr;
220         int begins, sec, depth;
221         int i, samples;
222         struct sample *sample;
223         int maxtime, maxdepth, marker;
224
225         samples = dive->samples;
226         if (!samples)
227                 return;
228
229         cairo_set_line_width(gc->cr, 2);
230
231         /* Get plot scaling limits */
232         maxtime = round_seconds_up(dive->duration.seconds);
233         maxdepth = round_depth_up(dive->maxdepth);
234
235         /* Time markers: every 5 min */
236         gc->scalex = maxtime;
237         gc->scaley = 1.0;
238         for (i = 5*60; i < maxtime; i += 5*60) {
239                 move_to(gc, i, 0);
240                 line_to(gc, i, 1);
241         }
242
243         /* Depth markers: every 30 ft or 10 m*/
244         gc->scalex = 1.0;
245         gc->scaley = maxdepth;
246         switch (output_units.length) {
247         case METERS: marker = 10000; break;
248         case FEET: marker = 9144; break;        /* 30 ft */
249         }
250
251         cairo_set_source_rgba(cr, 1, 1, 1, 0.5);
252         for (i = marker; i < maxdepth; i += marker) {
253                 move_to(gc, 0, i);
254                 line_to(gc, 1, i);
255         }
256         cairo_stroke(cr);
257
258         /* Show mean depth */
259         cairo_set_source_rgba(cr, 1, 0.2, 0.2, 0.40);
260         move_to(gc, 0, dive->meandepth.mm);
261         line_to(gc, 1, dive->meandepth.mm);
262         cairo_stroke(cr);
263
264         gc->scalex = maxtime;
265
266         sample = dive->sample;
267         cairo_set_source_rgba(cr, 1, 0.2, 0.2, 0.80);
268         begins = sample->time.seconds;
269         move_to(gc, sample->time.seconds, sample->depth.mm);
270         for (i = 1; i < dive->samples; i++) {
271                 sample++;
272                 sec = sample->time.seconds;
273                 if (sec <= maxtime) {
274                         depth = sample->depth.mm;
275                         line_to(gc, sec, depth);
276                 }
277         }
278         gc->scaley = 1.0;
279         line_to(gc, MIN(sec,maxtime), 0);
280         line_to(gc, begins, 0);
281         cairo_close_path(cr);
282         cairo_set_source_rgba(cr, 1, 0.2, 0.2, 0.20);
283         cairo_fill_preserve(cr);
284         cairo_set_source_rgba(cr, 1, 0.2, 0.2, 0.80);
285         cairo_stroke(cr);
286 }
287
288 /* gets both the actual start and end pressure as well as the scaling factors */
289 static int get_cylinder_pressure_range(struct dive *dive, struct graphics_context *gc,
290         pressure_t *startp, pressure_t *endp)
291 {
292         int i;
293         int min, max;
294
295         gc->scalex = round_seconds_up(dive->duration.seconds);
296
297         max = 0;
298         min = 5000000;
299         if (startp)
300                 startp->mbar = endp->mbar = 0;
301
302         for (i = 0; i < dive->samples; i++) {
303                 int mbar;
304                 struct sample *sample = dive->sample + i;
305
306                 /* FIXME! We only track cylinder 0 right now */
307                 if (sample->cylinderindex)
308                         continue;
309                 mbar = sample->cylinderpressure.mbar;
310                 if (!mbar)
311                         continue;
312                 if (mbar < min)
313                         min = mbar;
314                 if (mbar > max)
315                         max = mbar;
316         }
317         if (startp)
318                 startp->mbar = max;
319         if (endp)
320                 endp->mbar = min;
321         if (!max)
322                 return 0;
323         gc->scaley = max * 1.5;
324         return 1;
325 }
326
327 static void plot_cylinder_pressure(struct dive *dive, struct graphics_context *gc)
328 {
329         int i, sec = -1;
330
331         if (!get_cylinder_pressure_range(dive, gc, NULL, NULL))
332                 return;
333
334         cairo_set_source_rgba(gc->cr, 0.2, 1.0, 0.2, 0.80);
335
336         move_to(gc, 0, dive->cylinder[0].start.mbar);
337         for (i = 1; i < dive->samples; i++) {
338                 int mbar;
339                 struct sample *sample = dive->sample + i;
340
341                 mbar = sample->cylinderpressure.mbar;
342                 if (!mbar)
343                         continue;
344                 sec = sample->time.seconds;
345                 if (sec <= dive->duration.seconds)
346                         line_to(gc, sec, mbar);
347         }
348         /*
349          * We may have "surface time" events, in which case we don't go
350          * back to dive duration
351          */
352         if (sec < dive->duration.seconds)
353                 line_to(gc, dive->duration.seconds, dive->cylinder[0].end.mbar);
354         cairo_stroke(gc->cr);
355 }
356
357 /*
358  * Return air usage (in liters).
359  */
360 static double calculate_airuse(struct dive *dive)
361 {
362         double airuse = 0;
363         int i;
364
365         for (i = 0; i < MAX_CYLINDERS; i++) {
366                 cylinder_t *cyl = dive->cylinder + i;
367                 int size = cyl->type.size.mliter;
368                 double kilo_atm;
369
370                 if (!size)
371                         continue;
372
373                 kilo_atm = (cyl->start.mbar - cyl->end.mbar) / 1013250.0;
374
375                 /* Liters of air at 1 atm == milliliters at 1k atm*/
376                 airuse += kilo_atm * size;
377         }
378         return airuse;
379 }
380
381 static void plot_info(struct dive *dive, struct graphics_context *gc)
382 {
383         text_render_options_t tro = {10, 0.2, 1.0, 0.2, LEFT, TOP};
384         const double liters_per_cuft = 28.317;
385         const char *unit;
386         double airuse;
387
388         airuse = calculate_airuse(dive);
389         if (!airuse)
390                 return;
391
392         /* I really need to start addign some unit setting thing */
393         switch (output_units.volume) {
394         case LITER:
395                 unit = "l";
396                 break;
397         case CUFT:
398                 unit = "cuft";
399                 airuse /= liters_per_cuft;
400                 break;
401         }
402         plot_text(gc, &tro, 0.8, 0.8, "vol: %4.2f %s", airuse, unit);
403         if (dive->duration.seconds) {
404                 double pressure = 1 + (dive->meandepth.mm / 10000.0);
405                 double sac = airuse / pressure * 60 / dive->duration.seconds;
406                 plot_text(gc, &tro, 0.8, 0.85, "SAC: %4.2f %s/min", sac, unit);
407         }
408 }
409
410 static void plot_cylinder_pressure_text(struct dive *dive, struct graphics_context *gc)
411 {
412         pressure_t startp, endp;
413
414         if (get_cylinder_pressure_range(dive, gc, &startp, &endp)) {
415                 int start, end;
416                 const char *unit = "bar";
417
418                 switch (output_units.pressure) {
419                 case PASCAL:
420                         start = startp.mbar * 100;
421                         end = startp.mbar * 100;
422                         unit = "pascal";
423                         break;
424                 case BAR:
425                         start = (startp.mbar + 500) / 1000;
426                         end = (endp.mbar + 500) / 1000;
427                         unit = "bar";
428                         break;
429                 case PSI:
430                         start = to_PSI(startp);
431                         end = to_PSI(endp);
432                         unit = "psi";
433                         break;
434                 }
435
436                 text_render_options_t tro = {10, 0.2, 1.0, 0.2, LEFT, TOP};
437                 plot_text(gc, &tro, 0, startp.mbar, "%d %s", start, unit);
438                 plot_text(gc, &tro, dive->duration.seconds, endp.mbar,
439                           "%d %s", end, unit);
440         }
441 }
442
443 static void plot(struct graphics_context *gc, int w, int h, struct dive *dive)
444 {
445         double topx, topy;
446
447         topx = w / 20.0;
448         topy = h / 20.0;
449         cairo_translate(gc->cr, topx, topy);
450
451         /*
452          * We can use "cairo_translate()" because that doesn't
453          * scale line width etc. But the actual scaling we need
454          * do set up ourselves..
455          *
456          * Snif. What a pity.
457          */
458         gc->maxx = (w - 2*topx);
459         gc->maxy = (h - 2*topy);
460
461         /* Cylinder pressure plot */
462         plot_cylinder_pressure(dive, gc);
463
464         /* Depth profile */
465         plot_depth_profile(dive, gc);
466
467         /* Text on top of all graphs.. */
468         plot_depth_text(dive, gc);
469         plot_cylinder_pressure_text(dive, gc);
470
471         /* And info box in the lower right corner.. */
472         gc->scalex = gc->scaley = 1.0;
473         plot_info(dive, gc);
474
475         /* Bounding box last */
476         cairo_set_source_rgb(gc->cr, 1, 1, 1);
477         move_to(gc, 0, 0);
478         line_to(gc, 0, 1);
479         line_to(gc, 1, 1);
480         line_to(gc, 1, 0);
481         cairo_close_path(gc->cr);
482         cairo_stroke(gc->cr);
483
484 }
485
486 static gboolean expose_event(GtkWidget *widget, GdkEventExpose *event, gpointer data)
487 {
488         struct dive *dive = current_dive;
489         struct graphics_context gc;
490         int w,h;
491
492         w = widget->allocation.width;
493         h = widget->allocation.height;
494
495         gc.cr = gdk_cairo_create(widget->window);
496         cairo_set_source_rgb(gc.cr, 0, 0, 0);
497         cairo_paint(gc.cr);
498
499         if (dive)
500                 plot(&gc, w, h, dive);
501
502         cairo_destroy(gc.cr);
503
504         return FALSE;
505 }
506
507 GtkWidget *dive_profile_widget(void)
508 {
509         GtkWidget *da;
510
511         da = gtk_drawing_area_new();
512         gtk_widget_set_size_request(da, 450, 350);
513         g_signal_connect(da, "expose_event", G_CALLBACK(expose_event), NULL);
514
515         return da;
516 }