]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/my-lily-lexer.hh
release: 1.1.28
[lilypond.git] / lily / include / my-lily-lexer.hh
index 6b659ad7d98fcc0a27f09eba22fd2d1a6dc71bba..c303c258e98cc90595fc7b6949f274265edb0183 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #ifndef LEXER_HH
 
 #include <FlexLexer.h>
 
+#include "dictionary.hh"
 #include "lily-proto.hh"
 #include "lily-proto.hh"
 #include "fproto.hh"
-#include "varray.hh"
+#include "array.hh"
 #include "string.hh"
 #include "includable-lexer.hh"
 #include "duration.hh"
+#include "musical-pitch.hh"
 
 bool busy_parsing();
 void kill_lexer();
 void set_lexer();
 
-
 /// lexer for Mudela
-class My_lily_lexer : public Includable_lexer {
-  int lookup_keyword (String);
-  int scan_bare_word (String);
-  int scan_escaped_word (String);
-
-  bool post_quotes_b_;
-  char escaped_char(char) const;
+class My_lily_lexer : public Includable_lexer 
+{
 public:
+  String main_input_str_;
   void * lexval_l;
-    
-  Notename_table  *note_tab_p_;
-  Dictionary<Identifier*> *identifier_p_dict_p_;
+  Scope * toplevel_scope_p_;
+  bool main_input_b_;
+
+  Notename_table *chordmodifier_tab_p_;
+  Notename_table *note_tab_p_;
+  Link_array<Scope> scope_l_arr_;
   Keyword_table * keytable_p_;
   int errorlevel_i_;
 
-  /* *************** */
+  My_lily_lexer ();
+  ~My_lily_lexer ();
+  int yylex ();
 
-  void clear_notenames();
+  void start_main_input ();
+  bool notename_b (String) const;
+  bool chordmodifier_b (String) const;
+  void set_chordmodifier_table (Notename_table*tab_p);
+  void set_notename_table (Notename_table*tab_p);
   Identifier*lookup_identifier (String s);
-  Melodic_req* lookup_melodic_req_l (String s);
+  Musical_pitch lookup_notename (String s);
+  Musical_pitch lookup_chordmodifier (String s);
   void push_note_state();
+  void push_chord_state();
   void push_lyric_state();
   void pop_state();
   void LexerError (char const *);
-  My_lily_lexer();
-  void set_identifier (String,Identifier*i);
-  ~My_lily_lexer();
-  int yylex();
+  void set_identifier (String str, Identifier* i, bool unique_b = true);
   void print_declarations (bool init_b) const;
-  void add_notename (String, Melodic_req*);
   bool note_state_b() const;
+  bool chord_state_b() const;
   bool lyric_state_b() const;
+
+private:
+  int lookup_keyword (String);
+  int scan_bare_word (String);
+  int scan_escaped_word (String);
+
+  char escaped_char(char) const;
 };
 
 #endif