]> git.donarmstrong.com Git - lilypond.git/blob - lily/score-element.cc
patch::: 1.3.41.mb1: Patch and copyright placement?
[lilypond.git] / lily / score-element.cc
1 /*
2   score-elem.cc -- implement Score_element
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #include <string.h>
11
12 #include "group-interface.hh"
13 #include "misc.hh"
14 #include "paper-score.hh"
15 #include "paper-def.hh"
16 #include "lookup.hh"
17 #include "molecule.hh"
18 #include "score-element.hh"
19 #include "debug.hh"
20 #include "spanner.hh"
21 #include "line-of-score.hh"
22 #include "item.hh"
23 #include "paper-column.hh"
24 #include "molecule.hh"
25 #include "misc.hh"
26 #include "paper-outputter.hh"
27 #include "dimension-cache.hh"
28 #include "side-position-interface.hh"
29 #include "item.hh"
30 /*
31 TODO:
32
33 remove dynamic_cast<Spanner,Item> and put this code into respective
34   subclass.
35 */
36
37 Score_element::Score_element()
38 {
39   dim_cache_[X_AXIS] = new Dimension_cache;
40   dim_cache_[Y_AXIS] = new Dimension_cache;
41   dim_cache_[X_AXIS]->elt_l_ = dim_cache_[Y_AXIS]->elt_l_ = this;
42
43   // junkme.
44   used_b_ = false;
45
46   dim_cache_[X_AXIS]->set_extent_callback (molecule_extent);
47   dim_cache_[Y_AXIS]->set_extent_callback (molecule_extent); 
48   used_b_ = false;
49   pscore_l_=0;
50   lookup_l_ =0;
51   status_i_ = 0;
52   self_scm_ = SCM_EOL;
53   original_l_ = 0;
54   element_property_alist_ = SCM_EOL;
55
56   smobify_self ();
57
58
59   set_elt_property ("dependencies", SCM_EOL);
60   set_elt_property ("interfaces", SCM_EOL);
61 }
62
63
64 Score_element::Score_element (Score_element const&s)
65 {
66   dim_cache_[X_AXIS] = new Dimension_cache (*s.dim_cache_[X_AXIS]);
67   dim_cache_[Y_AXIS] = new Dimension_cache (*s.dim_cache_[Y_AXIS]);
68   dim_cache_[X_AXIS]->elt_l_ = dim_cache_[Y_AXIS]->elt_l_ = this;
69   
70   self_scm_ = SCM_EOL;
71   used_b_ = true;
72   original_l_ =(Score_element*) &s;
73   element_property_alist_ = SCM_EOL; // onstack;
74
75   status_i_ = s.status_i_;
76   lookup_l_ = s.lookup_l_;
77   pscore_l_ = s.pscore_l_;
78
79   smobify_self ();
80 }
81
82 Score_element::~Score_element()
83 {
84   assert (status_i_ >=0);
85   status_i_  = -1;
86
87   delete dim_cache_[X_AXIS];
88   delete dim_cache_[Y_AXIS];  
89 }
90
91 // should also have one that takes SCM arg. 
92 SCM
93 Score_element::get_elt_property (String nm) const
94 {
95   SCM sym =  ly_symbol2scm (nm.ch_C());
96   SCM s = scm_assq(sym, element_property_alist_);
97
98   if (s != SCM_BOOL_F)
99     return gh_cdr (s); 
100   
101   if (pscore_l_)
102     {
103       SCM sym2 = ly_symbol2scm ((name () + ("::" + nm)).ch_C());
104       SCM val;
105       
106       // should probably check for Type::sym as well.
107       Paper_def * p= pscore_l_->paper_l_;
108       if (p->default_properties_.try_retrieve (sym2, &val))
109         return val;
110       else if (p->default_properties_.try_retrieve (sym, &val))
111         return val;
112     }
113   
114   return SCM_UNDEFINED;
115 }
116
117 SCM
118 Score_element::remove_elt_property (String key)
119 {
120   SCM s = get_elt_property (key); 
121   SCM sym = ly_symbol2scm (key.ch_C());
122   element_property_alist_ =  scm_assq_remove_x (element_property_alist_, sym);
123   return s;
124 }
125
126 /*
127   UGH. assoc vs. assq
128  */
129 void
130 Score_element::set_elt_property (String k, SCM v)
131 {
132   SCM s = ly_symbol2scm (k.ch_C( ));
133   element_property_alist_ = scm_assoc_set_x (element_property_alist_, s, v);
134 }
135
136 Interval
137 Score_element::molecule_extent (Dimension_cache const *c)
138 {
139   Score_element *s = dynamic_cast<Score_element*>(c->element_l());
140   Molecule m = s->do_brew_molecule();
141   return m.extent()[c->axis ()];
142 }
143
144 Interval
145 Score_element::preset_extent (Dimension_cache const *c)
146 {
147   Score_element *s = dynamic_cast<Score_element*>(c->element_l());
148   SCM ext = s->get_elt_property ((c->axis () == X_AXIS)
149                                  ? "extent-X"
150                                  : "extent-Y");
151   
152   if (gh_pair_p (ext))
153     {
154       Real l = gh_scm2double (gh_car (ext));
155       Real r = gh_scm2double (gh_cdr (ext));
156       l *= s->paper_l ()->get_var ("staffspace");
157       r *= s->paper_l ()->get_var ("staffspace");
158       return Interval (l, r);
159     }
160   
161   return Interval ();
162 }
163
164
165 void
166 Score_element::print() const
167 {
168 #ifndef NPRINT
169   DEBUG_OUT << classname(this) << "{\n";
170     
171   if (flower_dstream && !flower_dstream->silent_b ("Score_element"))
172     ly_display_scm (element_property_alist_);
173
174   if (original_l_)
175     DEBUG_OUT << "Copy ";
176   do_print();
177   
178   DEBUG_OUT <<  "}\n";
179 #endif
180 }
181
182 Paper_def*
183 Score_element::paper_l ()  const
184 {
185  return pscore_l_ ? pscore_l_->paper_l_ : 0;
186 }
187
188 Lookup const *
189 Score_element::lookup_l () const
190 {
191   if (!lookup_l_)
192     {
193       Score_element * urg = (Score_element*)this;
194       SCM sz = urg->remove_elt_property ("fontsize");
195       int i = (gh_number_p (sz))
196         ? gh_scm2int  (sz)
197         : 0;
198
199       urg->lookup_l_ =  (Lookup*)pscore_l_->paper_l_->lookup_l (i);
200     }
201   return lookup_l_;
202 }
203
204 void
205 Score_element::add_processing()
206 {
207   assert (status_i_ >=0);
208   if (status_i_)
209     return;
210   status_i_ ++;
211
212 #if 0
213     /*
214     UGH. UGH. UGH.
215    */
216   if (get_elt_property ("self-alignment-X") != SCM_UNDEFINED
217       && !dim_cache_[X_AXIS]->off_callback_l_)
218     {
219       add_offset_callback (Side_position_interface::aligned_on_self,X_AXIS);
220     }
221   
222   if (get_elt_property ("self-alignment-Y") != SCM_UNDEFINED
223       && !dim_cache_[X_AXIS]->off_callback_l_)
224       
225     {
226       add_offset_callback (Side_position_interface::aligned_on_self, Y_AXIS);
227     }
228 #endif
229   
230   do_add_processing();
231 }
232
233 void
234 Score_element::calculate_dependencies (int final, int busy,
235                                        Score_element_method_pointer funcptr)
236 {
237   assert (status_i_ >=0);
238
239   if (status_i_ >= final)
240     return;
241
242   assert (status_i_!= busy);
243   status_i_= busy;
244
245   for (SCM d=  get_elt_property ("dependencies"); d != SCM_EOL; d = gh_cdr (d))
246     {
247       unsmob_element (gh_car (d))
248         ->calculate_dependencies (final, busy, funcptr);
249     }
250
251   (this->*funcptr)();
252   status_i_= final;
253 }
254
255 void
256 Score_element::output_processing () 
257 {
258   if (to_boolean  (get_elt_property ("transparent")))
259     return;
260
261   
262   Molecule m (do_brew_molecule ());
263   Offset o (relative_coordinate (0, X_AXIS), relative_coordinate (0, Y_AXIS));
264
265   SCM s = get_elt_property ("extra-offset");
266   if (gh_pair_p (s))
267     {
268       Real il = paper_l ()->get_var ("interline");
269       o[X_AXIS] += il * gh_scm2double (gh_car (s));
270       o[Y_AXIS] += il * gh_scm2double (gh_cdr (s));      
271     }
272   
273   pscore_l_->outputter_l_->output_molecule (m.expr_, o, classname(this));
274 }
275
276 /*
277   
278   VIRTUAL STUBS
279
280  */
281 void
282 Score_element::do_break_processing()
283 {
284 }
285
286 void
287 Score_element::after_line_breaking ()
288 {
289 }
290
291
292 void
293 Score_element::before_line_breaking ()
294 {
295 }
296
297 void
298 Score_element::do_space_processing ()
299 {
300 }
301
302 void
303 Score_element::do_add_processing()
304 {
305 }
306
307
308
309 Molecule 
310 Score_element::do_brew_molecule() const
311 {
312   SCM glyph = get_elt_property ("glyph");
313   if (gh_string_p (glyph))
314     {
315       return lookup_l ()->afm_find (String (ly_scm2string (glyph)));
316       
317     }
318   else
319     {
320       Molecule m ;
321       m.set_empty (true);
322       return m;
323     }
324 }
325
326
327 Line_of_score *
328 Score_element::line_l() const
329 {
330   return 0;
331 }
332
333 void
334 Score_element::add_dependency (Score_element*e)
335 {
336   if (e)
337     {
338       Group_interface gi (this, "dependencies");
339       gi.add_element (e);
340     }
341   else
342     programming_error ("Null dependency added");
343 }
344
345
346
347
348 /**
349       Do break substitution in S, using CRITERION. Return new value.
350       CRITERION is either a SMOB pointer to the desired line, or a number
351       representing the break direction. Do not modify SRC.
352 */
353 SCM
354 Score_element::handle_broken_smobs (SCM src, SCM criterion)
355 {
356  again:
357
358   
359   Score_element *sc = unsmob_element (src);
360   if (sc)
361     {
362       if (criterion == SCM_UNDEFINED)
363         return SCM_UNDEFINED;
364       else if (gh_number_p (criterion))
365         {
366           Item * i = dynamic_cast<Item*> (sc);
367           Direction d = to_dir (criterion);
368           if (i && i->break_status_dir () != d)
369             {
370               Item *br = i->find_broken_piece (d);
371               return  (br) ? br->self_scm_ : SCM_UNDEFINED;
372             }
373         }
374       else
375         {
376           Score_element * ln = unsmob_element ( criterion);
377           Line_of_score * line = dynamic_cast<Line_of_score*> (ln);
378           Score_element * br =0;
379           Line_of_score * dep_line = sc->line_l ();
380           if (dep_line != line)
381             {
382               br = sc->find_broken_piece (line);
383               return  (br) ?  br->self_scm_ : SCM_UNDEFINED;
384             }
385           if (!dep_line)
386             return SCM_UNDEFINED;
387         }
388     }
389   else if (gh_pair_p (src))
390     {
391       /*
392         UGH! breaks on circular lists.
393       */
394       SCM car = handle_broken_smobs (gh_car (src), criterion);
395       SCM cdr = gh_cdr (src);
396       
397       if (car == SCM_UNDEFINED
398           && (gh_pair_p (cdr) || cdr == SCM_EOL))
399         {
400           /*
401             This is tail-recursion, ie. 
402             
403             return handle_broken_smobs (cdr, criterion);
404
405             We don't want to rely on the compiler to do this.  */
406           src =  cdr;   
407           goto again;
408         }
409
410       return gh_cons (car, handle_broken_smobs (cdr, criterion));
411     }
412   else
413     return src;
414
415   return src;
416 }
417
418 void
419 Score_element::handle_broken_dependencies()
420 {
421   Spanner * s= dynamic_cast<Spanner*> (this);
422   if (original_l_ && s)
423     return;
424
425   if (s)
426     {
427       for (int i = 0;  i< s->broken_into_l_arr_ .size (); i++)
428         {
429           Score_element * sc = s->broken_into_l_arr_[i];
430           Line_of_score * l = sc->line_l ();
431           s->broken_into_l_arr_[i]->element_property_alist_ =
432             handle_broken_smobs (element_property_alist_,
433                                  l ? l->self_scm_ : SCM_UNDEFINED);
434         }
435     }
436
437   Line_of_score *line = line_l();
438   element_property_alist_
439     = handle_broken_smobs (element_property_alist_,
440                            line ? line->self_scm_ : SCM_UNDEFINED);
441 }
442
443
444 /*
445   TODO: cleanify.
446  */
447 void
448 Score_element::handle_prebroken_dependencies()
449 {
450   if (Item*i =dynamic_cast<Item*> (this))
451     {
452       if (original_l_)
453         {
454           element_property_alist_
455             = handle_broken_smobs (original_l_->element_property_alist_,
456                                gh_int2scm (i->break_status_dir ()));
457         }
458     }
459 }
460
461 bool
462 Score_element::linked_b() const
463 {
464   return used_b_;
465 }
466
467 void
468 Score_element::do_print () const
469 {
470 }
471
472 Score_element*
473 Score_element::find_broken_piece (Line_of_score*) const
474 {
475   return 0;
476 }
477
478 void
479 Score_element::translate_axis (Real y, Axis a)
480 {
481   dim_cache_[a]->translate (y);
482 }  
483
484 Real
485 Score_element::relative_coordinate (Score_element const*e, Axis a) const
486 {
487   return dim_cache_[a]->relative_coordinate (e ? e->dim_cache_[a] : 0);
488 }
489
490 Score_element * 
491 Score_element::common_refpoint (Score_element const* s, Axis a) const
492 {
493   Dimension_cache *dim = dim_cache_[a]->common_refpoint (s->dim_cache_[a]);
494   return  dim ? dim->element_l () : 0;
495 }
496
497 void
498 Score_element::set_empty (Axis a)
499 {
500   dim_cache_[a]->extent_callback_l_ =0;
501 }
502
503 bool
504 Score_element::empty_b (Axis a)const
505 {
506   return !dim_cache_[a]->extent_callback_l_;
507 }
508
509 Interval
510 Score_element::extent (Axis a) const
511 {
512   Dimension_cache const * d = dim_cache_[a];
513   Interval ext = d->get_dim ();
514
515   if (empty_b (a)) 
516     return ext;
517
518   SCM extra = get_elt_property (a == X_AXIS ? "extra-extent-X"
519                                 : "extra-extent-Y");
520
521
522   /*
523     signs ?
524    */
525   Real s = paper_l ()->get_var ("staffspace");
526   if (gh_pair_p (extra))
527     {
528       ext[BIGGER] +=  s * gh_scm2double (gh_cdr (extra));
529       ext[SMALLER] +=  s * gh_scm2double (gh_car (extra));
530     }
531   
532   extra = get_elt_property (a == X_AXIS
533                                 ? "minimum-extent-X"
534                                 : "minimum-extent-Y");
535   if (gh_pair_p (extra))
536     {
537       ext.unite (Interval (s * gh_scm2double (gh_car (extra)),
538                            s * gh_scm2double (gh_cdr (extra))));
539
540     }
541   
542   return ext;
543 }
544
545
546 Score_element*
547 Score_element::parent_l (Axis a) const
548 {
549   Dimension_cache*d= dim_cache_[a]->parent_l_;
550   return d ? d->elt_l_ : 0;
551 }
552
553 Score_element *
554 Score_element::common_refpoint (Link_array<Score_element> gs, Axis a) const
555 {
556   Dimension_cache * common = dim_cache_[a];
557   for (int i=0; i < gs.size (); i++)
558     {
559       common = common->common_refpoint (gs[i]->dim_cache_[a]);
560     }
561
562   return common->element_l ();
563 }
564
565 char const *
566 Score_element::name () const
567 {
568   return classname (this);
569 }
570
571 void
572 Score_element::add_offset_callback (Offset_cache_callback cb, Axis a)
573 {
574   dim_cache_[a]->off_callbacks_.push (cb);
575 }
576
577 bool
578 Score_element::has_offset_callback_b (Offset_cache_callback cb, Axis a)const
579 {
580   for (int i= dim_cache_[a]->off_callbacks_.size (); i--;)
581     {
582       if (dim_cache_[a]->off_callbacks_[i] == cb)
583         return true;
584     }
585   return false;
586 }
587
588 void
589 Score_element::set_parent (Score_element *g, Axis a)
590 {
591   dim_cache_[a]->parent_l_ = g ? g->dim_cache_[a]: 0;
592 }
593
594 void
595 Score_element::fixup_refpoint ()
596 {
597   for (int a = X_AXIS; a < NO_AXES; a ++)
598     {
599       Axis ax = (Axis)a;
600       Score_element * parent = parent_l (ax);
601
602       if (!parent)
603         continue;
604       
605       if (parent->line_l () != line_l () && line_l ())
606         {
607           Score_element * newparent = parent->find_broken_piece (line_l ());
608           set_parent (newparent, ax);
609           if (!newparent)
610             {
611               programming_error ("Orphaned score-element.");
612             }
613         }
614
615       if (Item * i  = dynamic_cast<Item*> (this))
616         {
617           Item *parenti = dynamic_cast<Item*> (parent);
618
619           if (parenti && i)
620             {
621               Direction  my_dir = i->break_status_dir () ;
622               if (my_dir!= parenti->break_status_dir())
623                 {
624                   Item *newparent =  parenti->find_broken_piece (my_dir);
625                   set_parent (newparent, ax);
626                 }
627             }
628         }
629     }
630 }
631
632
633
634 /****************************************************
635   SMOB funcs
636  ****************************************************/
637
638
639 #include "ly-smobs.icc"
640
641 IMPLEMENT_UNSMOB(Score_element, element);
642 IMPLEMENT_SMOBS(Score_element);
643 SCM
644 Score_element::mark_smob (SCM ses)
645 {
646   Score_element * s = SMOB_TO_TYPE (Score_element, ses);
647   if (s->self_scm_ != ses)
648     {
649       programming_error ("SMOB marking gone awry");
650       return SCM_EOL;
651     }
652   return s->element_property_alist_;
653 }
654
655 int
656 Score_element::print_smob (SCM s, SCM port, scm_print_state *)
657 {
658   Score_element *sc = (Score_element *) gh_cdr (s);
659      
660   scm_puts ("#<Score_element ", port);
661   scm_puts ((char *)sc->name (), port);
662
663   /*
664     don't try to print properties, that is too much hassle.
665    */
666   scm_puts (" >", port);
667   return 1;
668 }
669
670 void
671 Score_element::do_smobify_self ()
672 {
673 }
674
675 SCM
676 Score_element::equal_p (SCM a, SCM b)
677 {
678   return gh_cdr(a) == gh_cdr(b) ? SCM_BOOL_T : SCM_BOOL_F;
679 }
680
681
682 SCM
683 Score_element::ly_set_elt_property (SCM elt, SCM sym, SCM val)
684 {
685   Score_element * sc = unsmob_element (elt);
686
687   if (!gh_symbol_p (sym))
688     {
689       error ("Not a symbol");
690       ly_display_scm (sym);
691       return SCM_UNDEFINED;
692     }
693
694   if (sc)
695     {
696       sc->element_property_alist_ = scm_assoc_set_x (sc->element_property_alist_, sym, val);
697     }
698   else
699     {
700       error ("Not a score element");
701       ly_display_scm (elt);
702     }
703
704   return SCM_UNDEFINED;
705 }
706
707
708 SCM
709 Score_element::ly_get_elt_property (SCM elt, SCM sym)
710 {
711   Score_element * sc = unsmob_element (elt);
712   
713   if (sc)
714     {
715       SCM s = scm_assq(sym, sc->element_property_alist_);
716
717       if (s != SCM_BOOL_F)
718         return gh_cdr (s); 
719       else
720         return SCM_UNDEFINED;
721     }
722   else
723     {
724       error ("Not a score element");
725       ly_display_scm (elt);
726     }
727   return SCM_UNDEFINED;
728 }
729
730
731 static void
732 init_functions ()
733 {
734   scm_make_gsubr ("ly-get-elt-property", 2, 0, 0, (SCM(*)(...))Score_element::ly_get_elt_property);
735   scm_make_gsubr ("ly-set-elt-property", 3, 0, 0, (SCM(*)(...))Score_element::ly_set_elt_property);
736 }
737
738 ADD_SCM_INIT_FUNC(scoreelt, init_functions);
739
740 void
741 Score_element::do_breakable_col_processing ()
742 {
743 }