]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/my-lily-parser.hh
patch::: 1.3.96.jcn9
[lilypond.git] / lily / include / my-lily-parser.hh
index 889ccf1bb746635998c790e5bc5185c0bb0e6283..3ea7db50a78a2c6b1923e045a6926203bfb159de 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #define MY_LILY_PARSER_HH
 #include "lily-proto.hh"
 #include "string.hh"
-#include "array.hh"
+#include "parray.hh"
 #include "lily-proto.hh"
 #include "lily-proto.hh"
 #include "duration.hh"
+#include "musical-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,35 @@ public:
 
 public:
   Duration default_duration_;
-  Extender_req* extender_req;
+
   Scope *default_header_p_;
-    
-  bool first_b_;
 
-  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);
 
-  Array<Request*>* get_parens_request (int t);
-    
-  void set_debug();
   void set_yydebug (bool);
-  bool ignore_version_b_;
-
 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_chord (Musical_pitch tonic, Array<Musical_pitch>* add_arr_p, Array<Musical_pitch>* sub_arr_p, Musical_pitch* inversion_p, Musical_pitch* bass_p, Duration d);
 
-  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);
+  void set_chord_tremolo (int type_i);
   void set_last_duration (Duration const *);
+  void set_last_pitch (Musical_pitch const *);
   friend int yyparse (void*);
 };