]> git.donarmstrong.com Git - lilypond.git/blob - lily/font-select.cc
(add-cmr-fonts): use real dimens in font selection.
[lilypond.git] / lily / font-select.cc
1 /*
2   font-select.cc -- implement property -> font_metric routines. 
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2003--2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include <math.h>
10
11 #include "dimensions.hh"
12 #include "all-font-metrics.hh"
13 #include "output-def.hh"
14 #include "font-interface.hh"
15 #include "warn.hh"
16
17 LY_DEFINE (ly_paper_get_font, "ly:paper-get-font", 2, 0, 0,
18            (SCM paper_smob, SCM chain),
19
20            "Return a font metric satisfying the font-qualifiers "
21            "in the alist chain @var{chain}.\n"
22            "(An alist chain is a list of alists, "
23            "containing grob properties).\n")
24 {
25   Output_def *paper = unsmob_output_def (paper_smob);
26   SCM_ASSERT_TYPE (paper, paper_smob, SCM_ARG1,
27                    __FUNCTION__, "paper definition");
28   
29   Font_metric *fm = select_font (paper, chain);
30   return fm->self_scm ();
31 }
32
33 LY_DEFINE (ly_paper_get_number, "ly:paper-get-number", 2, 0, 0,
34            (SCM layout_smob, SCM name),
35            "Return the layout variable @var{name}.")
36 {
37   Output_def *layout = unsmob_output_def (layout_smob);
38   SCM_ASSERT_TYPE (layout, layout_smob, SCM_ARG1,
39                    __FUNCTION__, "layout definition");
40   return scm_make_real (layout->get_dimension (name));
41 }
42
43 bool
44 wild_compare (SCM field_val, SCM val)
45 {
46   return (val == SCM_BOOL_F
47           || field_val == ly_symbol2scm ("*")
48           || field_val == val);
49 }
50
51 Font_metric *
52 get_font_by_design_size (Output_def *layout, Real requested,
53                          SCM font_vector)
54 {
55   int n = SCM_VECTOR_LENGTH (font_vector);
56   Real size = 1e6;
57   Real last_size = -1e6;
58   int i = 0;
59
60   for (; i < n; i++)
61     {
62       SCM entry = SCM_VECTOR_REF (font_vector, i);
63       Font_metric *fm = unsmob_metrics (scm_force (entry));
64       size = fm->design_size ();
65
66       if (size > requested)
67         break;
68       last_size = size;
69     }
70
71   if (i == n)
72     i = n - 1;
73   else if (i > 0)
74     {
75       if ((requested / last_size) < (size / requested))
76         {
77           i--;
78           size = last_size;
79         }
80     }
81
82   Font_metric *fm = unsmob_metrics (scm_force (SCM_VECTOR_REF (font_vector,
83                                                                i)));
84   return find_scaled_font (layout, fm, requested / size);
85 }
86
87 Font_metric *
88 get_font_by_mag_step (Output_def *layout, Real requested_step,
89                       SCM font_vector, Real default_size)
90 {
91   return get_font_by_design_size (layout, default_size
92                                   * pow (2.0, requested_step / 6.0),
93                                   font_vector);
94 }
95
96 SCM
97 properties_to_font_size_family (SCM fonts, SCM alist_chain)
98 {
99   return scm_call_2 (ly_lily_module_constant ("lookup-font"), fonts, alist_chain);
100 }
101
102 Font_metric *
103 select_encoded_font (Output_def *layout, SCM chain)
104 {
105   SCM name = ly_chain_assoc (ly_symbol2scm ("font-name"), chain);
106
107   if (!scm_is_pair (name) || !scm_is_string (scm_cdr (name)))
108     {
109       SCM fonts = layout->lookup_variable (ly_symbol2scm ("fonts"));
110       name = properties_to_font_size_family (fonts, chain);
111     }
112   else
113     name = scm_cdr (name);
114
115   if (scm_is_string (name))
116     {
117       SCM mag = ly_chain_assoc (ly_symbol2scm ("font-magnification"), chain);
118       Real rmag = (scm_is_pair (mag)
119                    ? robust_scm2double (scm_cdr (mag), 1.0)
120                    : 1);
121       Font_metric *fm = all_fonts_global->find_font (ly_scm2string (name));
122                 
123       return find_scaled_font (layout, fm, rmag);
124     }
125   else if (scm_instance_p (name))
126     {
127       SCM base_size  = scm_slot_ref (name, ly_symbol2scm ("default-size"));
128       SCM vec = scm_slot_ref (name, ly_symbol2scm ("size-vector"));
129
130       SCM font_size = ly_chain_assoc (ly_symbol2scm ("font-size"), chain);
131       Real req = 0;
132       if (scm_is_pair (font_size))
133         req = scm_to_double (scm_cdr (font_size));
134
135       return get_font_by_mag_step (layout, req, vec,
136                                    scm_to_double (base_size));
137     }
138
139   assert (0);
140   return 0;
141 }
142
143 Font_metric *
144 select_font (Output_def *layout, SCM chain)
145 {
146   return select_encoded_font (layout, chain);
147 }