--# -path=.:../abstract:../common:../../prelude -- --1 Hindi auxiliary operations. -- -- This module contains operations that are needed to make the -- resource syntax work. resource ResHin = ParamX ** open Prelude in { flags optimize=all ; param Case = Dir | Obl | Voc ; Gender = Masc | Fem ; oper Noun = {s : Number => Case => Str ; g : Gender} ; mkNoun : (x1,_,_,_,_,x6 : Str) -> Gender -> Noun = \sd,so,sv,pd,po,pv,g -> { s = table Number [table Case [sd;so;sv] ; table Case [pd;po;pv]] ; g = g } ; reggNoun : Str -> Gender -> Noun = \s,g -> case of { <-(_ + ("+a:" | "+i:")), Fem> => mkNoun s s s (s + "+e~") (s + "+o~") (s + "+o") Fem ; _ => regNoun s ** {g = g} } ; regNoun : Str -> Noun = \s -> case s of { x + "+iya:" => mkNoun s s s (x + "+iya:~") (x + "+iyo*") (x + "+iyo") Fem ; x + "+a:" => mkNoun s (x + "+e") (x + "+e") (x + "+e") (x + "+o*") (x + "+o") Masc ; x + "+i:" => mkNoun s s s (x + "+iya:~") (x + "+iyo*") (x + "+iyo") Fem ; _ => mkNoun s s s s (s + "+o*") (s + "+o") Masc } ; Adjective = {s : Gender => Number => Case => Str} ; mkAdjective : (x1,x2,x3 : Str) -> Adjective = \smd,sm,f -> { s = \\g,n,c => case of { => smd ; => sm ; _ => f } } ; regAdjective : Str -> Adjective = \s -> case s of { acch + "+a:" => mkAdjective s (acch + "+e") (acch + "+i:") ; _ => mkAdjective s s s } ; param VForm = VInf | VStem | VImpf Gender Number | VPerf Gender Number | VSubj Number Person | VFut Number Person Gender | VAbs | VReq | VImp | VReqFut ; oper Verb = {s : VForm => Str} ; mkVerb : (x1,_,_,_,_,_,_,_,_,_,_,_,_,_,x15 : Str) -> Verb = \inf,stem,ims,imp,ifs,ifp,pms,pmp,pfs,pfp,ss1,ss2,sp2,sp3,r -> { s = let ga : Number -> Gender -> Str = \n,g -> (regAdjective "ga:").s ! g ! n ! Dir in table { VInf => inf ; VStem => stem ; VImpf Masc Sg => ims ; VImpf Masc Pl => imp ; VImpf Fem Sg => ifs ; VImpf Fem Pl => ifp ; VPerf Masc Sg => pms ; VPerf Masc Pl => pmp ; VPerf Fem Sg => pfs ; VPerf Fem Pl => pfp ; VSubj Sg P1 => ss1 ; VSubj Sg _ => ss2 ; VSubj Pl P2 => sp2 ; VSubj Pl _ => sp3 ; VFut Sg P1 g => ss1 + ga Sg g ; VFut Sg _ g => ss2 + ga Sg g ; VFut Pl P2 g => sp2 + ga Pl g ; VFut Pl _ g => sp3 + ga Pl g ; VAbs => stem + "kar" ; --- ke VReq => r ; VImp => sp2 ; VReqFut => stem + "i-ega:" } } ; regVerb : Str -> Verb = \cal -> let caly : Str = case cal of { _ + ("+a:" | "+e") => cal + "+y" ; c + "+u:" => c + "+uy" ; c + "+i:" => c + "+iy" ; --- c + v@("+u" | "+i") + ":" => c + v + "+y" ; _ => cal } in mkVerb (cal + "na:") cal (cal + "ta:") (cal + "te") (cal + "ti:") (cal + "ti:") (caly + "+a:") (caly + "+e") (caly + "+i:") (caly + "+i:*") (caly + "+u:~") (caly + "+e") (caly + "+o") (caly + "+e*") (caly + "+i-e") ; param CTense = CPresent | CPast | CFuture ; oper copula : CTense -> Number -> Person -> Gender -> Str = \t,n,p,g -> case of { => "hu:~" ; => "hE" ; => "hE" ; => "hE*" ; => "ho" ; => "hE*" ; => "Ta:" ; => "Ti:" ; => "Te" ; => "Ti:*" ; => "hu:*ga:" ; => "hu:*gi:" ; => "hoga:" ; => "hogi:" ; => "hoge" ; => "ho*ge" ; => "hogi:" ; => "ho*gi:" } ; param PronCase = PCase Case | PObj | PPoss ; oper personalPronoun : Person -> Number -> {s : PronCase => Str} = \p,n -> case of { => {s = table PronCase ["mE*" ; "muJ" ; "muJe" ; "mera:"]} ; => {s = table PronCase ["ham" ; "ham" ; "hame*" ; "hama:ra:"]} ; => {s = table PronCase ["tu:" ; "tuJ" ; "tuJe" ; "tera:"]} ; => {s = table PronCase ["tum" ; "tum" ; "tumhe*" ; "tumha:ra:"]} ; => {s = table PronCase ["vah" ; "us" ; "use" ; "uska:"]} ; => {s = table PronCase ["ve" ; "un" ; "unhe*" ; "unka:"]} } ; -- the Hindi verb phrase --- CTense = CPresent | CPast | CFuture ; param VPHTense = VPGenPres -- impf hum nahim "I go" | VPImpPast -- impf Ta nahim "I went" | VPContPres -- stem raha hum nahim "I am going" | VPContPast -- stem raha Ta nahim "I was going" | VPPerf -- perf na/nahim "I went" | VPPerfPres -- perf hum na/nahim "I have gone" | VPPerfPast -- perf Ta na/nahim "I had gone" | VPSubj -- subj na "I may go" | VPFut -- fut na/nahim "I shall go" ; VPHForm = VPTense VPHTense Agr -- 9 * 12 | VPReq | VPImp | VPReqFut | VPInf | VPStem ; VType = VIntrans | VTrans | VTransPost ; oper VPH : Type = { s : Bool => VPHForm => {fin, inf, neg : Str} ; obj : {s : Str ; a : Agr} ; subj : VType ; comp : Agr => Str } ; predV : Verb -> VPH = \verb -> { s = \\b,vh => let na = if_then_Str b [] "na" ; nahim = if_then_Str b [] "nahi:*" ; in case vh of { VPTense VPGenPres (Ag g n p) => {fin = copula CPresent n p g ; inf = verb.s ! VImpf g n ; neg = nahim} ; VPTense VPImpPast (Ag g n p) => {fin = copula CPast n p g ; inf = verb.s ! VImpf g n ; neg = nahim} ; VPTense VPContPres (Ag g n p) => {fin = copula CPresent n p g ; inf = verb.s ! VStem ++ raha g n ; neg = nahim} ; VPTense VPContPast (Ag g n p) => {fin = copula CPast n p g ; inf = verb.s ! VStem ++ raha g n ; neg = nahim} ; VPTense VPPerf (Ag g n _) => {fin = verb.s ! VPerf g n ; inf = [] ; neg = nahim} ; VPTense VPPerfPres (Ag g n p) => {fin = copula CPresent n p g ; inf = verb.s ! VPerf g n ; neg = nahim} ; VPTense VPPerfPast (Ag g n p) => {fin = copula CPast n p g ; inf = verb.s ! VPerf g n ; neg = nahim} ; VPTense VPSubj (Ag _ n p) => {fin = verb.s ! VSubj n p ; inf = [] ; neg = na} ; VPTense VPFut (Ag g n p) => {fin = verb.s ! VFut n p g ; inf = [] ; neg = na} ; VPInf => {fin = verb.s ! VStem ; inf = [] ; neg = na} ; _ => {fin = verb.s ! VStem ; inf = [] ; neg = na} ---- } ; obj = {s = [] ; a = defaultAgr} ; subj = VIntrans ; comp = \\_ => [] } ; raha : Gender -> Number -> Str = \g,n -> (regAdjective "raha:").s ! g ! n ! Dir ; VPHSlash = VPH ** {c2 : Compl} ; Clause : Type = {s : VPHTense => Bool => Str} ; Compl : Type = {s : Str ; c : VType} ; insertObject : NP -> VPHSlash -> VPH = \np,vps -> { s = vps.s ; obj = {s = vps.obj.s ++ np.s ! NPC Obl ++ vps.c2.s ; a = np.a} ; subj = vps.c2.c ; comp = vps.comp } ; param Agr = Ag Gender Number Person ; NPCase = NPC Case | NPErg ; oper agrP3 : Gender -> Number -> Agr = \g,n -> Ag g n P3 ; defaultAgr : Agr = agrP3 Masc Sg ; npcase2case : NPCase -> Case = \npc -> case npc of { NPC c => c ; NPErg => Obl } ; toNP : (Case => Str) -> NPCase -> Str = \pn, npc -> case npc of { NPC c => pn ! c ; NPErg => pn ! Obl ++ "ne" } ; NP : Type = {s : NPCase => Str ; a : Agr} ; --- param --- PronCase = PCase Case | PObj | PPoss ; --- oper --- personalPronoun : Person -> Number -> {s : PronCase => Str} = \p,n -> mkClause : NP -> VPH -> Clause = \np,vp -> { s = \\vt,b => let subjagr : NPCase * Agr = case of { => ; => ; _ => } ; subj = subjagr.p1 ; agr = subjagr.p2 ; vps = vp.s ! b ! VPTense vt agr ; in np.s ! subj ++ vp.obj.s ++ vp.comp ! np.a ++ vps.neg ++ vps.inf ++ vps.fin } ; }