]> git.donarmstrong.com Git - lilypond.git/blob - lily/lookup.cc
release: 1.1.54
[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 gap, 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 (gap),
527                     gh_double2scm (dx),
528                     gh_double2scm (dy),
529                     gh_double2scm (thick),
530                     gh_int2scm (dir),
531                     SCM_UNDEFINED));
532   m.add_atom (&at);
533
534   return m;
535 }
536
537 /*
538   Make a smooth curve along the points 
539  */
540 Molecule
541 Lookup::slur (Array<Offset> controls) const
542 {
543   Offset  delta_off = controls[3]- controls[0];
544   Molecule m; 
545
546   SCM scontrols [8];
547   int indices[] = {5,6,7,4,1,2,3,0};
548
549   for (int i= 0; i < 8; i++)
550     scontrols[i] = offset2scm (controls[indices[i]]);
551
552
553   Atom at  (gh_list (ly_symbol ("bezier-sandwich"),
554                      ly_quote_scm (array_to_list (scontrols, 8)),
555                      SCM_UNDEFINED));
556
557   m.dim_[X_AXIS] = Interval (0, delta_off[X_AXIS]);
558   m.dim_[Y_AXIS] = Interval (0 <? delta_off[Y_AXIS], 0 >? delta_off[Y_AXIS]);
559   m.add_atom (&at);
560   return m;
561 }
562
563 Molecule
564 Lookup::staff_bracket (Real y) const
565 {
566   Molecule m; 
567   Atom at  ( gh_list (bracket_scm_sym,
568                       gh_double2scm (y),
569                       SCM_UNDEFINED));
570   m.add_atom (&at);                              
571   m.dim_[Y_AXIS] = Interval (-y/2,y/2);
572   m.dim_[X_AXIS] = Interval (0,4 PT);
573
574   m.translate_axis (- 4. / 3. * m.dim_[X_AXIS].length (), X_AXIS);
575   return m;
576 }
577
578 Molecule
579 Lookup::volta (Real h, Real w, Real thick, bool last_b) const
580 {
581   Molecule m; 
582
583   Atom at  (gh_list (volta_scm_sym,
584                      gh_double2scm (h),
585                      gh_double2scm (w),
586                      gh_double2scm (thick),
587                      gh_int2scm (last_b),
588                      SCM_UNDEFINED));
589
590   m.dim_[Y_AXIS] = Interval (- h/2, h/2);
591   m.dim_[X_AXIS] = Interval (0, w);
592
593   m.add_atom (&at);
594   return m;
595 }
596
597 Molecule
598 Lookup::accordion (SCM s, Real interline_f) const
599 {
600   Molecule m;
601   String sym = ly_scm2string(SCM_CAR(s));
602   String reg = ly_scm2string(SCM_CAR(SCM_CDR(s)));
603
604   if (sym == "Discant")
605     {
606       Molecule r = afm_find("scripts-accDiscant");
607       m.add_molecule(r);
608       if (reg.left_str(1) == "F")
609         {
610           Molecule d = afm_find("scripts-accDot");
611           d.translate_axis(interline_f * 2.5 PT, Y_AXIS);
612           m.add_molecule(d);
613           reg = reg.right_str(reg.length_i()-1);
614         }
615       int eflag = 0x00;
616       if (reg.left_str(3) == "EEE")
617         {
618           eflag = 0x07;
619           reg = reg.right_str(reg.length_i()-3);
620         }
621       else if (reg.left_str(2) == "EE")
622         {
623           eflag = 0x05;
624           reg = reg.right_str(reg.length_i()-2);
625         }
626       else if (reg.left_str(2) == "Eh")
627         {
628           eflag = 0x04;
629           reg = reg.right_str(reg.length_i()-2);
630         }
631       else if (reg.left_str(1) == "E")
632         {
633           eflag = 0x02;
634           reg = reg.right_str(reg.length_i()-1);
635         }
636       if (eflag & 0x02)
637         {
638           Molecule d = afm_find("scripts-accDot");
639           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
640           m.add_molecule(d);
641         }
642       if (eflag & 0x04)
643         {
644           Molecule d = afm_find("scripts-accDot");
645           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
646           d.translate_axis(0.8 * interline_f PT, X_AXIS);
647           m.add_molecule(d);
648         }
649       if (eflag & 0x01)
650         {
651           Molecule d = afm_find("scripts-accDot");
652           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
653           d.translate_axis(-0.8 * interline_f PT, X_AXIS);
654           m.add_molecule(d);
655         }
656       if (reg.left_str(2) == "SS")
657         {
658           Molecule d = afm_find("scripts-accDot");
659           d.translate_axis(0.5 * interline_f PT, Y_AXIS);
660           d.translate_axis(0.4 * interline_f PT, X_AXIS);
661           m.add_molecule(d);
662           d.translate_axis(-0.8 * interline_f PT, X_AXIS);
663           m.add_molecule(d);
664           reg = reg.right_str(reg.length_i()-2);
665         }
666       if (reg.left_str(1) == "S")
667         {
668           Molecule d = afm_find("scripts-accDot");
669           d.translate_axis(0.5 * interline_f PT, Y_AXIS);
670           m.add_molecule(d);
671           reg = reg.right_str(reg.length_i()-1);
672         }
673     }
674   else if (sym == "Freebase")
675     {
676       Molecule r = afm_find("scripts-accFreebase");
677       m.add_molecule(r);
678       if (reg.left_str(1) == "F")
679         {
680           Molecule d = afm_find("scripts-accDot");
681           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
682           m.add_molecule(d);
683           reg = reg.right_str(reg.length_i()-1);
684         }
685       if (reg == "E")
686         {
687           Molecule d = afm_find("scripts-accDot");
688           d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
689           m.add_molecule(d);
690         }
691     }
692   else if (sym == "Bayanbase")
693     {
694       Molecule r = afm_find("scripts-accBayanbase");
695       m.add_molecule(r);
696       if (reg.left_str(1) == "T")
697         {
698           Molecule d = afm_find("scripts-accDot");
699           d.translate_axis(interline_f * 2.5 PT, Y_AXIS);
700           m.add_molecule(d);
701           reg = reg.right_str(reg.length_i()-1);
702         }
703       /* include 4' reed just for completeness. You don't want to use this. */
704       if (reg.left_str(1) == "F")
705         {
706           Molecule d = afm_find("scripts-accDot");
707           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
708           m.add_molecule(d);
709           reg = reg.right_str(reg.length_i()-1);
710         }
711       if (reg.left_str(2) == "EE")
712         {
713           Molecule d = afm_find("scripts-accDot");
714           d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
715           d.translate_axis(0.4 * interline_f PT, X_AXIS);
716           m.add_molecule(d);
717           d.translate_axis(-0.8 * interline_f PT, X_AXIS);
718           m.add_molecule(d);
719           reg = reg.right_str(reg.length_i()-2);
720         }
721       if (reg.left_str(1) == "E")
722         {
723           Molecule d = afm_find("scripts-accDot");
724           d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
725           m.add_molecule(d);
726           reg = reg.right_str(reg.length_i()-1);
727         }
728     }
729   else if (sym == "Stdbase")
730     {
731       Molecule r = afm_find("scripts-accStdbase");
732       m.add_molecule(r);
733       if (reg.left_str(1) == "T")
734         {
735           Molecule d = afm_find("scripts-accDot");
736           d.translate_axis(interline_f * 3.5 PT, Y_AXIS);
737           m.add_molecule(d);
738           reg = reg.right_str(reg.length_i()-1);
739         }
740       if (reg.left_str(1) == "F")
741         {
742           Molecule d = afm_find("scripts-accDot");
743           d.translate_axis(interline_f * 2.5 PT, Y_AXIS);
744           m.add_molecule(d);
745           reg = reg.right_str(reg.length_i()-1);
746         }
747       if (reg.left_str(1) == "M")
748         {
749           Molecule d = afm_find("scripts-accDot");
750           d.translate_axis(interline_f * 2 PT, Y_AXIS);
751           d.translate_axis(interline_f PT, X_AXIS);
752           m.add_molecule(d);
753           reg = reg.right_str(reg.length_i()-1);
754         }
755       if (reg.left_str(1) == "E")
756         {
757           Molecule d = afm_find("scripts-accDot");
758           d.translate_axis(interline_f * 1.5 PT, Y_AXIS);
759           m.add_molecule(d);
760           reg = reg.right_str(reg.length_i()-1);
761         }
762       if (reg.left_str(1) == "S")
763         {
764           Molecule d = afm_find("scripts-accDot");
765           d.translate_axis(interline_f * 0.5 PT, Y_AXIS);
766           m.add_molecule(d);
767           reg = reg.right_str(reg.length_i()-1);
768         }
769     }
770   /* ugh maybe try to use regular font for S.B. and B.B and only use one font
771      for the rectangle */
772   else if (sym == "SB")
773     {
774       Molecule r = afm_find("scripts-accSB");
775       m.add_molecule(r);
776     }
777   else if (sym == "BB")
778     {
779       Molecule r = afm_find("scripts-accBB");
780       m.add_molecule(r);
781     }
782   else if (sym == "OldEE")
783     {
784       Molecule r = afm_find("scripts-accOldEE");
785       m.add_molecule(r);
786     }
787   else if (sym == "OldEES")
788     {
789       Molecule r = afm_find("scripts-accOldEES");
790       m.add_molecule(r);
791     }
792   return m;  
793 }