]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/my-lily-parser.hh
release: 1.3.131
[lilypond.git] / lily / include / my-lily-parser.hh
index fe5f4480be214bee41bb8ed42f47239d2b1c0120..83463056cfa56483f4dbfbc350f51f21bbca3809 100644 (file)
@@ -3,22 +3,30 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef MY_LILY_PARSER_HH
 #define MY_LILY_PARSER_HH
+
 #include "lily-proto.hh"
 #include "string.hh"
 #include "parray.hh"
 #include "lily-proto.hh"
 #include "lily-proto.hh"
 #include "duration.hh"
+#include "pitch.hh"
 #include "string.hh"
 #include "array.hh"
 #include "input.hh"
 
+/**
+   State for the parser.  Do not ever add any variables to parse
+   musical content here.  We still have to remove default_duration_.
+
+   TODO: interface is too complicated
+*/
 class My_lily_parser 
 {
 public:
@@ -31,47 +39,40 @@ public:
 
 public:
   Duration default_duration_;
-  Extender_req* extender_req;
+
   Scope *default_header_p_;
-    
-  bool first_b_;
 
-  Link_array<Request> pre_reqs, post_reqs;
   int fatal_error_i_;
   Sources * source_l_;
   int error_level_i_;
-  bool init_parse_b_;
+
   My_lily_lexer * lexer_p_;
+  bool ignore_version_b_;
+  
   Input here_input() const;
   void remember_spot();
   Input pop_spot();
     
-  Paper_def*default_paper_p();
-  Midi_def*default_midi_p();
   void do_yyparse();
   void parser_error (String);
 
-  Link_array<Request>* get_parens_request (int t);
-    
-  void set_debug();
   void set_yydebug (bool);
-  bool ignore_version_b_;
 
+
+  DECLARE_SCHEME_CALLBACK(paper_description, ());
 private:
-  char const* here_ch_C() const;
+
   Array<Input> define_spot_array_;
-  String init_str_;
 
-  void add_requests (Simultaneous_music*v);
+  char const* here_ch_C() const;
 
-  Simultaneous_music * get_note_element (Note_req * ,Duration *);
-  Simultaneous_music * get_chord (Musical_pitch, Array<Musical_pitch>*, Array<Musical_pitch>*, Musical_pitch*, Duration);
-  Simultaneous_music* get_rest_element (String, Duration *);
-  Simultaneous_music* get_word_element (String, Duration*);
-  Melodic_req* get_melodic_req (Melodic_req* melodic, int quotes);
-  String notename_str (Melodic_req* melodic);
+  Simultaneous_music * get_chord (Pitch tonic, Array<Pitch>* add_arr_p,
+                                 Array<Pitch>* sub_arr_p, Pitch* inversion_p,
+                                 Pitch* bass_p, Duration d);
+  
+  void set_chord_tremolo (int type_i);
   void set_last_duration (Duration const *);
+  void set_last_pitch (Pitch const *);
   friend int yyparse (void*);
 };