]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/parser.y
release: 0.1.10
[lilypond.git] / lily / parser.y
index 69ef223a4e499eac6a1a4d62f75818a3434ec057..288d1407f1219f2c62ef0de670f282bf4111f31f 100644 (file)
@@ -1,6 +1,18 @@
 %{ // -*-Fundamental-*-
+
+/*
+  parser.y -- YACC parser for mudela
+
+  source file of the GNU LilyPond music typesetter
+
+  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+           Jan Nieuwenhuizen <jan@digicash.com>
+*/
+
 #include <iostream.h>
 
+// mmm
+#define MUDELA_VERSION "0.1.1"
 
 #include "script-def.hh"
 #include "symtable.hh"
@@ -10,9 +22,6 @@
 #include "paper-def.hh"
 #include "midi-def.hh"
 #include "main.hh"
-#include "input-score.hh"
-#include "input-staff.hh"
-#include "input-music.hh"
 #include "keyword.hh"
 #include "debug.hh"
 #include "parseconstruct.hh"
 #include "identifier.hh"
 #include "command-request.hh"
 #include "musical-request.hh"
-#include "voice-element.hh"
 #include "my-lily-parser.hh"
 #include "text-def.hh"
-#include "input-register.hh"
+#include "input-translator.hh"
+#include "score.hh"
+#include "music-list.hh"
+#include "header.hh"
+#include "duration-convert.hh"
 
 #ifndef NDEBUG
 #define YYDEBUG 1
     Array<String> * strvec;
     Array<int> *intvec;
     Box *box;
+    Chord * chord;
     Duration *duration;
     Identifier *id;    
-    Input_register * iregs;
-    Input_music *music;
-    Input_score *score;
-    Input_staff *staff;    
+    Input_translator* itrans;
+    Music *music;
+    Music_list *musiclist;
+    Score *score;
+    Header *header;
     Interval *interval;
     Lookup*lookup;
     Melodic_req * melreq;
     Midi_def* midi;
     Moment *moment;
-    Music_general_chord *chord;
-    Music_voice *mvoice;
     Note_req *notereq;
     Paper_def *paper;
     Real real;
     Request * request;
-    Script_def * script;
+    General_script_def * script;
     String *string;
     Symbol * symbol;
     Symtable * symtable;
     Symtables * symtables;
     Text_def * textdef;
-    Voice *voice;    
-    Voice_element *el; 
+    Tempo_req *tempo;
     char c;
     const char *consstr;
     int i;
@@ -82,39 +93,47 @@ yylex(YYSTYPE *s,  void * v_l)
 {
        My_lily_parser   *pars_l = (My_lily_parser*) v_l;
        My_lily_lexer * lex_l = pars_l->lexer_p_;
+       
        lex_l->lexval_l = (void*) s;
        return lex_l->yylex();
 }
 
 
 %}
+
 %pure_parser
 
 /* tokens which are not keywords */
-%token CONCAT
 
+%token ALIAS
 %token BAR
 %token CADENZA
+%token CLEAR
 %token CLEF
+%token CONTAINS
+%token CONSISTS
+%token ACCEPTS
 %token CM_T
-%token DURATIONCOMMAND
+%token DURATION
 %token ABSDYNAMIC
 %token END
-%token GEOMETRIC
 %token GROUPING
 %token GROUP
-%token INPUT_REGS
+%token REQUESTTRANSLATOR
+%token HSHIFT
+%token HEADER
 %token IN_T
+%token ID
 %token LYRIC
 %token KEY
 %token MELODIC
+%token MIDI
 %token MELODIC_REQUEST
 %token METER
-%token MIDI
 %token MM_T
-%token MULTIVOICE
-%token NOTE
-%token OCTAVECOMMAND
+%token MULTI
+%token NOTENAMES
+%token OCTAVE
 %token OUTPUT
 %token PAPER
 %token PARTIAL
@@ -134,37 +153,47 @@ yylex(YYSTYPE *s,  void * v_l)
 %token TEXID
 %token TEXTSTYLE
 %token TITLE
-%token UNITSPACE
-%token WIDTH
+%token VERSION
 
-%token <i>     DOTS
+/* escaped */
+%token E_EXCLAMATION E_SMALLER E_BIGGER E_CHAR
+
+%type <i>      dots
 %token <i>     INT
-%token <id>    REGS_IDENTIFIER
+%token <melreq>        NOTENAME_ID
+%token <id>    DURATION_IDENTIFIER
 %token <id>    IDENTIFIER
 %token <id>    MELODIC_REQUEST_IDENTIFIER 
-%token <id>    CHORD_IDENTIFIER
+%token <id>    MUSIC_IDENTIFIER
 %token <id>    VOICE_IDENTIFIER
 %token <id>    POST_REQUEST_IDENTIFIER
 %token <id>    SCRIPT_IDENTIFIER
-%token <id>    STAFF_IDENTIFIER
+%token <id>    COMMAND_IDENTIFIER
 %token <id>    REAL_IDENTIFIER
+%token <id>    INPUT_TRANS_IDENTIFIER
+%token <id>    INT_IDENTIFIER
 %token <id>    SCORE_IDENTIFIER
+%token <id>    MIDI_IDENTIFIER
+%token <id>    PAPER_IDENTIFIER
 %token <id>    REQUEST_IDENTIFIER
 %token <real>  REAL 
 %token <string>        DURATION RESTNAME
