]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/paper-system.cc
Optimizations for pure-height approximations.
[lilypond.git] / lily / paper-system.cc
index c519404a65d0f104a656a5fb5af82f89dfa98535..aef20f10c04ea9a8d81e80d1f1ae263d9e88e8d1 100644 (file)
@@ -1,72 +1,44 @@
 /*
-  paper-system.cc -- implement Paper_system
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 2004--2011 Jan Nieuwenhuizen <janneke@gnu.org>
 
-  (c) 2004--2005 Jan Nieuwenhuizen <janneke@gnu.org>
-*/
-
-#include "paper-system.hh"
-
-#include "virtual-methods.hh"
-
-#include "ly-smobs.icc"
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
 
-IMPLEMENT_SMOBS (Paper_system);
-IMPLEMENT_TYPE_P (Paper_system, "ly:paper-system?");
-IMPLEMENT_DEFAULT_EQUAL_P (Paper_system);
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
 
-Paper_system::Paper_system (Stencil s, bool is_title)
-{
-  is_title_ = is_title;
-  number_ = 0;
-  break_before_penalty_ = 0;
-  smobify_self ();
-  stencil_ = s;
-  staff_refpoints_ = Interval (0, 0);
-}
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
-Paper_system::~Paper_system ()
-{
-}
+#include "paper-system.hh"
+#include "item.hh"
 
-SCM
-Paper_system::mark_smob (SCM smob)
+Prob *
+make_paper_system (SCM immutable_init)
 {
-  Paper_system *system = (Paper_system *) SCM_CELL_WORD_1 (smob);
-  return system-> stencil_.expr ();
+  Prob *prob = new Prob (ly_symbol2scm ("paper-system"), immutable_init);
+  return prob;
 }
 
-int
-Paper_system::print_smob (SCM smob, SCM port, scm_print_state*)
+void
+paper_system_set_stencil (Prob *prob, Stencil s)
 {
-  Paper_system *p = (Paper_system *) SCM_CELL_WORD_1 (smob);
-  scm_puts ("#<", port);
-  scm_puts (classname (p), port);
-  scm_puts ("n ", port);
-  scm_puts (to_string (p->number_).to_str0 (), port);
-  scm_puts (", p ", port);
-  scm_puts (to_string (p->break_before_penalty_).to_str0 (), port);
-  if (p->is_title ())
-    scm_puts (" t", port);
-  scm_puts (" >", port);
-  return 1;
-}
+  SCM yext = prob->get_property ("Y-extent");
 
-bool
-Paper_system::is_title () const
-{
-  return is_title_;
-}
+  if (is_number_pair (yext))
+    {
+      Box b = s.extent_box ();
+      b[Y_AXIS] = ly_scm2interval (yext);
 
-Real
-Paper_system::break_before_penalty () const
-{
-  return break_before_penalty_;
-}
+      s = Stencil (b, s.expr ());
+    }
 
-Stencil
-Paper_system::to_stencil () const
-{
-  return stencil_;
+  prob->set_property ("stencil", s.smobbed_copy ());
 }