]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/musical-request.hh
release: 1.0.8
[lilypond.git] / lily / include / musical-request.hh
index 64328afc97688b28d6875fc88c979f0a88d9e179..d7bce858fa661e0984ee2f96b69a89e2e5b09716 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
@@ -13,7 +13,7 @@
 #include "lily-proto.hh"
 #include "request.hh"
 #include "duration.hh"
-
+#include "musical-pitch.hh"
 
 /**
   A request which is coupled to a #Request_chord#
  */
 class Musical_req  : public virtual Request  {
 public:
-    
-  virtual Lyric_req* lreq_l() { return 0; }
-  virtual Note_req *note() { return 0;}
-  virtual Stem_req *stem() { return 0;}
-  virtual Melodic_req *melodic() { return 0; }
-  virtual Slur_req *slur() { return 0 ; }
-  virtual Beam_req *beam() { return 0 ; }
-  virtual Rhythmic_req*rhythmic() { return 0; }
-  virtual Musical_script_req*musicalscript() { return 0; }
-  virtual Text_req*text() { return 0; }
-  virtual Rest_req *rest() { return 0; }
-  virtual Skip_req* skip() { return 0; }
-  virtual Dynamic_req* dynamic() { return 0; }
-  virtual Absolute_dynamic_req * absdynamic() { return 0; }
-  virtual Tie_req * tie() { return 0; }
-  virtual Span_dynamic_req * span_dynamic() { return 0; }
-  REQUESTMETHODS(Musical_req, musical);
+
+  DEFAULTACCESSOR(Lyric_req)
+  DEFAULTACCESSOR(Note_req )
+  DEFAULTACCESSOR(Stem_req )
+  DEFAULTACCESSOR(Melodic_req )
+  DEFAULTACCESSOR(Slur_req )
+  DEFAULTACCESSOR(Beam_req )
+  DEFAULTACCESSOR(Abbreviation_beam_req)
+  DEFAULTACCESSOR(Rhythmic_req)
+  DEFAULTACCESSOR(Musical_script_req)
+  DEFAULTACCESSOR(Text_req)
+  DEFAULTACCESSOR(Rest_req )
+  DEFAULTACCESSOR(Skip_req)
+  DEFAULTACCESSOR(Dynamic_req)
+  DEFAULTACCESSOR(Absolute_dynamic_req )
+  DEFAULTACCESSOR(Tie_req )
+  DEFAULTACCESSOR(Plet_req)
+  DEFAULTACCESSOR(Span_dynamic_req )
+  DEFAULTACCESSOR(Abbreviation_req)
+  DEFAULTACCESSOR(Multi_measure_rest_req)
+  REQUESTMETHODS(Musical_req);
 };
 
 
@@ -55,26 +59,32 @@ public:
   virtual Moment duration() const;
   Rhythmic_req();
   static int compare (Rhythmic_req const&,Rhythmic_req const&);
-  REQUESTMETHODS(Rhythmic_req, rhythmic);
+  REQUESTMETHODS(Rhythmic_req);
 };
 
 class Skip_req  : public Rhythmic_req  {
 public:
-  REQUESTMETHODS(Skip_req, skip);
+  REQUESTMETHODS(Skip_req);
 };
+
 struct Spacing_req :virtual Request {
   Moment next;
   Real distance;
   Real strength;
   /* *************** */
   Spacing_req();
-  REQUESTMETHODS(Spacing_req, spacing);
+  REQUESTMETHODS(Spacing_req);
+};
+
+struct Abbreviation_req : public Musical_req {
+  REQUESTMETHODS (Abbreviation_req);
+  Abbreviation_req ();
+  int type_i_;
 };
 
 class Blank_req  : public Spacing_req, Rhythmic_req  {
 public:
-  REQUESTMETHODS(Spacing_req, spacing);
-    
+  REQUESTMETHODS(Spacing_req);
 };
 
 /// Put a text above or below (?) this staff.
@@ -90,40 +100,29 @@ public:
   ~Text_req();
   Text_req (Text_req const&);
 
-  REQUESTMETHODS(Text_req,text);
+  REQUESTMETHODS(Text_req);
 };
 
-/** Put a text in lyric_staff
-  @see Lyric_staff
+/** a syllable  or lyric is a string with rhythm.
   */
