]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/my-lily-parser.cc
patch::: 1.1.30.mb1: Re: LilyPond 1.1.30
[lilypond.git] / lily / my-lily-parser.cc
index e2dd943b3afe35423e98d37bfa340fc79beba2b5..6b43a89e370a916a16d313dc06a4926b1b94dff2 100644 (file)
@@ -3,7 +3,8 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+       Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #include "my-lily-parser.hh"
 #include "musical-request.hh"
 #include "command-request.hh"
 #include "parser.hh"
-#include "header.hh"
-
+#include "scope.hh"
+#include "file-results.hh"
+#include "midi-def.hh"
+#include "paper-def.hh"
+#include "identifier.hh"
+#include "chord.hh"
 
 My_lily_parser::My_lily_parser (Sources * source_l)
 {
   first_b_ = true;
   source_l_ = source_l;
   lexer_p_ = 0;
-  abbrev_beam_type_i_ = 0;
   default_duration_.durlog_i_ = 2;
-  default_octave_i_ = 0;
-  textstyle_str_="roman";              // in lexer?
   error_level_i_ = 0;
-  last_duration_mode_b_ = true;
+  extender_req = 0;
   fatal_error_i_ = 0;
   default_header_p_ =0;
 }
@@ -37,77 +39,36 @@ My_lily_parser::~My_lily_parser()
   delete lexer_p_;
   delete default_header_p_;
 }
-  
 
-void
-My_lily_parser::clear_notenames()
-{
-  lexer_p_->clear_notenames();
-}
+
 
 void
 My_lily_parser::set_version_check (bool ig)
 {
   ignore_version_b_ = ig;
 }
-void
-My_lily_parser::set_debug()
-{
-#ifndef NPRINT
-  String s = "";
-  if (init_parse_b_) 
-    s = "Init";
-  set_yydebug (!monitor->silence (s+"Parser") && check_debug);
-  lexer_p_->set_debug (!monitor->silence (s+"Lexer") && check_debug);
-#endif
-}
-
-void
-My_lily_parser::print_declarations()
-{
-#ifndef NPRINT
-  String s = "";
-  
-  if (init_parse_b_) 
-    s = "Init";
-  if (!monitor->silence (s+"Declarations") && check_debug) 
-    {
-      lexer_p_->print_declarations (init_parse_b_);
-    }
-#endif   
-}
 
 void
 My_lily_parser::parse_file (String init, String s)
 {
   lexer_p_ = new My_lily_lexer;
   init_str_ = init;
-  
-  *mlog << "Parsing ... ";
-  
-  init_parse_b_ = true;
-  set_debug();
-  lexer_p_->new_input (init, source_l_);
-  do_yyparse();
+  lexer_p_->main_input_str_ = s;
 
-  if (error_level_i_)
-    {
-      error ("Found errors in init files");
-    }
-  print_declarations();
+  *mlog << _ ("Parsing...");
 
   init_parse_b_ = false;
-  set_debug();
-  lexer_p_->new_input (s , source_l_);
-  do_yyparse();
-  print_declarations();
+  set_yydebug (!monitor->silent_b ("Parser") && check_debug);
+  lexer_p_->new_input (init, source_l_);
+  do_yyparse ();
 
-  
   if (!define_spot_array_.empty())
     {
-      warning ("Braces don't match.");
+      warning (_ ("braces don't match"));
       error_level_i_ = 1;
     }
+
+  inclusion_global_array = lexer_p_->filename_str_arr_;
 }
 
 void
@@ -116,7 +77,7 @@ My_lily_parser::remember_spot()
   define_spot_array_.push (here_input());
 }
 
-char const * 
+char const *
 My_lily_parser::here_ch_C() const
 {
   return lexer_p_->here_ch_C();
@@ -132,55 +93,36 @@ My_lily_parser::parser_error (String s)
   exit_status_i_ = 1;
 }
 
