]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/text-item.cc
release: 1.3.110
[lilypond.git] / lily / text-item.cc
index 7d242ed48e915406151a1b177de34baad9adb353..34c710db9dbc055a39eabcf16b0c6e1bfabf6893 100644 (file)
  (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   Jan Nieuwenhuizen <janneke@gnu.org>
  */
+#include <math.h>
 
+#include "debug.hh"
 #include "text-item.hh"
 #include "paper-def.hh"
-#include "lookup.hh"
+#include "font-interface.hh"
 #include "staff-symbol-referencer.hh"
 #include "staff-symbol-referencer.hh"
 #include "main.hh"
 #include "all-font-metrics.hh"
 #include "afm.hh"
 
+
 /*
-  text: string | (markup sentence)
-  markup: markup-symbol | (markup-symbol . parameter)
-  sentence: text | sentence text
-  
+    TEXT : STRING | (MARKUP SENTENCE)
+    MARKUP: PROPERTY | ABBREV
+    SENTENCE: TEXT | SENTENCE TEXT
+    PROPERTY: (key . value)
+    ABBREV: rows lines roman music bold italic named super sub text, or any font-style
+ */
+
+/*
+  TODO:
+
+  rewrite routines and syntax to be like
 
-  Properties:
+  TEXT: STRING
+      | (head-expression* TEXT*)
+      ;
 
-  * Font:
-  ---* Type:
-  ------* Series: medium, bold
-  ------* Shape: upright, italic, slanted
-  ------* Family: roman, music, orator, typewriter
+  head-expression is a list, containing a tag and a variable number of
+  arguments. If necessary, the number of arguments can be stored in a alist,
 
-  ---* Size:
-  ------* size: ...,-2,-1,0,1,2,... (style-sheet -> cmrXX, fetaXX)
-  ------* points: 11,13,16,20,23,26 (for feta)
-  ------* magnification: UNSIGNED
+  '(
+   (tag1 . argcount1)
+   (tag2 . argcount2)
 
-  * Typesetting:
-  ---* kern: INT (staff-space)
-  ---* align: horizontal/vertical / lines / rows
+   ... etc
+   
+   )
+
+   or even entries like
+
+   (tag . (argcount function-to-handle-the-tag  ))
+  
  */
+
 Molecule
-Text_item::text2molecule (Score_element *me, SCM text, SCM properties
+Text_item::text2molecule (Grob *me, SCM text, SCM alist_chain
 {
   if (gh_string_p (text))
-    return string2molecule (me, text, properties);
+    return string2molecule (me, text, alist_chain);
   else if (gh_list_p (text))
     {
       if (!gh_pair_p (gh_car (text)) && gh_string_p (gh_car (text)))
-       return string2molecule (me, gh_car (text), properties);
+       return string2molecule (me, gh_car (text), alist_chain);
       else
-       return markup_sentence2molecule (me, text, properties);
+       return markup_sentence2molecule (me, text, alist_chain);
     }
   return Molecule ();
 }
-
+            
 Molecule
-Text_item::string2molecule (Score_element *me, SCM text, SCM properties)
+Text_item::string2molecule (Grob *me, SCM text, SCM alist_chain)
 {
-  SCM f = me->get_elt_property ("get-font-name");
-  SCM style = me->get_elt_property ("style-sheet");
-  SCM font_name = gh_call2 (f, style, properties);
-  String font_str = "roman";
-  if (gh_string_p (font_name))
-    font_str = ly_scm2string (font_name);
+  SCM style = ly_assoc_chain (ly_symbol2scm ("font-style"),
+                             alist_chain);
+  if  (gh_pair_p (style) && gh_symbol_p (gh_cdr (style)))
+    alist_chain = Font_interface::add_style (me, gh_cdr(style), alist_chain);
+
+  Font_metric *fm = Font_interface::get_font (me, alist_chain);
+  
+  SCM lookup = ly_assoc_chain (ly_symbol2scm ("lookup"), alist_chain);
     
-  SCM magnification = me->get_elt_property ("font-magnification");
+  Molecule mol;
+  if (gh_pair_p (lookup) && gh_cdr (lookup) ==ly_symbol2scm ("name"))
+    mol = lookup_character (me, fm, text);
+  else
+    mol = lookup_text (me, fm, text);
+  
+  return mol;
+}
+
+Molecule
+Text_item::lookup_character (Grob *, Font_metric*fm, SCM char_name)
+{
+  return fm->find_by_name (ly_scm2string (char_name));
+}
+
 
-  Font_metric* metric_l = 0;
+Molecule
+Text_item::lookup_text (Grob *me, Font_metric*fm, SCM text)
+{
+#if 0
+  /*
+    Fixme; should be done differently, move to font-interface?
+   */
+
+  SCM magnification = me->get_grob_property ("font-magnification");
+
+  Font_metric* metric = 0;
   if (gh_number_p (magnification))
-    metric_l = all_fonts_global_p->find_scaled (font_str,
-                                               gh_scm2int (magnification));
-  else
-    metric_l = all_fonts_global_p->find_font (font_str);
+    {
 
-  SCM list = gh_list (ly_symbol2scm ("text"), text, SCM_UNDEFINED);
-  list = fontify_atom (metric_l, list);
+      Real realmag = pow (1.2, gh_scm2int (magnification));
+      metric = all_fonts_global_p->find_scaled (ly_scm2string (font_name), realmag);
+
+      assert (false);
+    }
 
-  return Molecule (metric_l->text_dimension (ly_scm2string (text)), list);
+#endif
+
+  SCM list = gh_list (ly_symbol2scm ("text"), text, SCM_UNDEFINED);
+  list = fontify_atom (fm, list);
+  
+  return Molecule (fm->text_dimension (ly_scm2string (text)), list);
 }
 
 Molecule
-Text_item::markup_sentence2molecule (Score_element *me, SCM markup_sentence,
-                                    SCM properties)
+Text_item::markup_sentence2molecule (Grob *me, SCM markup_sentence,
+                                    SCM alist_chain)
 {
+  /*
+    FIXME
+
+    huh?
+   */
+  // return Molecule ();
+  
+  SCM sheet = me->paper_l ()->style_sheet_;
+  SCM f = gh_cdr (scm_assoc (ly_symbol2scm ("markup-to-properties"), sheet));
+  
   SCM markup = gh_car (markup_sentence);
   SCM sentence = gh_cdr (markup_sentence);
-  SCM f = me->get_elt_property ("markup-to-properties");
   
-  SCM p = gh_cons (gh_call1 (f, markup), properties);
+  SCM p = gh_cons  (gh_call2 (f, sheet, markup), alist_chain);
 
   Axis align = X_AXIS;
-  SCM a = scm_assoc (ly_symbol2scm ("align"), p);
+  SCM a = ly_assoc_chain (ly_symbol2scm ("align"), p);
   if (gh_pair_p (a) && gh_number_p (gh_cdr (a)))
     align = (Axis)gh_scm2int (gh_cdr (a));
 
+  Real staff_space = Staff_symbol_referencer::staff_space (me);
+  Real kern = 0;
+  SCM k = ly_assoc_chain (ly_symbol2scm ("kern"), p);
+  if (gh_pair_p (k) && gh_number_p (gh_cdr (k)))
+    kern = gh_scm2double (gh_cdr (k)) * staff_space;
+                            
+  Real raise = 0;
+  SCM r = ly_assoc_chain (ly_symbol2scm ("raise"), p);
+  if (gh_pair_p (r) && gh_number_p (gh_cdr (r)))
+    raise = gh_scm2double (gh_cdr (r)) * staff_space;
+
+  Offset o (align == X_AXIS ? kern : 0,
+           (align == Y_AXIS ? - kern : 0) + raise);
+
   Molecule mol;
   while (gh_pair_p (sentence))
     {
       Molecule m = text2molecule (me, gh_car (sentence), p);
       if (!m.empty_b ())
-       mol.add_at_edge (align, align == X_AXIS ? RIGHT : DOWN, m, 0);
+       {
+         m.translate (o);
+         mol.add_at_edge (align, align == X_AXIS ? RIGHT : DOWN, m, 0);
+       }
       sentence = gh_cdr (sentence);
     }
   return mol;
@@ -107,27 +178,16 @@ Text_item::markup_sentence2molecule (Score_element *me, SCM markup_sentence,
 
 MAKE_SCHEME_CALLBACK (Text_item, brew_molecule, 1);
 SCM 
-Text_item::brew_molecule (SCM smob) 
+Text_item::brew_molecule (SCM smob)
 {
-  Score_element *me = unsmob_element (smob);
+  Grob *me = unsmob_grob (smob);
   
-  SCM text = me->get_elt_property ("scm-text");
-  Molecule mol;
-  if (text == SCM_EOL)
-    {
-      SCM style = me->get_elt_property ("style");
-      String st = gh_string_p (style) ?  ly_scm2string (style) : "";
-      SCM text = me->get_elt_property ("text");
-      String t = gh_string_p (text) ? ly_scm2string (text) : "";
-      
-      mol = me->paper_l ()->lookup_l (0)->text (st, t, me->paper_l ());
-    }
-  else
-    mol = text2molecule (me, text,
-                        gh_append2 (me->immutable_property_alist_,
-                                    me->mutable_property_alist_));
+  SCM text = me->get_grob_property ("text");
+
+  SCM properties = Font_interface::font_alist_chain (me);
+  Molecule mol = Text_item::text2molecule (me, text, properties);
 
-  SCM space = me->get_elt_property ("word-space");
+  SCM space = me->get_grob_property ("word-space");
   if (gh_number_p (space))
     {
       Molecule m;
@@ -135,6 +195,6 @@ Text_item::brew_molecule (SCM smob)
       mol.add_at_edge (X_AXIS, RIGHT, m, gh_scm2double (space)
                       * Staff_symbol_referencer::staff_space (me));
     }
-  return mol.create_scheme (); 
+  return mol.smobbed_copy (); 
 }