Modul:Verb: Unterschied zwischen den Versionen
Aus KGS-Wiki
Sn (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Sn (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 25: | Zeile 25: | ||
local frame = mw.getCurrentFrame() | local frame = mw.getCurrentFrame() | ||
local | local inf = frame.args[1] or frame:getParent().args[1] or 'Infinitiv'; | ||
local lInf = frame.args[2] or frame:getParent().args[2] or 0; | |||
local praes = frame.args[3] or frame:getParent().args[3] or 'Präsensstamm + '; | |||
local perf = frame.args[4] or frame:getParent().args[4] or 'Perfektstamm + '; | |||
local lPerf = frame.args[5] or frame:getParent().args[5] or 0; | |||
local ppp = frame.args[6] or frame:getParent().args[6] or 'PPP-Stamm + '; | |||
local lPPP = frame.args[7] or frame:getParent().args[7] or 0; | |||
local praesGV= frame.args.PraesGV or frame:getParent().args.PraesGV or 'AP'; | |||
local perfGV = frame.args.PerfGV or frame:getParent().args.PerfGV or 'AP'; | |||
function bildeInfinitive(params) | function bildeInfinitive(params) | ||
local formen = {{},{}, {}} | local formen = {{},{}, {}} | ||
formen[PRAES][IND_AKT] = inf | formen[PRAES][IND_AKT] = inf | ||
Zeile 63: | Zeile 55: | ||
function bildePartizipien(params) | function bildePartizipien(params) | ||
local formen = {} | local formen = {} | ||
if | if praes:match("[ae]$") then | ||
formen[PRAES] = | formen[PRAES] = praes .. "ns, " .. praes .. "ntis" | ||
else | else | ||
formen[PRAES] = | formen[PRAES] = praes .. "ens, " .. praes .. "entis" | ||
end | end | ||
formen[PERF] = | formen[PERF] = ppp .. "us/a/um" | ||
formen[FUTUR] = | formen[FUTUR] = ppp .. "urus/a/um" | ||
return formen | return formen | ||
end | end | ||
Zeile 75: | Zeile 67: | ||
function bildeND(params) | function bildeND(params) | ||
local formen = {} | local formen = {} | ||
if | if praes:match("[ae]$") then | ||
formen[1] = | formen[1] = praes .. "ndi" | ||
formen[2] = | formen[2] = praes .. "ndus/a/um" | ||
else | else | ||
formen[1] = | formen[1] = praes .. "endi" | ||
formen[2] = | formen[2] = praes .. "endus/a/um" | ||
end | end | ||
return formen | return formen | ||
Zeile 86: | Zeile 78: | ||
function bildePraesens(params) | function bildePraesens(params) | ||
local formen = createFormTable(praesGV) | |||
local formen = createFormTable( | |||
local endungen = {} | local endungen = {} | ||
endungen[IND_AKT] = OST | endungen[IND_AKT] = OST | ||
Zeile 131: | Zeile 122: | ||
end | end | ||
end | end | ||
if praes:match("i$") and not | if praes:match("i$") and not inf:match("ir[ei]$") then | ||
setIfPossible(formen[IND_PASS], 2, praes:sub(1,-2) .. 'eris') | setIfPossible(formen[IND_PASS], 2, praes:sub(1,-2) .. 'eris') | ||
end | end | ||
if | if praesGV:match("A") then | ||
if praes:match("[aei]$") then | if praes:match("[aei]$") then | ||
setIfPossible(formen[IMPERATIV],2, praes .. "!") | setIfPossible(formen[IMPERATIV],2, praes .. "!") | ||
Zeile 156: | Zeile 147: | ||
function bildeImperfekt(params) | function bildeImperfekt(params) | ||
local formen = createFormTable(praesGV) | |||
local formen = createFormTable( | |||
local endungen = {} | local endungen = {} | ||
endungen[IND_AKT] = MST | endungen[IND_AKT] = MST | ||
Zeile 171: | Zeile 160: | ||
end | end | ||
if | if inf:match("[^r]i$") or inf:match("[^aei]ri") then | ||
konj_stamm = inf:sub(1,-2) .. 'ere' | konj_stamm = inf:sub(1,-2) .. 'ere' | ||
end | end | ||
if inf:match("ri$") then | if inf:match("[aei]ri$") then | ||
konj_stamm = praes .. 're' | konj_stamm = praes .. 're' | ||
end | end | ||
Zeile 191: | Zeile 180: | ||
function bildeFuturI(params) | function bildeFuturI(params) | ||
local formen = {} | local formen = {} | ||
local endungen = {} | local endungen = {} | ||
endungen[IND_AKT] = MST | endungen[IND_AKT] = MST | ||
endungen[IND_PASS] = RRISTUR | endungen[IND_PASS] = RRISTUR | ||
if | if praesGV:match("A") then | ||
formen[IND_AKT] = {} | formen[IND_AKT] = {} | ||
end | end | ||
if | if praesGV:match("P") then | ||
formen[IND_PASS] = {} | formen[IND_PASS] = {} | ||
end | end | ||
Zeile 226: | Zeile 214: | ||
function bildePerfekt(params) | function bildePerfekt(params) | ||
local formen = createFormTable(perfGV) | |||
local formen = createFormTable( | |||
local endungen = {} | local endungen = {} | ||
endungen[IND_AKT] = {'i', 'isti', 'it', 'imus', 'istis', 'erunt'} | endungen[IND_AKT] = {'i', 'isti', 'it', 'imus', 'istis', 'erunt'} | ||
Zeile 244: | Zeile 230: | ||
function bildePlusquamperfekt(params) | function bildePlusquamperfekt(params) | ||
local formen = createFormTable(perfGV) | |||
local formen = createFormTable( | |||
local endungen = {'us/a/um', 'us/a/um', 'us/a/um', 'i/ae/a', 'i/ae/a', 'i/ae/a'} | local endungen = {'us/a/um', 'us/a/um', 'us/a/um', 'i/ae/a', 'i/ae/a', 'i/ae/a'} | ||
Zeile 259: | Zeile 243: | ||
function bildeFuturII(params) | function bildeFuturII(params) | ||
local formen = {} | local formen = {} | ||
local endungen = {'us/a/um', 'us/a/um', 'us/a/um', 'i/ae/a', 'i/ae/a', 'i/ae/a'} | local endungen = {'us/a/um', 'us/a/um', 'us/a/um', 'i/ae/a', 'i/ae/a', 'i/ae/a'} | ||
if | if perfGV:match("A") then | ||
formen[IND_AKT] = {} | formen[IND_AKT] = {} | ||
end | end | ||
if | if perfGV:match("P") then | ||
formen[IND_PASS] = {} | formen[IND_PASS] = {} | ||
end | end | ||
Zeile 381: | Zeile 363: | ||
local pagecontent = '' | local pagecontent = '' | ||
lektionen = {} | lektionen = {} | ||
if | if lInf ~= "0" then | ||
table.insert(lektionen, | table.insert(lektionen, lInf) | ||
end | end | ||
if | if lPerf ~= "0" then | ||
table.insert(lektionen, | table.insert(lektionen, lPerf) | ||
end | end | ||
if | if lPPP ~= "0" then | ||
table.insert(lektionen, | table.insert(lektionen, lPPP) | ||
end | end | ||
pagecontent = pagecontent .. p.renderBox(frame) | pagecontent = pagecontent .. p.renderBox(frame) | ||
pagecontent = pagecontent .. p.renderFormen(frame) | pagecontent = pagecontent .. p.renderFormen(frame) | ||
pagecontent = pagecontent .. utils.renderFooter( | pagecontent = pagecontent .. utils.renderFooter(inf, bildePraesens(params)[praesTemp][1], lektionen) | ||
return pagecontent | return pagecontent | ||
end | end | ||
Zeile 399: | Zeile 381: | ||
local pagecontent = "" | local pagecontent = "" | ||
--params = init() | --params = init() | ||
if | if praesGV:match('A') then | ||
praesTemp = IND_AKT | praesTemp = IND_AKT | ||
else | else | ||
praesTemp = IND_PASS | praesTemp = IND_PASS | ||
end | end | ||
if | if perfGV:match('A') then | ||
perfTemp = IND_AKT | perfTemp = IND_AKT | ||
else | else | ||
perfTemp = IND_PASS | perfTemp = IND_PASS | ||
end | end | ||
local stammformen = { | local stammformen = {inf, bildePraesens(params)[praesTemp][1], bildePerfekt(params)[perfTemp][1]} | ||
if not | if not ppp:match("PPP") and perfGV == "AP" then | ||
table.insert(stammformen, | table.insert(stammformen, ppp .. "um") | ||
stammformen["lPPP"] = | stammformen["lPPP"] = lPPP | ||
end | end | ||
stammformen["lInf"] = | stammformen["lInf"] = lInf | ||
stammformen["lPerf"]= | stammformen["lPerf"]= lPerf | ||
if not mw.isSubsting() then | if not mw.isSubsting() then | ||
pagecontent = pagecontent .. utils.renderTemplate("Achtung", {"Dieses Modul sollte nur mit <code>{{subst:#invoke:Verb|...}}</code> eingebunden werden! "}) | pagecontent = pagecontent .. utils.renderTemplate("Achtung", {"Dieses Modul sollte nur mit <code>{{subst:#invoke:Verb|...}}</code> eingebunden werden! "}) | ||
end | end | ||
pagecontent = pagecontent .. "{{DISPLAYTITLE:" . | pagecontent = pagecontent .. "{{DISPLAYTITLE:" .. inf .. "}}\n" | ||
pagecontent = pagecontent .. utils.renderTemplate("Legende Verb", {}) .. "\n" | pagecontent = pagecontent .. utils.renderTemplate("Legende Verb", {}) .. "\n" | ||
pagecontent = pagecontent .. utils.renderWortwolke( | pagecontent = pagecontent .. utils.renderWortwolke(inf) .. "\n" | ||
pagecontent = pagecontent .. utils.renderVokabelbox('Stammformen', stammformen) | pagecontent = pagecontent .. utils.renderVokabelbox('Stammformen', stammformen) | ||
pagecontent = pagecontent .. '\n' | pagecontent = pagecontent .. '\n' | ||
if | if praesGV == "P" and perfGV == "P" then | ||
pagecontent = pagecontent .. utils.renderTemplate("Deponens", {}) .. '\n' | pagecontent = pagecontent .. utils.renderTemplate("Deponens", {}) .. '\n' | ||
elseif | elseif praesGV == "P" or perfGV == "P" then | ||
pagecontent = pagecontent .. utils.renderTemplate("Semideponens", {}) .. '\n' | pagecontent = pagecontent .. utils.renderTemplate("Semideponens", {}) .. '\n' | ||
end | end | ||
Zeile 436: | Zeile 418: | ||
--params = init() | --params = init() | ||
pagecontent = pagecontent .. "\n\n== Infinite Formen ==\n\n" | pagecontent = pagecontent .. "\n\n== Infinite Formen ==\n\n" | ||
pagecontent = pagecontent .. renderInfinitive(bildeInfinitive(params), | pagecontent = pagecontent .. renderInfinitive(bildeInfinitive(params), praesGV, perfGV) | ||
pagecontent = pagecontent .. '\n\n' | pagecontent = pagecontent .. '\n\n' | ||
pagecontent = pagecontent .. renderPartizipien(bildePartizipien(params), | pagecontent = pagecontent .. renderPartizipien(bildePartizipien(params), perfGV) | ||
pagecontent = pagecontent .. '\n\n' | pagecontent = pagecontent .. '\n\n' | ||
pagecontent = pagecontent .. renderND(bildeND(params)) | pagecontent = pagecontent .. renderND(bildeND(params)) | ||
pagecontent = pagecontent .. "\n\n== Formen mit Präsensstamm ==\n\n" | pagecontent = pagecontent .. "\n\n== Formen mit Präsensstamm ==\n\n" | ||
pagecontent = pagecontent .. render('Präsens', bildePraesens(params), | pagecontent = pagecontent .. render('Präsens', bildePraesens(params), praesGV) | ||
pagecontent = pagecontent .. '\n\n' | pagecontent = pagecontent .. '\n\n' | ||
pagecontent = pagecontent .. render('Imperfekt', bildeImperfekt(params), | pagecontent = pagecontent .. render('Imperfekt', bildeImperfekt(params), praesGV) | ||
pagecontent = pagecontent .. '\n\n' | pagecontent = pagecontent .. '\n\n' | ||
pagecontent = pagecontent .. render('Futur I', bildeFuturI(params), | pagecontent = pagecontent .. render('Futur I', bildeFuturI(params), praesGV) | ||
pagecontent = pagecontent .. "\n\n== Formen mit Perfektstamm/PPP ==\n\n" | pagecontent = pagecontent .. "\n\n== Formen mit Perfektstamm/PPP ==\n\n" | ||
pagecontent = pagecontent .. render('Perfekt', bildePerfekt(params), | pagecontent = pagecontent .. render('Perfekt', bildePerfekt(params), perfGV) | ||
pagecontent = pagecontent .. '\n\n' | pagecontent = pagecontent .. '\n\n' | ||
pagecontent = pagecontent .. render('Plusquamperfekt', bildePlusquamperfekt(params), | pagecontent = pagecontent .. render('Plusquamperfekt', bildePlusquamperfekt(params), perfGV) | ||
pagecontent = pagecontent .. '\n\n' | pagecontent = pagecontent .. '\n\n' | ||
pagecontent = pagecontent .. render('Futur II', bildeFuturII(params), | pagecontent = pagecontent .. render('Futur II', bildeFuturII(params), perfGV) | ||
return pagecontent | return pagecontent | ||
end | end | ||
return p | return p |
Version vom 25. Juni 2024, 12:45 Uhr
Dieses Modul erzeugt lateinische Konjugationstabellen aus gegebenen Stämmen.
Beispiel
{{subst:#invoke:Verb|render|dare|20|da|ded|28|dat|47|PraesGV=AP|PerfGV=AP}}
für ein Vollverb mit Aktiv und Passiv in Präsens- und Perfektstämmen{{subst:#invoke:Verb|render|sequi||sequ|||secut||PraesGV=P|PerfGV=P}}
für ein Deponens{{subst:#invoke:Verb|render|gaudere|4|gaude|||gavis||PraesGV=AP|PerfGV=P}}
für ein Semideponens, das in Perfektstämmen nur Passivformen bildet{{subst:#invoke:Verb|render|facere|17|faci|fec|27|||PraesGV=A|PerfGV=A}}
für ein Defectivum, das nur aktivische Formen bildet.
{{subst:
|
Immer nur mit subst einbinden, damit die Formen im Seitenquelltext landen und für die Suchfunktion auffindbar sind.
|
---|---|
#invoke:Verb|
|
Name des Moduls |
render|
|
rufe die Funktion render auf
|
irrumare|
|
Infinitiv |
0|
|
Optional: Lektion, in der der Infinitiv eingeführt wurde |
irruma|
|
Präsensstamm |
irrumav|
|
Perfektstamm |
0|
|
Optional: Lektion, in der der Perfektstamm eingeführt wurde |
irrumat|
|
Stamm des PPP |
0|
|
Optional: Lektion, in der das PPP eingeführt wurde |
PraesGV=AP
|
Optional: Verfügbare Genera verbi in den präsentischen Zeiten.
|
PerfGV=AP}}
|
Optional: Verfügbare Genera verbi in den perfektischen Zeiten.
|
Hinweis
Dieses Modul sollte immer mit subst:
eingebunden werden, damit alle Formen im durchsuchbaren Seitenquelltext landen und eine Suche nach dem auch zu dare führt.
local p = {}
local utils = require('Modul:LateinUtils')
local IND_AKT = 1
local KONJ_AKT = 2
local IND_PASS = 3
local KONJ_PASS= 4
local IMPERATIV= 5
local PERSONEN = {'1. Person Singular', '2. Person Singular', '3. Person Singular';
'1. Person Plural', '2. Person Plural', '3. Person Plural'}
local MODI = {}
MODI[IND_AKT] = "Indikativ Aktiv"
MODI[KONJ_AKT] = "Konjunktiv Aktiv"
MODI[IND_PASS] = "Indikativ Passiv"
MODI[KONJ_PASS]= "Konjunktiv Passiv"
MODI[IMPERATIV]= "Imperativ"
local PRAES = 1
local PERF = 2
local FUTUR = 3
local OST = {'o', 's', 't', 'mus', 'tis', 'nt'}
local MST = {'m', 's', 't', 'mus', 'tis', 'nt'}
local ORRISTUR = {'or', 'ris', 'tur', 'mur', 'mini', 'ntur'}
local RRISTUR = {'r', 'ris', 'tur', 'mur', 'mini', 'ntur'}
local frame = mw.getCurrentFrame()
local inf = frame.args[1] or frame:getParent().args[1] or 'Infinitiv';
local lInf = frame.args[2] or frame:getParent().args[2] or 0;
local praes = frame.args[3] or frame:getParent().args[3] or 'Präsensstamm + ';
local perf = frame.args[4] or frame:getParent().args[4] or 'Perfektstamm + ';
local lPerf = frame.args[5] or frame:getParent().args[5] or 0;
local ppp = frame.args[6] or frame:getParent().args[6] or 'PPP-Stamm + ';
local lPPP = frame.args[7] or frame:getParent().args[7] or 0;
local praesGV= frame.args.PraesGV or frame:getParent().args.PraesGV or 'AP';
local perfGV = frame.args.PerfGV or frame:getParent().args.PerfGV or 'AP';
function bildeInfinitive(params)
local formen = {{},{}, {}}
formen[PRAES][IND_AKT] = inf
if inf:match(praes:sub(-1,-1) .. "r[ei]$") then
formen[PRAES][IND_PASS] = praes .. "ri"
elseif praes:match("i$") then
formen[PRAES][IND_PASS] = praes
else
formen[PRAES][IND_PASS] = praes .. "i"
end
formen[PERF][IND_AKT] = perf .. "isse"
formen[PERF][IND_PASS] = ppp .. "um/am/um esse"
formen[FUTUR][IND_AKT] = ppp .. "urum/am/um esse"
formen[FUTUR][IND_PASS] = ppp .. "um iri"
return formen
end
function bildePartizipien(params)
local formen = {}
if praes:match("[ae]$") then
formen[PRAES] = praes .. "ns, " .. praes .. "ntis"
else
formen[PRAES] = praes .. "ens, " .. praes .. "entis"
end
formen[PERF] = ppp .. "us/a/um"
formen[FUTUR] = ppp .. "urus/a/um"
return formen
end
function bildeND(params)
local formen = {}
if praes:match("[ae]$") then
formen[1] = praes .. "ndi"
formen[2] = praes .. "ndus/a/um"
else
formen[1] = praes .. "endi"
formen[2] = praes .. "endus/a/um"
end
return formen
end
function bildePraesens(params)
local formen = createFormTable(praesGV)
local endungen = {}
endungen[IND_AKT] = OST
endungen[KONJ_AKT] = MST
endungen[IND_PASS] = ORRISTUR
endungen[KONJ_PASS]= RRISTUR
formen[IMPERATIV] = {}
if not praes:match("[aei]$") then
for person = 1, 6, 1 do
setIfPossible(formen[IND_AKT], person, praes .. 'i' .. endungen[IND_AKT][person])
setIfPossible(formen[IND_PASS], person, praes .. 'i' .. endungen[IND_PASS][person])
setIfPossible(formen[KONJ_AKT], person, praes .. 'a' .. endungen[KONJ_AKT][person])
setIfPossible(formen[KONJ_PASS],person, praes .. 'a' .. endungen[KONJ_PASS][person])
end
setIfPossible(formen[IND_AKT], 1, praes .. 'o')
setIfPossible(formen[IND_PASS], 1, praes .. 'or')
setIfPossible(formen[IND_PASS], 2, praes .. 'eris')
setIfPossible(formen[IND_AKT], 6, praes .. 'unt')
setIfPossible(formen[IND_PASS], 6, praes .. 'untur')
end
if praes:match("a$") then
setIfPossible(formen[IND_AKT], 1, praes:sub(1,-2) .. 'o')
setIfPossible(formen[IND_PASS], 1, praes:sub(1,-2) .. 'or')
setIfPossible(formen[KONJ_AKT], 1, praes:sub(1,-2) .. 'em')
setIfPossible(formen[KONJ_PASS],1, praes:sub(1,-2) .. 'er')
for person = 2, 6, 1 do
setIfPossible(formen[IND_AKT], person, praes .. endungen[IND_AKT][person])
setIfPossible(formen[IND_PASS], person, praes .. endungen[IND_PASS][person])
setIfPossible(formen[KONJ_AKT], person, praes:sub(1,-2) .. 'e' .. endungen[KONJ_AKT][person])
setIfPossible(formen[KONJ_PASS],person, praes:sub(1,-2) .. 'e' .. endungen[KONJ_PASS][person])
end
end
if praes:match("[ei]$") then
for person = 1, 6, 1 do
setIfPossible(formen[IND_AKT], person, praes .. endungen[IND_AKT][person])
setIfPossible(formen[IND_PASS], person, praes .. endungen[IND_PASS][person])
setIfPossible(formen[KONJ_AKT], person, praes .. 'a' .. endungen[KONJ_AKT][person])
setIfPossible(formen[KONJ_PASS],person, praes .. 'a' .. endungen[KONJ_PASS][person])
end
if not praes:match("e$") then
setIfPossible(formen[IND_AKT], 6, praes .. 'unt')
setIfPossible(formen[IND_PASS], 6, praes .. 'untur')
end
end
if praes:match("i$") and not inf:match("ir[ei]$") then
setIfPossible(formen[IND_PASS], 2, praes:sub(1,-2) .. 'eris')
end
if praesGV:match("A") then
if praes:match("[aei]$") then
setIfPossible(formen[IMPERATIV],2, praes .. "!")
setIfPossible(formen[IMPERATIV],5, praes .. "te!")
else
setIfPossible(formen[IMPERATIV],2, praes .. "e!")
setIfPossible(formen[IMPERATIV],5, praes .. "ite!")
end
else
if praes:match("[aei]$") then
setIfPossible(formen[IMPERATIV],2, praes .. "re!")
setIfPossible(formen[IMPERATIV],5, praes .. "mini!")
else
setIfPossible(formen[IMPERATIV],2, praes .. "ere!")
setIfPossible(formen[IMPERATIV],5, praes .. "imini!")
end
end
return formen
end
function bildeImperfekt(params)
local formen = createFormTable(praesGV)
local endungen = {}
endungen[IND_AKT] = MST
endungen[KONJ_AKT] = MST
endungen[IND_PASS] = RRISTUR
endungen[KONJ_PASS]= RRISTUR
local ind_stamm = praes .. 'ba'
local konj_stamm = inf
if not praes:match("[ae]$") then
ind_stamm = praes .. 'eba'
end
if inf:match("[^r]i$") or inf:match("[^aei]ri") then
konj_stamm = inf:sub(1,-2) .. 'ere'
end
if inf:match("[aei]ri$") then
konj_stamm = praes .. 're'
end
local staemme = {}
staemme[IND_AKT] = ind_stamm
staemme[IND_PASS] = ind_stamm
staemme[KONJ_AKT] = konj_stamm
staemme[KONJ_PASS]= konj_stamm
for person = 1, 6, 1 do
for tm,_ in pairs(formen) do
setIfPossible(formen[tm], person, staemme[tm] .. endungen[tm][person])
end
end
return formen
end
function bildeFuturI(params)
local formen = {}
local endungen = {}
endungen[IND_AKT] = MST
endungen[IND_PASS] = RRISTUR
if praesGV:match("A") then
formen[IND_AKT] = {}
end
if praesGV:match("P") then
formen[IND_PASS] = {}
end
if praes:match("[ae]$") then
setIfPossible(formen[IND_AKT], 1, praes .. 'bo')
setIfPossible(formen[IND_PASS], 1, praes .. 'bor')
for person = 2, 5, 1 do
for tm,_ in pairs(formen) do
setIfPossible(formen[tm], person, praes .. 'bi' .. endungen[tm][person])
end
end
setIfPossible(formen[IND_PASS], 2, praes .. 'beris')
setIfPossible(formen[IND_AKT], 6, praes .. 'bunt')
setIfPossible(formen[IND_PASS], 6, praes .. 'buntur')
else
setIfPossible(formen[IND_AKT], 1, praes .. 'am')
setIfPossible(formen[IND_PASS], 1, praes .. 'ar')
for person = 2, 6, 1 do
for m,_ in pairs(formen) do
setIfPossible(formen[m], person, praes .. 'e' .. endungen[m][person])
end
end
end
return formen
end
function bildePerfekt(params)
local formen = createFormTable(perfGV)
local endungen = {}
endungen[IND_AKT] = {'i', 'isti', 'it', 'imus', 'istis', 'erunt'}
endungen[KONJ_AKT] = MST
endungen[IND_PASS] = {'us/a/um sum', 'us/a/um es', 'us/a/um est', 'i/ae/a sumus', 'i/ae/a estis', 'i/ae/a sunt'}
endungen[KONJ_PASS]= {'us/a/um sim', 'us/a/um sis', 'us/a/um sit', 'i/ae/a simus', 'i/ae/a sitis', 'i/ae/a sint'}
for person = 1, 6, 1 do
setIfPossible(formen[IND_AKT], person, perf .. endungen[IND_AKT][person])
setIfPossible(formen[KONJ_AKT], person, perf .. 'eri' .. endungen[KONJ_AKT][person])
setIfPossible(formen[IND_PASS], person, ppp .. endungen[IND_PASS][person])
setIfPossible(formen[KONJ_PASS], person, ppp .. endungen[KONJ_PASS][person])
end
return formen
end
function bildePlusquamperfekt(params)
local formen = createFormTable(perfGV)
local endungen = {'us/a/um', 'us/a/um', 'us/a/um', 'i/ae/a', 'i/ae/a', 'i/ae/a'}
for person = 1, 6, 1 do
setIfPossible(formen[IND_AKT], person, perf .. 'era' .. MST[person])
setIfPossible(formen[KONJ_AKT], person, perf .. 'isse' .. MST[person])
setIfPossible(formen[IND_PASS], person, ppp .. endungen[person] .. ' era' .. MST[person])
setIfPossible(formen[KONJ_PASS],person, ppp .. endungen[person] .. ' esse' .. MST[person])
end
return formen
end
function bildeFuturII(params)
local formen = {}
local endungen = {'us/a/um', 'us/a/um', 'us/a/um', 'i/ae/a', 'i/ae/a', 'i/ae/a'}
if perfGV:match("A") then
formen[IND_AKT] = {}
end
if perfGV:match("P") then
formen[IND_PASS] = {}
end
for person = 1, 6, 1 do
setIfPossible(formen[IND_AKT], person, perf .. 'eri' .. MST[person])
setIfPossible(formen[IND_PASS], person, ppp .. endungen[person] .. ' eri' .. MST[person])
end
setIfPossible(formen[IND_AKT], 1, perf .. 'ero')
setIfPossible(formen[IND_PASS], 1, ppp .. 'us/a/um ero')
setIfPossible(formen[IND_PASS], 6, ppp .. 'i/ae/a erunt')
return formen
end
function renderInfinitive(formen, praesGV, perfGV)
local table = ""
table = table .. '{| class="wikitable mw-collapsible"\n'
table = table .. '|+ [[Infinitiv]]e\n! !! Aktiv'
if praesGV == "AP" or perfGV == "AP" then
table = table .. ' !! Passiv'
end
table = table .. '\n|-\n! Präsens'
if praesGV:match("A") then
table = table .. '\n| lang="la" | ' .. formen[PRAES][IND_AKT]
end
if praesGV:match("P") then
table = table .. '\n| lang="la" | ' .. formen[PRAES][IND_PASS]
end
table = table .. '\n|-\n! Perfekt'
if perfGV:match("A") then
table = table .. '\n| lang="la" | ' .. formen[PERF][IND_AKT]
end
if perfGV:match("P") then
table = table .. '\n| lang="la" | ' .. formen[PERF][IND_PASS]
end
table = table .. '\n|-\n! Futur'
table = table .. '\n| lang="la" | ' .. formen[FUTUR][IND_AKT]
if praesGV:match("AP") or perfGV:match("AP") then
table = table .. '\n| lang="la" | ' .. formen[FUTUR][IND_PASS]
end
table = table .. '\n|}\n'
return table
end
function renderPartizipien(formen, perfGV)
local table = ''
table = table .. '{| class="wikitable mw-collapsible"\n'
table = table .. '|+ [[Partizip]]ien\n'
table = table .. '! [[Partizip Präsens Aktiv]]'
table = table .. '\n| lang="la" | ' .. formen[PRAES] .. '\n'
if perfGV == "AP" then
table = table .. '|-\n! [[Partizip Perfekt Passiv]]'
table = table .. '\n| lang="la" | ' .. formen[PERF] .. '\n'
elseif perfGV == "P" then
table = table .. '|-\n! [[Partizip Perfekt Deponens]]'
table = table .. '\n| lang="la" | ' .. formen[PERF] .. '\n'
end
table = table .. '|-\n! [[Partizip Futur Aktiv]]'
table = table .. '\n| lang="la" | ' .. formen[FUTUR] .. '\n'
table = table .. '|}'
return table
end
function renderND(formen)
local table = ''
table = table .. '{| class="wikitable mw-collapsible"\n'
table = table .. "|+ ''nd''-Formen\n"
table = table .. "! [[Gerundium]] !! [[Gerundivum]]\n"
table = table .. '|-\n| lang="la" | ' .. formen[1] .. '\n| lang="la" | ' .. formen[2] .. '\n|}'
return table
end
function render(tempus, formen, gv)
local table = ''
table = table .. '{| class="wikitable mw-collapsible"\n'
table = table .. '|+ [[' .. tempus .. ']]\n! Person'
for k,_ in pairs(formen) do
table = table .. ' !! ' .. utils.renderTemplate("Verb-TH", {TEMPUS = tempus, MODUS = MODI[k]:match("^%w+"), GV = MODI[k]:match("%w+$"), TYPE = gv})
end
table = table .. '\n|-\n'
for person = 1, 6, 1 do
table = table .. '! ' .. PERSONEN[person]
for _,tm in pairs(formen) do
table = table .. '\n| lang="la" | ' .. (tm[person] or '')
end
table = table .. '\n|-\n'
end
table = table .. '|}'
return table
end
function setIfPossible(maybeArray,index,value)
if maybeArray then
maybeArray[index] = value
end
end
function createFormTable(gv)
local formen = {}
if gv:match("A") then
formen[IND_AKT] = {}
formen[KONJ_AKT] = {}
end
if gv:match("P") then
formen[IND_PASS] = {}
formen[KONJ_PASS] = {}
end
return formen
end
function p.render(frame)
--params = init()
local pagecontent = ''
lektionen = {}
if lInf ~= "0" then
table.insert(lektionen, lInf)
end
if lPerf ~= "0" then
table.insert(lektionen, lPerf)
end
if lPPP ~= "0" then
table.insert(lektionen, lPPP)
end
pagecontent = pagecontent .. p.renderBox(frame)
pagecontent = pagecontent .. p.renderFormen(frame)
pagecontent = pagecontent .. utils.renderFooter(inf, bildePraesens(params)[praesTemp][1], lektionen)
return pagecontent
end
function p.renderBox(frame)
local pagecontent = ""
--params = init()
if praesGV:match('A') then
praesTemp = IND_AKT
else
praesTemp = IND_PASS
end
if perfGV:match('A') then
perfTemp = IND_AKT
else
perfTemp = IND_PASS
end
local stammformen = {inf, bildePraesens(params)[praesTemp][1], bildePerfekt(params)[perfTemp][1]}
if not ppp:match("PPP") and perfGV == "AP" then
table.insert(stammformen, ppp .. "um")
stammformen["lPPP"] = lPPP
end
stammformen["lInf"] = lInf
stammformen["lPerf"]= lPerf
if not mw.isSubsting() then
pagecontent = pagecontent .. utils.renderTemplate("Achtung", {"Dieses Modul sollte nur mit <code>{{subst:#invoke:Verb|...}}</code> eingebunden werden! "})
end
pagecontent = pagecontent .. "{{DISPLAYTITLE:" .. inf .. "}}\n"
pagecontent = pagecontent .. utils.renderTemplate("Legende Verb", {}) .. "\n"
pagecontent = pagecontent .. utils.renderWortwolke(inf) .. "\n"
pagecontent = pagecontent .. utils.renderVokabelbox('Stammformen', stammformen)
pagecontent = pagecontent .. '\n'
if praesGV == "P" and perfGV == "P" then
pagecontent = pagecontent .. utils.renderTemplate("Deponens", {}) .. '\n'
elseif praesGV == "P" or perfGV == "P" then
pagecontent = pagecontent .. utils.renderTemplate("Semideponens", {}) .. '\n'
end
return pagecontent
end
function p.renderFormen(frame)
local pagecontent = ""
--params = init()
pagecontent = pagecontent .. "\n\n== Infinite Formen ==\n\n"
pagecontent = pagecontent .. renderInfinitive(bildeInfinitive(params), praesGV, perfGV)
pagecontent = pagecontent .. '\n\n'
pagecontent = pagecontent .. renderPartizipien(bildePartizipien(params), perfGV)
pagecontent = pagecontent .. '\n\n'
pagecontent = pagecontent .. renderND(bildeND(params))
pagecontent = pagecontent .. "\n\n== Formen mit Präsensstamm ==\n\n"
pagecontent = pagecontent .. render('Präsens', bildePraesens(params), praesGV)
pagecontent = pagecontent .. '\n\n'
pagecontent = pagecontent .. render('Imperfekt', bildeImperfekt(params), praesGV)
pagecontent = pagecontent .. '\n\n'
pagecontent = pagecontent .. render('Futur I', bildeFuturI(params), praesGV)
pagecontent = pagecontent .. "\n\n== Formen mit Perfektstamm/PPP ==\n\n"
pagecontent = pagecontent .. render('Perfekt', bildePerfekt(params), perfGV)
pagecontent = pagecontent .. '\n\n'
pagecontent = pagecontent .. render('Plusquamperfekt', bildePlusquamperfekt(params), perfGV)
pagecontent = pagecontent .. '\n\n'
pagecontent = pagecontent .. render('Futur II', bildeFuturII(params), perfGV)
return pagecontent
end
return p