lilypond-1.3.122
[lilypond.git] / lily / molecule.cc
blobe135b6b3fc07efd113c30d3b27602001c5e161fd
1 /*
2 molecule.cc -- implement Molecule
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include <math.h>
10 #include <libc-extension.hh>
12 #include "font-metric.hh"
13 #include "dimensions.hh"
14 #include "interval.hh"
15 #include "string.hh"
16 #include "molecule.hh"
17 #include "debug.hh"
18 #include "killing-cons.tcc"
20 #include "ly-smobs.icc"
23 SCM
24 Molecule::smobbed_copy () const
26 Molecule * m = new Molecule(*this);
28 return m->smobbed_self ();
31 Interval
32 Molecule::extent(Axis a) const
34 return dim_[a];
37 Molecule::Molecule (Box b, SCM func)
39 expr_ = func;
40 dim_ = b;
43 Molecule::Molecule()
45 expr_ = SCM_EOL;
46 set_empty (true);
49 void
50 Molecule::translate (Offset o)
52 Axis a = X_AXIS;
53 while (a < NO_AXES)
55 if (abs(o[a]) > 30 CM
56 || isinf (o[a]) || isnan (o[a]))
58 programming_error ("Improbable offset for translation: setting to zero");
59 o[a] = 0.0;
61 incr (a);
64 expr_ = gh_list (ly_symbol2scm ("translate-molecule"),
65 ly_offset2scm (o),
66 expr_, SCM_UNDEFINED);
67 if (!empty_b ())
68 dim_.translate (o);
72 void
73 Molecule::translate_axis (Real x,Axis a)
75 Offset o(0,0);
76 o[a] = x;
77 translate (o);
82 void
83 Molecule::add_molecule (Molecule const &m)
85 expr_ = gh_list (ly_symbol2scm ("combine-molecule"),
86 m.expr_,
87 expr_, SCM_UNDEFINED);
88 dim_.unite (m.dim_);
91 void
92 Molecule::set_empty (bool e)
94 if (e)
96 dim_[X_AXIS].set_empty ();
97 dim_[Y_AXIS].set_empty ();
99 else
101 dim_[X_AXIS] = Interval(0,0);
102 dim_[Y_AXIS] = Interval (0,0);
107 void
108 Molecule::align_to (Axis a, Direction d)
110 Interval i (extent (a));
111 Real r = (d == CENTER) ? i.center () : i[d];
112 translate_axis (-r, a);
115 void
116 Molecule::add_at_edge (Axis a, Direction d, Molecule const &m, Real padding)
118 Real my_extent= empty_b () ? 0.0 : dim_[a][d];
119 Interval i (m.extent (a));
120 Real his_extent;
121 if (i.empty_b ())
123 programming_error ("Molecule::add_at_edge: adding empty molecule.");
124 his_extent = 0.0;
126 else
127 his_extent = i[-d];
129 Real offset = my_extent - his_extent;
130 Molecule toadd (m);
131 toadd.translate_axis (offset + d * padding, a);
132 add_molecule (toadd);
135 bool
136 Molecule::empty_b () const
138 return expr_ == SCM_EOL;
142 fontify_atom(Font_metric * met, SCM f)
144 if (f == SCM_EOL)
145 return f;
146 else
147 return gh_list (ly_symbol2scm ("fontify"),
148 ly_quote_scm (met->description_), f, SCM_UNDEFINED);
152 Molecule::get_expr () const
154 return expr_;
160 Molecule::extent_box () const
162 return dim_;
164 IMPLEMENT_SIMPLE_SMOBS(Molecule);
168 Molecule::print_smob (SCM s, SCM port, scm_print_state *)
170 Molecule *r = (Molecule *) gh_cdr (s);
172 scm_puts ("#<Molecule ", port);
173 /* String str(r->str());
174 scm_puts ((char *)str.ch_C(), port);*/
175 scm_puts (" >", port);
177 return 1;
182 Molecule::mark_smob (SCM s)
184 Molecule *r = (Molecule *) gh_cdr (s);
186 return r->expr_;
189 IMPLEMENT_TYPE_P(Molecule, "molecule?");
190 IMPLEMENT_DEFAULT_EQUAL_P(Molecule);
191 IMPLEMENT_UNSMOB(Molecule, molecule);