resume in world-sexp
parent
6e54846a3f
commit
0c976a1634
@ -1,41 +1,31 @@
|
|||||||
#lang ragg
|
#lang ragg
|
||||||
|
|
||||||
txtadv-program : [verb-section] [everywhere-section] [things-section] places-section start-section
|
txtadv-program : verb-section everywhere-section things-section places-section start-section
|
||||||
|
|
||||||
verb-section : "===VERBS===" verb-item+
|
verb-section : "===VERBS===" verb-item+
|
||||||
|
|
||||||
verb-item : verb-name+ desc
|
verb-item : verb-name+ s-exp
|
||||||
|
|
||||||
verb-name : [","] ID ["_"]
|
verb-name : [","] ID ["_"]
|
||||||
|
|
||||||
everywhere-section : "===EVERYWHERE===" everywhere-item+
|
everywhere-section : "===EVERYWHERE===" id-desc+
|
||||||
|
|
||||||
everywhere-item : ID desc
|
|
||||||
|
|
||||||
things-section : "===THINGS===" thing-item+
|
things-section : "===THINGS===" thing-item+
|
||||||
|
|
||||||
thing-item : thing-id thing-action+
|
thing-item : DASHED-NAME id-desc+
|
||||||
|
|
||||||
thing-id : DASHED-NAME
|
|
||||||
|
|
||||||
thing-action : ID desc
|
|
||||||
|
|
||||||
places-section : "===PLACES===" place-item+
|
places-section : "===PLACES===" place-item+
|
||||||
|
|
||||||
place-item : place-id place-descrip place-items place-action+
|
place-item : DASHED-NAME place-descrip place-items id-desc+
|
||||||
|
|
||||||
place-id : DASHED-NAME
|
place-descrip : STRING ; `place-desc` is already used in expander
|
||||||
|
|
||||||
place-descrip : STRING ; place-desc is already used in expander
|
place-items : "[" place-name* "]" ; `place-things` is already used
|
||||||
|
|
||||||
place-items : "[" place-name* "]" ; place-things is already used
|
|
||||||
|
|
||||||
place-name : [","] ID
|
place-name : [","] ID
|
||||||
|
|
||||||
place-action : ID desc
|
|
||||||
|
|
||||||
start-section : "===START===" place-name
|
start-section : "===START===" place-name
|
||||||
|
|
||||||
desc : s-exp
|
id-desc : ID s-exp
|
||||||
|
|
||||||
s-exp : ID | STRING | ("(" | "[" | "{") s-exp* (")" | "]" | "}")
|
s-exp : ID | STRING | "(" s-exp* ")"
|
Loading…
Reference in New Issue