]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/custos.cc
2003 -> 2004
[lilypond.git] / lily / custos.cc
index 608f0c03795b504be69f413b9c2902b7ac0ecaa7..01bade5aef6b7d448a78ce813043ed78e2aac89f 100644 (file)
@@ -3,15 +3,11 @@
 
   source file of the GNU LilyPond music typesetter
 
(C) 2000, 2002 Juergen Reuter <reuter@ipd.uka.de>
 (c) 2000--2004 Juergen Reuter <reuter@ipd.uka.de>
 */
 
 /* TODO:
 
- - merge create_ledger_line () and Note_head::create_ledger_line ()
-
- - rewrite create_ledger_line () to support short and thin ledger lines
-
  - do not show if a clef change immediately follows in the next line
 
  - decide: do or do not print custos if the next line starts with a rest
@@ -24,7 +20,7 @@
 #include "staff-symbol-referencer.hh"
 #include "custos.hh"
 #include "molecule.hh"
-#include "debug.hh"
+#include "warn.hh"
 #include "note-head.hh"
 #include "item.hh"
 #include "font-interface.hh"
@@ -35,100 +31,83 @@ SCM
 Custos::brew_molecule (SCM smob)
 {
   Item *me = (Item *)unsmob_grob (smob);
-  SCM scm_style = me->get_grob_property ("style");
 
+  SCM scm_style = me->get_grob_property ("style");
+  String style;
   if (gh_symbol_p (scm_style))
     {
-      String style = ly_scm2string (scm_symbol_to_string (scm_style));
-
-      /*
-       * Shall we use a common custos font character regardless if on
-       * staffline or not, or shall we use individual font characters
-       * for both cases?
-       */
-      bool adjust =
-       to_boolean (me->get_grob_property ("adjust-if-on-staffline"));
-
-      String idx = "custodes-" + style + "-";
-
-      int neutral_pos;
-      SCM ntr_pos = me->get_grob_property ("neutral-position");
-      if (gh_number_p (ntr_pos))
-       neutral_pos = gh_scm2int (ntr_pos);
-      else
-       neutral_pos = 0;
-
-      Direction neutral_direction =
-       to_dir (me->get_grob_property ("neutral-direction"));
-
-      int pos = (int)rint (Staff_symbol_referencer::position_f (me));
-      int sz = Staff_symbol_referencer::line_count (me)-1;
-
-      if (pos < neutral_pos)
-       idx += "u";
-      else if (pos > neutral_pos)
-       idx += "d";
-      else if (neutral_direction == UP)
-       idx += "u";
-      else if (neutral_direction == DOWN)
-       idx += "d";
-      else // auto direction; not yet supported -> use "d"
-       idx += "d";
-
-      if (adjust)
-        {
-         idx += (((pos ^ sz) & 0x1) == 0) ? "1" : "0";
-       }
-      else
-        {
-         idx += "2";
-       }
+      style = ly_symbol2string (scm_style);
+    }
+  else
+    {
+      style = "mensural";
+    }
 
-      Molecule molecule
-       = Font_interface::get_default_font (me)->find_by_name (idx);
-      if (molecule.empty_b ())
-        {
-         String message = "no such custos: `" + idx + "'";
-         warning (_ (message.ch_C ()));
-         return SCM_EOL;
-       }
-      else
-        {
-         // add ledger lines
-         int pos = (int)rint (Staff_symbol_referencer::position_f (me));
-         int interspaces = Staff_symbol_referencer::line_count (me)-1;
-         if (abs (pos) - interspaces > 1)
-           {
-             Molecule ledger_lines =
-               Note_head::brew_ledger_lines (me, pos, interspaces,
-                                             molecule.extent (X_AXIS), true);
-             molecule.add_molecule (ledger_lines);
-           }
-         return molecule.smobbed_copy ();
-       }
+  /*
+   * Shall we use a common custos font character regardless if on
+   * staffline or not, or shall we use individual font characters
+   * for both cases?
+   */
+  bool adjust
+    = to_boolean (me->get_grob_property ("adjust-if-on-staffline"));
+
+  int neutral_pos;
+  SCM ntr_pos = me->get_grob_property ("neutral-position");
+  if (gh_number_p (ntr_pos))
+    neutral_pos = gh_scm2int (ntr_pos);
+  else
+    neutral_pos = 0;
+
+  Direction neutral_direction =
+    to_dir (me->get_grob_property ("neutral-direction"));
+
+  int pos = (int)rint (Staff_symbol_referencer::get_position (me));
+  int sz = Staff_symbol_referencer::line_count (me)-1;
+
+  String font_char = "custodes-" + style + "-";
+  if (pos < neutral_pos)
+    font_char += "u";
+  else if (pos > neutral_pos)
+    font_char += "d";
+  else if (neutral_direction == UP)
+    font_char += "u";
+  else if (neutral_direction == DOWN)
+    font_char += "d";
+  else // auto direction; not yet supported -> use "d"
+    font_char += "d";
+
+  if (adjust)
+    {
+      font_char += (((pos ^ sz) & 0x1) == 0) ? "1" : "0";
     }
   else
-    return SCM_EOL;
-}
+    {
+      font_char += "2";
+    }
 
-bool
-Custos::has_interface (Grob*m)
-{
-  return m && m->has_interface (ly_symbol2scm ("custos-interface"));
+  Molecule molecule
+    = Font_interface::get_default_font (me)->find_by_name (font_char);
+  if (molecule.is_empty ())
+    {
+      me->warning (_f ("custos `%s' not found", font_char));
+      return SCM_EOL;
+    }
+  else
+    {
+      // add ledger lines
+      int pos = (int)rint (Staff_symbol_referencer::get_position (me));
+      int interspaces = Staff_symbol_referencer::line_count (me)-1;
+      if (abs (pos) - interspaces > 1)
+       {
+         Molecule ledger_lines =
+           Note_head::brew_ledger_lines (me, pos, interspaces,
+                                         molecule.extent (X_AXIS), 0, true);
+         molecule.add_molecule (ledger_lines);
+       }
+      return molecule.smobbed_copy ();
+    }
 }
 
 ADD_INTERFACE (Custos, "custos-interface",
-  "A custos is a staff context symbol that appears at the end of a
-  staff line with monophonic musical contents (i.e. with a single
-  voice).  It anticipates the pitch of the first note of the following
-  line and thus helps the player or singer to manage line breaks
-  during performance, thus enhancing readability of a score.
-
-  Custodes were frequently used in music notation until the 16th
-  century.  There were different appearences for different notation
-  styles.  Nowadays, they have survived only in special forms of
-  musical notation such as via the editio vaticana dating back to the
-  beginning of the 20th century.
-
-[TODO: add to glossary]",
-  "style adjust-if-on-staffline neutral-position");
+  "Engrave custodes",
+  "style adjust-if-on-staffline neutral-direction neutral-position");