--# -path=.:../romance:../abstract:../common:prelude instance DiffFre of DiffRomance = open CommonRomance, PhonoFre, Prelude in { flags optimize=noexpand ; -- flags optimize=all ; param Prepos = P_de | P_a ; VType = VHabere | VEsse | VRefl ; oper dative : Case = CPrep P_a ; genitive : Case = CPrep P_de ; prepCase : Case -> Str = \c -> case c of { Nom => [] ; Acc => [] ; CPrep P_a => "à" ; CPrep P_de => elisDe } ; artDef : Gender -> Number -> Case -> Str = \g,n,c -> case of { => pre {"du" ; ["de l'"] / voyelle} ; => pre {"au" ; ["à l'"] / voyelle} ; => elisLe ; => prepCase c ++ elisLa ; <_, Pl, CPrep P_de> => "des" ; <_, Pl, CPrep P_a> => "aux" ; <_, Pl, _ > => "les" } ; -- In these two, "de de/du/des" becomes "de". artIndef = \g,n,c -> case of { => prepCase c ++ genForms "un" "une" ! g ; => elisDe ; _ => prepCase c ++ "des" } ; possCase = \_,_,c -> prepCase c ; partitive = \g,c -> case c of { CPrep P_de => elisDe ; _ => prepCase c ++ artDef g Sg (CPrep P_de) } ; conjunctCase : NPForm -> NPForm = \c -> case c of { Aton k => Ton k ; _ => c } ; auxVerb : VType -> (VF => Str) = \vtyp -> case vtyp of { VHabere => avoir_V.s ; _ => copula.s } ; partAgr : VType -> VPAgr = \vtyp -> case vtyp of { VHabere => vpAgrNone ; _ => VPAgrSubj } ; vpAgrClit : Agr -> VPAgr = \a -> VPAgrClit (aagr a.g a.n) ; --- subty ---- pronArg = pronArgGen Neg ; --- takes more space and time pronArg : Number -> Person -> CAgr -> CAgr -> Str * Str * Bool = \n,p,acc,dat -> let pacc = case acc of { CRefl => elision "s" ; --- use of reflPron incred. expensive _ => argPron Fem n p Acc },True> ; CPron ag an ap => ; _ => <[],False> } ; in case dat of { CPron ag an ap => let pdat = argPron ag an ap dative in case ap of { P3 => ; _ => } ; _ => } ; -- Positive polarity is used in the imperative: stressed for 1st and -- 2nd persons. pronArgGen : Polarity -> Number -> Person -> CAgr -> CAgr -> Str * Str = \b,n,p,acc,dat -> let cas : Person -> Case -> Case = \pr,c -> case of { => CPrep P_de ; --- encoding in argPron _ => c } ; pacc = case acc of { CRefl => case p of { P3 => elision "s" ; --- use of reflPron incred. expensive _ => argPron Fem n p (cas p Acc) } ; CPron ag an ap => argPron ag an ap (cas ap Acc) ; _ => [] } ; pdat = case dat of { CPron ag an ap => argPron ag an ap (cas ap dative) ; _ => [] } ; in case dat of { CPron _ _ P3 => ; _ => } ; mkImperative b p vp = { s = \\pol,aag => let num = if_then_else Number b Pl aag.n ; agr = {g = aag.g ; n = num ; p = p} ; verb = (vp.s ! VPImperat).fin ! agr ; neg = vp.neg ! pol ; hascl = (pronArg agr.n agr.p vp.clAcc vp.clDat).p3 ; clpr = pronArgGen pol agr.n agr.p vp.clAcc vp.clDat ; compl = neg.p2 ++ clpr.p2 ++ vp.comp ! agr ++ vp.ext ! pol in case pol of { Pos => verb ++ if_then_Str hascl "-" [] ++ clpr.p1 ++ compl ; Neg => neg.p1 ++ clpr.p1 ++ verb ++ compl } } ; negation : Polarity => (Str * Str) = table { Pos => <[],[]> ; Neg => } ; conjThan = elisQue ; conjThat = elisQue ; subjIf = "si" ; --- s' clitInf _ cli inf = cli ++ inf ; relPron : Bool => AAgr => Case => Str = \\b,a,c => let lequel = artDef a.g a.n c + quelPron ! a in case b of { False => case c of { Nom => "qui" ; Acc => elisQue ; CPrep P_de => "dont" ; _ => lequel } ; _ => lequel } ; pronSuch : AAgr => Str = aagrForms "tel" "telle" "tels" "telles" ; quelPron : AAgr => Str = aagrForms "quel" "quelle" "quels" "quelles" ; partQIndir = [] ; --- only for qui,que: elision "c" ; reflPron : Number -> Person -> Case -> Str = \n,p,c -> let pron = argPron Fem n p c in case of { => elision "s" ; => prepCase c ++ "soi" ; _ => pron } ; argPron : Gender -> Number -> Person -> Case -> Str = let cases : (x,y : Str) -> Case -> Str = \me,moi,c -> case c of { Acc | CPrep P_a => me ; _ => moi } ; cases3 : (x,y,z : Str) -> Case -> Str = \les,leur,eux,c -> case c of { Acc => les ; CPrep P_a => leur ; _ => eux } ; in \g,n,p -> case of { <_,Sg,P1> => cases (elision "m") "moi" ; <_,Sg,P2> => cases (elision "t") "toi" ; <_,Pl,P1> => \_ -> "nous" ; <_,Pl,P2> => \_ -> "vous" ; => cases3 elisLa "lui" "elle" ; <_,Sg,P3> => cases3 (elision "l") "lui" "lui" ; => cases3 "les" "leur" "elles" ; <_,Pl,P3> => cases3 "les" "leur" "eux" } ; vRefl : VType = VRefl ; isVRefl : VType -> Bool = \ty -> case ty of { VRefl => True ; _ => False } ; auxPassive : Verb = copula ; copula : Verb = {s = table VF ["être";"être";"suis";"es";"est";"sommes";"êtes";"sont";"sois";"sois";"soit";"soyons";"soyez";"soient";"étais";"étais";"était";"étions";"étiez";"étaient";"fusse";"fusses";"fût";"fussions";"fussiez";"fussent";"fus";"fus";"fut";"fûmes";"fûtes";"furent";"serai";"seras";"sera";"serons";"serez";"seront";"serais";"serais";"serait";"serions";"seriez";"seraient";"sois";"soyons";"soyez";"été";"étés";"étée";"étées";"étant"]; vtyp=VHabere} ; avoir_V : Verb = {s=table VF ["avoir";"avoir";"ai";"as";"a";"avons";"avez";"ont";"aie";"aies";"ait";"ayons";"ayez";"aient";"avais";"avais";"avait";"avions";"aviez";"avaient";"eusse";"eusses";"eût";"eussions";"eussiez";"eussent";"eus";"eus";"eut";"eûmes";"eûtes";"eurent";"aurai";"auras";"aura";"aurons";"aurez";"auront";"aurais";"aurais";"aurait";"aurions";"auriez";"auraient";"aie";"ayons";"ayez";"eu";"eus";"eue";"eues";"ayant"];vtyp=VHabere}; }