]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/musical-request.hh
release: 1.1.66
[lilypond.git] / lily / include / musical-request.hh
index 782541d68925c7222f945442ff3d1ca55df2715b..cf583c1b99556ebb3b047630071d65d3a58bdf4d 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #include "lily-proto.hh"
 #include "request.hh"
 #include "duration.hh"
-
-
-/**
-  A request which is coupled to a #Request_chord#
-  Base class only
- */
-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);
-};
-
+#include "musical-pitch.hh"
 
 
 /** a request with a duration.
-  This request is used only a base class.
+  This request is used only used as a base class.
  */
-class Rhythmic_req  : public virtual Musical_req  {
+class Rhythmic_req  : public virtual Request  {
 public:
-    Duration duration_;
-    
-    /* *************** */
-    void set_duration(Duration);
-    static int compare(const Rhythmic_req &, const Rhythmic_req &);
-    virtual Moment duration() const;
-    Rhythmic_req();
-    REQUESTMETHODS(Rhythmic_req, rhythmic);
+  Duration duration_;
+  virtual void do_print () const;
+
+  bool do_equal_b (Request*) const;
+  void compress (Moment);
+  virtual Moment length_mom () const;
+  static int compare (Rhythmic_req const&,Rhythmic_req const&);
+  VIRTUAL_COPY_CONS(Music);
 };
 
 class Skip_req  : public Rhythmic_req  {
 public:
-    REQUESTMETHODS(Skip_req, skip);
+  VIRTUAL_COPY_CONS(Music);
 };
-struct Spacing_req :virtual Request {
-    Moment next;
-    Real distance;
-    Real strength;
-    /* *************** */
-    Spacing_req();
-    REQUESTMETHODS(Spacing_req, spacing);
+
+
+struct Tremolo_req : public Request {
+  VIRTUAL_COPY_CONS (Music);
+  Tremolo_req ();
+  int type_i_;
+  virtual void do_print () const;
 };
 
-class Blank_req  : public Spacing_req, Rhythmic_req  {
+
+/** a syllable  or lyric is a string with rhythm.
+  */
+class Lyric_req  : public  Rhythmic_req  {
 public:
-    REQUESTMETHODS(Spacing_req, spacing);
-    
+  virtual void do_print () const;
+  String text_str_;
+  VIRTUAL_COPY_CONS(Music);
 };
 
-/// Put a text above or below (?) this staff.
-class Text_req  : public virtual Musical_req  {
-public:
-    /// preferred position (above/below)
-    int dir_i_;
-    /// the characteristics of the text
-    Text_def *tdef_p_;
 
-    /* *************** */
-    Text_req(int d, Text_def*);
-    ~Text_req();
-    Text_req(Text_req const&);
-    static int compare(const Text_req&,const Text_req&);
-    REQUESTMETHODS(Text_req,text);
+class Articulation_req : public Script_req
+{
+public:
+  String articulation_str_;
+protected:
+  virtual bool do_equal_b (Request*) const;
+  virtual void do_print () const;
+  VIRTUAL_COPY_CONS(Music);
 };
 
-/** Put a text in lyric_staff
-  @see Lyric_staff
-  */
-class Lyric_req  : public  Rhythmic_req, public Text_req  {
+class Text_script_req : public Script_req {
 public:
-    Lyric_req(Text_def* t_p);
-    REQUESTMETHODS(Lyric_req, lreq_l);
+  String text_str_;
+
+  // should be generic property of some kind.. 
+  String style_str_;
+protected:
+  VIRTUAL_COPY_CONS(Music);
+  virtual bool do_equal_b (Request*)const;
+  virtual void do_print () const;
 };
 
+
 /// request which has some kind of pitch
-struct Melodic_req :virtual Musical_req
+struct Melodic_req :virtual Request
 {
-    /// 0 is c, 6 is b
-    int notename_i_;
-    /// 0 is central c
-    int octave_i_;
-
-    /// 0 natural, 1 sharp, etc
-    int accidental_i_;
+  Musical_pitch pitch_;
 
-    /// return height from central c (in halflines)
-    int height()const;
+  static int compare (Melodic_req const&,Melodic_req const&);
+  
+protected:
+  /// transpose. #delta# is relative to central c.
+  virtual void transpose (Musical_pitch delta);
+  virtual bool do_equal_b (Request*) const;
+  virtual void do_print () const;
+  VIRTUAL_COPY_CONS(Music);
+};
 
-    /// transpose. #delta# is relative to central c.
-    void transpose(Melodic_req const &delta);
-    /// return pitch from central c (in halfnotes)
-    int pitch()const; 
-    Melodic_req();
-    static int compare(Melodic_req const&, Melodic_req const&);
-   
-    REQUESTMETHODS(Melodic_req,melodic);
+/// specify tonic of a chord
+struct Tonic_req : public Melodic_req
+{
+  VIRTUAL_COPY_CONS(Music);
 };
 
 /// Put a note of specified type, height, and with accidental on the staff.
 class Note_req  : public Rhythmic_req, virtual public Melodic_req  {
 public:
     
-    /// force/supress printing of accidental.
-    bool forceacc_b_;
-    Note_req();
-    Rhythmic_req* rhythmic() { return Rhythmic_req::rhythmic(); }
-    REQUESTMETHODS(Note_req, note);
- };
+  /// force/supress printing of accidental.
+  bool forceacc_b_;
+  /// Cautionary, i.e. parenthesized accidental.
+  bool cautionary_b_;
+  Note_req();
+protected:
+  virtual void do_print () const;
+  bool do_equal_b (Request*) const;
+  VIRTUAL_COPY_CONS(Music);
+};
 
 /**
 Put a rest on the staff. Why a request? It might be a good idea to not typeset the rest, if the paper is too crowded.
 */
 class Rest_req : public Rhythmic_req {
 public:
-    REQUESTMETHODS(Rest_req,rest);
+  VIRTUAL_COPY_CONS(Music);
 };
 
 /**
-  attach a stem to the noteball.
-  Rhythmic_req parent needed to  determine if it will fit inside a beam.
 */
-class Stem_req  : public Rhythmic_req  {
+ Part: typeset a measure with the number of measures rest
+ Score: typeset all individual measures as full rests
+ */
+class Multi_measure_rest_req : public Rhythmic_req  {
 public:
-    /// preferred direction for the stem
-    int dir_i_;
-    Stem_req();
-    REQUESTMETHODS(Stem_req,stem);
+  VIRTUAL_COPY_CONS(Music);
 };
 
 /**
-  Requests to start or stop something.
- This type of request typically results in the creation of a #Spanner#
-*/
-class Span_req  : public virtual Musical_req  {
+ Typeset a repetition sign in each bar.
+ */
+class Repetitions_req : public Rhythmic_req  {
 public:
-    /// should the spanner start or stop, or is it unwanted?
-    enum {
-       NOSPAN, START, STOP
-    } spantype ;
-    static int compare(const Span_req &r1, const Span_req &r2);
-    REQUESTMETHODS(Span_req,span);
-
-    Span_req();
-  
+  VIRTUAL_COPY_CONS(Music);
 };
 
-/** Start / stop a beam at this note.  if #nplet# is set, the staff
-will try to put an appropriate number over the beam */
-class Beam_req  : public Span_req  {
+/// an extender line
+class Extender_req : public Request  {
 public:
-    int nplet;
-
-    /* *************** */
-     REQUESTMETHODS(Beam_req,beam);
-
-    Beam_req();
+  VIRTUAL_COPY_CONS(Music);
 };
 
-/**
-  Start a tie at this voice element, end it at the next
- */
-class Tie_req : public Musical_req {
+/// a centred hyphen
+class Hyphen_req : public Request  {
 public:
-    REQUESTMETHODS(Tie_req, tie);
+  VIRTUAL_COPY_CONS(Music);
 };
 
-/// a slur
-class Slur_req  : public Span_req  {
+/** is anyone  playing a note?
+    Used for communication between Music & Lyrics
+ */
+class Busy_playing_req : public Request
+{
 public:
- REQUESTMETHODS(Slur_req,slur);
-
+  VIRTUAL_COPY_CONS (Music);
 };
-
-class Musical_script_req : public Musical_req,  public Script_req {
+/**
+   instruct lyric context to alter typesetting (unimplemented).  */
+class Melisma_req : public Span_req
+{
 public:
-    REQUESTMETHODS(Musical_script_req, musicalscript);
+  VIRTUAL_COPY_CONS(Music);
 };
+/** 
+ Start / stop an abbreviation beam. */
+class Chord_tremolo_req : public Span_req  
+{
+public:
+  VIRTUAL_COPY_CONS (Music);
 
+  Chord_tremolo_req ();
 
-class Dynamic_req  : public virtual Musical_req  {
-public:
-    /// for absolute dynamics
-    enum Loudness {
-       FFF, FF, F, MF, MP, P, PP, PPP
-    };
-    static String loudness_str(Loudness);
-    REQUESTMETHODS(Dynamic_req, dynamic);
-};
+  virtual void do_print () const;
 
-class Absolute_dynamic_req  : public Dynamic_req  {
-public:
-    Loudness loudness_;
-    Absolute_dynamic_req();
-    REQUESTMETHODS(Absolute_dynamic_req, absdynamic);
+  int type_i_;
 };
 
-class Span_dynamic_req  : public Dynamic_req, public Span_req  {
+/**
+   Helping req to signal start of a melisma from within a context, and
+   to   */
+class Melisma_playing_req : public Request
+{
 public:
-    /// Grow or shrink the volume: 1=cresc, -1 = decresc 
-    int dynamic_dir_i_;
-    Span_dynamic_req();
-    REQUESTMETHODS(Span_dynamic_req, span_dynamic);
+  VIRTUAL_COPY_CONS (Music);
 };
-
 #endif // MUSICALREQUESTS_HH