lilypond-1.5.9
[lilypond.git] / lily / grob.cc
blob0f233e61369b61a04650580be4d96088635d4c0e
1 /*
2 score-elem.cc -- implement Grob
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #include <string.h>
11 #include <math.h>
13 #include "input-smob.hh"
14 #include "libc-extension.hh"
15 #include "group-interface.hh"
16 #include "misc.hh"
17 #include "paper-score.hh"
18 #include "paper-def.hh"
19 #include "molecule.hh"
20 #include "grob.hh"
21 #include "debug.hh"
22 #include "spanner.hh"
23 #include "line-of-score.hh"
24 #include "item.hh"
25 #include "paper-column.hh"
26 #include "molecule.hh"
27 #include "misc.hh"
28 #include "paper-outputter.hh"
29 #include "dimension-cache.hh"
30 #include "side-position-interface.hh"
31 #include "item.hh"
33 #include "ly-smobs.icc"
36 TODO:
38 remove dynamic_cast<Spanner,Item> and put this code into respective
39 subclass.
43 #define INFINITY_MSG "Infinity or NaN encountered"
45 Grob::Grob (SCM basicprops)
48 fixme: default should be no callback.
51 pscore_l_=0;
52 status_c_ = 0;
53 original_l_ = 0;
54 immutable_property_alist_ = basicprops;
55 mutable_property_alist_ = SCM_EOL;
57 smobify_self ();
60 TODO:
62 destill this into a function, so we can re-init the immutable
63 properties with a new BASICPROPS value after creation. Convenient
64 eg. when using \override with StaffSymbol. */
66 char const*onames[] = {"X-offset-callbacks", "Y-offset-callbacks"};
67 char const*enames[] = {"X-extent-callback", "Y-extent-callback"};
69 for (int a = X_AXIS; a <= Y_AXIS; a++)
71 SCM l = get_grob_property (onames[a]);
73 if (scm_ilength (l) >=0)
75 dim_cache_[a].offset_callbacks_ = l;
76 dim_cache_[a].offsets_left_ = scm_ilength (l);
78 else
80 programming_error ("[XY]-offset-callbacks must be a list");
83 SCM cb = get_grob_property (enames[a]);
86 Should change default to be empty?
88 if (cb != SCM_BOOL_F && !gh_procedure_p (cb) && !gh_pair_p (cb))
89 cb = molecule_extent_proc;
91 dim_cache_[a].dimension_ = cb;
94 SCM meta = get_grob_property ("meta");
95 SCM ifs = scm_assoc (ly_symbol2scm ("interfaces"), meta);
97 set_grob_property ("interfaces",gh_cdr (ifs));
101 Grob::Grob (Grob const&s)
102 : dim_cache_ (s.dim_cache_)
104 original_l_ = (Grob*) &s;
105 immutable_property_alist_ = s.immutable_property_alist_;
106 mutable_property_alist_ = SCM_EOL;
108 status_c_ = s.status_c_;
109 pscore_l_ = s.pscore_l_;
111 smobify_self ();
114 Grob::~Grob ()
117 do nothing scm-ish and no unprotecting here.
123 Grob::get_grob_property (const char *nm) const
125 SCM sym = ly_symbol2scm (nm);
126 return get_grob_property (sym);
130 Grob::get_grob_property (SCM sym) const
132 SCM s = scm_sloppy_assq (sym, mutable_property_alist_);
133 if (s != SCM_BOOL_F)
134 return gh_cdr (s);
136 s = scm_sloppy_assq (sym, immutable_property_alist_);
137 return (s == SCM_BOOL_F) ? SCM_EOL : gh_cdr (s);
141 Remove the value associated with KEY, and return it. The result is
142 that a next call will yield SCM_UNDEFINED (and not the underlying
143 `basic' property.
146 Grob::remove_grob_property (const char* key)
148 SCM val = get_grob_property (key);
149 if (val != SCM_EOL)
150 set_grob_property (key, SCM_EOL);
151 return val;
154 void
155 Grob::set_grob_property (const char* k, SCM v)
157 SCM s = ly_symbol2scm (k);
158 set_grob_property (s, v);
162 Puts the k, v in the immutable_property_alist_, which is convenient for
163 storing variables that are needed during the breaking process. (eg.
164 Line_of_score::rank : int)
166 void
167 Grob::set_immutable_grob_property (const char*k, SCM v)
169 SCM s = ly_symbol2scm (k);
170 set_immutable_grob_property (s, v);
173 void
174 Grob::set_immutable_grob_property (SCM s, SCM v)
176 immutable_property_alist_ = gh_cons (gh_cons (s,v), mutable_property_alist_);
177 mutable_property_alist_ = scm_assq_remove_x (mutable_property_alist_, s);
179 void
180 Grob::set_grob_property (SCM s, SCM v)
182 mutable_property_alist_ = scm_assq_set_x (mutable_property_alist_, s, v);
186 MAKE_SCHEME_CALLBACK (Grob,molecule_extent,2);
188 Grob::molecule_extent (SCM element_smob, SCM scm_axis)
190 Grob *s = unsmob_grob (element_smob);
191 Axis a = (Axis) gh_scm2int (scm_axis);
193 Molecule *m = s->get_molecule ();
194 Interval e ;
195 if (m)
196 e = m->extent (a);
197 return ly_interval2scm (e);
200 MAKE_SCHEME_CALLBACK (Grob,preset_extent,2);
203 Grob::preset_extent (SCM element_smob, SCM scm_axis)
205 Grob *s = unsmob_grob (element_smob);
206 Axis a = (Axis) gh_scm2int (scm_axis);
208 SCM ext = s->get_grob_property ((a == X_AXIS)
209 ? "extent-X"
210 : "extent-Y");
212 if (gh_pair_p (ext))
214 Real l = gh_scm2double (gh_car (ext));
215 Real r = gh_scm2double (gh_cdr (ext));
216 return ly_interval2scm (Interval (l, r));
219 return ly_interval2scm (Interval ());
224 Paper_def*
225 Grob::paper_l () const
227 return pscore_l_ ? pscore_l_->paper_l_ : 0;
230 void
231 Grob::calculate_dependencies (int final, int busy, SCM funcname)
233 if (status_c_ >= final)
234 return;
236 if (status_c_== busy)
238 programming_error ("Element is busy, come back later");
239 return;
242 status_c_= busy;
244 for (SCM d= get_grob_property ("dependencies"); gh_pair_p (d); d = gh_cdr (d))
246 unsmob_grob (gh_car (d))
247 ->calculate_dependencies (final, busy, funcname);
250 // ughugh.
251 String s = ly_symbol2string (funcname);
252 SCM proc = get_grob_property (s.ch_C ());
253 if (gh_procedure_p (proc))
254 gh_call1 (proc, this->self_scm ());
256 status_c_= final;
260 Molecule *
261 Grob::get_molecule () const
263 SCM mol = get_grob_property ("molecule");
264 if (unsmob_molecule (mol))
265 return unsmob_molecule (mol);
267 mol = get_uncached_molecule ();
269 Grob *me = (Grob*)this;
270 me->set_grob_property ("molecule", mol);
272 return unsmob_molecule (mol);
275 Grob::get_uncached_molecule ()const
277 SCM proc = get_grob_property ("molecule-callback");
279 SCM mol = SCM_EOL;
280 if (gh_procedure_p (proc))
281 mol = gh_apply (proc, gh_list (this->self_scm (), SCM_UNDEFINED));
284 Molecule *m = unsmob_molecule (mol);
286 if (unsmob_molecule (mol))
289 TODO: add option for not copying origin info.
291 SCM origin =get_grob_property ("origin");
292 if (!unsmob_input (origin))
293 origin =ly_symbol2scm ("no-origin");
296 // ugr.
298 mol = Molecule (m->extent_box (),
299 gh_list (origin, m->get_expr (), SCM_UNDEFINED)
300 ). smobbed_copy ();
302 m = unsmob_molecule (mol);
306 transparent retains dimensions of element.
308 if (m && to_boolean (get_grob_property ("transparent")))
309 mol = Molecule (m->extent_box (), SCM_EOL).smobbed_copy ();
311 return mol;
316 VIRTUAL STUBS
319 void
320 Grob::do_break_processing ()
329 Line_of_score *
330 Grob::line_l () const
332 return 0;
335 void
336 Grob::add_dependency (Grob*e)
338 if (e)
340 Pointer_group_interface ::add_element (this, "dependencies",e);
343 else
344 programming_error ("Null dependency added");
351 Do break substitution in S, using CRITERION. Return new value.
352 CRITERION is either a SMOB pointer to the desired line, or a number
353 representing the break direction. Do not modify SRC.
356 Grob::handle_broken_grobs (SCM src, SCM criterion)
358 again:
359 Grob *sc = unsmob_grob (src);
360 if (sc)
362 if (gh_number_p (criterion))
364 Item * i = dynamic_cast<Item*> (sc);
365 Direction d = to_dir (criterion);
366 if (i && i->break_status_dir () != d)
368 Item *br = i->find_prebroken_piece (d);
369 return (br) ? br->self_scm () : SCM_UNDEFINED;
372 else
374 Line_of_score * line
375 = dynamic_cast<Line_of_score*> (unsmob_grob (criterion));
376 if (sc->line_l () != line)
378 sc = sc->find_broken_piece (line);
382 /* now: !sc || (sc && sc->line_l () == line) */
383 if (!sc)
384 return SCM_UNDEFINED;
386 /* now: sc && sc->line_l () == line */
387 if (!line
388 || (sc->common_refpoint (line, X_AXIS)
389 && sc->common_refpoint (line, Y_AXIS)))
391 return sc->self_scm ();
393 return SCM_UNDEFINED;
396 else if (gh_pair_p (src))
398 SCM oldcar =gh_car (src);
400 UGH! breaks on circular lists.
402 SCM newcar = handle_broken_grobs (oldcar, criterion);
403 SCM oldcdr = gh_cdr (src);
405 if (newcar == SCM_UNDEFINED
406 && (gh_pair_p (oldcdr) || oldcdr == SCM_EOL))
409 This is tail-recursion, ie.
411 return handle_broken_grobs (cdr, criterion);
413 We don't want to rely on the compiler to do this. Without
414 tail-recursion, this easily crashes with a stack overflow. */
415 src = oldcdr;
416 goto again;
419 SCM newcdr = handle_broken_grobs (oldcdr, criterion);
420 return gh_cons (newcar, newcdr);
422 else
423 return src;
425 return src;
428 void
429 Grob::handle_broken_dependencies ()
431 Spanner * s= dynamic_cast<Spanner*> (this);
432 if (original_l_ && s)
433 return;
435 if (s)
437 for (int i = 0; i< s->broken_into_l_arr_ .size (); i++)
439 Grob * sc = s->broken_into_l_arr_[i];
440 Line_of_score * l = sc->line_l ();
441 sc->mutable_property_alist_ =
442 handle_broken_grobs (mutable_property_alist_,
443 l ? l->self_scm () : SCM_UNDEFINED);
448 Line_of_score *line = line_l ();
450 if (line && common_refpoint (line, X_AXIS) && common_refpoint (line, Y_AXIS))
452 mutable_property_alist_
453 = handle_broken_grobs (mutable_property_alist_,
454 line ? line->self_scm () : SCM_UNDEFINED);
456 else if (dynamic_cast <Line_of_score*> (this))
458 mutable_property_alist_ = handle_broken_grobs (mutable_property_alist_,
459 SCM_UNDEFINED);
461 else
464 This element is `invalid'; it has been removed from all
465 dependencies, so let's junk the element itself.
467 do not do this for Line_of_score, since that would remove
468 references to the originals of score-elts, which get then GC'd
469 (a bad thing.)
471 suicide ();
476 Note that we still want references to this element to be
477 rearranged, and not silently thrown away, so we keep pointers
478 like {broken_into_{drul,array}, original}
480 void
481 Grob::suicide ()
483 mutable_property_alist_ = SCM_EOL;
484 immutable_property_alist_ = SCM_EOL;
486 set_extent_callback (SCM_EOL, Y_AXIS);
487 set_extent_callback (SCM_EOL, X_AXIS);
489 for (int a= X_AXIS; a <= Y_AXIS; a++)
491 dim_cache_[a].offset_callbacks_ = SCM_EOL;
492 dim_cache_[a].offsets_left_ = 0;
496 void
497 Grob::handle_prebroken_dependencies ()
501 Grob*
502 Grob::find_broken_piece (Line_of_score*) const
504 return 0;
507 void
508 Grob::translate_axis (Real y, Axis a)
510 if (isinf (y) || isnan (y))
511 programming_error (_ (INFINITY_MSG));
512 else
514 dim_cache_[a].offset_ += y;
518 Real
519 Grob::relative_coordinate (Grob const*refp, Axis a) const
521 if (refp == this)
522 return 0.0;
525 We catch PARENT_L_ == nil case with this, but we crash if we did
526 not ask for the absolute coordinate (ie. REFP == nil.)
529 if (refp == dim_cache_[a].parent_l_)
530 return get_offset (a);
531 else
532 return get_offset (a) + dim_cache_[a].parent_l_->relative_coordinate (refp, a);
535 Real
536 Grob::get_offset (Axis a) const
538 Grob *me = (Grob*) this;
539 while (dim_cache_[a].offsets_left_)
541 int l = --me->dim_cache_[a].offsets_left_;
542 SCM cb = scm_list_ref (dim_cache_[a].offset_callbacks_, gh_int2scm (l));
543 SCM retval = gh_call2 (cb, self_scm (), gh_int2scm (a));
545 Real r = gh_scm2double (retval);
546 if (isinf (r) || isnan (r))
548 programming_error (INFINITY_MSG);
549 r = 0.0;
551 me->dim_cache_[a].offset_ +=r;
553 return dim_cache_[a].offset_;
557 MAKE_SCHEME_CALLBACK (Grob,point_dimension_callback,2);
559 Grob::point_dimension_callback (SCM , SCM)
561 return ly_interval2scm (Interval (0,0));
564 bool
565 Grob::empty_b (Axis a)const
567 return ! (gh_pair_p (dim_cache_[a].dimension_) ||
568 gh_procedure_p (dim_cache_[a].dimension_));
572 TODO: add
574 Grob *refpoint
576 to arguments?
578 Interval
579 Grob::extent (Grob * refp, Axis a) const
581 Real x = relative_coordinate (refp, a);
584 Dimension_cache * d = (Dimension_cache *)&dim_cache_[a];
585 Interval ext ;
586 if (gh_pair_p (d->dimension_))
588 else if (gh_procedure_p (d->dimension_))
591 FIXME: add doco on types, and should typecheck maybe?
593 d->dimension_= gh_call2 (d->dimension_, self_scm (), gh_int2scm (a));
595 else
596 return ext;
598 if (!gh_pair_p (d->dimension_))
599 return ext;
601 ext = ly_scm2interval (d->dimension_);
603 SCM extra = get_grob_property (a == X_AXIS
604 ? "extra-extent-X"
605 : "extra-extent-Y");
608 signs ?
610 if (gh_pair_p (extra))
612 ext[BIGGER] += gh_scm2double (gh_cdr (extra));
613 ext[SMALLER] += gh_scm2double (gh_car (extra));
616 extra = get_grob_property (a == X_AXIS
617 ? "minimum-extent-X"
618 : "minimum-extent-Y");
619 if (gh_pair_p (extra))
621 ext.unite (Interval (gh_scm2double (gh_car (extra)),
622 gh_scm2double (gh_cdr (extra))));
625 ext.translate (x);
627 return ext;
631 Grob*
632 Grob::parent_l (Axis a) const
634 return dim_cache_[a].parent_l_;
637 Grob *
638 Grob::common_refpoint (Grob const* s, Axis a) const
641 I don't like the quadratic aspect of this code, but I see no other
642 way. The largest chain of parents might be 10 high or so, so
643 it shouldn't be a real issue. */
644 for (Grob const *c = this; c; c = c->dim_cache_[a].parent_l_)
645 for (Grob const * d = s; d; d = d->dim_cache_[a].parent_l_)
646 if (d == c)
647 return (Grob*)d;
649 return 0;
653 Grob *
654 Grob::common_refpoint (SCM elist, Axis a) const
656 Grob * common = (Grob*) this;
657 for (; gh_pair_p (elist); elist = gh_cdr (elist))
659 Grob * s = unsmob_grob (gh_car (elist));
660 if (s)
661 common = common->common_refpoint (s, a);
664 return common;
667 String
668 Grob::name () const
670 SCM meta = get_grob_property ("meta");
671 SCM nm = scm_assoc (ly_symbol2scm ("name"), meta);
672 nm = (gh_pair_p (nm)) ? gh_cdr (nm) : SCM_EOL;
673 return gh_string_p (nm) ?ly_scm2string (nm) : classname (this);
676 void
677 Grob::add_offset_callback (SCM cb, Axis a)
679 if (!has_offset_callback_b (cb, a))
681 dim_cache_[a].offset_callbacks_ = gh_cons (cb, dim_cache_[a].offset_callbacks_);
682 dim_cache_[a].offsets_left_ ++;
686 bool
687 Grob::has_extent_callback_b (SCM cb, Axis a)const
689 return scm_equal_p (cb, dim_cache_[a].dimension_) == SCM_BOOL_T;
693 bool
694 Grob::has_extent_callback_b (Axis a) const
696 return gh_procedure_p (dim_cache_[a].dimension_);
699 bool
700 Grob::has_offset_callback_b (SCM cb, Axis a)const
702 return scm_memq (cb, dim_cache_[a].offset_callbacks_) != SCM_BOOL_F;
705 void
706 Grob::set_extent_callback (SCM dc, Axis a)
708 dim_cache_[a].dimension_ =dc;
711 void
712 Grob::set_parent (Grob *g, Axis a)
714 dim_cache_[a].parent_l_ = g;
717 MAKE_SCHEME_CALLBACK (Grob,fixup_refpoint,1);
719 Grob::fixup_refpoint (SCM smob)
721 Grob *me = unsmob_grob (smob);
722 for (int a = X_AXIS; a < NO_AXES; a ++)
724 Axis ax = (Axis)a;
725 Grob * parent = me->parent_l (ax);
727 if (!parent)
728 continue;
730 if (parent->line_l () != me->line_l () && me->line_l ())
732 Grob * newparent = parent->find_broken_piece (me->line_l ());
733 me->set_parent (newparent, ax);
736 if (Item * i = dynamic_cast<Item*> (me))
738 Item *parenti = dynamic_cast<Item*> (parent);
740 if (parenti && i)
742 Direction my_dir = i->break_status_dir () ;
743 if (my_dir!= parenti->break_status_dir ())
745 Item *newparent = parenti->find_prebroken_piece (my_dir);
746 me->set_parent (newparent, ax);
751 return smob;
756 /****************************************************
757 SMOB funcs
758 ****************************************************/
761 IMPLEMENT_UNSMOB (Grob, grob);
762 IMPLEMENT_SMOBS (Grob);
763 IMPLEMENT_DEFAULT_EQUAL_P (Grob);
766 Grob::mark_smob (SCM ses)
768 Grob * s = (Grob*) SCM_CELL_WORD_1 (ses);
769 scm_gc_mark (s->immutable_property_alist_);
770 scm_gc_mark (s->mutable_property_alist_);
772 for (int a =0 ; a < 2; a++)
774 scm_gc_mark (s->dim_cache_[a].offset_callbacks_);
775 scm_gc_mark (s->dim_cache_[a].dimension_);
778 if (s->parent_l (Y_AXIS))
779 scm_gc_mark (s->parent_l (Y_AXIS)->self_scm ());
780 if (s->parent_l (X_AXIS))
781 scm_gc_mark (s->parent_l (X_AXIS)->self_scm ());
783 if (s->original_l_)
784 scm_gc_mark (s->original_l_->self_scm ());
785 return s->do_derived_mark ();
789 Grob::print_smob (SCM s, SCM port, scm_print_state *)
791 Grob *sc = (Grob *) gh_cdr (s);
793 scm_puts ("#<Grob ", port);
794 scm_puts ((char *)sc->name ().ch_C (), port);
797 don't try to print properties, that is too much hassle.
799 scm_puts (" >", port);
800 return 1;
804 Grob::do_derived_mark ()
806 return SCM_EOL;
811 ly_set_grob_property (SCM elt, SCM sym, SCM val)
813 Grob * sc = unsmob_grob (elt);
815 if (!gh_symbol_p (sym))
817 error ("Not a symbol");
818 ly_display_scm (sym);
819 return SCM_UNSPECIFIED;
822 if (sc)
824 sc->set_grob_property (sym, val);
826 else
828 error ("Not a score element");
829 ly_display_scm (elt);
832 return SCM_UNSPECIFIED;
837 ly_get_grob_property (SCM elt, SCM sym)
839 Grob * sc = unsmob_grob (elt);
841 if (sc)
843 return sc->get_grob_property (sym);
845 else
847 error ("Not a score element");
848 ly_display_scm (elt);
850 return SCM_UNSPECIFIED;
854 void
855 Grob::discretionary_processing ()
862 spanner_get_bound (SCM slur, SCM dir)
864 return dynamic_cast<Spanner*> (unsmob_grob (slur))->get_bound (to_dir (dir))->self_scm ();
869 static SCM interfaces_sym;
870 static void
871 init_functions ()
873 interfaces_sym = scm_permanent_object (ly_symbol2scm ("interfaces"));
875 scm_c_define_gsubr ("ly-get-grob-property", 2, 0, 0,
876 (Scheme_function_unknown)ly_get_grob_property);
877 scm_c_define_gsubr ("ly-set-grob-property", 3, 0, 0,
878 (Scheme_function_unknown)ly_set_grob_property);
879 scm_c_define_gsubr ("ly-get-spanner-bound", 2 , 0, 0,
880 (Scheme_function_unknown) spanner_get_bound);
883 bool
884 Grob::has_interface (SCM k)
886 SCM ifs = get_grob_property (interfaces_sym);
888 return scm_memq (k, ifs) != SCM_BOOL_F;
891 void
892 Grob::set_interface (SCM k)
894 if (has_interface (k))
895 return ;
896 else
898 set_grob_property (interfaces_sym,
899 gh_cons (k, get_grob_property (interfaces_sym)));
904 ADD_SCM_INIT_FUNC (scoreelt, init_functions);
905 IMPLEMENT_TYPE_P (Grob, "ly-grob?");