]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/my-lily-parser.hh
* SConstruct: Further development.
[lilypond.git] / lily / include / my-lily-parser.hh
index bd5b82159bcc03c2993cd3db8e5ff2fe5f586444..83fbb1386261d61a92b5c40cc7d2a04c0de24c75 100644 (file)
@@ -3,23 +3,19 @@
 
   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 "array.hh"
 #include "duration.hh"
+#include "input.hh"
+#include "parray.hh"
 #include "pitch.hh"
+#include "smobs.hh"
 #include "string.hh"
-#include "array.hh"
-#include "input.hh"
 
 /**
    State for the parser.  Do not ever add any variables to parse
 */
 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_;
+  String output_basename_;
 
-  Scope *default_header_p_;
-
-  int fatal_error_i_;
-  Sources * source_l_;
-  int error_level_i_;
+  int score_count_;
+  int book_count_;
 
-  My_lily_lexer * lexer_p_;
+  int fatal_error_;
+  int error_level_;
   bool ignore_version_b_;
-  
-  Input here_input() const;
-  void remember_spot();
-  Input pop_spot();
-    
-  void do_yyparse();
-  void parser_error (String);
+  SCM last_beam_start_;
 
-  void set_yydebug (bool);
+  My_lily_parser (Sources *sources);
+  My_lily_parser (My_lily_parser const&);
 
+  DECLARE_SCHEME_CALLBACK (paper_description, ());
 
-  DECLARE_SCHEME_CALLBACK(paper_description, ());
-private:
+  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 push_spot ();
+  void set_yydebug (bool);
+};
 
-  Array<Input> define_spot_array_;
+DECLARE_UNSMOB (My_lily_parser, my_lily_parser);
 
-  char const* here_ch_C() const;
+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);
 
-  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*);
-};
+Output_def *get_paper (My_lily_parser *parser);
+Output_def *get_midi (My_lily_parser *parser);
+Output_def *get_bookpaper (My_lily_parser *parser);
 
-#endif // MY_LILY_PARSER_HH
+#endif /* MY_LILY_PARSER_HH */