]> git.donarmstrong.com Git - lilypond.git/blob - lily/text-item.cc
release: 1.3.148
[lilypond.git] / lily / text-item.cc
1 /*   
2   text-item.cc -- implement Text_item
3
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8  */
9 #include <math.h>
10
11 #include "debug.hh"
12 #include "text-item.hh"
13 #include "paper-def.hh"
14 #include "font-interface.hh"
15 #include "staff-symbol-referencer.hh"
16 #include "staff-symbol-referencer.hh"
17 #include "main.hh"
18 #include "all-font-metrics.hh"
19 #include "afm.hh"
20
21
22 /*
23
24   TEXT: STRING
25         | (MARKUP? TEXT+)
26         ;
27
28   HEAD: MARKUP-ITEM | (MARKUP-ITEM+)
29
30   MARKUP-ITEM: PROPERTY | ABBREV | FONT-STYLE
31   PROPERTY: (key . value)
32   ABBREV: rows lines roman music bold italic named super sub text
33    
34 */
35
36 Molecule
37 Text_item::text2molecule (Grob *me, SCM text, SCM alist_chain) 
38 {
39   if (gh_string_p (text))
40     return string2molecule (me, text, alist_chain);
41
42   /*
43     ugh: gh_list_p () is linear.
44    */
45   
46   else if (gh_list_p (text) && text != SCM_EOL && text != SCM_UNDEFINED)
47     {
48       if (gh_string_p (gh_car (text)))
49         return string2molecule (me, gh_car (text), alist_chain);
50       else
51         return markup_text2molecule (me, text, alist_chain);
52     }
53   return Molecule ();
54 }
55              
56 Molecule
57 Text_item::string2molecule (Grob *me, SCM text, SCM alist_chain)
58 {
59   SCM style = ly_assoc_chain (ly_symbol2scm ("font-style"),
60                               alist_chain);
61   if (gh_pair_p (style) && gh_symbol_p (gh_cdr (style)))
62     alist_chain = Font_interface::add_style (me, gh_cdr (style), alist_chain);
63
64   Font_metric *fm = Font_interface::get_font (me, alist_chain);
65   
66   SCM lookup = ly_assoc_chain (ly_symbol2scm ("lookup"), alist_chain);
67     
68   Molecule mol;
69   if (gh_pair_p (lookup) && gh_cdr (lookup) ==ly_symbol2scm ("name"))
70     mol = lookup_character (me, fm, text);
71   else
72     mol = lookup_text (me, fm, text);
73   
74   return mol;
75 }
76
77 Molecule
78 Text_item::lookup_character (Grob *, Font_metric*fm, SCM char_name)
79 {
80   return fm->find_by_name (ly_scm2string (char_name));
81 }
82
83
84 Molecule
85 Text_item::lookup_text (Grob *me, Font_metric*fm, SCM text)
86 {
87 #if 0
88   /*
89     Fixme; should be done differently, move to font-interface?
90
91     differently -- how/why?
92    */
93
94   SCM magnification = me->get_grob_property ("font-magnification");
95
96   Font_metric* metric = 0;
97   if (gh_number_p (magnification))
98     {
99
100       Real realmag = pow (1.2, gh_scm2int (magnification));
101       metric = all_fonts_global_p->find_scaled (ly_scm2string (font_name), realmag);
102
103       assert (false);
104     }
105 #else
106   SCM magnification = me->get_grob_property ("font-magnification");
107
108   if (gh_number_p (magnification) && gh_scm2double (magnification) > 1)
109     programming_error ("font-magnification disabled");
110 #endif
111   
112
113   SCM list = gh_list (ly_symbol2scm ("text"), text, SCM_UNDEFINED);
114   list = fontify_atom (fm, list);
115   
116   return Molecule (fm->text_dimension (ly_scm2string (text)), list);
117 }
118
119 Molecule
120 Text_item::markup_text2molecule (Grob *me, SCM markup_text,
121                                SCM alist_chain)
122 {
123   SCM sheet = me->paper_l ()->style_sheet_;
124   SCM f = gh_cdr (scm_assoc (ly_symbol2scm ("markup-to-properties"), sheet));
125   
126   SCM markup = gh_car (markup_text);
127   SCM text = gh_cdr (markup_text);
128
129   SCM p = gh_cons (gh_call2 (f, sheet, markup), alist_chain);
130
131   Real staff_space = Staff_symbol_referencer::staff_space (me);
132
133   Axis axis = X_AXIS;
134
135   /*
136     TODO:  change ALIGN into AXIS.
137    */
138   SCM a = ly_assoc_chain (ly_symbol2scm ("align"), p);
139   if (gh_pair_p (a) && isaxis_b (gh_cdr (a)))
140     axis = (Axis)gh_scm2int (gh_cdr (a));
141
142   Real baseline_skip = 0;
143   SCM b = ly_assoc_chain (ly_symbol2scm ("baseline-skip"), p);
144   if (gh_pair_p (b) && gh_number_p (gh_cdr (b)))
145     baseline_skip = gh_scm2double (gh_cdr (b)) * staff_space;
146   
147   Real kern[2] = {0,0};
148
149   SCM k = ly_assoc_chain (ly_symbol2scm ("kern"), p);
150   if (gh_pair_p (k) && gh_number_p (gh_cdr (k)))
151     kern[axis] = gh_scm2double (gh_cdr (k)) * staff_space;
152                              
153   Real raise = 0;
154   SCM r = ly_assoc_chain (ly_symbol2scm ("raise"), p);
155   if (gh_pair_p (r) && gh_number_p (gh_cdr (r)))
156     raise = gh_scm2double (gh_cdr (r)) * staff_space;
157
158   Offset o (0, (axis == Y_AXIS ? - kern[axis] : 0) + raise);
159    
160   Molecule mol;
161   while (gh_pair_p (text))
162     {
163       Molecule m = text2molecule (me, gh_car (text), p);
164       SCM m_p = SCM_EOL;
165       if (gh_pair_p (gh_car (text)))
166         m_p = gh_cons (gh_call2 (f, sheet, gh_caar (text)), alist_chain);
167       SCM m_k = ly_assoc_chain (ly_symbol2scm ("kern"), m_p);
168       Real m_kern = kern[axis];
169       if (gh_pair_p (m_k) && gh_number_p (gh_cdr (m_k)))
170         m_kern = gh_scm2double (gh_cdr (m_k)) * staff_space;
171
172       if (!m.empty_b ())
173         {
174           m.translate (o);
175           if (axis == Y_AXIS && baseline_skip)
176             m_kern += baseline_skip - m.extent (Y_AXIS)[UP];
177           mol.add_at_edge (axis, axis == X_AXIS ? RIGHT : DOWN, m, m_kern);
178         }
179       text = gh_cdr (text);
180     }
181   return mol;
182 }
183
184 MAKE_SCHEME_CALLBACK (Text_item, brew_molecule, 1);
185 SCM 
186 Text_item::brew_molecule (SCM smob)
187 {
188   Grob *me = unsmob_grob (smob);
189   
190   SCM text = me->get_grob_property ("text");
191
192   SCM properties = Font_interface::font_alist_chain (me);
193   Molecule mol = Text_item::text2molecule (me, text, properties);
194
195   SCM space = me->get_grob_property ("word-space");
196   if (gh_number_p (space))
197     {
198       Molecule m;
199       m.set_empty (false);
200       mol.add_at_edge (X_AXIS, RIGHT, m, gh_scm2double (space)
201                        * Staff_symbol_referencer::staff_space (me));
202     }
203   return mol.smobbed_copy (); 
204 }
205