]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/system.cc
*** empty log message ***
[lilypond.git] / lily / system.cc
index 1d0c28ae4c6188cc0ca8170ae7e6c933de072f9c..0237dbbd3f054110fc52a2e29690822b391622c2 100644 (file)
@@ -6,7 +6,6 @@
   (c) 1996--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-#include "input-smob.hh"
 #include "axis-group-interface.hh"
 #include "warn.hh"
 #include "system.hh"
 #include "paper-score.hh"
 #include "string.hh"
 #include "warn.hh"
-#include "dimensions.hh"
 #include "stencil.hh"
 #include "all-font-metrics.hh"
 #include "spacing-interface.hh"
 #include "staff-symbol-referencer.hh"
-
-// todo: use map.
-void
-fixup_refpoints (SCM s)
-{
-  for (; gh_pair_p (s); s = ly_cdr (s))
-    {
-      Grob::fixup_refpoint (ly_car (s));
-    }
-}
-
+#include "paper-book.hh"
+#include "paper-line.hh"
 
 System::System (SCM s)
   : Spanner (s)
@@ -43,17 +32,17 @@ System::System (SCM s)
 int
 System::element_count () const
 {
-  return scm_ilength (get_grob_property ("all-elements"));
+  return scm_ilength (get_property ("all-elements"));
 }
 
 int
 System::spanner_count () const
 {
   int k =0;
-  for (SCM s = get_grob_property ("all-elements");
+  for (SCM s = get_property ("all-elements");
        gh_pair_p (s); s = ly_cdr (s))
     {
-      if (dynamic_cast<Spanner*> (unsmob_grob (gh_car(s))))
+      if (dynamic_cast<Spanner*> (unsmob_grob (gh_car (s))))
        k++;
     }
 
@@ -67,42 +56,43 @@ scm_default_compare (const void * a, const void *b)
   SCM pa = *(SCM *)a;
   SCM pb = *(SCM *)b;
 
-  if (pa < pb) return -1 ;
-  else if (pa > pb) return 1;
-  else return 0;
+  if (pa < pb)
+    return -1;
+  else if (pa > pb)
+    return 1;
+  else
+    return 0;
 }
 
 /*
   modify L in place: sort it 
 */
-
 SCM
 uniquify_list (SCM l)
 {
   int len = scm_ilength (l);
   SCM  * arr = new SCM[len];
   int k = 0;
-  for (SCM s =l ; SCM_NNULLP (s); s = SCM_CDR(s))
-    arr[k++] = SCM_CAR(s);
+  for (SCM s = l; SCM_NNULLP (s); s = SCM_CDR (s))
+    arr[k++] = SCM_CAR (s);
 
   assert (k == len);
   qsort (arr, len, sizeof (SCM), &scm_default_compare);
 
   k = 0;
-  SCM s =l;
+  SCM *tail = &l;
+  
   for (int i = 0; i < len ; i++)
     {
       if (i && arr[i] == arr[i-1])
        continue;
 
-      SCM_SETCAR(s, arr[i]);
-
-      if (i < len - 1)
-       s = SCM_CDR(s);
+      SCM_SETCAR (*tail, arr[i]);
+      tail = SCM_CDRLOC(*tail);
     }
 
-  SCM_SETCDR(s, SCM_EOL);
-  delete arr;
+  *tail = SCM_EOL;
+  delete[] arr;
   
   return l; 
 }
@@ -118,23 +108,32 @@ System::typeset_grob (Grob * elem)
   scm_gc_unprotect_object (elem->self_scm ());
 }
 
