]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/output-def.cc
*** empty log message ***
[lilypond.git] / lily / output-def.cc
index 0363aef752da7142babdebe4af37b8df0f9b6978..404b51280786378a9d501d11166329fb1214619c 100644 (file)
@@ -6,20 +6,18 @@
   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
+#include "output-def.hh"
 
 #include "context-def.hh"
 #include "file-path.hh"
 #include "global-context.hh"
-#include "lily-guile.hh"
+#include "interval.hh"
 #include "ly-module.hh"
 #include "main.hh"
 #include "output-def.hh"
-#include "output-def.hh"
 #include "scm-hash.hh"
 #include "warn.hh"
 
-#include "ly-smobs.icc"
-
 Output_def::Output_def ()
 {
   scope_ = SCM_EOL;
@@ -29,10 +27,6 @@ Output_def::Output_def ()
   scope_ = ly_make_anonymous_module (false);
 }
 
-Output_def::~Output_def ()
-{
-}
-
 Output_def::Output_def (Output_def const &s)
 {
   scope_ = SCM_EOL;
@@ -40,36 +34,32 @@ Output_def::Output_def (Output_def const &s)
   smobify_self ();
 
   input_origin_ = s.input_origin_;
-  scope_= ly_make_anonymous_module (false);
+  scope_ = ly_make_anonymous_module (false);
   if (ly_c_module_p (s.scope_))
-    ly_import_module (scope_, s.scope_);
+    ly_module_copy (scope_, s.scope_);
 }
 
+Output_def::~Output_def ()
+{
+}
 
+#include "ly-smobs.icc"
 IMPLEMENT_SMOBS (Output_def);
 IMPLEMENT_DEFAULT_EQUAL_P (Output_def);
 
-
 SCM
 Output_def::mark_smob (SCM m)
 {
-  Output_def * mo = (Output_def*) SCM_CELL_WORD_1 (m);
+  Output_def *mo = (Output_def*) SCM_CELL_WORD_1 (m);
 
-  /*
-    FIXME: why is this necessary?
-    all bookpaper_ should be protected by themselves.
-  */
+  /* FIXME: why is this necessary?
+     all paper_ should be protected by themselves. */
   if (mo->parent_)
     scm_gc_mark (mo->parent_->self_scm ());
-  
 
-  mo->derived_mark ();
   return mo->scope_;
 }
 
-void
-Output_def::derived_mark () {}
-
 void
 assign_context_def (Output_def * m, SCM transdef)
 {
@@ -79,13 +69,11 @@ assign_context_def (Output_def * m, SCM transdef)
   if (tp)
     {
       SCM sym = tp->get_context_name ();
-      scm_module_define (m->scope_, sym, transdef);
+      m->set_variable (sym, transdef);
     }  
 }
 
