]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/my-lily-parser.hh
1c40332452c3b068f17f886d32e85593b7502665
[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 {
24 public:
25   My_lily_parser (Sources * sources_l);
26   ~My_lily_parser();
27
28   void do_init_file();
29   void parse_file ( String init_str, String file_str);
30   void set_version_check (bool ignore);
31
32 public:
33   int abbrev_beam_type_i_;
34   int default_abbrev_i_;
35   Duration default_duration_;
36   Extender_req* extender_req;
37   Plet plet_;
38   Scope *default_header_p_;
39     
40   bool first_b_;
41
42   Array<Request*> pre_reqs, post_reqs;
43   int fatal_error_i_;
44   Sources * source_l_;
45   int error_level_i_;
46   bool init_parse_b_;
47   My_lily_lexer * lexer_p_;
48  
49   Moment plet_mom();
50   Input here_input() const;
51   void remember_spot();
52   Input pop_spot();
53     
54   Paper_def*default_paper_p();
55   Midi_def*default_midi_p();
56   void do_yyparse();
57   void parser_error (String);
58
59   Array<Request*>* get_parens_request (int t);
60     
61   void set_debug();
62   void set_yydebug (bool);
63   bool ignore_version_b_;
64
65 private:
66   char const* here_ch_C() const;
67   Array<Input> define_spot_array_;
68   String init_str_;
69
70   void add_requests (Simultaneous_music*v);
71
72   Simultaneous_music * get_note_element (Note_req * ,Duration *);
73   Simultaneous_music * get_chord (Musical_pitch, Array<Musical_pitch>*, Array<Musical_pitch>*, Duration);
74   Simultaneous_music* get_rest_element (String, Duration *);
75   Simultaneous_music* get_word_element (String, Duration*);
76   Melodic_req* get_melodic_req (Melodic_req* melodic, int quotes);
77   String notename_str (Melodic_req* melodic);
78   void set_last_duration (Duration const *);
79   void set_abbrev_beam (int type_i);
80   friend int yyparse (void*);
81 };
82
83 #endif // MY_LILY_PARSER_HH