forked from GitHub/gf-rgl
117 lines
2.9 KiB
Haskell
117 lines
2.9 KiB
Haskell
{-# LANGUAGE GADTs #-}
|
|
|
|
module Main where
|
|
|
|
import Infinitive
|
|
import PGF
|
|
import Data.List
|
|
|
|
data Fact = Fact {
|
|
content :: [Fact],
|
|
tense :: Maybe GTemp,
|
|
polarity :: Maybe GPol,
|
|
source :: Maybe GNP,
|
|
attitude :: Maybe GVS,
|
|
agent :: Maybe GNP,
|
|
action :: Maybe GVP
|
|
}
|
|
|
|
initFact = Fact [] Nothing Nothing Nothing Nothing Nothing Nothing
|
|
|
|
factTree fact = case action fact of
|
|
(Just vp) ->
|
|
GUttS $ GUseCl
|
|
(maybe presentTense id (tense fact))
|
|
(maybe positivePol id (polarity fact))
|
|
(GPredVP
|
|
(maybe (maybe Gsomebody_NP id (source fact)) id (agent fact))
|
|
vp)
|
|
_ -> GUttNP Gnothing_NP
|
|
|
|
presentTense = GTTAnt GTPres GASimul
|
|
pastTense = GTTAnt GTPast GASimul
|
|
perfectTense = GTTAnt GTPres GAAnter
|
|
pluperfectTense = GTTAnt GTPast GAAnter
|
|
positivePol = GPPos
|
|
negativePol = GPNeg
|
|
|
|
|
|
facts :: Infinitive.Tree a -> [Fact]
|
|
facts t = case t of
|
|
GAdjCN (GAgentPartAP np vpslash) cn ->
|
|
[initFact{
|
|
tense = Just perfectTense,
|
|
agent = Just np,
|
|
action = Just (GComplSlash vpslash (GMassNP cn))}]
|
|
GPredVP np (GComplPresPartActAgrVS vs vp) ->
|
|
[initFact{
|
|
attitude = Just vs,
|
|
source = Just np,
|
|
action = Just vp}]
|
|
GPredVP np (GComplPastPartActAgrVS vs vp) ->
|
|
[initFact{tense = Just perfectTense,
|
|
attitude = Just vs,
|
|
source = Just np,
|
|
action = Just vp}]
|
|
GPredVP np (GAdvVP vp adv) ->
|
|
[f{source = Just np} | f <- facts vp ++ facts adv]
|
|
GPredVP np vp ->
|
|
[f{source = Just np} | f <- facts vp]
|
|
GUseV v ->
|
|
[initFact{
|
|
action = Just t}]
|
|
GComplPresPartActVS vs np vp ->
|
|
[initFact{
|
|
attitude =
|
|
Just vs,
|
|
agent = Just np,
|
|
action = Just vp}]
|
|
GComplPastPartActVS vs np vp ->
|
|
[initFact{
|
|
tense = Just perfectTense,
|
|
attitude = Just vs,
|
|
agent = Just np,
|
|
action = Just vp}]
|
|
GInf3AbessAdv vp ->
|
|
[initFact{
|
|
polarity = Just negativePol,
|
|
action = Just vp}]
|
|
GComplPresPartPassVS vs np vpslash ->
|
|
[initFact{
|
|
attitude = Just vs,
|
|
action = Just (GComplSlash vpslash np)}]
|
|
GComplPastPartPassVS vs np vpslash ->
|
|
[initFact{
|
|
tense = Just perfectTense,
|
|
attitude = Just vs,
|
|
action = Just (GComplSlash vpslash np)}]
|
|
_ -> composOpMPlus facts t
|
|
|
|
|
|
shortest = take 1 . sortOn treesize
|
|
|
|
treesize t = case unApp t of
|
|
Just (f, xs) -> 1 + sum (map treesize xs)
|
|
_ -> 1
|
|
|
|
|
|
treat gr fin cat s = [
|
|
(showExpr [] t ++ "\t" ++ linearize gr fin t)
|
|
| pt <- shortest (parse gr fin cat s),
|
|
let gt = map (gf . factTree) (facts (fg pt :: GUtt)),
|
|
t <- gt
|
|
]
|
|
|
|
|
|
main = do
|
|
gr <- readPGF "Infinitive.pgf"
|
|
putStrLn "gr"
|
|
let Just fin = readLanguage "InfinitiveFin"
|
|
let typ = startCat gr
|
|
flip mapM_ [0..] $ \_ -> do
|
|
putStr "> "
|
|
s <- getLine
|
|
let ss = treat gr fin typ s
|
|
putStrLn $ unlines ss
|
|
|