summaryrefslogtreecommitdiff
path: root/examples/tram/TramI.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2005-12-09 16:29:49 +0000
committeraarne <aarne@cs.chalmers.se>2005-12-09 16:29:49 +0000
commit8ee11c0e7edaa32b606ac96ec24cc2f8d0bca2e3 (patch)
tree853eecdc16c18d7815892dd80c02bdce97532160 /examples/tram/TramI.gf
parent5766d566a8477cd8d651eb51cd6fb2359a976be5 (diff)
tram with new API
Diffstat (limited to 'examples/tram/TramI.gf')
-rw-r--r--examples/tram/TramI.gf44
1 files changed, 44 insertions, 0 deletions
diff --git a/examples/tram/TramI.gf b/examples/tram/TramI.gf
new file mode 100644
index 000000000..4ac7775ea
--- /dev/null
+++ b/examples/tram/TramI.gf
@@ -0,0 +1,44 @@
+incomplete concrete TramI of Tram = open Multimodal, Math in {
+
+flags startcat=Query ; lexer=textlit ;
+
+lincat
+ Query = Phr ; -- top level, plain string
+ Input = MS ; -- two parallel sequences (text and clicks)
+ Dep, Dest = MAdv ;
+ Click = Point ;
+
+lin
+ QInput = PhrMS PPos ;
+
+ GoFromTo x y =
+ MPredVP (DemNP (UsePron i_Pron))
+ (MAdvVP (MAdvVP (MComplVV want_VV (MUseV go_V)) x) y) ;
+
+ GoToFrom x y =
+ MPredVP (DemNP (UsePron i_Pron))
+ (MAdvVP (MAdvVP (MComplVV want_VV (MUseV go_V)) x) y) ;
+
+ ComeFrom x =
+ MPredVP (DemNP (UsePron i_Pron))
+ (MAdvVP (MComplVV want_VV (MUseV go_V)) x) ;
+
+ GoTo x =
+ MPredVP (DemNP (UsePron i_Pron))
+ (MAdvVP (MComplVV want_VV (MUseV go_V)) x) ;
+
+ DepClick = here7from_MAdv ;
+ DestClick = here7to_MAdv ;
+ DepHere = DemAdv here7from_Adv ;
+ DestHere = DemAdv here7to_Adv ;
+ DepNamed s = MPrepNP from_Prep (DemNP (UsePN (SymbPN (MkSymb s)))) ;
+ DestNamed s = MPrepNP to_Prep (DemNP (UsePN (SymbPN (MkSymb s)))) ;
+
+ CCoord x y = {point = "(" ++ x.s ++ "," ++ y.s ++ ")" ; lock_Point = <>} ;
+
+-- Place = DNP ; -- name + click - not possible for "here"
+-- PClick c = this_DNP c ;
+-- PHere = DemNP this_NP ;
+-- PNamed s = DemNP (UsePN (SymbPN s)) ;
+
+}