]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/slur-engraver.hh
Release: bump Welcome versions.
[lilypond.git] / lily / include / slur-engraver.hh
index f639783421bc095a6ba6cf8f997cec2277ece4d0..1885625ed91f6d5baca19f3e8f08781f8d35fbf0 100644 (file)
@@ -1,33 +1,75 @@
 /*
-  slur-engraver.hh -- declare Slur_engraver
+  This file is part of LilyPond, the GNU music typesetter.
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
+  Copyright (C) 2013--2015 Mike Solomon <mike@mikesolomon.org>
+  Copyright (C) 2016 David Kastrup <dak@gnu.org>
 
+  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.
 
-#ifndef SLURGRAV_HH
-#define SLURGRAV_HH
+  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.
 
-#include "engraver.hh"
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
-class Slur_engraver :public Engraver {
-  Link_array<Span_req> requests_arr_;
-  Link_array<Span_req> new_slur_req_l_arr_;
-  Link_array<Slur> slur_l_stack_;
-  Link_array<Slur> end_slur_l_arr_;
+#ifndef SLUR_ENGRAVER_HH
+#define SLUR_ENGRAVER_HH
 
-  void set_melisma (bool);
+#include "engraver.hh"
+#include <map>
+
+class Slur_engraver : public Engraver
+{
 protected:
-  virtual bool do_try_music (Music*);
-  virtual void do_process_music();
-  virtual void acknowledge_element (Score_element_info);
-  virtual void do_pre_move_processing();
-  virtual void do_post_move_processing();
-  virtual void do_removal_processing ();
+  struct Event_info {
+    Stream_event *slur_, *note_;
+    Event_info (Stream_event *slur, Stream_event *note)
+      : slur_ (slur), note_ (note)
+    { }
+  };
+  // protected so that subclasses can see them
+  vector<Event_info> start_events_;
+  vector<Event_info> stop_events_;
+
+  typedef std::multimap<Stream_event *, Spanner *> Note_slurs;
+  Drul_array<Note_slurs> note_slurs_;
+  vector<Grob *> slurs_;
+  vector<Grob *> end_slurs_;
+  vector<Grob_info> objects_to_acknowledge_;
+
+  virtual SCM event_symbol () const;
+  virtual bool double_property () const;
+  virtual SCM grob_symbol () const;
+  virtual const char* object_name () const;
+
+  void acknowledge_note_column (Grob_info);
+  void acknowledge_script (Grob_info);
+
+  void listen_note (Stream_event *ev);
+  // A slur on an in-chord note is not actually announced as an event
+  // but rather produced by the note listener.
+  void listen_note_slur (Stream_event *ev, Stream_event *note);
+  void listen_slur (Stream_event *ev) { listen_note_slur (ev, 0); }
+  void acknowledge_extra_object (Grob_info);
+  void stop_translation_timestep ();
+  void process_music ();
+
+  bool can_create_slur (SCM, vsize, vsize *, Stream_event *);
+  void create_slur (SCM spanner_id, Event_info evi, Grob *g_cause, Direction dir, bool left_broken);
+  bool try_to_end (Event_info evi);
+
+  virtual void set_melisma (bool);
+  virtual void finalize ();
+  virtual void derived_mark () const;
 
 public:
-  VIRTUAL_COPY_CONS(Translator);
-  
+  TRANSLATOR_DECLARATIONS (Slur_engraver);
 };
 
-#endif // SLURGRAV_HH
+#endif // SLUR_ENGRAVER_HH