summaryrefslogtreecommitdiff
path: root/lily/part-combine-engraver.cc
blob: 33c10f59660cb77ff2a674656168ae7d1d19a951 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
  This file is part of LilyPond, the GNU music typesetter.

  Copyright (C) 2000--2015 Jan Nieuwenhuizen <janneke@gnu.org>

  Han-Wen Nienhuys <hanwen@xs4all.nl>

  LilyPond is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  LilyPond is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "engraver.hh"
#include "note-head.hh"
#include "side-position-interface.hh"
#include "stem.hh"
#include "stream-event.hh"
#include "text-interface.hh"
#include "item.hh"

#include "translator.icc"

class Part_combine_engraver : public Engraver
{
  TRANSLATOR_DECLARATIONS (Part_combine_engraver);

protected:
  void acknowledge_note_head (Grob_info);
  void acknowledge_stem (Grob_info);

  void listen_part_combine (Stream_event *);
  void listen_note (Stream_event *);
  void process_music ();
  void stop_translation_timestep ();
  void create_item (Stream_event *ev);

private:
  Item *text_;
  Stream_event *new_event_; // Event happened at this moment
  bool note_found_;
  // Event possibly from an earlier moment waiting to create a text:
  Stream_event *waiting_event_;
};

void
Part_combine_engraver::listen_part_combine (Stream_event *ev)
{
  ASSIGN_EVENT_ONCE (new_event_, ev);
  // If two events occur at the same moment, discard the second as the
  // warning indicates:
  waiting_event_ = new_event_;
}

void
Part_combine_engraver::listen_note (Stream_event *)
{
  note_found_ = true;
}

Part_combine_engraver::Part_combine_engraver ()
{
  text_ = 0;
  new_event_ = 0;
  waiting_event_ = 0;
  note_found_ = false;
}

void
Part_combine_engraver::create_item (Stream_event *ev)
{
  SCM what = scm_car (ev->get_property ("class"));
  SCM text = SCM_EOL;
  if (scm_is_eq (what, ly_symbol2scm ("solo-one-event")))
    text = get_property ("soloText");
  else if (scm_is_eq (what, ly_symbol2scm ("solo-two-event")))
    text = get_property ("soloIIText");
  else if (scm_is_eq (what, ly_symbol2scm ("unisono-event")))
    text = get_property ("aDueText");

  if (Text_interface::is_markup (text))
    {
      text_ = make_item ("CombineTextScript", ev->self_scm ());
      text_->set_property ("text", text);
    }
}

void
Part_combine_engraver::process_music ()
{
  if (waiting_event_
      && to_boolean (get_property ("printPartCombineTexts")))
    {
      if (note_found_ || !to_boolean (get_property ("partCombineTextsOnNote")))
        {
          create_item (waiting_event_);
          waiting_event_ = 0;
        }
    }
}

void
Part_combine_engraver::acknowledge_note_head (Grob_info i)
{
  if (text_)
    {
      Grob *t = text_;
      Side_position_interface::add_support (t, i.grob ());
      if (Side_position_interface::get_axis (t) == X_AXIS
          && !t->get_parent (Y_AXIS))
        t->set_parent (i.grob (), Y_AXIS);
    }
}

void
Part_combine_engraver::acknowledge_stem (Grob_info i)
{
  if (text_)
    Side_position_interface::add_support (text_, i.grob ());
}

void
Part_combine_engraver::stop_translation_timestep ()
{
  text_ = 0;
  new_event_ = 0;
  note_found_ = false;
}

void
Part_combine_engraver::boot ()
{
  ADD_LISTENER (Part_combine_engraver, part_combine);
  ADD_LISTENER (Part_combine_engraver, note);
  ADD_ACKNOWLEDGER (Part_combine_engraver, note_head);
  ADD_ACKNOWLEDGER (Part_combine_engraver, stem);
}

ADD_TRANSLATOR (Part_combine_engraver,
                /* doc */
                "Part combine engraver for orchestral scores: Print markings"
                " @q{a2}, @q{Solo}, @q{Solo II}, and @q{unisono}.",

                /* create */
                "CombineTextScript ",

                /* read */
                "printPartCombineTexts "
                "partCombineTextsOnNote "
                "soloText "
                "soloIIText "
                "aDueText ",

                /* write */
                ""
               );