-void
-System::output_lines ()
+// todo: use map.
+static void
+fixup_refpoints (SCM s)
 {
-  for (SCM s = get_grob_property ("all-elements");
-       gh_pair_p (s); s = ly_cdr (s))
+  for (; gh_pair_p (s); s = ly_cdr (s))
     {
-      Grob * g = unsmob_grob (ly_car (s));
+      Grob::fixup_refpoint (ly_car (s));
+    }
+}
+
+SCM
+System::get_lines ()
+{
+  for (SCM s = get_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
+    {
+      Grob *g = unsmob_grob (ly_car (s));
       if (g->internal_has_interface (ly_symbol2scm ("only-prebreak-interface")))
        {
          /*
            Kill no longer needed grobs. 
           */
          Item * it = dynamic_cast<Item*> (g);
-         if (it && Item::breakable_b(it))
+         if (it && Item::is_breakable (it))
            {
-             it->find_prebroken_piece (LEFT)->suicide();
-             it->find_prebroken_piece (RIGHT)->suicide();
+             it->find_prebroken_piece (LEFT)->suicide ();
+             it->find_prebroken_piece (RIGHT)->suicide ();
            }
          g->suicide ();
        }
@@ -149,77 +148,54 @@ System::output_lines ()
   for (int i=0; i < broken_intos_.size (); i++)
     {
       Grob *se = broken_intos_[i];
-      SCM all = se->get_grob_property ("all-elements");
+      SCM all = se->get_property ("all-elements");
       for (SCM s = all; gh_pair_p (s); s = ly_cdr (s))
-       {
-         fixup_refpoint (ly_car (s));
-       }
+       fixup_refpoint (ly_car (s));
       count += scm_ilength (all);
     }
   
   /*
     needed for doing items.
    */
-  fixup_refpoints (get_grob_property ("all-elements"));
+  fixup_refpoints (get_property ("all-elements"));
 
-  
-  for (SCM s = get_grob_property ("all-elements");
-       gh_pair_p (s); s = ly_cdr (s))
-    {
-      unsmob_grob (ly_car (s))->handle_broken_dependencies ();
-    }
+  for (SCM s = get_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
+    unsmob_grob (ly_car (s))->handle_broken_dependencies ();
   handle_broken_dependencies ();
 
-  /*
-    Because the this->get_grob_property (all-elements) contains items
-    in 3 versions, handle_broken_dependencies () will leave duplicated
-    items in all-elements. Strictly speaking this is harmless, but it
-    leads to duplicated symbols in the output. uniquify_list() makes
-    sure that no duplicates are in the list.
-   */
-  for (int i=0; i < broken_intos_.size (); i++)
+#if 0  /* don't do this: strange side effects.  */
+  
+  /* Because the this->get_property (all-elements) contains items in 3
+     versions, handle_broken_dependencies () will leave duplicated
+     items in all-elements.  Strictly speaking this is harmless, but
+     it leads to duplicated symbols in the output.  uniquify_list ()
+     makes sure that no duplicates are in the list.  */
+  for (int i = 0; i < line_count; i++)
     {
-      /*
-       don't do this: strange side effects.
-       */
-      //    SCM al = broken_intos_[i]->get_grob_property ("all-elements");
-      //      al  = uniquify_list (al); 
+      SCM all = broken_intos_[i]->get_property ("all-elements");
+      all = uniquify_list (all); 
     }
+#endif
   
   if (verbose_global_b)
     progress_indication (_f ("Element count %d.",  count + element_count ()));
 
+  int line_count = broken_intos_.size ();
+  SCM lines = scm_c_make_vector (line_count, SCM_UNDEFINED);
   
-  for (int i=0; i < broken_intos_.size (); i++)
+   for (int i = 0; i < line_count; i++)
     {
-      System *system = dynamic_cast<System*> (broken_intos_[i]);
-
       if (verbose_global_b)
        progress_indication ("[");
-      bool last = i+1 == broken_intos_.size ();
-      system->post_processing (last);
-
-      if (verbose_global_b)
-       {
-         progress_indication (to_string (i));
-         progress_indication ("]");
-       }
 
-      if (i < broken_intos_.size () - 1)
-       {
-         SCM lastcol =  ly_car (system->get_grob_property ("columns"));
-         Grob*  e = unsmob_grob (lastcol);
+      System *system = dynamic_cast<System*> (broken_intos_[i]);
+      system->post_processing ();
+      scm_vector_set_x (lines, scm_int2num (i), system->get_line ());
 
-         SCM between = ly_symbol2scm ("between-system-string");
-         SCM inter = e->internal_get_grob_property (between);
-         if (gh_string_p (inter))
-           {
-             pscore_->outputter_
-               ->output_scheme (scm_list_n (between, 
-                                            inter, SCM_UNDEFINED));          
-           }
-       }
+      if (verbose_global_b)
+       progress_indication (to_string (i) + "]");
     }
+   return lines;
 }
 
 
@@ -244,7 +220,7 @@ set_loose_columns (System* which, Column_x_positions const *posns)
       Item * right = 0;
       do
        {
-         SCM between = loose->get_grob_property ("between-cols");
+         SCM between = loose->get_property ("between-cols");
          if (!gh_pair_p (between))
            break;
 
@@ -277,8 +253,8 @@ set_loose_columns (System* which, Column_x_positions const *posns)
       */
       Grob * common = right->common_refpoint (left, X_AXIS);
       
-      Real rx =        right->extent(common, X_AXIS)[LEFT];
-      Real lx = left->extent(common, X_AXIS)[RIGHT];
+      Real rx =        right->extent (common, X_AXIS)[LEFT];
+      Real lx = left->extent (common, X_AXIS)[RIGHT];
       Real total_dx = rx - lx;
       Interval cval =col->extent (col, X_AXIS);
 
@@ -335,71 +311,16 @@ System::break_into_pieces (Array<Column_x_positions> const &breaking)
     }
 }
 
-void
-System::output_stencil (SCM expr, Offset o)
-{
-  while (1)
-    {
-      if (!gh_pair_p (expr))
-       return;
-  
-      SCM head =ly_car (expr);
-      if (unsmob_input (head))
-       {
-         Input * ip = unsmob_input (head);
-      
-         pscore_->outputter_->output_scheme (scm_list_n (ly_symbol2scm ("define-origin"),
-                                                          scm_makfrom0str (ip->file_string ().to_str0 ()),
-                                                          gh_int2scm (ip->line_number ()),
-                                                          gh_int2scm (ip->column_number ()),
-                                                          SCM_UNDEFINED));
-         expr = ly_cadr (expr);
-       }
-      else  if (head ==  ly_symbol2scm ("no-origin"))
-       {
-         pscore_->outputter_->output_scheme (scm_list_n (head, SCM_UNDEFINED));
-         expr = ly_cadr (expr);
-       }
-      else if (head == ly_symbol2scm ("translate-stencil"))
-       {
-         o += ly_scm2offset (ly_cadr (expr));
-         expr = ly_caddr (expr);
-       }
-      else if (head == ly_symbol2scm ("combine-stencil"))
-       {
-         output_stencil (ly_cadr (expr), o);
-         expr = ly_caddr (expr);
-       }
-      else
-       {
-         pscore_->outputter_->
-           output_scheme (scm_list_n (ly_symbol2scm ("placebox"),
-                                   gh_double2scm (o[X_AXIS]),
-                                   gh_double2scm (o[Y_AXIS]),
-                                   expr,
-                                   SCM_UNDEFINED));
-
-         return;
-       }
-    }
-}
-
-void
-System::output_scheme (SCM s)
-{
-  pscore_->outputter_->output_scheme (s);
-}
-
 void
 System::add_column (Paper_column*p)
 {
   Grob *me = this;
-  SCM cs = me->get_grob_property ("columns");
+  SCM cs = me->get_property ("columns");
   Grob * prev =  gh_pair_p (cs) ? unsmob_grob (ly_car (cs)) : 0;
 
   p->rank_ = prev ? Paper_column::get_rank (prev) + 1 : 0; 
 
-  me->set_grob_property ("columns",  gh_cons (p->self_scm (), cs));
+  me->set_property ("columns",  gh_cons (p->self_scm (), cs));
 
   Axis_group_interface::add_element (me, p);
 }
@@ -407,152 +328,127 @@ System::add_column (Paper_column*p)
 void
 System::pre_processing ()
 {
-  for (SCM s = get_grob_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
+  for (SCM s = get_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
     unsmob_grob (ly_car (s))->discretionary_processing ();
 
   if (verbose_global_b)
     progress_indication (_f ("Grob count %d ",  element_count ()));
 
   
-  for (SCM s = get_grob_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
+  for (SCM s = get_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
     unsmob_grob (ly_car (s))->handle_prebroken_dependencies ();
   
-  fixup_refpoints (get_grob_property ("all-elements"));
+  fixup_refpoints (get_property ("all-elements"));
   
-  for (SCM s = get_grob_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
+  for (SCM s = get_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
     {
       Grob* sc = unsmob_grob (ly_car (s));
       sc->calculate_dependencies (PRECALCED, PRECALCING, ly_symbol2scm ("before-line-breaking-callback"));
     }
   
   progress_indication ("\n" + _ ("Calculating line breaks...") + " ");
-  for (SCM s = get_grob_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
+  for (SCM s = get_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
     {
       Grob * e = unsmob_grob (ly_car (s));
-      SCM proc = e->get_grob_property ("spacing-procedure");
+      SCM proc = e->get_property ("spacing-procedure");
       if (gh_procedure_p (proc))
        gh_call1 (proc, e->self_scm ());
     }
 }
 
-
-  const int LAYER_COUNT= 3;
-
-
-
 void
-System::post_processing (bool last_line)
+System::post_processing ()
 {
-  for (SCM s = get_grob_property ("all-elements");
-       gh_pair_p (s); s = ly_cdr (s))
+  for (SCM s = get_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s))
     {
-      Grob* sc = unsmob_grob (ly_car (s));
-      sc->calculate_dependencies (POSTCALCED, POSTCALCING,
-                                 ly_symbol2scm ("after-line-breaking-callback"));
+      Grob *g = unsmob_grob (ly_car (s));
+      g->calculate_dependencies (POSTCALCED, POSTCALCING,
+          ly_symbol2scm ("after-line-breaking-callback"));
     }
 
-  Interval i (extent (this, Y_AXIS));
-  if (i.is_empty ())
-    programming_error ("Huh?  Empty System?");
+  Interval iv (extent (this, Y_AXIS));
+  if (iv.is_empty ())
+    programming_error ("System with zero extent.");
   else
-    translate_axis (- i[MAX], Y_AXIS);
-
-  Real height = i.length ();
-  if (height > 50 CM)
-    {
-      programming_error ("Improbable system height");
-      height = 50 CM;
-    }
-
-  /*
-    generate all stencils  to trigger all font loads.
-
-    (ugh. This is not very memory efficient.)  */
+    translate_axis (-iv[MAX], Y_AXIS);
 
-  SCM all = get_grob_property ("all-elements")  ;
+  /* Generate all stencils to trigger font loads.
+     This might seem inefficient, but Stencils are cached per grob
+     anyway. */
+  SCM all = get_property ("all-elements");
   all = uniquify_list (all);
 
-  /*
-    triger font loads first.
-
-    This might seem inefficient, but Stencils are cached per grob
-    anyway.
-    */
-  this->get_stencil();
+  this->get_stencil ();
   for (SCM s = all; gh_pair_p (s); s = ly_cdr (s))
     {
-      Grob * g = unsmob_grob (ly_car (s));
+      Grob *g = unsmob_grob (ly_car (s));
       g->get_stencil ();
     }
-  
-  /*
-    font defs;
-   */
-  SCM font_names = ly_quote_scm (get_paper ()->font_descriptions ());  
-  output_scheme (scm_list_n (ly_symbol2scm ("define-fonts"),
-                            font_names,
-                            SCM_UNDEFINED));
+}
 
-  /*
-    line preamble.
-   */
-  Interval j (extent (this, X_AXIS));
-  Real length = j[RIGHT];
-    
-  output_scheme (scm_list_n (ly_symbol2scm ("start-system"),
-                         gh_double2scm (length),
-                         gh_double2scm (height),
-                         SCM_UNDEFINED));
-  
-  /* Output elements in three layers, 0, 1, 2.
-     The default layer is 1. */
-  {
-    Stencil *m = this->get_stencil();
-    if (m)
-      output_stencil (m->get_expr (), Offset(0,0));
-  }
+SCM
+System::get_line ()
+{  
+  static int const LAYER_COUNT = 3;
+
+  SCM stencils = SCM_EOL;
+  if (Stencil *me = get_stencil ())
+    stencils = scm_cons (me->smobbed_copy (), stencils);
+
+  /* Output stencils in three layers: 0, 1, 2.  The default layer is
+     1.
+
+     Start with layer 3, since  scm_cons prepends to list.
+     
+  */
+  SCM all = get_property ("all-elements");
   
-  for (int i = 0; i < 3; i++)
-    for (SCM s = get_grob_property ("all-elements"); gh_pair_p (s);
-        s = ly_cdr (s))
+  for (int i = LAYER_COUNT; i--;)
+    for (SCM s = all; gh_pair_p (s); s = ly_cdr (s))
       {
-       Grob *sc = unsmob_grob (ly_car (s));
-       Stencil *m = sc->get_stencil ();
-       if (!m)
-         continue;
-       
-       SCM s = sc->get_grob_property ("layer");
-       int layer = gh_number_p (s) ? gh_scm2int (s) : 1;
-       if (layer != i)
+       Grob *g = unsmob_grob (ly_car (s));
+       Stencil *stil = g->get_stencil ();
+
+       /* Skip empty stencils and grobs that are not in this layer.  */
+       if (!stil
+           || robust_scm2int (g->get_property ("layer"), 1) != i)
          continue;
-       
-       Offset o (sc->relative_coordinate (this, X_AXIS),
-                 sc->relative_coordinate (this, Y_AXIS));
-       
-       SCM e = sc->get_grob_property ("extra-offset");
-       if (gh_pair_p (e))
-         {
-           Offset z = ly_scm2offset (e);
-           z *= Staff_symbol_referencer::staff_space (sc);
-           
-           o += z;
-         }
-       
-       output_stencil (m->get_expr (), o);
+
+       Offset o (g->relative_coordinate (this, X_AXIS),
+                 g->relative_coordinate (this, Y_AXIS));
+
+       Offset extra = robust_scm2offset (g->get_property ("extra-offset"),
+                                         Offset (0, 0))
+         * Staff_symbol_referencer::staff_space (g);
+
+       /*
+         must copy the stencil, for we cannot change the stencil
+         cached in G.
+       */
+       SCM my_stencil = stil->smobbed_copy ();
+       unsmob_stencil (my_stencil)->translate (o + extra);
+       stencils = scm_cons (my_stencil, stencils);
       }
 
-  
-  
-  if (last_line)
-    {
-      output_scheme (scm_list_n (ly_symbol2scm ("stop-last-system"), SCM_UNDEFINED));
-    }
-  else
+  if (output_format_global != PAGE_LAYOUT)
     {
-      output_scheme (scm_list_n (ly_symbol2scm ("stop-system"), SCM_UNDEFINED));
+      SCM lastcol = ly_car (get_property ("columns"));
+      Grob *g = unsmob_grob (lastcol);
+      
+      SCM between = ly_symbol2scm ("between-system-string");
+      SCM inter = g->internal_get_property (between);
+      if (gh_string_p (inter))
+       stencils = scm_cons (scm_cons (between, inter), stencils);
     }
-}
 
+  Interval x (extent (this, X_AXIS));
+  Interval y (extent (this, Y_AXIS));
+  Paper_line *pl = new Paper_line (Offset (x.length (), y.length ()),
+                                  stencils);
+
+  scm_gc_unprotect_object (pl->self_scm ());
+  return pl->self_scm ();
+}
 
 Link_array<Item> 
 System::broken_col_range (Item const*l, Item const*r) const
@@ -561,18 +457,18 @@ System::broken_col_range (Item const*l, Item const*r) const
 
   l = l->get_column ();
   r = r->get_column ();
-  SCM s = get_grob_property ("columns");
+  SCM s = get_property ("columns");
 
   while (gh_pair_p (s) && ly_car (s) != r->self_scm ())
     s = ly_cdr (s);
-    
+
   if (gh_pair_p (s))
     s = ly_cdr (s);
-  
+
   while (gh_pair_p (s) && ly_car (s) != l->self_scm ())
     {
       Paper_column*c = dynamic_cast<Paper_column*> (unsmob_grob (ly_car (s)));
-      if (Item::breakable_b (c) && !c->system_)
+      if (Item::is_breakable (c) && !c->system_)
        ret.push (c);
 
       s = ly_cdr (s);
@@ -594,7 +490,7 @@ System::columns ()const
   bool bfound = false;
   for (int i= acs.size (); i -- ;)
     {
-      bool brb = Item::breakable_b (acs[i]);
+      bool brb = Item::is_breakable (acs[i]);
       bfound = bfound || brb;
 
       /*
@@ -607,12 +503,8 @@ System::columns ()const
     }
   return acs;
 }
-  
-
-
 
 ADD_INTERFACE (System,"system-interface",
               "This is the toplevel object: each object in a score "
-              "ultimately has a System object as its X and Y parent. "
-              ,
-              "between-system-string all-elements columns");
+              "ultimately has a System object as its X and Y parent. ",
+              "between-system-string all-elements columns")