*** empty log message ***
[lilypond.git] / lily / tab-note-heads-engraver.cc
blob91513e4485373f350ed523711bc3fee427d36a34
1 /*
2 head-grav.cc -- part of GNU LilyPond
4 (c) 1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5 */
6 #include <ctype.h>
7 #include <stdio.h>
9 #include "rhythmic-head.hh"
10 #include "paper-def.hh"
11 #include "event.hh"
12 #include "dots.hh"
13 #include "dot-column.hh"
14 #include "staff-symbol-referencer.hh"
15 #include "item.hh"
16 #include "score-engraver.hh"
17 #include "warn.hh"
19 /**
20 make (guitar-like) tablature note
22 class Tab_note_heads_engraver : public Engraver
24 Link_array<Item> notes_;
26 Link_array<Item> dots_;
27 Link_array<Music> note_reqs_;
28 Link_array<Music> tabstring_reqs_;
29 public:
30 TRANSLATOR_DECLARATIONS(Tab_note_heads_engraver);
32 protected:
33 virtual void start_translation_timestep ();
34 virtual bool try_music (Music *req) ;
35 virtual void process_music ();
37 virtual void stop_translation_timestep ();
41 Tab_note_heads_engraver::Tab_note_heads_engraver()
45 bool
46 Tab_note_heads_engraver::try_music (Music *m)
48 if (m->is_mus_type ("note-event"))
50 note_reqs_.push (m);
51 return true;
53 else if (m->is_mus_type ("string-number-event"))
55 while(tabstring_reqs_.size () < note_reqs_.size ()-1)
56 tabstring_reqs_.push(0);
58 tabstring_reqs_.push (m);
59 return true;
61 else if (m->is_mus_type ("busy-playing-event"))
63 return note_reqs_.size ();
66 return false;
70 void
71 Tab_note_heads_engraver::process_music ()
73 for (int i=0; i < note_reqs_.size (); i++)
75 SCM stringTunings = get_property ("stringTunings");
76 int number_of_strings = ((int) gh_length(stringTunings));
77 bool high_string_one = to_boolean(get_property ("highStringOne"));
79 Item * note = new Item (get_property ("TabNoteHead"));
81 Music * req = note_reqs_[i];
83 Music * tabstring_req = 0;
84 if(tabstring_reqs_.size()>i)
85 tabstring_req = tabstring_reqs_[i];
86 // printf("%d %d\n",tabstring_reqs_.size(),i);
87 // size_t lenp;
88 int tab_string;
89 bool string_found;
90 if (tabstring_req) {
91 //char* tab_string_as_string = gh_scm2newstr(tabstring_req->get_mus_property ("text"), &lenp);
92 //tab_string = atoi(tab_string_as_string);
93 tab_string = gh_scm2int(tabstring_req->get_mus_property ("string-number"));
94 string_found = true;
96 else {
97 tab_string = high_string_one ? 1 : number_of_strings;
98 string_found = false;
101 Duration dur = *unsmob_duration (req->get_mus_property ("duration"));
103 note->set_grob_property ("duration-log", gh_int2scm (dur.duration_log ()));
105 if (dur.dot_count ())
107 Item * d = new Item (get_property ("Dots"));
108 Rhythmic_head::set_dots (note, d);
110 if (dur.dot_count ()
111 != gh_scm2int (d->get_grob_property ("dot-count")))
112 d->set_grob_property ("dot-count", gh_int2scm (dur.dot_count ()));
114 d->set_parent (note, Y_AXIS);
115 announce_grob (d, SCM_EOL);
116 dots_.push (d);
120 SCM scm_pitch = req->get_mus_property ("pitch");
121 SCM proc = get_property ("tablatureFormat");
122 SCM min_fret_scm = get_property ("minimumFret");
123 int min_fret = gh_number_p(min_fret_scm) ? gh_scm2int(min_fret_scm) : 0;
125 while(!string_found) {
126 int fret = unsmob_pitch(scm_pitch)->semitone_pitch()
127 - gh_scm2int(gh_list_ref(stringTunings,gh_int2scm(tab_string-1)));
128 if(fret<min_fret)
129 tab_string += high_string_one ? 1 : -1;
130 else
131 string_found = true;
134 SCM text = gh_call3 (proc, gh_int2scm (tab_string), stringTunings, scm_pitch);
136 int pos = 2 * tab_string - number_of_strings - 1; // No tab-note between the string !!!
137 if(to_boolean(get_property("stringOneTopmost")))
138 pos = -pos;
140 note->set_grob_property ("text", text);
142 note->set_grob_property ("staff-position", gh_int2scm (pos));
143 announce_grob (note, req->self_scm());
144 notes_.push (note);
148 void
149 Tab_note_heads_engraver::stop_translation_timestep ()
151 for (int i=0; i < notes_.size (); i++)
153 typeset_grob (notes_[i]);
156 notes_.clear ();
157 for (int i=0; i < dots_.size (); i++)
159 typeset_grob (dots_[i]);
161 dots_.clear ();
163 note_reqs_.clear ();
165 tabstring_reqs_.clear ();
168 void
169 Tab_note_heads_engraver::start_translation_timestep ()
174 ENTER_DESCRIPTION(Tab_note_heads_engraver,
175 /* descr */ "Generate one or more tablature noteheads from Music of type Note_req.",
176 /* creats*/ "TabNoteHead Dots",
177 /* accepts */ "note-event string-number-event busy-playing-event",
178 /* acks */ "",
179 /* reads */ "centralCPosition stringTunings minimumFret tablatureFormat highStringOne stringOneTopmost",
180 /* write */ "");