]> git.donarmstrong.com Git - lilypond.git/blob - lily/lookup.cc
release: 1.1.52
[lilypond.git] / lily / lookup.cc
1 /*
2   lookup.cc -- implement simple Lookup methods.
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8   Jan Nieuwenhuizen <janneke@gnu.org>
9
10   TODO
11       Glissando
12 */
13
14 #include <ctype.h>
15 #include "lookup.hh"
16 #include "debug.hh"
17 #include "dimensions.hh"
18 #include "scalar.hh"
19 #include "paper-def.hh"
20 #include "string-convert.hh"
21 #include "file-path.hh"
22 #include "main.hh"
23 #include "lily-guile.hh"
24 #include "all-fonts.hh"
25 #include "afm.hh"
26 #include "scope.hh"
27 #include "molecule.hh"
28 #include "atom.hh"
29 #include "lily-guile.hh"
30
31
32 Lookup::Lookup ()
33 {
34   afm_l_ = 0;  
35 }
36
37 Lookup::Lookup (Lookup const& s)
38 {
39   font_name_ = s.font_name_;
40   afm_l_ = 0;  
41 }
42
43
44 /*
45   build a ledger line for small pieces.
46  */
47 Molecule
48 Lookup::ledger_line (Interval xwid) const
49 {
50   Drul_array<Molecule> endings;
51   endings[LEFT] = afm_find ("noteheads-ledgerending");
52   Molecule * e = &endings[LEFT];
53   endings[RIGHT] = *e;
54   
55   Real thick = e->dim_[Y_AXIS].length();
56   Real len = e->dim_[X_AXIS].length () - thick;
57
58   Molecule total;
59   Direction d = LEFT;
60   do {
61     endings[d].translate_axis (xwid[d] - endings[d].dim_[X_AXIS][d], X_AXIS);
62     total.add_molecule (endings[d]);    
63   } while ((flip(&d)) != LEFT);
64
65   Real xpos = xwid [LEFT] + len;
66
67   while (xpos + len + thick /2 <= xwid[RIGHT])
68     {
69       e->translate_axis (len, X_AXIS);
70       total.add_molecule (*e);
71       xpos += len;
72     }
73
74   return total;
75 }
76
77
78 Molecule
79 Lookup::accidental (int j, bool cautionary) const
80 {
81   Molecule m(afm_find (String ("accidentals-") + to_str (j)));
82   if (cautionary) 
83     {
84       Molecule open = afm_find (String ("accidentals-("));
85       Molecule close = afm_find (String ("accidentals-)"));
86       m.add_at_edge(X_AXIS, LEFT, Molecule(open), 0);
87       m.add_at_edge(X_AXIS, RIGHT, Molecule(close), 0);
88     }
89   return m;
90 }
91
92
93
94 Molecule
95 Lookup::afm_find (String s, bool warn) const
96 {
97   if (!afm_l_)      
98     {
99       Lookup * me =     (Lookup*)(this);
100       me->afm_l_ = all_fonts_global_p->find_afm (font_name_);
101       if (!me->afm_l_)
102         {
103           warning (_f("Can't open `%s'\n", font_name_));
104           warning (_f("Search path %s\n", global_path.str ().ch_C()));
105           error (_f("Aborting"));
106         }
107     }
108   Adobe_font_char_metric cm = afm_l_->find_char (s, warn);
109   Molecule m;
110   if (cm.code () < 0)
111     {
112       /*
113         don't want people relying on this kind of dimension. 
114        */
115       m.set_empty (false);
116       return m;
117     }
118   
119   Atom at (gh_list (char_scm_sym,
120                     gh_int2scm (cm.code ()),
121                     SCM_UNDEFINED));
122   at.font_ = ly_symbol (font_name_.ch_C());
123   m.dim_ = cm.dimensions();
124   m.add_atom (&at);
125   return m;
126 }
127
128 Molecule
129 Lookup::notehead (int j, String type) const
130 {
131   if (j > 2)
132     j = 2;
133
134   return afm_find (String ("noteheads-") + to_str (j) + type);
135 }
136
137 Molecule
138 Lookup::simple_bar (String type, Real h, Paper_def* paper_l) const
139 {
140   SCM thick = ly_symbol ("barthick_" + type);
141   Real w = 0.0;
142   
143   if (paper_l->scope_p_->elem_b (thick))
144     {
145       w = paper_l->get_realvar (thick);
146     }
147   else
148     {
149       programming_error ("No bar thickness set ! ");
150       w = 1 PT;
151     }
152   return filledbox (Box (Interval(0,w), Interval(-h/2, h/2)));
153 }
154
155   
156 Molecule
157 Lookup::bar (String str, Real h, Paper_def *paper_l) const
158 {
159   if (str == "bracket")
160     return staff_bracket (h);
161   else if (str == "brace")
162     return staff_brace (h);
163   
164   Real kern = paper_l->get_var ("bar_kern");
165   Real thinkern = paper_l->get_var ("bar_thinkern");
166   
167   Molecule thin = simple_bar ("thin", h, paper_l);
168   Molecule thick = simple_bar ("thick", h, paper_l);
169   Molecule colon = afm_find ("dots-repeatcolon", paper_l);  
170
171   Molecule m;
172   
173   if (str == "")
174     {
175       return fill (Box (Interval(0, 0), Interval (-h/2, h/2)));
176     }
177   if (str == "scorepostbreak")
178     {
179       return simple_bar ("score", h, paper_l);
180     }
181   else if (str == "|")
182     {
183       return thin;
184     }
185   else if (str == "|.")
186     {
187       m.add_at_edge (X_AXIS, LEFT, thick, 0);      
188       m.add_at_edge (X_AXIS, LEFT, thin, kern);
189     }
190   else if (str == ".|")
191     {
192       m.add_at_edge (X_AXIS, RIGHT, thick, 0);
193       m.add_at_edge (X_AXIS, RIGHT, thin, kern);
194     }
195   else if (str == ":|")
196     {
197       m.add_at_edge (X_AXIS, LEFT, thick, 0);
198       m.add_at_edge (X_AXIS, LEFT, thin, kern);
199       m.add_at_edge (X_AXIS, LEFT, colon, kern);      
200     }
201   else if (str == "|:")
202     {
203       m.add_at_edge (X_AXIS, RIGHT, thick, 0);
204       m.add_at_edge (X_AXIS, RIGHT, thin, kern);
205       m.add_at_edge (X_AXIS, RIGHT, colon, kern);      
206     }
207   else if (str == ":|:")
208     {
209       m.add_at_edge (X_AXIS, LEFT, thick, thinkern);
210       m.add_at_edge (X_AXIS, LEFT, colon, kern);      
211       m.add_at_edge (X_AXIS, RIGHT, thick, kern);
212       m.add_at_edge (X_AXIS, RIGHT, colon, kern);      
213     }
214   else if (str == ".|.")
215     {
216       m.add_at_edge (X_AXIS, LEFT, thick, thinkern);
217       m.add_at_edge (X_AXIS, RIGHT, thick, kern);      
218     }
219   else if (str == "||")
220     {
221       m.add_at_edge (X_AXIS, RIGHT, thin, 0);
222       m.add_at_edge (X_AXIS, RIGHT, thin, thinkern);      
223     }
224
225   return m;
226 }
227
228 Molecule 
229 Lookup::beam (Real slope, Real width, Real thick) const
230 {
231   Real height = slope * width; 
232   Real min_y = (0 <? height) - thick/2;
233   Real max_y = (0 >? height) + thick/2;
234
235   
236   Molecule m;
237   Atom at
238      (gh_list (beam_scm_sym,
239                                 gh_double2scm (width),
240                                 gh_double2scm (slope),
241                                 gh_double2scm (thick),
242                                 SCM_UNDEFINED));
243
244   m.dim_[X_AXIS] = Interval (0, width);
245   m.dim_[Y_AXIS] = Interval (min_y, max_y);
246   m.add_atom (&at);
247   return m;
248 }
249
250 Molecule
251 Lookup::clef (String st) const
252 {
253   return afm_find (String ("clefs-" + st));
254 }
255
256 SCM
257 offset2scm (Offset o)
258 {
259   return gh_list (gh_double2scm (o[X_AXIS]), gh_double2scm(o[Y_AXIS]),
260                   SCM_UNDEFINED);
261 }
262
263 Molecule
264 Lookup::dashed_slur (Array<Offset> controls, Real thick, Real dash) const
265 {
266   assert (controls.size () == 8);
267   Offset d = controls[3] - controls[0];
268   
269   Real dx = d[X_AXIS];
270   Real dy = d[Y_AXIS];
271
272   Molecule m;
273
274
275   m.dim_[X_AXIS] = Interval (0, dx);
276   m.dim_[Y_AXIS] = Interval (0 <? dy, 0 >? dy);
277
278   SCM sc[4];
279   for (int i=0; i<  4; i++)
280     {
281       sc[i] =  offset2scm (controls[i]);
282     }
283
284   Atom at
285     (gh_list (ly_symbol ("dashed-slur"),
286               gh_double2scm (thick), 
287               gh_double2scm (dash),
288               ly_quote_scm (array_to_list (sc, 4)),
289               SCM_UNDEFINED));
290   
291   
292   m.add_atom (&at);
293   return m;
294 }
295
296 Molecule
297 Lookup::dots () const
298 {
299   return afm_find (String ("dots-dot"));
300 }
301
302
303
304 Molecule
305 Lookup::fill (Box b) const
306 {
307   Molecule m;
308   m.dim_ = b;
309   return m;
310 }
311
312 Molecule
313 Lookup::rest (int j, bool o, String style) const
314 {
315   return afm_find (String ("rests-") + to_str (j) + (o ? "o" : "") + style);
316 }
317
318
319 Molecule
320 Lookup::special_time_signature (String s, int n, int d, Paper_def*pap) const
321 {
322   // First guess: s contains only the signature style
323   String symbolname = "timesig-" + s + to_str (n) + "/" + to_str (d);
324   
325   Molecule m = afm_find (symbolname, false);
326   if (!m.empty_b()) 
327     return m;
328
329   // Second guess: s contains the full signature name
330   m = afm_find ("timesig-"+s, false);
331   if (!m.empty_b ()) 
332     return m;
333
334   // Resort to default layout with numbers
335   return time_signature (n,d,pap);
336 }
337
338 Molecule
339 Lookup::filledbox (Box b ) const
340 {
341   Molecule m;
342   
343   Atom at  (gh_list (filledbox_scm_sym,
344                      gh_double2scm (-b[X_AXIS][LEFT]),
345                      gh_double2scm (b[X_AXIS][RIGHT]),                 
346                      gh_double2scm (-b[Y_AXIS][DOWN]),
347                      gh_double2scm (b[Y_AXIS][UP]),                    
348                      SCM_UNDEFINED));
349
350   m.dim_ = b;
351   m.add_atom (&at);
352   return m;
353 }
354
355
356
357 /**
358    Magnification steps.  These are powers of 1.2. The numbers are
359  taken from Knuth's plain.tex: */
360 static Real mag_steps[] = {1, 1, 1.200, 1.440, 1.7280,  2.074, 2.488};
361
362 /**
363    TODO: THIS IS UGLY.  Since the user has direct access to TeX
364    strings, we try some halfbaked attempt to detect TeX trickery.
365
366 */
367 Molecule
368 Lookup::text (String style, String text, Paper_def *paper_l) const
369 {
370   Molecule m;
371   if (style.empty_b ())
372     style = "roman";
373   
374   int font_mag = 1;
375   Real font_h = paper_l->get_var ("font_normal");
376   if (paper_l->scope_p_->elem_b ("font_" + style))
377     {
378       font_h = paper_l->get_var ("font_" + style);
379     }
380    
381   if (paper_l->scope_p_->elem_b ("magnification_" + style))
382     {
383       font_mag = (int)paper_l->get_var ("magnification_" + style);
384     }
385
386   /*
387     UGH.
388   */
389   SCM l = gh_eval_str (("(style-to-cmr \"" + style + "\")").ch_C());
390   if (l != SCM_BOOL_F)
391     {
392       style = ly_scm2string (SCM_CDR(l)) +to_str  ((int)font_h);
393     }
394
395   Real w = 0;
396   Interval ydims (0,0);
397
398   Font_metric* afm_l = all_fonts_global_p->find_font (style);
399   DOUT << "\nChars: ";
400
401
402   int brace_count =0;
403   for (int i = 0; i < text.length_i (); i++) 
404     {
405       
406       if (text[i]=='\\') 
407         {
408           for (i++; (i < text.length_i ()) && isalpha(text[i]); i++)
409             ;
410           i--; // Compensate for the increment in the outer loop!
411         }
412       else
413         {
414           if (text[i] == '{')
415             brace_count ++;
416           else if (text[i] == '}')
417             brace_count --;
418           Character_metric *c = afm_l->get_char ((unsigned char)text[i],false);
419
420           w += c->dimensions()[X_AXIS].length ();
421           ydims.unite (c->dimensions()[Y_AXIS]);
422         }
423     }
424
425   if (font_mag > 1 && font_mag < 7 )
426     {
427       /* UGH  */ 
428       style = style + String(" scaled \\magstep ") + to_str (font_mag);
429       w *= mag_steps[font_mag];
430       ydims *= mag_steps[font_mag];
431     }
432
433   if(brace_count)
434     {
435       warning (_f ("Non-matching braces in text `%s', adding braces.", text.ch_C()));
436
437       if (brace_count < 0)
438         {
439           text = to_str ('{', -brace_count) + text;
440         }
441       else 
442         {
443           text = text + to_str ('}', brace_count);
444         }
445     }
446
447   
448   DOUT << "\n" << to_str (w) << "\n";
449   m.dim_.x () = Interval (0, w);
450   m.dim_.y () = ydims;
451
452   
453   Atom at  (gh_list (text_scm_sym,
454                      gh_str02scm (text.ch_C()),
455                      SCM_UNDEFINED));
456   at.font_ = ly_symbol (style);
457   
458   m.add_atom (&at);
459   return m;
460 }
461   
462
463 Molecule
464 Lookup::time_signature (int num, int den, Paper_def *paper_l) const
465 {
466   String sty = "number";
467   Molecule n (text (sty, to_str (num), paper_l));
468   Molecule d (text (sty, to_str (den), paper_l));
469   n.align_to (X_AXIS, CENTER);
470   d.align_to (X_AXIS, CENTER);
471   Molecule m;
472   if (den)
473     {
474       m.add_at_edge (Y_AXIS, UP, n, 0.0);
475       m.add_at_edge (Y_AXIS, DOWN, d, 0.0);
476     }
477   else
478     {
479       m = n;
480       m.align_to (Y_AXIS, CENTER);
481     }
482   return m;
483 }
484
485 Molecule
486 Lookup::staff_brace (Real y) const
487 {
488   Molecule m;
489   
490   Atom at  (gh_list (pianobrace_scm_sym,
491                      gh_double2scm (y),
492                      SCM_UNDEFINED
493                      ));
494   
495   m.dim_[Y_AXIS] = Interval (-y/2,y/2);
496   m.dim_[X_AXIS] = Interval (0,0);
497   m.add_atom (&at);
498   return m;
499 }
500
501 Molecule
502 Lookup::hairpin (Real width, Real height, bool decresc, bool continued) const
503 {
504   Molecule m;   
505
506   String hairpin = String (decresc ? "de" : "") + "crescendo";
507   Atom at  (gh_list (ly_symbol (hairpin),
508                      gh_double2scm (width),
509                      gh_double2scm (height),
510                      gh_double2scm (continued ? height/2 : 0.0),
511                      SCM_UNDEFINED));
512   m.dim_.x () = Interval (0, width);
513   m.dim_.y () = Interval (-2*height, 2*height);
514
515   m.add_atom (&at);
516   return m;
517 }
518
519 Molecule
520 Lookup::tuplet_bracket (Real dy , Real dx, Real thick, Real interline_f, Direction dir) const
521 {
522   Molecule m;
523
524   Atom at  (gh_list(tuplet_scm_sym,
525                     gh_double2scm (interline_f), 
526                     gh_double2scm (dx),
527                     gh_double2scm (dy),
528                     gh_double2scm (thick),
529                     gh_int2scm (dir),
530                     SCM_UNDEFINED));
531   m.add_atom (&at);
532
533   return m;
534 }
535
536 /*
537   Make a smooth curve along the points 
538  */
539 Molecule
540 Lookup::slur (Array<Offset> controls) const
541 {
542   Offset  delta_off = controls[3]- controls[0];
543   Molecule m; 
544
545   SCM scontrols [8];
546   int indices[] = {5,6,7,4,1,2,3,0};
547
548   for (int i= 0; i < 8; i++)
549     scontrols[i] = offset2scm (controls[indices[i]]);
550
551
552   Atom at  (gh_list (ly_symbol ("bezier-sandwich"),
553                      ly_quote_scm (array_to_list (scontrols, 8)),
554                      SCM_UNDEFINED));
555
556   m.dim_[X_AXIS] = Interval (0, delta_off[X_AXIS]);
557   m.dim_[Y_AXIS] = Interval (0 <? delta_off[Y_AXIS], 0 >? delta_off[Y_AXIS]);
558   m.add_atom (&at);
559   return m;
560 }
561
562 Molecule
563 Lookup::staff_bracket (Real y) const
564 {
565   Molecule m; 
566   Atom at  ( gh_list (bracket_scm_sym,
567                       gh_double2scm (y),
568                       SCM_UNDEFINED));
569   m.add_atom (&at);                              
570   m.dim_[Y_AXIS] = Interval (-y/2,y/2);
571   m.dim_[X_AXIS] = Interval (0,4 PT);
572
573   m.translate_axis (- 4. / 3. * m.dim_[X_AXIS].length (), X_AXIS);
574   return m;
575 }
576
577 Molecule
578 Lookup::volta (Real w, Real thick, Real interline_f, bool last_b) const
579 {
580   Molecule m; 
581
582   Atom at  (gh_list (volta_scm_sym,
583                      gh_double2scm (w),
584                      gh_double2scm (thick),
585                      gh_int2scm (last_b),
586                      SCM_UNDEFINED));
587
588   m.dim_[Y_AXIS] = Interval (-interline_f, interline_f);
589   m.dim_[X_AXIS] = Interval (0, w);
590
591   m.add_atom (&at);
592   return m;
593 }
594
595 Molecule
596 Lookup::accordion (SCM s, Real interline_f) const
597 {
598   Molecule m;
599   String sym = ly_scm2string(SCM_CAR(s));
600   String reg = ly_scm2string(SCM_CAR(SCM_CDR(s)));
601
602   if (sym == "Discant")
603     {
604       Molecule r = afm_find("scripts-accDiscant");
605       m.add_molecule(r);
606       if (reg.left_str(1) == "F")
607         {
608           Molecule d = afm_find("scripts-accDot");
609           d.translate_axis(interline_f * 2.5 PT, Y_AXIS);
610           m.add_molecule(d);
611           reg = reg.right_str(reg.length_i()-1);
612         }
613       int eflag = 0x00;
614       if (reg.left_str(3) == "EEE")
615         {
616           eflag = 0x07;
617           reg = reg.right_str(reg.length_i()-3);
618         }
619       else if (reg.left_str(2) == "EE")
620         {
621           eflag = 0x05;
622           reg = reg.right_str(reg.length_i()-2);
623         }
624       else if (reg.left_str(2) == "Eh")
625         {
626           eflag = 0x04;
627           reg = reg.right_str(reg.length_i()-2);
628         }
629       else if (reg.left_str(1) == "E")
630         {
631           eflag = 0x02;
632           reg = reg.right_str(reg.length_i()-1);
633         }
634       if (eflag & 0x02)
635         {
636           Molecule d = afm_find("scripts-accDot");
637           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
638           m.add_molecule(d);
639         }
640       if (eflag & 0x04)
641         {
642           Molecule d = afm_find("scripts-accDot");
643           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
644           d.translate_axis(0.8 * interline_f PT, X_AXIS);
645           m.add_molecule(d);
646         }
647       if (eflag & 0x01)
648         {
649           Molecule d = afm_find("scripts-accDot");
650           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
651           d.translate_axis(-0.8 * interline_f PT, X_AXIS);
652           m.add_molecule(d);
653         }
654       if (reg.left_str(2) == "SS")
655         {
656           Molecule d = afm_find("scripts-accDot");
657           d.translate_axis(0.5 * interline_f PT, Y_AXIS);
658           d.translate_axis(0.4 * interline_f PT, X_AXIS);
659           m.add_molecule(d);
660           d.translate_axis(-0.8 * interline_f PT, X_AXIS);
661           m.add_molecule(d);
662           reg = reg.right_str(reg.length_i()-2);
663         }
664       if (reg.left_str(1) == "S")
665         {
666           Molecule d = afm_find("scripts-accDot");
667           d.translate_axis(0.5 * interline_f PT, Y_AXIS);
668           m.add_molecule(d);
669           reg = reg.right_str(reg.length_i()-1);
670         }
671     }
672   else if (sym == "Freebase")
673     {
674       Molecule r = afm_find("scripts-accFreebase");
675       m.add_molecule(r);
676       if (reg.left_str(1) == "F")
677         {
678           Molecule d = afm_find("scripts-accDot");
679           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
680           m.add_molecule(d);
681           reg = reg.right_str(reg.length_i()-1);
682         }
683       if (reg == "E")
684         {
685           Molecule d = afm_find("scripts-accDot");
686           d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
687           m.add_molecule(d);
688         }
689     }
690   else if (sym == "Bayanbase")
691     {
692       Molecule r = afm_find("scripts-accBayanbase");
693       m.add_molecule(r);
694       if (reg.left_str(1) == "T")
695         {
696           Molecule d = afm_find("scripts-accDot");
697           d.translate_axis(interline_f * 2.5 PT, Y_AXIS);
698           m.add_molecule(d);
699           reg = reg.right_str(reg.length_i()-1);
700         }
701       /* include 4' reed just for completeness. You don't want to use this. */
702       if (reg.left_str(1) == "F")
703         {
704           Molecule d = afm_find("scripts-accDot");
705           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
706           m.add_molecule(d);
707           reg = reg.right_str(reg.length_i()-1);
708         }
709       if (reg.left_str(2) == "EE")
710         {
711           Molecule d = afm_find("scripts-accDot");
712           d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
713           d.translate_axis(0.4 * interline_f PT, X_AXIS);
714           m.add_molecule(d);
715           d.translate_axis(-0.8 * interline_f PT, X_AXIS);
716           m.add_molecule(d);
717           reg = reg.right_str(reg.length_i()-2);
718         }
719       if (reg.left_str(1) == "E")
720         {
721           Molecule d = afm_find("scripts-accDot");
722           d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
723           m.add_molecule(d);
724           reg = reg.right_str(reg.length_i()-1);
725         }
726     }
727   else if (sym == "Stdbase")
728     {
729       Molecule r = afm_find("scripts-accStdbase");
730       m.add_molecule(r);
731       if (reg.left_str(1) == "T")
732         {
733           Molecule d = afm_find("scripts-accDot");
734           d.translate_axis(interline_f * 3.5 PT, Y_AXIS);
735           m.add_molecule(d);
736           reg = reg.right_str(reg.length_i()-1);
737         }
738       if (reg.left_str(1) == "F")
739         {
740           Molecule d = afm_find("scripts-accDot");
741           d.translate_axis(interline_f * 2.5 PT, Y_AXIS);
742           m.add_molecule(d);
743           reg = reg.right_str(reg.length_i()-1);
744         }
745       if (reg.left_str(1) == "M")
746         {
747           Molecule d = afm_find("scripts-accDot");
748           d.translate_axis(interline_f * 2 PT, Y_AXIS);
749           d.translate_axis(interline_f PT, X_AXIS);
750           m.add_molecule(d);
751           reg = reg.right_str(reg.length_i()-1);
752         }
753       if (reg.left_str(1) == "E")
754         {
755           Molecule d = afm_find("scripts-accDot");
756           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
757           m.add_molecule(d);
758           reg = reg.right_str(reg.length_i()-1);
759         }
760       if (reg.left_str(1) == "S")
761         {
762           Molecule d = afm_find("scripts-accDot");
763           d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
764           m.add_molecule(d);
765           reg = reg.right_str(reg.length_i()-1);
766         }
767     }
768   /* ugh maybe try to use regular font for S.B. and B.B and only use one font
769      for the rectangle */
770   else if (sym == "SB")
771     {
772       Molecule r = afm_find("scripts-accSB");
773       m.add_molecule(r);
774     }
775   else if (sym == "BB")
776     {
777       Molecule r = afm_find("scripts-accBB");
778       m.add_molecule(r);
779     }
780   else if (sym == "OldEE")
781     {
782       Molecule r = afm_find("scripts-accOldEE");
783       m.add_molecule(r);
784     }
785   else if (sym == "OldEES")
786     {
787       Molecule r = afm_find("scripts-accOldEES");
788       m.add_molecule(r);
789     }
790   return m;  
791 }