-%token <string>        STRING
+%token <string>        STRING 
+%token <string> FIELDNAME RECORDLINE
 %token <i>     POST_QUOTES 
 %token <i>     PRE_QUOTES
 
 
+%type <header>         mudela_header mudela_header_body
 %type <box>    box
-%type <c>      open_request_parens close_request_parens close_plet_parens
-%type <chord>  music_chord music_chord_body  init_music_chord
-%type <el>     voice_elt full_element lyrics_elt command_elt
+%type <c>      open_request_parens close_request_parens
+%type <c>      open_plet_parens close_plet_parens
+%type <music>  simple_element music_elt full_element lyrics_elt command_elt
 %type <i>      int
 %type <i>      script_dir
-%type <id>     declaration
-%type <duration>       explicit_duration notemode_duration
+%type <id>     identifier_init
+%type <duration> explicit_steno_duration notemode_duration 
+%type <duration> entered_notemode_duration explicit_duration
 %type <interval>       dinterval
 %type <intvec> intastint_list
 %type <lookup> symtables symtables_body
@@ -173,147 +202,202 @@ yylex(YYSTYPE *s,  void * v_l)
 %type <melreqvec>      pitch_list 
 %type <midi>   midi_block midi_body
 %type <moment> duration_length
-%type <music>  init_music
-%type <mvoice>  transposed_music_voice init_lyrics_voice
-%type <mvoice> music_voice_body music_voice  init_music_voice 
+
+%type <music>  Music transposed_music
+%type <musiclist> Voice Voice_body 
+%type <chord>  Chord Chord_body
 %type <paper>  paper_block paper_body
 %type <real>   dim real
 %type <real>   unit
-%type <request>        post_request pre_request command_req 
-%type <request>        pure_post_request pure_post_request_choice
-%type <request>        script_req textscript_req dynamic_req 
+%type <request>        post_request pre_request command_req verbose_command_req 
+%type <request> abbrev_command_req
+%type <request>        script_req  dynamic_req 
 %type <score>  score_block score_body
-%type <script> script_definition script_body mudela_script
-%type <staff>  staff_block staff_init staff_body
-%type <string> declarable_identifier
+%type <script> script_definition script_body mudela_script gen_script_def
+%type <textdef> text_def
 %type <string> script_abbreviation
-%type <id>     old_identifier
 %type <symbol> symboldef
 %type <symtable>       symtable symtable_body
-%type <textdef>        mudela_text
-%type <iregs>  input_regs input_regs_body
+%type <itrans> input_translator_spec input_translator_spec_body
+%type <tempo>  tempo_request
+%type <string> header_record
 
 %left PRIORITY
 
-%expect 1      /* have to fix this. */
-
 %%
 
 mudela:        /* empty */
+       | mudela mudela_header {
+               delete THIS->default_header_p_ ;
+               THIS->default_header_p_ = $2;
+       }
        | mudela score_block {
                add_score($2);          
        }
        | mudela add_declaration { }
        | mudela error
+       | mudela check_version { } 
+       | mudela add_notenames { }
        ;
 
+check_version:
+       VERSION STRING ';'              {
+               if ( String( *$2 ) != MUDELA_VERSION) {
+                       if (THIS->ignore_version_b_) {
+                               THIS->here_input().error("Incorrect mudela version");
+                       } else {
+                               THIS->fatal_error_i_ = 1;
+                               THIS->parser_error("Incorrect mudela version");
+                       }
+               }
+       }
+       ;
 
