]> 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 c68d4ea4c78065c122e4ca255135bb1a758ea948..83463056cfa56483f4dbfbc350f51f21bbca3809 100644 (file)
@@ -3,86 +3,77 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.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 "duration.hh"
 #include "string.hh"
-#include "varray.hh"
+#include "parray.hh"
 #include "lily-proto.hh"
 #include "lily-proto.hh"
 #include "duration.hh"
+#include "pitch.hh"
 #include "string.hh"
-#include "varray.hh"
+#include "array.hh"
 #include "input.hh"
 
-class My_lily_parser {
-  char const* here_ch_C() const;
-  Array<Input> define_spot_array_;
-  String init_str_;
-
-  void add_requests (Chord*v);
+/**
+   State for the parser.  Do not ever add any variables to parse
+   musical content here.  We still have to remove default_duration_.
 
-  Chord * get_note_element (Note_req * ,Duration *);
-  Chord* get_rest_element (String,Duration *);
-  Chord* get_word_element (Text_def*, Duration*);
-  Melodic_req* get_melodic_req (Melodic_req* melodic, int quotes);
-  void set_nearest (Melodic_req* melodic);
-  String notename_str (Melodic_req* melodic);
+   TODO: interface is too complicated
+*/
+class My_lily_parser 
+{
+public:
+  My_lily_parser (Sources * sources_l);
+  ~My_lily_parser();
 
-  void set_last_duration (Duration const *);
-  void set_default_duration (Duration const *);
-  void set_abbrev_beam (int type_i);
-  void set_duration_mode (String s);
-  void set_octave_mode (String s);
-  friend int yyparse (void*);
+  void do_init_file();
+  void parse_file ( String init_str, String file_str);
+  void set_version_check (bool ignore);
 
 public:
-  int abbrev_beam_type_i_;
-  int default_octave_i_;
-  Melodic_req* last_melodic_;
   Duration default_duration_;
-  Plet plet_;
-  Header *default_header_p_;
-    
-  String textstyle_str_;
-  bool first_b_;
-  bool last_duration_mode_b_ ;
-  bool relative_octave_mode_b_;
-  Array<Request*> pre_reqs, post_reqs;
+
+  Scope *default_header_p_;
+
   int fatal_error_i_;
   Sources * source_l_;
   int error_level_i_;
-  bool init_parse_b_;
+
   My_lily_lexer * lexer_p_;
-  Moment plet_mom();
-  void add_notename (String, Melodic_req* req_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);
-  void clear_notenames();
 
-  Array<Request*>* get_parens_request (int t);
-    
-  void set_debug();
   void set_yydebug (bool);
-  bool ignore_version_b_;
-public:
-  void do_init_file();
-  void parse_file ( String init_str, String file_str);
-  My_lily_parser (Sources * sources_l);
-  ~My_lily_parser();
-  void set_version_check (bool ignore);
+
+
+  DECLARE_SCHEME_CALLBACK(paper_description, ());
+private:
+
+  Array<Input> define_spot_array_;
+
+  char const* here_ch_C() const;
+
+  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*);
 };
 
 #endif // MY_LILY_PARSER_HH