lilypond-1.3.74
[lilypond.git] / lily / property-engraver.cc
blob35d19d162a5e2580603f9ca8c5c45b9f37738d14
1 /*
2 property-engraver.cc -- implement Property engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "lily-guile.hh"
11 #include "engraver.hh"
12 #include "protected-scm.hh"
13 #include "dictionary.hh"
14 #include "score-element.hh"
15 #include "scm-hash.hh"
17 class Property_engraver : public Engraver
20 UGH. Junk Dictionary
22 Scheme_hash_table prop_dict_; // junkme
23 void apply_properties (SCM, Score_element*);
25 protected:
26 virtual void acknowledge_element (Score_element_info ei);
27 virtual void do_creation_processing ();
29 VIRTUAL_COPY_CONS(Translator);
32 void
33 Property_engraver::do_creation_processing ()
35 SCM plist = get_property ("Generic_property_list");
36 for (; gh_pair_p (plist); plist = gh_cdr (plist))
38 SCM elt_props = gh_car (plist);
39 prop_dict_.set (gh_car (elt_props), gh_cdr (elt_props));
43 void
44 Property_engraver::acknowledge_element (Score_element_info i)
46 SCM ifs = i.elem_l_->get_elt_property ("interfaces");
47 SCM props;
48 for (; gh_pair_p (ifs); ifs = gh_cdr (ifs))
50 if (prop_dict_.try_retrieve (gh_car (ifs), &props))
52 apply_properties (props,i.elem_l_);
56 if (prop_dict_.try_retrieve (ly_symbol2scm ("all"), &props))
58 apply_properties (props, i.elem_l_);
63 void
64 Property_engraver::apply_properties (SCM p, Score_element *e)
66 for (; gh_pair_p (p); p = gh_cdr (p))
69 Try each property in order; earlier descriptions take
70 precedence over later ones, and we don't touch elt-properties if
71 they're already set.
74 SCM entry = gh_car (p);
75 SCM prop_sym = gh_car (entry);
76 SCM type_p = gh_cadr (entry);
77 SCM elt_prop_sym = gh_caddr (entry);
79 SCM preset = e->get_elt_property (elt_prop_sym); // scm_assq(elt_prop_sym, e->property_alist_);
80 if (preset != SCM_EOL)
81 continue;
83 SCM val = get_property (prop_sym);
85 if (val == SCM_UNDEFINED)
86 ; // Not defined in context.
87 else if (gh_apply (type_p, scm_listify (val, SCM_UNDEFINED))
88 == SCM_BOOL_T) // defined and right type: do it
89 e->set_elt_property (elt_prop_sym, val);
90 else
93 we don't print a warning if VAL == #f, because we would
94 get lots of warnings when we restore stuff to default, eg.
96 slurDash = #1 [...] slurDash = ##f
98 should not cause "type error: slurDash expects number not
99 boolean"
102 if (val != SCM_BOOL_F)
103 { // not the right type: error message.
104 SCM errport = scm_current_error_port ();
105 warning (_("Wrong type for property"));
106 scm_display (prop_sym, errport);
107 scm_puts (", type predicate: ", errport);
108 scm_display (type_p, errport);
109 scm_puts (", value found: ", errport);
110 scm_display (val, errport);
111 scm_puts (" type: ", errport);
112 scm_display (ly_type (val), errport);
113 scm_puts ("\n", errport);
118 ADD_THIS_TRANSLATOR(Property_engraver);