X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmolecule.cc;h=bfbc525666c0bff128e1972ef5c701adb86ff08d;hb=ff3d20fcb28e7ccf0fa9ad242dc16afb9cf0f7ba;hp=2c946484c8657eb2279f7ef623025d7e7ebe7f21;hpb=036af34aa44a151b9e67c18e0acccaafdfae9de8;p=lilypond.git diff --git a/lily/molecule.cc b/lily/molecule.cc index 2c946484c8..bfbc525666 100644 --- a/lily/molecule.cc +++ b/lily/molecule.cc @@ -3,138 +3,190 @@ source file of the GNU LilyPond music typesetter - (c) 1997 Han-Wen Nienhuys + (c) 1997--2003 Han-Wen Nienhuys */ +#include +#include // isinf + +#include "font-metric.hh" +#include "dimensions.hh" #include "interval.hh" -#include "dimen.hh" #include "string.hh" #include "molecule.hh" -#include "symbol.hh" -#include "debug.hh" -#include "tex.hh" +#include "warn.hh" + +#include "ly-smobs.icc" -/* *************** */ -String -Molecule::TeX_string() const +SCM +Molecule::smobbed_copy () const { - String s; - for(iter_top(ats,c); c.ok(); c++) - s+=c->TeX_string(); - return s; + Molecule * m = new Molecule (*this); + + return m->smobbed_self (); } -Box -Molecule::extent() const +Interval +Molecule::extent (Axis a) const { - Box b; - for(iter_top(ats,c); c.ok(); c++) - b.unite(c->extent()); - return b; + return dim_[a]; } -void -Molecule::translate(Offset o) +Molecule::Molecule (Box b, SCM func) { - for (iter_top(ats,c); c.ok(); c++) - c->translate(o); + expr_ = func; + dim_ = b; } -void -Molecule::translate_x(Real x) +Molecule::Molecule () { - translate(Offset(x,0)); + expr_ = SCM_EOL; + set_empty (true); } void -Molecule::translate_y(Real y) +Molecule::translate (Offset o) { - translate(Offset(0,y)); + Axis a = X_AXIS; + while (a < NO_AXES) + { + if (abs (o[a]) > 100 CM + || isinf (o[a]) || isnan (o[a])) + { + programming_error ("Improbable offset for translation: setting to zero"); + o[a] = 0.0; + } + incr (a); + } + + expr_ = scm_list_n (ly_symbol2scm ("translate-molecule"), + ly_offset2scm (o), + expr_, SCM_UNDEFINED); + if (!is_empty ()) + dim_.translate (o); } + void -Molecule::add(Molecule const &m) +Molecule::translate_axis (Real x,Axis a) { - for (iter_top(m.ats,c); c.ok(); c++) { - add(**c); - } -} + Offset o (0,0); + o[a] = x; + translate (o); +} + + void -Molecule::add_right(Molecule const &m) +Molecule::add_molecule (Molecule const &m) { - if (!ats.size()) { - add(m); - return; - } - Real xof=extent().x.right - m.extent().x.left; - Molecule toadd(m); - toadd.translate(Offset(xof, 0.0)); - add(toadd); + expr_ = scm_list_n (ly_symbol2scm ("combine-molecule"), + m.expr_, + expr_, SCM_UNDEFINED); + dim_.unite (m.dim_); } void -Molecule::add_left(Molecule const &m) +Molecule::set_empty (bool e) { - if (!ats.size()) { - add(m); - return; + if (e) + { + dim_[X_AXIS].set_empty (); + dim_[Y_AXIS].set_empty (); + } + else + { + dim_[X_AXIS] = Interval (0,0); + dim_[Y_AXIS] = Interval (0,0); } - Real xof=extent().x.left - m.extent().x.right; - Molecule toadd(m); - toadd.translate(Offset(xof, 0.0)); - add(toadd); } void -Molecule::add_top(Molecule const &m) +Molecule::align_to (Axis a, Real x) { - if (!ats.size()) { - add(m); - return; - } - Real yof=extent().y.right - m.extent().y.left; - Molecule toadd(m); - toadd.translate_y(yof); - add(toadd); + if (is_empty ()) + return ; + + Interval i (extent (a)); + translate_axis (-i.linear_combination (x), a); } +/* + See scheme Function. + */ void -Molecule::add_bottom(Molecule const &m) +Molecule::add_at_edge (Axis a, Direction d, Molecule const &m, Real padding, + Real minimum) { - if (!ats.size()) { - add(m); - return; + Real my_extent= is_empty () ? 0.0 : dim_[a][d]; + Interval i (m.extent (a)); + Real his_extent; + if (i.is_empty ()) + { + programming_error ("Molecule::add_at_edge: adding empty molecule."); + his_extent = 0.0; } - Real yof=extent().y.left- m.extent().y.right; - Molecule toadd(m); - toadd.translate_y(yof); - add(toadd); + else + his_extent = i[-d]; + + Real offset = (my_extent - his_extent) + d*padding; + if (minimum > 0 && fabs (offset) < minimum) + offset = sign (offset) * minimum; + + Molecule toadd (m); + toadd.translate_axis (offset, a); + add_molecule (toadd); } -void -Molecule::operator = (Molecule const &) + + +/* + Hmm... maybe this is not such a good idea ; stuff can be empty, + while expr_ == '() + */ +bool +Molecule::is_empty () const { - assert(false); + return expr_ == SCM_EOL; } -Molecule::Molecule(Molecule const &s) +SCM +Molecule::get_expr () const { - add(s); + return expr_; } -void -Molecule::print() const + + +Box +Molecule::extent_box () const { - for (iter_top(ats,c); c.ok(); c++) - c->print(); + return dim_; } +IMPLEMENT_SIMPLE_SMOBS (Molecule); -void -Molecule::add(Atom const &a) + +int +Molecule::print_smob (SCM , SCM port, scm_print_state *) +{ + scm_puts ("#", port); + + return 1; +} + + +SCM +Molecule::mark_smob (SCM s) { - ats.bottom().add(new Atom(a)); + Molecule *r = (Molecule *) ly_cdr (s); + + return r->expr_; } + +IMPLEMENT_TYPE_P (Molecule, "ly:molecule?"); +IMPLEMENT_DEFAULT_EQUAL_P (Molecule); +