-/*
-       DECLARATIONS
-*/
-add_declaration: declaration   {
-               THIS->lexer_p_->add_identifier($1);
-               $1->init_b_ = THIS->init_parse_b_;
-               $1->set_spot(THIS->pop_spot());
+add_notenames:
+       NOTENAMES '{' notenames_body '}'
+       ;
+notenames_body:
+       /**/    {
+       }
+       | notenames_body CLEAR  {
+               THIS->clear_notenames();
+       }
+       | notenames_body STRING '=' melodic_request {
+               THIS->add_notename(*$2, $4);
+               delete $2;
        }
        ;
 
-declarable_identifier:
-       STRING {
-               THIS->remember_spot();
-           $$ = $1;
+mudela_header_body:
+               {
+               $$ = new Header;
        }
-       | old_identifier { 
-               THIS->remember_spot();
-               $$ = new String($1->name); 
-               THIS->here_input().warning("redeclaration of `" + *$$ + "'");
+       | mudela_header_body FIELDNAME header_record {
+               (*$$)[*$2] = *$3;
+               delete $2;
+               delete $3;
        }
        ;
 
+mudela_header:
+       HEADER  {
+               THIS->lexer_p_->push_header_state();
+       }
+       
+       '{' mudela_header_body '}'      {
+               $$ = $4;
+               THIS->lexer_p_->pop_state();
+       }
+       ;
 
-old_identifier:
-       IDENTIFIER
-       |       MELODIC_REQUEST_IDENTIFIER 
-       |       CHORD_IDENTIFIER
-       |       VOICE_IDENTIFIER
-       |       POST_REQUEST_IDENTIFIER
-       |       SCRIPT_IDENTIFIER
-       |       STAFF_IDENTIFIER
-       |       REAL_IDENTIFIER
-       |       SCORE_IDENTIFIER
-       |       REQUEST_IDENTIFIER
-       |       REGS_IDENTIFIER
+
+header_record:
+               {
+               $$ = new String;
+       }
+       | header_record RECORDLINE      {
+               *$$ += *$2;
+               delete $2;
+       }
        ;
 
-declaration:
-       declarable_identifier '=' score_block {
-               $$ = new Score_id(*$1, $3, SCORE_IDENTIFIER);
-               delete $1;
+/*
+       DECLARATIONS
+*/
+
+add_declaration:
+       STRING {
+               THIS->remember_spot();
        }
-       | declarable_identifier '=' staff_block  {
-               $$ = new Staff_id(*$1, $3, STAFF_IDENTIFIER);
-               delete $1; 
+       /* cont */ '=' identifier_init {
+           THIS->lexer_p_->set_identifier(*$1, $4);
+           $4->init_b_ = THIS->init_parse_b_;
+           $4->set_spot(THIS->pop_spot());
        }
-       | declarable_identifier '=' init_music_voice {
-               $$ = new M_voice_id(*$1, $3, VOICE_IDENTIFIER);
-               delete $1;
+       ;
+identifier_init:
+       score_block {
+               $$ = new Score_id($1, SCORE_IDENTIFIER);
+               
        }
-       | declarable_identifier '=' init_lyrics_voice {
-               $$ = new M_voice_id(*$1, $3, VOICE_IDENTIFIER);
-               delete $1;
+       | paper_block {
+               $$ = new Paper_def_id($1, PAPER_IDENTIFIER);
+               
        }
-       | declarable_identifier '=' script_definition {
-               $$ = new Script_id(*$1, $3, SCRIPT_IDENTIFIER);
-               delete $1;
+       | midi_block {
+               $$ = new Midi_def_id($1, MIDI_IDENTIFIER);
+               
        }
-       | declarable_identifier '=' init_music_chord  {
-               $$ = new M_chord_id(*$1, $3, CHORD_IDENTIFIER);
-               delete $1;
+       | script_definition {
+               $$ = new Script_id($1, SCRIPT_IDENTIFIER);
+               
        }
-       | declarable_identifier '=' symtables {
-               $$ = new Lookup_id(*$1, $3, IDENTIFIER);
-               delete $1;
+       | Music  {
+               $$ = new Music_id($1, MUSIC_IDENTIFIER);
+               
        }
-       | declarable_identifier '=' real        {
-               $$ = new Real_id(*$1, new Real($3), REAL_IDENTIFIER);
-               delete $1;
+       | symtables {
+               $$ = new Lookup_id($1, IDENTIFIER);
+               
        }
-       
-       | declarable_identifier '=' pure_post_request {
-               $$ = new Request_id(*$1, $3, POST_REQUEST_IDENTIFIER);
-               delete $1;
+       | real  {
+               $$ = new Real_id(new Real($1), REAL_IDENTIFIER);
+               
        }
-       | declarable_identifier '=' melodic_request {
-               $$ = new Request_id(*$1, $3, MELODIC_REQUEST_IDENTIFIER);
-               delete $1;
+       | int   {
+               $$ = new Int_id(new int($1), INT_IDENTIFIER);
+               
        }
-       | declarable_identifier '=' input_regs  {
-               $$ = new Input_regs_id(*$1, $3, REGS_IDENTIFIER);
-               delete $1;
+       | post_request {
+               $$ = new Request_id($1, POST_REQUEST_IDENTIFIER);
+               
+       }
+       | melodic_request {
+               $$ = new Request_id($1, MELODIC_REQUEST_IDENTIFIER);
+               
+       }
+       | input_translator_spec {
+               $$ = new Input_translator_id ( $1, INPUT_TRANS_IDENTIFIER);
+       }
+       | explicit_duration {
+               $$ = new Duration_id( $1, DURATION_IDENTIFIER);
        }
        ;
 
 
-input_regs:
-       INPUT_REGS
-               { THIS->remember_spot(); }
-       '{' input_regs_body '}'
-       {
-               $$ = $4;
-               $$->set_spot(THIS->pop_spot());
-       }
+
+input_translator_spec:
+       REQUESTTRANSLATOR '{' input_translator_spec_body '}'
+               { $$ = $3; }
        ;
 
-input_regs_body:
-       REGS_IDENTIFIER         {
-               $$ = $1->iregs(true);
+input_translator_spec_body:
+       INPUT_TRANS_IDENTIFIER  {
+               $$ = $1->input_translator();
+               $$-> set_spot( THIS->here_input() );
        }
-       |STRING { 
-               $$ = new Input_register;
-               $$->name_str_ = *$1;
+       | STRING STRING { 
+               $$ = new Input_translator; 
+               $$->base_str_ = *$1;
+               $$->type_str_ =*$2;
+               $$->set_spot ( THIS->here_input() );
+               delete $1;
+               delete $2;
        }
-       | input_regs_body input_regs {
-               $$->add($2);
+       | input_translator_spec_body ID STRING ';' {
+               $$-> default_id_str_ = *$3;
+               delete $3;
+       }
+       | input_translator_spec_body ALIAS STRING ';' {
+               $$-> alias_str_arr_.push(*$3);
+               delete $3;
+       }
+       | input_translator_spec_body CONSISTS STRING ';'        {
+               $$-> consists_str_arr_.push(*$3);
+               delete $3;
+       }
+       | input_translator_spec_body CONTAINS input_translator_spec {
+               $$->add($3);
        }
        ;
 
@@ -321,7 +405,9 @@ input_regs_body:
        SCORE
 */
 score_block:
-       SCORE { THIS->remember_spot(); }
+       SCORE { THIS->remember_spot();
+               THIS->error_level_i_ =0;
+       }
        /*cont*/ '{' score_body '}'     {
                $$ = $4;
                $$->set_spot(THIS->pop_spot());
@@ -331,18 +417,29 @@ score_block:
                /* handle error levels. */
                $$->errorlevel_i_ = THIS->error_level_i_;
                THIS->error_level_i_ = 0;
+               if (!$$->header_p_ && THIS->default_header_p_)
+                       $$->header_p_ = new Header(*THIS->default_header_p_);
        }
        ;
 
 score_body:            { 
-               $$ = new Input_score; 
+               $$ = new Score; 
        }
        | SCORE_IDENTIFIER {
-               $$ = $1->score(true);
+               $$ = $1->score();
+       }
+       | score_body mudela_header      {
+               $$->header_p_ = $2;
+       }
+       | score_body Music      {
+               $$->music_p_ = $2;
+       }
+       | score_body paper_block                {
+               $$->paper_p_ = $2;      
+       }
+       | score_body midi_block         { 
+               $$->midi_p_ = $2;
        }
-       | score_body staff_block        { $$->add($2); }
-       | score_body paper_block                { $$->set($2);  }
-       | score_body midi_block         { $$->set($2);  }
        | score_body error {
 
        }
@@ -366,16 +463,24 @@ paper_block:
 
 paper_body:
        /* empty */                     {
-               $$ = THIS->default_paper();
-
+               $$ = THIS->default_paper(); // paper / video / engrave
+       }
+       | PAPER_IDENTIFIER      {
+               $$ = $1->paperdef();
        }
-       | paper_body WIDTH dim          { $$->linewidth = $3;}
-       | paper_body OUTPUT STRING      { $$->outfile = *$3;
+       | paper_body OUTPUT STRING ';'  { $$->outfile_str_ = *$3;
                delete $3;
        }
        | paper_body symtables          { $$->set($2); }
-       | paper_body UNITSPACE dim      { $$->whole_width = $3; }
-       | paper_body GEOMETRIC REAL     { $$->geometric_ = $3; }
+       | paper_body STRING '=' dim ';'         { 
+               $$->set_var(*$2, $4);
+       }
+       | paper_body STRING '=' real ';' {
+               $$->set_var(*$2, $4);
+       }
+       | paper_body input_translator_spec      {
+               $$->set( $2 );
+       }
        | paper_body error {
 
        }
@@ -390,241 +495,203 @@ midi_block:
        '{' midi_body '}'       { $$ = $3; }
        ;
 
-midi_body: 
-               $$ = new Midi_def; 
+midi_body: /* empty */                 {
+               $$ = THIS->default_midi();
        }
-       | midi_body OUTPUT STRING       { 
+       | midi_body OUTPUT STRING ';'   { 
                $$->outfile_str_ = *$3; 
                delete $3; 
        }
-       | midi_body TEMPO notemode_duration ':' int {
-               $$->set_tempo( $3->length(), $5 );
-       }
-       | midi_body error {
-
-       }
-       ;
-
-/*
-       STAFFs
-*/
-staff_block:
-       STAFF   { THIS->remember_spot(); }
-/*cont*/       '{' staff_body '}'      {
-               $$ = $4; 
-               $$-> set_spot(THIS->pop_spot());
-       }
-       | { THIS->remember_spot(); }
-/*cont*/       STAFF_IDENTIFIER        { 
-               $$ = $2->staff(true); 
-               $$-> set_spot(THIS->pop_spot());
-       }
-       ;
-
-
-
-staff_init:
-       REGS_IDENTIFIER {
-               $$ = new Input_staff;
-               $$->ireg_p_ = $1->iregs(true);
+       | midi_body tempo_request ';' {
+               $$->set_tempo( $2->dur_.length(), $2->metronome_i_ );
+               delete $2;
        }
-       | input_regs    {
-               $$ = new Input_staff;
-               $$->ireg_p_ = $1;
+       | midi_body input_translator_spec       {
+               $$->set( $2 );
        }
-       ;
+       | midi_body error {
 
-staff_body:
-       staff_init
-       | staff_body init_music {
-               $$ = $1;
-               $2->set_default_group( "staff_music" + String($$->music_.size()));
-               $$->add($2);
-       }
-       | staff_body error {
        }
        ;
 
-/*
-       let the lexer switch mode.
-*/
-init_music:
-       init_music_voice        { $$ = $1; }
-       | init_music_chord      { $$ = $1; }
-       | init_lyrics_voice     { $$ = $1; }
-       | VOICE_IDENTIFIER      { 
-               $$ = $1->mvoice(true);
+tempo_request:
+       TEMPO entered_notemode_duration '=' int         {
+               $$ = new Tempo_req;
+               $$->dur_ = *$2;
+               delete $2;
+               $$-> metronome_i_ = $4;
        }
        ;
 
-init_lyrics_voice:
-       LYRIC { THIS->lexer_p_->push_lyric_state(); } 
-       music_voice { $$ = $3; THIS->lexer_p_->pop_state(); }
-       ;
-
-init_music_voice:
-       MELODIC { THIS->lexer_p_->push_note_state(); } 
-       /* cont*/ music_voice
-               { $$=$3; THIS->lexer_p_->pop_state(); }
-       ;
-init_music_chord:
-       { THIS->lexer_p_->push_note_state(); } 
-       /* cont*/ music_chord
-                 { $$=$2; THIS->lexer_p_->pop_state(); }
-       ;
 /*
        MUSIC
 */
 
-
-
-transposed_music_voice:
-       steno_melodic_req music_voice { 
+Voice:
+       '{' Voice_body '}'      {
                $$ = $2;
-               $$->transpose(*$1);
-               delete $1;
        }
        ;
 
-music_voice:  '{' music_voice_body '}' { $$ = $2; }
-       | TRANSPOSE '{' transposed_music_voice '}' {
-               $$ = $3;
-       }
-       ;
-
-music_voice_body:
-       VOICE_IDENTIFIER {
-               $$ = $1->mvoice(true);
-       }
-       | /* */         {
-               $$ = new Music_voice;
+Voice_body:
+       /**/            {
+               $$ = new Voice;
        }
-       | music_voice_body full_element {
-               $$->add_elt($2);
-       }
-       | music_voice_body voice_command {
+       | Voice_body ID STRING STRING ';'       {
+               $$ = new Voice;
+               $$->type_str_ = *$3;    
+               $$->id_str_ = *$4;
+               delete $3;
+               delete $4;
        }
-       | music_voice_body music_chord  {
+       | Voice_body Music              {
                $$->add($2);
        }
-       | music_voice_body CONCAT music_voice   {
-               $$->add($3);/* niet echt */
-       }
-       | music_voice_body error {
-       }
-       | music_voice_body '>' {
-               THIS->fatal_error_i_ = 1;
-               THIS->parser_error("Confused by errors: bailing out");
-       }
        ;
 
-music_chord:  '<' music_chord_body '>' { $$ = $2; }
+Music:
+       full_element            { $$ = $1; }
+       | Voice         { $$ = $1; }
+       | Chord                 { $$ = $1; }
+       | transposed_music      { $$ = $1; }
+       | MUSIC_IDENTIFIER      { $$ = $1->music(); }
+       | MELODIC 
+               { THIS->lexer_p_->push_note_state(); } 
+       Music
+               { $$=$3; THIS->lexer_p_->pop_state(); }
+
+       | LYRIC 
+               { THIS->lexer_p_->push_lyric_state(); } 
+       Music
+               { $$ = $3; THIS->lexer_p_->pop_state(); }
+       ; 
+
+Chord:
+       '<' Chord_body '>'      { $$  = $2; }
        ;
 
-music_chord_body:
-       CHORD_IDENTIFIER {
-               $$=$1->mchord(true);
+Chord_body:
+       /**/    {
+               $$ = new Chord;
+               $$-> multi_level_i_ = 1;
        }
-       | /* */ {
-               $$ = new Voice_group_chord;
+       | Chord_body MULTI INT ';' {
+               $$->multi_level_i_=$3;
        }
-       | MULTIVOICE {
-               $$ = new Multi_voice_chord;
+       | Chord_body ID STRING STRING ';'       {
+               $$->type_str_ = *$3;    
+               $$->id_str_ = *$4;
+               delete $4; 
+               delete $3;
        }
-       | music_chord_body music_voice {
+       | Chord_body Music {
                $$->add($2);
        }
-       | music_chord_body full_element {
-               $$ ->add_elt($2);
-       }
-       | music_chord_body '}' {
-               THIS->fatal_error_i_ = 1;
-               THIS->parser_error("Confused by errors: bailing out");
-       }
-       | music_chord_body error {
+       ;
+
+transposed_music:
+       TRANSPOSE steno_melodic_req Music {
+               $$ = $3;
+               $$ -> transpose($2);
+               delete $2;
        }
        ;
 
+
 /*
        VOICE ELEMENTS
 */
-full_element:  pre_requests voice_elt post_requests {
-               THIS->add_requests($2);
-               $$ = $2;
-       }
-       | pre_requests lyrics_elt post_requests {
-               THIS->add_requests($2);
+full_element:
+       pre_requests simple_element post_requests       {
+               THIS->add_requests((Chord*)$2);//ugh
                $$ = $2;
-        }
+       }
        | command_elt
+       | voice_command ';'     { $$ = 0; }
        ;       
 
+simple_element:
+       music_elt 
+       | lyrics_elt
+       ;
+
 command_elt:
-/* empty */    {
-               $$ = new Voice_element;
+       command_req {
+               $$ = new Request_chord;
                $$-> set_spot( THIS->here_input());
-       }
-/* cont: */
-       command_req     {
-               $2-> set_spot( THIS->here_input());
-               $$->add($2);
+               $1-> set_spot( THIS->here_input());
+               ((Chord*)$$) ->add($1);//ugh
 
        }
        ;
 
 command_req:
+       abbrev_command_req      
+       | verbose_command_req ';'       { $$ = $1; }
+       ;
+
+abbrev_command_req:
         '|'                            { 
                $$ = new Barcheck_req;
        }
-       | BAR STRING                    {
+       | COMMAND_IDENTIFIER    {
+               $$ = $1->request();
+       }
+       ;
+
+verbose_command_req:
+       BAR STRING                      {
                $$ = new Bar_req(*$2);
                delete $2;
        }
-       | METER '{' int '/' int '}'     {
+       | METER int '/' int     {
                Meter_change_req *m = new Meter_change_req;
-               m->set($3,$5);
+               m->set($2,$4);
                // sorry hw, i need meter at output of track,
                // but don-t know where to get it... statics should go.
                // HW : default: 4/4, meterchange reqs may change it.
                
-               Midi_def::num_i_s = $3;
-               Midi_def::den_i_s = $5;
+               Midi_def::num_i_s = $2;
+               Midi_def::den_i_s = $4;
                $$ = m;
        }
-       | SKIP '{' duration_length '}' {
+       | SKIP duration_length {
                Skip_req * skip_p = new Skip_req;
-               skip_p->duration_ = *$3;
-               delete $3;
+               skip_p->duration_.set_plet($2->numerator().as_long(), 
+                       $2->denominator().as_long());
+               
+               delete $2;
                $$ = skip_p;
        }
-       | CADENZA '{' int '}'   {
-               $$ = new Cadenza_req($3);
+       | tempo_request {
+               $$ = $1;
        }
-       | PARTIAL '{' duration_length '}'       {
-               $$ = new Partial_measure_req(*$3);
-               delete $3;
+       | CADENZA int   {
+               $$ = new Cadenza_req($2);
+       }
+       | PARTIAL duration_length       {
+               $$ = new Partial_measure_req(*$2);
+               delete $2;
        }
-       | STEM '{' int '}'              {
-               $$ = get_stemdir_req($3);
+       | STEM int      {
+               $$ = get_stemdir_req($2);
+       }
+       | HSHIFT int    {
+               $$ = get_hshift_req($2);
        }
        | CLEF STRING {
                $$ = new Clef_change_req(*$2);
                delete $2;
        }
-       | KEY '{' pitch_list '}'        {       
+       | KEY pitch_list        {       
                Key_change_req *key_p= new Key_change_req;
-               key_p->melodic_p_arr_ = *$3;
+               key_p->melodic_p_arr_ = *$2;
                $$ = key_p;
-               delete $3;
-       }
-       | GROUPING '{' intastint_list '}' {
-               $$ = get_grouping_req(*$3); delete $3;
-       }
-       | GROUP STRING          {
-               $$ = new Group_change_req;
-               $$ -> command()->groupchange()->newgroup_str_ = *$2;
                delete $2;
        }
+       | GROUPING intastint_list {
+               $$ = get_grouping_req(*$2); delete $2;
+       }
        ;
 
 post_requests:
@@ -635,31 +702,17 @@ post_requests:
                $2->set_spot( THIS->here_input());
                THIS->post_reqs.push($2);
        }
-       | post_requests close_plet_parens INT '/' INT { 
-               THIS->post_reqs.push( THIS->get_parens_request($2) ); 
-               THIS->post_reqs.push( get_plet_request( $2, $3, $5 ) ); 
-       }
        ;
 
-post_request:
-       pure_post_request
-       | POST_REQUEST_IDENTIFIER       {
-               $$ = $1->request(false)->clone();
-       }
-       ;
 
-pure_post_request: 
-       pure_post_request_choice        {
-               $$ = $1;
-               $$->set_spot( THIS->here_input());
+post_request:
+       POST_REQUEST_IDENTIFIER {
+               $$ = (Request*)$1->request();
        }
-       ;
-pure_post_request_choice:
-       close_request_parens    { 
+       |close_request_parens   { 
                $$ = THIS->get_parens_request($1); 
        }
        | script_req
-       | textscript_req
        | dynamic_req
        ;
 
@@ -669,8 +722,8 @@ pure_post_request_choice:
        URG!!
 */
 steno_melodic_req:
-       MELODIC_REQUEST_IDENTIFIER      {
-               $$ = $1->request(false)->clone()->melodic();
+       NOTENAME_ID     {
+               $$ = $1->clone()->musical()->melodic();
                $$->octave_i_ += THIS->default_octave_i_;
        }
        | steno_melodic_req POST_QUOTES         {  
@@ -703,13 +756,21 @@ melodic_request:
        }
        ;
 
+explicit_duration:
+       DURATION '{' int int '}'        {
+               $$ = new Duration;
+               $$-> durlog_i_ = $3;
+               $$-> dots_i_ = $4;
+       }
+       ;
+
 dynamic_req:
        ABSDYNAMIC '{' int '}'  {
                Absolute_dynamic_req *ad_p = new Absolute_dynamic_req;
                ad_p ->loudness_ = (Dynamic_req::Loudness)$3;
                $$ =ad_p;
        }
-       |SPANDYNAMIC '{' int int '}' {
+       | SPANDYNAMIC '{' int int '}' {
                Span_dynamic_req * sp_p = new Span_dynamic_req;
                sp_p->spantype = $4;
                sp_p-> dynamic_dir_i_  = $3;
@@ -718,58 +779,99 @@ dynamic_req:
        ;
 
 close_plet_parens:
-       ']' {
+       ']' INT '/' INT {
                $$ = ']';
+               THIS->plet_.type_i_ = $4;
+               THIS->plet_.iso_i_ = $2;
        }
        ;
 
 close_request_parens:
-       '('     { 
+       '~'     {
+               $$ = '~';
+       }
+       | '('   { 
                $$='(';
        }
        | ']'   { 
                $$ = ']';
        }
+       | close_plet_parens {
+               $$ = ']';
+       }
+       | E_SMALLER {
+               $$ = '<';
+       }
+       | E_BIGGER {
+               $$ = '>';
+       }
+       ;
+
+open_plet_parens:
+       '[' INT '/' INT {
+               $$ = '[';
+               THIS->plet_.type_i_ = $4;
+               THIS->plet_.iso_i_ = $2;
+       }
        ;
-  
+
 open_request_parens:
-       ')'     { 
+       E_EXCLAMATION   {
+               $$ = '!';
+       }
+       | ')'   { 
                $$=')';
        }
        | '['   {
                $$='[';
        }
+       | open_plet_parens {
+       }
        ;
 
+
+
 script_definition:
        SCRIPT '{' script_body '}'      { $$ = $3; }
        ;
 
 script_body:
-       STRING int int int              {
-               $$ = new Script_def(*$1,$2, $3,$4);
+       STRING int int int int int              {
+               Script_def *s = new Script_def;
+               s->set_from_input(*$1,$2, $3,$4,$5, $6);
+               $$  = s;
                delete $1;
        }       
        ;
 
-textscript_req:
-       script_dir mudela_text          { $$ = get_text_req($1,$2); }
+script_req:
+       script_dir gen_script_def               { 
+               Musical_script_req *m = new Musical_script_req;
+               $$ = m; 
+               m-> scriptdef_p_ = $2;
+               m-> set_spot ( THIS->here_input() );
+               m-> dir_i_  = $1;
+       }
        ;
 
-mudela_text:
-       STRING                  { 
-               $$ = new Text_def;
-               $$->text_str_ = *$1; 
-               delete $1;
-               $$->style_str_ = THIS->textstyle_str_;
+gen_script_def:
+       text_def        { $$ = $1; }
+       | mudela_script { $$ = $1; 
+               $$-> set_spot( THIS->here_input() );
        }
        ;
 
-script_req:
-       script_dir mudela_script        { 
-               $$ = get_script_req($1, $2);
+text_def:
+       STRING { 
+               Text_def *t  = new Text_def;
+               $$ = t;
+               t->text_str_ = *$1; 
+               delete $1;
+               t->style_str_ = THIS->textstyle_str_;
+               $$->set_spot( THIS->here_input() );
        }
        ;
+
 script_abbreviation:
        '^'             { $$ = get_scriptdef('^'); }
        | '+'           { $$ = get_scriptdef('+'); }
@@ -777,18 +879,16 @@ script_abbreviation:
        | '|'           { $$ = get_scriptdef('|'); }
        | 'o'           { $$ = get_scriptdef('o'); }
        | '>'           { $$ = get_scriptdef('>'); }
-       | DOTS          {
-               if ( $1 > 1 ) 
-                   THIS->here_input().warning( "too many staccato dots"  );
+       | '.'           {
                $$ = get_scriptdef('.');
        }
        ;
        
 mudela_script:
-       SCRIPT_IDENTIFIER               { $$ = $1->script(true); }
+       SCRIPT_IDENTIFIER               { $$ = $1->script(); }
        | script_definition             { $$ = $1; }
        | script_abbreviation           { 
-               $$ = THIS->lexer_p_->lookup_identifier(*$1)->script(true);
+               $$ = THIS->lexer_p_->lookup_identifier(*$1)->script();
                delete $1;
        }
        ;
@@ -813,21 +913,30 @@ pre_request:
        ;
 
 voice_command:
-       PLET    '{' INT '/' INT '}'             {
-               THIS->default_duration_.set_plet($3,$5);
+       PLET     INT '/' INT {
+               THIS->default_duration_.set_plet($2,$4);
        }
-       | DURATIONCOMMAND '{' STRING '}'        {
-               THIS->set_duration_mode(*$3);
-               delete $3;
+       | DURATION STRING {
+               THIS->set_duration_mode(*$2);
+               delete $2;
        }
-       | DURATIONCOMMAND '{' notemode_duration '}'     {
-               THIS->default_duration_ = *$3;
-               delete $3;
+       | DURATION entered_notemode_duration {
+               THIS->set_default_duration($2);
+               delete $2;
        }
-       | OCTAVECOMMAND { THIS->default_octave_i_ = 2; }
+       | OCTAVE { 
+               /*
+                       This is weird, but default_octave_i_
+                       is used in steno_note_req too
+
+                       c' -> default_octave_i_ == 1
+               */
+               /* why can't we have \oct{0} iso \oct{c'}*/
+               THIS->default_octave_i_ = 1; }
 /* cont */
-       '{' steno_melodic_req '}'       {
-               THIS->default_octave_i_ = $4->octave_i_;
+       steno_melodic_req {
+               THIS->default_octave_i_ = $3->octave_i_;
+               delete $3;
        }
        | TEXTSTYLE STRING      {
                THIS->textstyle_str_ = *$2;
@@ -836,49 +945,70 @@ voice_command:
        ;
 
 duration_length:       
-        {
+       {
                $$ = new Moment(0,1);
        }
-       | duration_length explicit_duration             {       
+       | duration_length explicit_steno_duration               {       
                *$$ += $2->length();
        }
        ;
 
-notemode_duration:
+dots:
+       '.'             { $$ = 1; }
+       | dots '.'      { $$ ++; }
+       ;
+
+entered_notemode_duration:
        /* */           { 
                $$ = new Duration(THIS->default_duration_);
        }
-       | DOTS          {
-               $$ = new Duration(THIS->default_duration_);
-               $$->dots_i_ = $1;
+       | dots          {
+               $$ = new Duration(THIS->default_duration_);             
+               $$->dots_i_  = $1;
        }
-       | explicit_duration     {
+       | explicit_steno_duration       {
                THIS->set_last_duration($1);
                $$ = $1;
        }
        ;
 
-explicit_duration:
+notemode_duration:
+       entered_notemode_duration {
+               $$ = $1;
+               $$->plet_.type_i_ *= THIS->plet_.type_i_;
+               $$->plet_.iso_i_ *= THIS->plet_.iso_i_;
+       }
+       ;
+
+explicit_steno_duration:
        int             {
                $$ = new Duration;
-               $$->type_i_ = $1;
+               if ( !Duration::duration_type_b($1) )
+                       THIS->parser_error("Not a duration");
+               else {
+                       $$->durlog_i_ = Duration_convert::i2_type($1);
+                    }
        }
-       | explicit_duration DOTS        {
-               $$->dots_i_ = $2;
+       | DURATION_IDENTIFIER   {
+               $$ = $1->duration();
        }
-       | explicit_duration '*' int  {
+       | explicit_steno_duration '.'   {
+               $$->dots_i_ ++;
+       }
+       | explicit_steno_duration '*' int  {
                $$->plet_.iso_i_ *= $3; 
        }
-       | explicit_duration '/' int {
+       | explicit_steno_duration '/' int {
                $$->plet_.type_i_ *= $3; 
        }
        ;
 
 
-voice_elt:
+music_elt:
        steno_note_req notemode_duration                {
                if (!THIS->lexer_p_->note_state_b())
                        THIS->parser_error("have to be in Note mode for notes");
+               $1->set_duration (*$2);
                $$ = THIS->get_note_element($1, $2);
        }
        | RESTNAME notemode_duration            {
@@ -888,7 +1018,8 @@ voice_elt:
        ;
 
 lyrics_elt:
-       mudela_text notemode_duration                   {
+       text_def notemode_duration                      {
+       /* this sux! text-def should be feature of lyric-engraver. */
                if (!THIS->lexer_p_->lyric_state_b())
                        THIS->parser_error("Have to be in Lyric mode for lyrics");
                $$ = THIS->get_word_element($1, $2);
@@ -901,28 +1032,31 @@ lyrics_elt:
 pitch_list:                    {
                $$ = new Array<Melodic_req*>;
        }
-       | pitch_list MELODIC_REQUEST_IDENTIFIER {
-               $$->push($2->request(false)->clone()->melodic());
+       | pitch_list NOTENAME_ID        {
+               $$->push($2->clone()->musical()->melodic());
        }
        ;
 
 int:
-       real                    {
-               $$ = int($1);
-               if ( distance($1,Real(int($$)) ) > 1e-8)
-                       yyerror( "integer expected" );
+       INT                     {
+               $$ = $1;
+       }
+       | INT_IDENTIFIER        {
+               int *i_p = $1->intid();
+               $$ = *i_p;
+               delete i_p;
        }
        ;
 
+
 real:
-       INT                     {
-               $$ = Real($1);
-       }
-       | REAL          {
+       REAL            {
                $$ = $1;
        }
        | REAL_IDENTIFIER               {
-               $$ = * $1->real(0);             
+               Real *r_p = $1->real();
+               $$ = * r_p;
+               delete r_p;
        }
        ;
        
@@ -951,7 +1085,7 @@ symtables_body:
                $$ = new Lookup;
        }
        | IDENTIFIER            {
-               $$ = new Lookup(*$1->lookup(true));
+               $$ = $1->lookup();
        }
        | symtables_body TEXID STRING           {
                $$->texsetting = *$3;
@@ -983,7 +1117,7 @@ symboldef:
                delete $2;
        }
        | STRING {
-               Box b;
+               Box b(Interval(0,0), Interval(0,0));
                $$ = new Symbol(*$1, b);
                delete $1;
        }
@@ -1020,7 +1154,14 @@ My_lily_parser::do_yyparse()
 Paper_def*
 My_lily_parser::default_paper()
 {
-    return new Paper_def(
-       lexer_p_->lookup_identifier("default_table")->lookup(true));
+       Identifier *id = lexer_p_->lookup_identifier( "default_paper" );
+       return id ? id->paperdef() : new Paper_def ;
+}
+
+Midi_def*
+My_lily_parser::default_midi()
+{
+       Identifier *id = lexer_p_->lookup_identifier( "default_midi" );
+       return id ? id->mididef() : new Midi_def ;
 }