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