-void
-My_lily_parser::set_duration_mode (String s)
-{
-  s = s.upper_str();
-  last_duration_mode_b_ = (s== "LAST");
-}
-
-void
-My_lily_parser::set_abbrev_beam (int type_i)
-{
-  abbrev_beam_type_i_ = type_i;
-}
-
-void
-My_lily_parser::set_default_duration (Duration const *d)
-{
-  last_duration_mode_b_ = false;
-  default_duration_ = *d;
-}
 
 
 void
 My_lily_parser::set_last_duration (Duration const *d)
 {
-  if (last_duration_mode_b_)
-    default_duration_ = *d;
+  default_duration_ = *d;
 }
 
 
-Chord*
-My_lily_parser::get_word_element (Text_def* tdef_p, Duration * duration_p)
+Simultaneous_music*
+My_lily_parser::get_word_element (String s, Duration * duration_p)
 {
-  Chord* velt_p = new Request_chord;
-  
-  Lyric_req* lreq_p = new Lyric_req (tdef_p);
+  Simultaneous_music* velt_p = new Request_chord;
 
+  Lyric_req* lreq_p = new Lyric_req;
+  lreq_p ->text_str_ = s;
   lreq_p->duration_ = *duration_p;
   lreq_p->set_spot (here_input());
 
-  velt_p->add (lreq_p);
+  velt_p->add_music (lreq_p);
 
   delete  duration_p;
   return velt_p;
 }
 
-Chord *
+
+Simultaneous_music *
 My_lily_parser::get_rest_element (String s,  Duration * duration_p)
-{    
-  Chord* velt_p = new Request_chord;
+{
+  Simultaneous_music* velt_p = new Request_chord;
   velt_p->set_spot (here_input());
 
   if (s=="s")
@@ -189,129 +131,141 @@ My_lily_parser::get_rest_element (String s,  Duration * duration_p)
       skip_p->duration_ = *duration_p;
 
       skip_p->set_spot (here_input());
-      velt_p->add (skip_p);
+      velt_p->add_music (skip_p);
     }
-  else 
+  else
     {
       Rest_req * rest_req_p = new Rest_req;
       rest_req_p->duration_ = *duration_p;
       rest_req_p->set_spot (here_input());
-       
-      velt_p->add (rest_req_p);
+
+      velt_p->add_music (rest_req_p);
     }
 
   delete duration_p;
   return velt_p;
 }
 
-Chord *
-My_lily_parser::get_note_element (Note_req *rq, Duration * duration_p)
+Simultaneous_music *
+My_lily_parser::get_chord (Musical_pitch tonic, Array<Musical_pitch>* add_arr_p, Array<Musical_pitch>* sub_arr_p, Musical_pitch* inversion_p, Duration d)
 {
-  Chord*v = new Request_chord;
+  Simultaneous_music*v = new Request_chord;
   v->set_spot (here_input ());
 
-  v->add (rq);
-  
-  // too bad parser reads (default) duration via member access,
-  // this hack will do for now..
-  if (abbrev_beam_type_i_)
+  Chord chord (tonic, add_arr_p, sub_arr_p, inversion_p);
+
+  Tonic_req* t = new Tonic_req;
+  t->pitch_ = tonic;
+  v->add_music (t);
+
+  for (int i = 0; i < chord.pitch_arr_.size (); i++)
     {
-      assert (!duration_p->plet_b ());
-      duration_p->set_plet (1, 2);
+      Musical_pitch p = chord.pitch_arr_[i];
+      Note_req* n = new Note_req;
+      n->pitch_ = p;
+      n->duration_ = d;
+      v->add_music (n);
     }
-  rq->set_duration (*duration_p);
+
+  return v;
+}
+
+Simultaneous_music *
+My_lily_parser::get_note_element (Note_req *rq, Duration * duration_p)
+{
+  Simultaneous_music*v = new Request_chord;
+  v->set_spot (here_input ());
+
+  v->add_music (rq);
+
+  rq->duration_ = *duration_p;
   rq->set_spot (here_input ());
   delete duration_p ;
   return v;
 }
 