-class Lyric_req  : public  Rhythmic_req, public Text_req  {
+class Lyric_req  : public  Rhythmic_req  {
 public:
-  Lyric_req (Text_def* t_p);
-  REQUESTMETHODS(Lyric_req, lreq_l);
+  String text_str_;
+  REQUESTMETHODS(Lyric_req);
 };
 
+
+
 /// request which has some kind of pitch
 struct Melodic_req :virtual Musical_req
 {
-  /// 0 is c, 6 is b
-  int notename_i_;
-  /// 0 is central c
-  int octave_i_;
-
-    /// 0 natural, 1 sharp, etc
-  int accidental_i_;
-
-  /// return height from central c (in halflines)
-  int height() const;
-
+  Musical_pitch pitch_;
   /// transpose. #delta# is relative to central c.
-  void transpose (Melodic_req const &delta);
-  /// return pitch from central c (in halfnotes)
-  int pitch() const; 
+  virtual void transpose (Musical_pitch delta);
   Melodic_req();
   bool do_equal_b (Request*) const;
   static int compare (Melodic_req const&,Melodic_req const&);
-  REQUESTMETHODS(Melodic_req,melodic);
+  REQUESTMETHODS(Melodic_req);
 };
 
 /// Put a note of specified type, height, and with accidental on the staff.
@@ -134,8 +133,8 @@ public:
   bool forceacc_b_;
   Note_req();
   bool do_equal_b (Request*) const;
-  Rhythmic_req* rhythmic() { return Rhythmic_req::rhythmic (); }
-  REQUESTMETHODS(Note_req, note);
+  Rhythmic_req* access_Rhythmic_req () { return Rhythmic_req::access_Rhythmic_req (); }
+  REQUESTMETHODS(Note_req);
 };
 
 /**
@@ -143,10 +142,18 @@ Put a rest on the staff. Why a request? It might be a good idea to not typeset t
 */
 class Rest_req : public Rhythmic_req {
 public:
-  REQUESTMETHODS(Rest_req,rest);
+  REQUESTMETHODS(Rest_req);
 };
 
+/**
+ Part: typeset a measure with the number of measures rest
+ Score: typeset all individual measures ass full rests
+ */
+class Multi_measure_rest_req : public Rhythmic_req  {
+public:
+  REQUESTMETHODS(Multi_measure_rest_req);
 
+};
 
 /**
   Requests to start or stop something.
@@ -155,72 +162,98 @@ public:
 class Span_req  : public virtual Musical_req  {
 public:
   /// should the spanner start or stop, or is it unwanted?
-  enum {
+  enum Spantype {
     NOSPAN, START, STOP
-  } spantype ;
+  } spantype;
   bool do_equal_b (Request*) const;
-  REQUESTMETHODS(Span_req,span);
+  REQUESTMETHODS(Span_req);
 
   Span_req();
   
 };
 
-/** Start / stop a beam at this note.  if #nplet# is set, the staff
-will try to put an appropriate number over the beam */
+/** Start / stop a beam at this note */
 class Beam_req  : public Span_req  {
 public:
-  int nplet;
-
   /* *************** */
-  REQUESTMETHODS(Beam_req,beam);
+  REQUESTMETHODS(Beam_req);
 
   Beam_req();
 };
 
+/** 
+ Start / stop an abbreviation beam at this note. 
+ */
+class Abbreviation_beam_req : public Span_req  {
+public:
+  REQUESTMETHODS (Abbreviation_beam_req);
+
+  Abbreviation_beam_req ();
+
+  int type_i_;
+};
+
 /**
-  Start a tie at this voice element, end it at the next
+  Start a tie at this note, end it at the next
  */
 class Tie_req : public Musical_req {
 public:
-  REQUESTMETHODS(Tie_req, tie);
+  REQUESTMETHODS(Tie_req);
 };
 
 /// a slur
 class Slur_req  : public Span_req  {
 public:
-  REQUESTMETHODS(Slur_req,slur);
+  REQUESTMETHODS(Slur_req);
 
 };
 
+/// a plet (bracket with) number
+class Plet_req : public Span_req  {
+public:
+  int plet_i_;
+
+  REQUESTMETHODS(Plet_req);
+  Plet_req ();
+};
+
 class Musical_script_req : public Musical_req,  public Script_req {
 public:
-  REQUESTMETHODS(Musical_script_req, musicalscript);
+  REQUESTMETHODS(Musical_script_req);
 };
 
 
 class Dynamic_req  : public virtual Musical_req  {
 public:
-  /// for absolute dynamics
+  /**
+    for absolute dynamics
+
+    This sux. We'd want increasing numbers for FFF till PPP, but not 
+    for FP, SF, SFZ (FP is *not* louder than FFF)
+   */
   enum Loudness {
-    FFF, FF, F, MF, MP, P, PP, PPP
+    FFF, FF, F, MF, MP, P, PP, PPP, FP, SF, SFZ
   };
-  static String loudness_str (Loudness);
-  REQUESTMETHODS(Dynamic_req, dynamic);
+  static String loudness_static_str (Loudness);
+  REQUESTMETHODS(Dynamic_req);
 };
 
 class Absolute_dynamic_req  : public Dynamic_req  {
 public:
   Loudness loudness_;
+  virtual bool do_equal_b (Request*) const;
+  String loudness_str () const;
   Absolute_dynamic_req();
-  REQUESTMETHODS(Absolute_dynamic_req, absdynamic);
+  REQUESTMETHODS(Absolute_dynamic_req);
 };
 
 class Span_dynamic_req  : public Dynamic_req, public Span_req  {
 public:
+  virtual bool do_equal_b (Request*) const;
   /// Grow or shrink the volume: 1=cresc, -1 = decresc 
   Direction dynamic_dir_;
   Span_dynamic_req();
-  REQUESTMETHODS(Span_dynamic_req, span_dynamic);
+  REQUESTMETHODS(Span_dynamic_req);
 };
 
 #endif // MUSICALREQUESTS_HH