]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/my-lily-parser.hh
* lily/book.cc (process): return Paper_book
[lilypond.git] / lily / include / my-lily-parser.hh
1 /*
2   my-lily-parser.hh -- declare My_lily_parser
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef MY_LILY_PARSER_HH
10 #define MY_LILY_PARSER_HH
11
12 #include "array.hh"
13 #include "duration.hh"
14 #include "input.hh"
15 #include "parray.hh"
16 #include "pitch.hh"
17 #include "smobs.hh"
18 #include "string.hh"
19
20 /**
21    State for the parser.  Do not ever add any variables to parse
22    musical content here.  We still have to remove default_duration_.
23
24    TODO: interface is too complicated
25 */
26 class My_lily_parser 
27 {
28   DECLARE_SMOBS (My_lily_parser, );
29   friend int yyparse (void*);
30
31   Array<Input> define_spots_;
32
33   char const* here_str0 () const;
34   Simultaneous_music *get_chord (Pitch tonic,
35                                  Array<Pitch> *adds, Array<Pitch> *subs,
36                                  Pitch *inversion, Pitch* bass, Duration d);
37   void set_chord_tremolo (int type_i);
38   void set_last_duration (Duration const *);
39   void set_last_pitch (Pitch const *);
40
41 public:
42   My_lily_lexer *lexer_;
43   Sources *sources_;
44   Duration default_duration_;
45   String output_basename_;
46   //  Protected_scm header_;
47   int score_count_;
48   int book_count_;
49   int fatal_error_;
50   int error_level_;
51   bool ignore_version_b_;
52   SCM last_beam_start_;
53
54   My_lily_parser (Sources *sources);
55   My_lily_parser (My_lily_parser const&);
56
57   DECLARE_SCHEME_CALLBACK (paper_description, ());
58
59   Input here_input () const;
60   Input pop_spot ();
61   void beam_check (SCM); 
62   void do_init_file ();
63   void do_yyparse ();
64   void parse_file (String init, String name, String out_name);
65   void parse_string (String ly_code);
66   void parser_error (String);
67   void push_spot ();
68   void set_yydebug (bool);
69 };
70
71 DECLARE_UNSMOB (My_lily_parser, my_lily_parser);
72
73 SCM ly_parse_file (SCM);
74 SCM ly_parse_string (SCM);
75 // SCM ly_parser_add_book_and_score (SCM, SCM);
76 SCM ly_parser_print_book (SCM, SCM);
77 SCM ly_parser_print_score (SCM, SCM);
78 SCM ly_parser_bookify (SCM, SCM);
79 SCM ly_parser_scorify (SCM, SCM);
80
81 Output_def *get_paper (My_lily_parser *parser);
82 Output_def *get_midi (My_lily_parser *parser);
83 Output_def *get_bookpaper (My_lily_parser *parser);
84
85 #endif /* MY_LILY_PARSER_HH */