-Request*
-My_lily_parser::get_parens_request (char c)
+
+/*
+  UGH.
+ */
+Link_array<Request>*
+My_lily_parser::get_parens_request (int t)
 {
-  Request* req_p=0;
-  switch (c) 
+  Link_array<Request>& reqs = *new Link_array<Request>;
+  switch (t)
     {
-
     case '~':
-      req_p = new Tie_req;
+      reqs.push (new Tie_req);
       break;
+
     case '[':
     case ']':
       {
-       if (!abbrev_beam_type_i_)
-         {
-           Beam_req*b = new Beam_req;
-           int p_i=plet_.type_i_ ; // ugh . Should junk?
-           if (p_i!= 1)
-             b->nplet = p_i;
-           req_p = b;
-         }
-       else
-         {
-           Abbreviation_beam_req* a = new Abbreviation_beam_req;
-           a->type_i_ = abbrev_beam_type_i_;
-           if (c==']')
-             abbrev_beam_type_i_ = 0;
-           req_p = a;
-         }
+       reqs.push (new Beam_req);
       }
-    break;
+      break;
 
     case '>':
     case '!':
     case '<':
-      req_p = new Span_dynamic_req;
+      reqs.push (new Span_dynamic_req);
       break;
-  
+
     case ')':
     case '(':
-      req_p = new Slur_req;
+      {
+       reqs.push (new Slur_req);
+      }
       break;
     default:
       assert (false);
       break;
     }
-  
-  switch (c) 
+
+  switch (t)
     {
     case '<':
     case '>':
     case '(':
     case '[':
-      req_p->span()->spantype = Span_req::START;
+      dynamic_cast<Span_req*> (reqs[0])->spantype_ = START;
       break;
+      
     case '!':
     case ')':
     case ']':
-      req_p->span()->spantype = Span_req::STOP;
+      dynamic_cast<Span_req*> (reqs[0])->spantype_ = STOP;
       break;
-       
+
     default:
       break;
     }
 
-  if (req_p->musical()->span_dynamic ()) 
-    {
-      Span_dynamic_req* s_l= (req_p->musical()->span_dynamic ()) ;
-      s_l->dynamic_dir_ = (c == '<') ? UP:DOWN;
-    }
+  for (int i = 0; i < reqs.size (); i++)
+    if (dynamic_cast<Span_dynamic_req*> (reqs[i]))
+      {
+       Span_dynamic_req* s_l= dynamic_cast<Span_dynamic_req*> (reqs[i]);
+       s_l->dynamic_dir_ = (t == '<') ? UP:DOWN;
+      }
 
-  req_p->set_spot (here_input());
-  return req_p;
+  // ugh? don't we do this in the parser too?
+  reqs[0]->set_spot (here_input());
+  return &reqs;
 }
 
 void
-My_lily_parser::add_requests (Chord*v)
+My_lily_parser::add_requests (Simultaneous_music*v)
 {
-  for (int i = 0; i < pre_reqs.size(); i++) 
+  for (int i = 0; i < pre_reqs.size(); i++)
     {
-      v->add (pre_reqs[i]);
+      v->add_music (pre_reqs[i]);
     }
   pre_reqs.clear();
-  for (int i = 0; i <post_reqs.size(); i++) 
+  for (int i = 0; i <post_reqs.size(); i++)
     {
-      v->add (post_reqs[i]);
+      v->add_music (post_reqs[i]);
     }
+
   post_reqs.clear();
 }
 
@@ -328,8 +282,17 @@ My_lily_parser::here_input() const
   return Input (f_l, here_ch_C());
 }
 
-void
-My_lily_parser::add_notename (String s, Melodic_req * m_p)
+Paper_def*
+My_lily_parser::default_paper_p ()
 {
-  lexer_p_->add_notename (s, m_p);
+  Identifier *id = lexer_p_->lookup_identifier ("$defaultpaper");
+  return id ? id->access_content_Paper_def (true) : new Paper_def ;
 }
+
+Midi_def*
+My_lily_parser::default_midi_p ()
+{
+  Identifier *id = lexer_p_->lookup_identifier ("$defaultmidi");
+  return id ? id->access_content_Midi_def (true) : new Midi_def ;
+}
+