]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/my-lily-parser.hh
* input/regression/newaddlyrics.ly: New file.
[lilypond.git] / lily / include / my-lily-parser.hh
index 4231886b7e26c1a3cf65b860775d44ae178b1ebc..58afacb25786ae5d6c93d8ad1b420381ef5d5b49 100644 (file)
@@ -3,78 +3,79 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 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 "musical-pitch.hh"
-#include "string.hh"
+
 #include "array.hh"
+#include "duration.hh"
 #include "input.hh"
+#include "parray.hh"
+#include "pitch.hh"
+#include "protected-scm.hh"
+#include "smobs.hh"
+#include "string.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:
-  My_lily_parser (Sources * sources_l);
-  ~My_lily_parser();
+  DECLARE_SMOBS (My_lily_parser, );
+  friend int yyparse (void*);
 
-  void do_init_file();
-  void parse_file ( String init_str, String file_str);
-  void set_version_check (bool ignore);
+  Array<Input> define_spots_;
+
+  char const* here_str0 () const;
+  Simultaneous_music *get_chord (Pitch tonic,
+                                Array<Pitch> *adds, Array<Pitch> *subs,
+                                Pitch *inversion, Pitch* bass, Duration d);
+  void set_chord_tremolo (int type_i);
+  void set_last_duration (Duration const *);
+  void set_last_pitch (Pitch const *);
 
 public:
+  My_lily_lexer *lexer_;
+  Sources *sources_;
   Duration default_duration_;
-  Musical_pitch default_pitch_;
-  Scope *default_header_p_;
-  int abbrev_beam_type_i_;
-  bool first_b_;
-  int fatal_error_i_;
-  Sources * source_l_;
-  int error_level_i_;
-  bool init_parse_b_;
-  My_lily_lexer * lexer_p_;
+  String output_basename_;
+  Protected_scm header_;
+  int score_count_;
+  int book_count_;
+  int fatal_error_;
+  int error_level_;
   bool ignore_version_b_;
+  SCM last_beam_start_;
 
+  My_lily_parser (Sources *sources);
 
+  DECLARE_SCHEME_CALLBACK (paper_description, ());
   
-  Input here_input() const;
-  void remember_spot();
-  Input pop_spot();
-    
-  Paper_def*default_paper_p();
-  Midi_def*default_midi_p();
-  void do_yyparse();
+  Input here_input () const;
+  Input pop_spot ();
+  void beam_check (SCM); 
+  void do_init_file ();
+  void do_yyparse ();
+  void parse_file (String init, String name, String out_name);
+  void parse_string (String ly_code);
   void parser_error (String);
-
-  void set_debug();
+  void push_spot ();
   void set_yydebug (bool);
-private:
-  char const* here_ch_C() const;
-  Array<Input> define_spot_array_;
-  String init_str_;
-
-  Simultaneous_music * get_note_element (Note_req * ,Duration *);
-  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_rest_element (String, Duration *);
-  Simultaneous_music* get_word_element (String, Duration*);
-  String notename_str (Melodic_req* melodic);
-  void set_abbrev_beam (int type_i);
-  void set_last_duration (Duration const *);
-  void set_last_pitch (Musical_pitch const *);
-  friend int yyparse (void*);
 };
 
-#endif // MY_LILY_PARSER_HH
+DECLARE_UNSMOB (My_lily_parser, my_lily_parser);
+
+SCM ly_parse_file (SCM);
+SCM ly_parse_string (SCM);
+// SCM ly_parser_add_book_and_score (SCM, SCM);
+SCM ly_parser_print_book (SCM, SCM);
+SCM ly_parser_print_score (SCM, SCM);
+SCM ly_parser_bookify (SCM, SCM);
+SCM ly_parser_scorify (SCM, SCM);
+
+#endif /* MY_LILY_PARSER_HH */