-/*
-  find the translator for NAME. NAME must be a symbol.
-*/
+/* find the translator for NAME. NAME must be a symbol. */
 SCM
 find_context_def (Output_def const *m, SCM name)
 {  
@@ -109,10 +97,9 @@ Real
 Output_def::get_dimension (SCM s) const
 {
   SCM val = lookup_variable (s);
-  return ly_scm2double (val);
+  return scm_to_double (val);
 }
 
-
 SCM
 Output_def::lookup_variable (SCM sym) const
 {
@@ -138,20 +125,20 @@ Output_def::set_variable (SCM sym, SCM val)
   scm_module_define (scope_, sym, val);
 }
 
-LY_DEFINE (ly_paper_lookup, "ly:output-def-lookup",
+LY_DEFINE (ly_layout_lookup, "ly:output-def-lookup",
           2, 0, 0, (SCM pap, SCM sym),
           "Lookup @var{sym} in @var{pap}. "
           "Return the value or @code{'()} if undefined.")
 {
   Output_def *op = unsmob_output_def (pap);
   SCM_ASSERT_TYPE (op, pap, SCM_ARG1, __FUNCTION__, "Output_def");
-  SCM_ASSERT_TYPE (ly_c_symbol_p (sym), sym, SCM_ARG2, __FUNCTION__, "symbol");
+  SCM_ASSERT_TYPE (scm_is_symbol (sym), sym, SCM_ARG2, __FUNCTION__, "symbol");
 
   return op->lookup_variable (sym);
 }
 
 LY_DEFINE (ly_output_def_scope, "ly:output-def-scope",
-          1, 0,0, (SCM def),
+          1, 0, 0, (SCM def),
           "Get the variable scope inside @var{def}.")
 {
   Output_def *op = unsmob_output_def (def);
@@ -159,7 +146,6 @@ LY_DEFINE (ly_output_def_scope, "ly:output-def-scope",
   return op->scope_;
 }
 
-
 LY_DEFINE (ly_output_def_parent, "ly:output-def-parent",
           1, 0, 0, (SCM def),
           "Get the parent output-def of @var{def}.")
@@ -169,7 +155,6 @@ LY_DEFINE (ly_output_def_parent, "ly:output-def-parent",
   return op->parent_ ? op->parent_->self_scm () : SCM_EOL;
 }
 
-
 LY_DEFINE (ly_output_def_clone, "ly:output-def-clone",
           1, 0, 0, (SCM def),
           "Clone @var{def}.")
@@ -181,65 +166,51 @@ LY_DEFINE (ly_output_def_clone, "ly:output-def-clone",
   return s;
 }
 
-LY_DEFINE(ly_output_description, "ly:output-description",
-         1,0,0,
-         (SCM output_def),
-         "Return the description of translators in @var{output-def}.")
+LY_DEFINE (ly_output_description, "ly:output-description",
+          1, 0, 0, (SCM output_def),
+          "Return the description of translators in @var{output-def}.")
 {
   Output_def *id = unsmob_output_def (output_def);
   
-  SCM al =ly_module_to_alist (id->scope_);
+  SCM al = ly_module2alist (id->scope_);
 
-  SCM l = SCM_EOL;
-  for (SCM s = al ; ly_c_pair_p (s); s = ly_cdr (s))
+  SCM ell = SCM_EOL;
+  for (SCM s = al; scm_is_pair (s); s = scm_cdr (s))
     {
-      Context_def * td = unsmob_context_def (ly_cdar (s));
-      SCM key = ly_caar (s);
+      Context_def * td = unsmob_context_def (scm_cdar (s));
+      SCM key = scm_caar (s);
       if (td && key == td->get_context_name ())
-       {
-         
-         l = scm_cons (scm_cons (key, td->to_alist ()),  l);
-       }
+       ell = scm_cons (scm_cons (key, td->to_alist ()),  ell);
     }
-  return l;  
+  return ell;  
 }
   
-
-
-#include "interval.hh"
-
 /* FIXME.  This is broken until we have a generic way of
-   putting lists inside the \paper block.  */
+   putting lists inside the \layout block.  */
 Interval
 line_dimensions_int (Output_def *def, int n)
 {
-  Real lw =  def->get_dimension (ly_symbol2scm ("linewidth"));
+  Real lw = def->get_dimension (ly_symbol2scm ("linewidth"));
   Real ind = n ? 0.0 : def->get_dimension (ly_symbol2scm ("indent"));
-
   return Interval (ind, lw);
 }
 
-LY_DEFINE (ly_paper_def_p, "ly:paper-def?",
+LY_DEFINE (ly_layout_def_p, "ly:layout-def?",
           1, 0, 0, (SCM def),
-          "Is @var{def} a paper definition?")
+          "Is @var{def} a layout definition?")
 {
   return ly_bool2scm (unsmob_output_def (def));
 }
 
-
-
-LY_DEFINE (ly_bookpaper_outputscale, "ly:bookpaper-outputscale",
-         1, 0, 0,
-         (SCM bp),
+LY_DEFINE (ly_paper_outputscale, "ly:paper-outputscale",
+         1, 0, 0, (SCM bp),
          "Get outputscale for BP.")
 {
   Output_def *b = unsmob_output_def (bp);
-  SCM_ASSERT_TYPE (b, bp, SCM_ARG1, __FUNCTION__, "bookpaper");
+  SCM_ASSERT_TYPE (b, bp, SCM_ARG1, __FUNCTION__, "paper");
   return scm_make_real (output_scale (b));
 }
 
-
-
 LY_DEFINE (ly_make_output_def, "ly:make-output-def",
           0, 0, 0, (),
           "Make a output def.")
@@ -248,3 +219,4 @@ LY_DEFINE (ly_make_output_def, "ly:make-output-def",
   return scm_gc_unprotect_object (bp->self_scm ());
 }
 
+