WIP toy grammar. So far not connected to any version of Lam4 AST (neither Langium nor Haskell version). Idea is to just have a quick demo to show how the pipeline works.
$ gf Lam4Eng.gf
linking ... OK
Languages: Lam4Eng
Lam4> l -unlextext MkTypeDecl (MkMetadata "a game where you lose money") (MkName "Lottery") (ConsRowTypeDecl (MkRowDecl (MkMetadata "how much can be won from the jackpot") (MkName "‘total jackpot’")) (ConsRcowTypeDecl (MkRowDecl (MkMetadata "whether buying tickets from this lottery is tax deductible") (MkName "‘tax deductible status’")) BaseRowTypeDecl)) | ? tr "°∞" " \n"
should linearize into the following
A Lottery is a game where you lose money. Each Lottery has associated with it information like
* its ‘total jackpot’; i.e. how much can be won from the jackpot
* its ‘tax deductible status’; i.e. whether buying tickets from this lottery is tax deductible
Here's the same GF tree in a more readable format.
MkTypeDecl
( MkMetadata "a game where you lose money" ) "Lottery"
( ConsRowTypeDecl
( MkRowDecl
( MkMetadata "how much can be won from the jackpot" ) "‘total jackpot’"
)
( ConsRowTypeDecl
( MkRowDecl
( MkMetadata "whether buying tickets from this lottery is tax deductible" ) "‘tax deductible status’"
) BaseRowTypeDecl
)
)
How to connect this into the Haskell abstract syntax of Lam4:
- A Haskell datatype is automatically generated from the GF grammar (standard feature of GF)
- Transform a tree of either source (Langium JSON or Haskell AST) into the Haskell version of the GF grammar. (We write a general transformation function—obviously not doing this manually for every single tree.)
- Linearize the tree in GF.
If the rendering is simple enough to just use plain strings, as is the case in the toy grammar, I'm happy to use any other tool. GF is probably overkill for just swapping the order of some fixed strings.
But if we want to parse the strings into actual syntax trees, then GF makes sense.
> p "how much can be won from the jackpot"
And with that we can do all kinds of NLG, way beyond the purely string-based approach.