]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/my-lily-parser.hh
release: 1.0.8
[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--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef MY_LILY_PARSER_HH
11 #define MY_LILY_PARSER_HH
12 #include "lily-proto.hh"
13 #include "string.hh"
14 #include "array.hh"
15 #include "lily-proto.hh"
16 #include "lily-proto.hh"
17 #include "duration.hh"
18 #include "string.hh"
19 #include "array.hh"
20 #include "input.hh"
21
22 class My_lily_parser {
23   char const* here_ch_C() const;
24   Array<Input> define_spot_array_;
25   String init_str_;
26
27   void add_requests (Simultaneous_music*v);
28
29   Simultaneous_music * get_note_element (Note_req * ,Duration *);
30   Simultaneous_music* get_rest_element (String, Duration *);
31   Simultaneous_music* get_word_element (String, Duration*);
32   Melodic_req* get_melodic_req (Melodic_req* melodic, int quotes);
33   String notename_str (Melodic_req* melodic);
34   void set_last_duration (Duration const *);
35   void set_abbrev_beam (int type_i);
36   friend int yyparse (void*);
37
38 public:
39   int abbrev_beam_type_i_;
40   int default_abbrev_i_;
41   Duration default_duration_;
42   Plet plet_;
43   Header *default_header_p_;
44     
45   bool first_b_;
46
47   Array<Request*> pre_reqs, post_reqs;
48   int fatal_error_i_;
49   Sources * source_l_;
50   int error_level_i_;
51   bool init_parse_b_;
52   My_lily_lexer * lexer_p_;
53  
54   Moment plet_mom();
55   void add_notename (String, Musical_pitch req_p);
56   Input here_input() const;
57   void remember_spot();
58   Input pop_spot();
59     
60   Paper_def*default_paper_p();
61   Midi_def*default_midi_p();
62   void do_yyparse();
63   void parser_error (String);
64   void clear_notenames();
65
66   Array<Request*>* get_parens_request (int t);
67     
68   void set_debug();
69   void set_yydebug (bool);
70   bool ignore_version_b_;
71 public:
72   void do_init_file();
73   void parse_file ( String init_str, String file_str);
74   My_lily_parser (Sources * sources_l);
75   ~My_lily_parser();
76   void set_version_check (bool ignore);
77 };
78
79 #endif // MY_LILY_PARSER_HH