xrchart_write_scale: Use integer arithmetic
[pspp] / src / output / cairo-chart.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2004, 2009, 2010, 2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include "output/cairo-chart.h"
20
21 #include <assert.h>
22 #include <cairo/cairo.h>
23 #include <pango/pango.h>
24 #include <pango/pangocairo.h>
25 #include <errno.h>
26 #include <float.h>
27 #include <math.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32
33 #include "libpspp/assertion.h"
34 #include "math/chart-geometry.h"
35 #include "output/cairo.h"
36 #include "output/chart-item.h"
37
38 #include "gl/error.h"
39 #include "gl/xalloc.h"
40 #include "gl/xvasprintf.h"
41
42 #include "gettext.h"
43 #define _(msgid) gettext (msgid)
44
45 void
46 xrchart_geometry_init (cairo_t *cr, struct xrchart_geometry *geom,
47                        double width, double length)
48 {
49   /* Set default chartetry. */
50   geom->axis[SCALE_ORDINATE].data_max = 0.900 * length;
51   geom->axis[SCALE_ABSCISSA].data_max = 0.800 * width;
52   geom->axis[SCALE_ORDINATE].data_min = 0.120 * length;
53   geom->axis[SCALE_ABSCISSA].data_min = 0.150 * width;
54   geom->abscissa_top = 0.070 * length;
55   geom->ordinate_right = 0.120 * width;
56   geom->title_bottom = 0.920 * length;
57   geom->legend_left = 0.810 * width;
58   geom->legend_right = width;
59   geom->font_size = 15.0;
60   geom->in_path = false;
61   geom->dataset = NULL;
62   geom->n_datasets = 0;
63
64   geom->fill_colour.red = 255;
65   geom->fill_colour.green = 0;
66   geom->fill_colour.blue = 0;
67
68   cairo_set_line_width (cr, 1.0);
69
70   cairo_rectangle (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->axis[SCALE_ORDINATE].data_min,
71                    geom->axis[SCALE_ABSCISSA].data_max - geom->axis[SCALE_ABSCISSA].data_min,
72                    geom->axis[SCALE_ORDINATE].data_max - geom->axis[SCALE_ORDINATE].data_min);
73   cairo_stroke (cr);
74 }
75
76 void
77 xrchart_geometry_free (cairo_t *cr UNUSED, struct xrchart_geometry *geom)
78 {
79   int i;
80
81   for (i = 0 ; i < geom->n_datasets; ++i)
82     free (geom->dataset[i]);
83   free (geom->dataset);
84 }
85
86 #if ! PANGO_VERSION_CHECK (1, 22, 0)
87 int pango_layout_get_baseline (PangoLayout    *layout);
88
89 /* Shamelessly copied from the pango source */
90 int
91 pango_layout_get_baseline (PangoLayout    *layout)
92 {
93   int baseline;
94
95   /* XXX this is so inefficient */
96   PangoLayoutIter *iter = pango_layout_get_iter (layout);
97   baseline = pango_layout_iter_get_baseline (iter);
98   pango_layout_iter_free (iter);
99
100   return baseline;
101 }
102 #endif
103
104
105
106 const struct xrchart_colour data_colour[XRCHART_N_COLOURS] =
107   {
108     { 165, 42, 42 },            /* brown */
109     { 255, 0, 0 },              /* red */
110     { 255, 165, 0 },            /* orange */
111     { 255, 255, 0 },            /* yellow */
112     { 0, 255, 0 },              /* green */
113     { 0, 0, 255 },              /* blue */
114     { 238, 130, 238 },          /* violet */
115     { 190, 190, 190 },          /* grey */
116     { 255, 192, 203 },          /* pink */
117   };
118
119 void
120 xrchart_draw_marker (cairo_t *cr, double x, double y,
121                      enum xrmarker_type marker, double size)
122 {
123   cairo_save (cr);
124   cairo_translate (cr, x, y);
125   cairo_scale (cr, size / 2.0, size / 2.0);
126   cairo_set_line_width (cr, cairo_get_line_width (cr) / (size / 2.0));
127   switch (marker)
128     {
129     case XRMARKER_CIRCLE:
130       cairo_arc (cr, 0, 0, 1.0, 0, 2 * M_PI);
131       cairo_stroke (cr);
132       break;
133
134     case XRMARKER_ASTERISK:
135       cairo_move_to (cr, 0, -1.0); /* | */
136       cairo_line_to (cr, 0, 1.0);
137       cairo_move_to (cr, -M_SQRT1_2, -M_SQRT1_2); /* / */
138       cairo_line_to (cr, M_SQRT1_2, M_SQRT1_2);
139       cairo_move_to (cr, -M_SQRT1_2, M_SQRT1_2); /* \ */
140       cairo_line_to (cr, M_SQRT1_2, -M_SQRT1_2);
141       cairo_stroke (cr);
142       break;
143
144     case XRMARKER_SQUARE:
145       cairo_rectangle (cr, -1.0, -1.0, 2.0, 2.0);
146       cairo_stroke (cr);
147       break;
148     }
149   cairo_restore (cr);
150 }
151
152 void
153 xrchart_label (cairo_t *cr, int horz_justify, int vert_justify,
154                double font_size, const char *string)
155 {
156   PangoFontDescription *desc;
157   PangoLayout *layout;
158   double x, y;
159
160   desc = pango_font_description_from_string ("sans serif");
161   if (desc == NULL)
162     {
163       cairo_new_path (cr);
164       return;
165     }
166   pango_font_description_set_absolute_size (desc, font_size * PANGO_SCALE);
167
168   cairo_save (cr);
169   cairo_get_current_point (cr, &x, &y);
170   cairo_translate (cr, x, y);
171   cairo_move_to (cr, 0, 0);
172   cairo_scale (cr, 1.0, -1.0);
173
174   layout = pango_cairo_create_layout (cr);
175   pango_layout_set_font_description (layout, desc);
176   pango_layout_set_text (layout, string, -1);
177   if (horz_justify != 'l')
178     {
179       int width_pango;
180       double width;
181
182       pango_layout_get_size (layout, &width_pango, NULL);
183       width = (double) width_pango / PANGO_SCALE;
184       if (horz_justify == 'r')
185         cairo_rel_move_to (cr, -width, 0);
186       else
187         cairo_rel_move_to (cr, -width / 2.0, 0);
188     }
189   if (vert_justify == 'x')
190     {
191       int baseline_pango = pango_layout_get_baseline (layout);
192       double baseline = (double) baseline_pango / PANGO_SCALE;
193       cairo_rel_move_to (cr, 0, -baseline);
194     }
195   else if (vert_justify != 't')
196     {
197       int height_pango;
198       double height;
199
200       pango_layout_get_size (layout, NULL, &height_pango);
201       height = (double) height_pango / PANGO_SCALE;
202       if (vert_justify == 'b')
203         cairo_rel_move_to (cr, 0, -height);
204       else if (vert_justify == 'c')
205         cairo_rel_move_to (cr, 0, -height / 2.0);
206     }
207   pango_cairo_show_layout (cr, layout);
208   g_object_unref (layout);
209
210   cairo_restore (cr);
211
212   cairo_new_path (cr);
213
214   pango_font_description_free (desc);
215 }
216
217 /* Draw a tick mark at position
218    If label is non null, then print it at the tick mark
219 */
220 static void
221 draw_tick_internal (cairo_t *cr, const struct xrchart_geometry *geom,
222                     enum tick_orientation orientation,
223                     double position,
224                     const char *s);
225
226 void
227 draw_tick (cairo_t *cr, const struct xrchart_geometry *geom,
228            enum tick_orientation orientation,
229            double position,
230            const char *label, ...)
231 {
232   va_list ap;
233   char *s;
234   va_start (ap, label);
235   s = xvasprintf (label, ap);
236
237   if (fabs (position) < DBL_EPSILON)
238     position = 0;
239
240   draw_tick_internal (cr, geom, orientation, position, s);
241   free (s);
242   va_end (ap);
243 }
244
245
246 static void
247 draw_tick_internal (cairo_t *cr, const struct xrchart_geometry *geom,
248                     enum tick_orientation orientation,
249                     double position,
250                     const char *s)
251 {
252   const int tickSize = 10;
253   double x, y;
254
255   cairo_move_to (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->axis[SCALE_ORDINATE].data_min);
256
257   if (orientation == SCALE_ABSCISSA)
258     {
259       cairo_rel_move_to (cr, position, 0);
260       cairo_rel_line_to (cr, 0, -tickSize);
261     }
262   else if (orientation == SCALE_ORDINATE)
263     {
264       cairo_rel_move_to (cr, 0, position);
265       cairo_rel_line_to (cr, -tickSize, 0);
266     }
267   else
268     NOT_REACHED ();
269   cairo_get_current_point (cr, &x, &y);
270
271   cairo_stroke (cr);
272
273   if (s != NULL)
274     {
275       cairo_move_to (cr, x, y);
276
277       if (orientation == SCALE_ABSCISSA)
278         xrchart_label (cr, 'c', 't', geom->font_size, s);
279       else if (orientation == SCALE_ORDINATE)
280         {
281           if (fabs (position) < DBL_EPSILON)
282             cairo_rel_move_to (cr, 0, 10);
283           xrchart_label (cr, 'r', 'c', geom->font_size, s);
284         }
285     }
286 }
287
288
289 /* Write the title on a chart*/
290 void
291 xrchart_write_title (cairo_t *cr, const struct xrchart_geometry *geom,
292                    const char *title, ...)
293 {
294   va_list ap;
295   char *s;
296
297   cairo_save (cr);
298   cairo_move_to (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->title_bottom);
299
300   va_start(ap, title);
301   s = xvasprintf (title, ap);
302   xrchart_label (cr, 'l', 'x', geom->font_size * 1.5, s);
303   free (s);
304   va_end (ap);
305
306   cairo_restore (cr);
307 }
308
309
310 /* Set the scale for the ordinate */
311 static void
312 xrchart_write_scale (cairo_t *cr, struct xrchart_geometry *geom,
313                      double smin, double smax, int ticks, enum tick_orientation orient)
314 {
315   int s;
316
317   const double tick_interval =
318     chart_rounded_tick ((smax - smin) / (double) ticks);
319
320   int upper = ceil (smax / tick_interval);
321   int lower = floor (smin / tick_interval);
322
323   geom->axis[orient].max = tick_interval * upper;
324   geom->axis[orient].min = tick_interval * lower;
325
326   geom->axis[orient].scale = (fabs (geom->axis[orient].data_max - geom->axis[orient].data_min)
327      / fabs (geom->axis[orient].max - geom->axis[orient].min));
328
329   for (s = 0 ; s < upper - lower; ++s)
330     {
331       double pos = (s + lower) * tick_interval;
332       draw_tick (cr, geom, orient,
333                  s * tick_interval * geom->axis[orient].scale, "%g", pos);
334     }
335 }
336
337 void
338 xrchart_write_yscale (cairo_t *cr, struct xrchart_geometry *geom,
339                     double smin, double smax, int ticks)
340 {
341   xrchart_write_scale (cr, geom, smin, smax, ticks, SCALE_ORDINATE);
342 }
343
344 /* Set the scale for the abscissa */
345 void
346 xrchart_write_xscale (cairo_t *cr, struct xrchart_geometry *geom,
347                     double smin, double smax, int ticks)
348 {
349   xrchart_write_scale (cr, geom, smin, smax, ticks, SCALE_ABSCISSA);
350 }
351
352
353 /* Write the abscissa label */
354 void
355 xrchart_write_xlabel (cairo_t *cr, const struct xrchart_geometry *geom,
356                     const char *label)
357 {
358   cairo_move_to (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->abscissa_top);
359   xrchart_label (cr, 'l', 't', geom->font_size, label);
360 }
361
362 /* Write the ordinate label */
363 void
364 xrchart_write_ylabel (cairo_t *cr, const struct xrchart_geometry *geom,
365                     const char *label)
366 {
367   cairo_save (cr);
368   cairo_translate (cr, -geom->axis[SCALE_ORDINATE].data_min, -geom->ordinate_right);
369   cairo_move_to (cr, 0, 0);
370   cairo_rotate (cr, M_PI / 2.0);
371   xrchart_label (cr, 'l', 'x', geom->font_size, label);
372   cairo_restore (cr);
373 }
374
375
376 void
377 xrchart_write_legend (cairo_t *cr, const struct xrchart_geometry *geom)
378 {
379   int i;
380   const int vstep = geom->font_size * 2;
381   const int xpad = 10;
382   const int ypad = 10;
383   const int swatch = 20;
384   const int legend_top = geom->axis[SCALE_ORDINATE].data_max;
385   const int legend_bottom = legend_top -
386     (vstep * geom->n_datasets + 2 * ypad );
387
388   cairo_save (cr);
389
390   cairo_rectangle (cr, geom->legend_left, legend_top,
391                    geom->legend_right - xpad - geom->legend_left,
392                    legend_bottom - legend_top);
393   cairo_stroke (cr);
394
395   for (i = 0 ; i < geom->n_datasets ; ++i )
396     {
397       const int ypos = legend_top - vstep * (i + 1);
398       const int xpos = geom->legend_left + xpad;
399       const struct xrchart_colour *colour;
400
401       cairo_move_to (cr, xpos, ypos);
402
403       cairo_save (cr);
404       colour = &data_colour [ i % XRCHART_N_COLOURS];
405       cairo_set_source_rgb (cr,
406                             colour->red / 255.0,
407                             colour->green / 255.0,
408                             colour->blue / 255.0);
409       cairo_rectangle (cr, xpos, ypos, swatch, swatch);
410       cairo_fill_preserve (cr);
411       cairo_stroke (cr);
412       cairo_restore (cr);
413
414       cairo_move_to (cr, xpos + swatch * 1.5, ypos);
415       xrchart_label (cr, 'l', 'x', geom->font_size, geom->dataset[i]);
416     }
417
418   cairo_restore (cr);
419 }
420
421 /* Start a new vector called NAME */
422 void
423 xrchart_vector_start (cairo_t *cr, struct xrchart_geometry *geom, const char *name)
424 {
425   const struct xrchart_colour *colour;
426
427   cairo_save (cr);
428
429   colour = &data_colour[geom->n_datasets % XRCHART_N_COLOURS];
430   cairo_set_source_rgb (cr,
431                         colour->red / 255.0,
432                         colour->green / 255.0,
433                         colour->blue / 255.0);
434
435   geom->n_datasets++;
436   geom->dataset = xrealloc (geom->dataset,
437                             geom->n_datasets * sizeof (*geom->dataset));
438
439   geom->dataset[geom->n_datasets - 1] = strdup (name);
440 }
441
442 /* Plot a data point */
443 void
444 xrchart_datum (cairo_t *cr, const struct xrchart_geometry *geom,
445              int dataset UNUSED, double x, double y)
446 {
447   double x_pos = (x - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
448   double y_pos = (y - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
449
450   xrchart_draw_marker (cr, x_pos, y_pos, XRMARKER_SQUARE, 15);
451 }
452
453 void
454 xrchart_vector_end (cairo_t *cr, struct xrchart_geometry *geom)
455 {
456   cairo_stroke (cr);
457   cairo_restore (cr);
458   geom->in_path = false;
459 }
460
461 /* Plot a data point */
462 void
463 xrchart_vector (cairo_t *cr, struct xrchart_geometry *geom, double x, double y)
464 {
465   const double x_pos =
466     (x - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min ;
467
468   const double y_pos =
469     (y - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min ;
470
471   if (geom->in_path)
472     cairo_line_to (cr, x_pos, y_pos);
473   else
474     {
475       cairo_move_to (cr, x_pos, y_pos);
476       geom->in_path = true;
477     }
478 }
479
480
481
482 /* Draw a line with slope SLOPE and intercept INTERCEPT.
483    between the points limit1 and limit2.
484    If lim_dim is XRCHART_DIM_Y then the limit{1,2} are on the
485    y axis otherwise the x axis
486 */
487 void
488 xrchart_line(cairo_t *cr, const struct xrchart_geometry *geom,
489            double slope, double intercept,
490            double limit1, double limit2, enum xrchart_dim lim_dim)
491 {
492   double x1, y1;
493   double x2, y2;
494
495   if ( lim_dim == XRCHART_DIM_Y )
496     {
497       x1 = ( limit1 - intercept ) / slope;
498       x2 = ( limit2 - intercept ) / slope;
499       y1 = limit1;
500       y2 = limit2;
501     }
502   else
503     {
504       x1 = limit1;
505       x2 = limit2;
506       y1 = slope * x1 + intercept;
507       y2 = slope * x2 + intercept;
508     }
509
510   y1 = (y1 - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
511   y2 = (y2 - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
512   x1 = (x1 - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
513   x2 = (x2 - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
514
515   cairo_move_to (cr, x1, y1);
516   cairo_line_to (cr, x2, y2);
517   cairo_stroke (cr);
518 }