Module:qhv-adj: Difference between revisions

From Linguifex
Jump to navigation Jump to search
No edit summary
No edit summary
Line 17: Line 17:
local export = {}
local export = {}


function export.detect_decl(word, number, class, reanalyzed)
local endings = {
local syllables = require("Module:qhv-pron").write_stress(word, true)
["a"] = "I", ["e"] = "II", ["z"] = "IIr", ["ie"] = "III",
local IPA = require("Module:qhv-pron").crux(word)
}
local vowel = "[aeiouy]ː?"
 
if number and class then
function export.detect_decl(word, class)
local decl = number .. "-" .. class
if class then
return decl, {sub(word, 1, -(#endings_reverse[decl] + 1))}
local decl = class
elseif reanalyzed then
return decl, {sub(word, 1, (decl == "III" and -3 or -2))}
for ending, decl in pairs(reanalyzed_endings) do
if find(word, ending .. "$") then
return "r-" .. decl, {sub(word, 1, -(#ending + 1))}
end
end
elseif (not find(IPA, "ˈ")) and (find(IPA, NONSYLLABIC .. ".$") or find(IPA, DIPHTHONG .. vowel .. ".$") or find(IPA, "ː.$")) then
return "3-s-h", {sub(word, 1, -2)}
else
else
for ending, decl in pairs(endings) do
for ending, decl in pairs(endings) do
Line 39: Line 32:
end
end
end
end
return "6", {word}
end
end


Line 46: Line 38:
local parent_args = frame:getParent().args
local parent_args = frame:getParent().args
local numbers = nil
local decl = {}
local decl = {}
local word = NAMESPACE == "Template" and "vala" or parent_args.word or PAGENAME
local word = NAMESPACE == "Template" and "rōva" or parent_args.word or PAGENAME
local reanalyzed = parent_args["r"]
local args = {}
local args = {}


if not alldata[word] then
if not m_data[word] then
if frame.args.decl then
if frame.args.decl then
decl_type = frame.args.decl
decl_type = frame.args.decl
else
else
if parent_args.n and parent_args.c and parent_args[1] then
decl_type, numbers = export.detect_decl(word, parent_args.c)
decl_type = parent_args.n .. "-" .. parent_args.c
numbers = {parent_args[1]}
else
decl_type, numbers = export.detect_decl(word, parent_args.n, parent_args.c, reanalyzed)
end
end
end
Line 68: Line 53:
end
end
args = require("Module:parameters").process(parent_args, alldata[decl_type].params, true)
args = require("Module:parameters").process(parent_args, m_data[decl_type].params, true)
if numbers then
for i, number in ipairs(numbers) do
args[i] = number
end
end
end
end


local pass = {forms = {}, categories = {}}
local data = {forms = {}, categories = {}}
pass.head = parent_args["head"] or nil
data.head = parent_args["head"] or nil
pass.proper = parent_args["proper"] and true or false
-- Generate the forms
-- Generate the forms
if alldata[word] then
if m_data[word] then
alldata[word](parent_args, pass)
m_data[word](parent_args, data)
else
else
alldata[decl_type](args, pass)
m_data[decl_type](args, data)
end
end


-- Make the table
-- Make the table
return make_table(pass)
return make_table(data)
end
end


function make_table(pass)
function make_table(data)


local function show_form(form)
local function show_form(form)
Line 120: Line 98:
local function repl(param)
local function repl(param)
if param == "decl_type" then
if param == "decl_type" then
return pass.decl_type
return data.decl_type
elseif param == "title" then
elseif param == "title" then
return pass.forms.nom_sg[1]
return data.forms.nom_sg[1]
elseif param == "pagename" and NAMESPACE == "Template" then
elseif param == "pagename" and NAMESPACE == "Template" then
return "vala"
return "vala"
Line 128: Line 106:
return PAGENAME
return PAGENAME
else
else
return show_form(pass.forms[param])
return show_form(data.forms[param])
end
end
end
end


local function make_cases(data, post)
local function make_cases(data, pre)
local cases = {"nominative", "accusative", "genitive", "dative", "locative", "instrumental", "comitative", "vocative"}
local cases = {"nominative", "accusative", "genitive", "dative", "locative", "instrumental", "comitative", "vocative"}
local genders = {"lunar", "solar", "terrestrial", "aquatic"}
local ret = {}
local ret = {}
Line 140: Line 119:
table.insert(ret, "|- \n! style=\"background-color: #dcffed;\ |" .. case .. "\n")
table.insert(ret, "|- \n! style=\"background-color: #dcffed;\ |" .. case .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_sg"])) .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_sg"])) .. "\n")
if pass.forms[case_short .. "_pl"] or pass.forms[case_short .. "_pa"] or pass.forms[case_short .. "_co"] then
if data.forms[case_short .. "_pl"] or data.forms[case_short .. "_pa"] or data.forms[case_short .. "_co"] then
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pl"])) .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pl"])) .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pa"])) .. "\n")
table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pa"])) .. "\n")
Line 170: Line 149:
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|p|pa}}
|- ]=] .. make_cases(data, false) .. [=[
|- ]=] .. make_cases(data, true) .. [=[
|}<ul style="margin-left:0px;"></ul>
|}<ul style="margin-left:0px;"></ul>
{| border="1px solid white" style="border-collapse: collapse; background:#ffffff; width:100%; text-align:center;" cellspacing="1" cellpadding="2"
{| border="1px solid white" style="border-collapse: collapse; background:#ffffff; width:100%; text-align:center;" cellspacing="1" cellpadding="2"
Line 188: Line 167:
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|s|ol}}
! {{#invoke:getn|show_list|p|pa}}
! {{#invoke:getn|show_list|p|pa}}
|- style="background-color:#fdfdfd;" ]=] .. make_cases(data, true) .. [=[
|- style="background-color:#fdfdfd;" ]=] .. make_cases(data, false) .. [=[
|}</div></div>]=]
|}</div></div>]=]



Revision as of 23:17, 20 March 2021



local sub = mw.ustring.sub
local gsub = mw.ustring.gsub
local find = mw.ustring.find
local gmatch = mw.ustring.gmatch
local u = mw.ustring.char

local m_utils = require("Module:utilities")
local m_data = require('Module:qhv-adj/data')
local PAGENAME = mw.title.getCurrentTitle().text
local NAMESPACE = mw.title.getCurrentTitle().nsText

local NONSYLLABIC = u(0x032F) -- non-syllabic, combining inverted breve below
local DIPHTHONG = u(0x035C) -- double articulation, combining double breve below

local lang = require("Module:languages").getByCode("qhv")

local export = {}

local endings = {
	["a"] = "I", ["e"] = "II", ["z"] = "IIr", ["ie"] = "III",
}

function export.detect_decl(word, class)
	if class then
		local decl = class
		return decl, {sub(word, 1, (decl == "III" and -3 or -2))}
	else
		for ending, decl in pairs(endings) do
			if find(word, ending .. "$") then
				return decl, {sub(word, 1, -(#ending + 1))}
			end
		end
	end
end

-- The main entry point.
function export.show(frame)
	local parent_args = frame:getParent().args
	
	local decl = {}
	local word = NAMESPACE == "Template" and "rōva" or parent_args.word or PAGENAME
	local args = {}

	if not m_data[word] then
		if frame.args.decl then
			decl_type = frame.args.decl
		else
			decl_type, numbers = export.detect_decl(word, parent_args.c)
		end
		
		if not decl_type then
			error("Unknown declension '" .. decl_type .. "'")
		end
		
		args = require("Module:parameters").process(parent_args, m_data[decl_type].params, true)
	end

	local data = {forms = {}, categories = {}}
	
	data.head = parent_args["head"] or nil
	
	-- Generate the forms
	if m_data[word] then
		m_data[word](parent_args, data)
	else
		m_data[decl_type](args, data)
	end

	-- Make the table
	return make_table(data)
end

function make_table(data)

	local function show_form(form)
		if not form then
			return "—"
		end
		
		local ret = {}
		
		for key, subform in ipairs(form) do
			table.insert(ret, subform)
		end
			
		return table.concat(ret, ", ")
	end
	
	local function link(term)
		local links = {}
		for alt in gmatch(term, "([^%s,]+)") do
			alt = "[[Contionary:" .. alt .. "|" .. alt .. "]]"
			table.insert(links, alt)
		end
		return table.concat(links, ", ")
	end	
	
	local function repl(param)
		if param == "decl_type" then
			return data.decl_type
		elseif param == "title" then
			return data.forms.nom_sg[1]
		elseif param == "pagename" and NAMESPACE == "Template" then
			return "vala"
		elseif param == "pagename" then
			return PAGENAME
		else
			return show_form(data.forms[param])
		end
	end

	local function make_cases(data, pre)
		local cases = {"nominative", "accusative", "genitive", "dative", "locative", "instrumental", "comitative", "vocative"}
		local genders = {"lunar", "solar", "terrestrial", "aquatic"}
		local ret = {}
		
		for _, case in ipairs(cases) do
			local case_short = sub(case, 1, 3)
			table.insert(ret, "|- \n! style=\"background-color: #dcffed;\ |" .. case .. "\n")
			table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_sg"])) .. "\n")
			if data.forms[case_short .. "_pl"] or data.forms[case_short .. "_pa"] or data.forms[case_short .. "_co"] then
				table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pl"])) .. "\n")
				table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_pa"])) .. "\n")
				table.insert(ret, "| style=\"background-color: #edfff6;\" | " .. link(show_form(pass.forms[case_short .. "_co"])) .. "\n")
			end
		end
		return table.concat(ret)
	end

	local wikicode = [=[
	
	<div class="mw-collapsible" style="border-collapse: collapse; margin: 0px 0px -1px 0px; padding: 2px; text-align: center; border: 1px solid #aaaaaa; font-size: 95%; overflow: auto; width: auto;">
	<div style="min-height: 1.6em; font-weight:bold; font-size: 100%; text-align: left; background-color:#efefef; padding-left: 10px; background-image: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#DFDFDF), color-stop(0.6, #E3E3E3)); background-image: -moz-linear-gradient(top, #EFEFEF, #E3E3E3 60%, #DFDFDF);  background-image: -o-linear-gradient(top, #EFEFEF, #E3E3E3 60%, #DFDFDF);"><span class="nowrap">Declension of ''<span lang="qhv">{{{pagename}}}</span>'' ([[:Category:High Valyrian class-{{{decl_type}}} adjectives|class {{{decl_type}}}]])</span></div>
	<div class="mw-collapsible-content" style="font-size: 100%;">
	{| border="1px solid #000000" style="border-collapse: collapse; width:100%; text-align:center; background-color:#fdfdfd; cellspacing="1" cellpadding="2"
	|- style="background-color: #FFB976; text-align:center;"
	! rowspan="2" style="background-color: #E57942;" | Prepositive
	! colspan="2" | lunar
	! colspan="2" | solar
	! colspan="2" | terrestrial
	! colspan="2" | aquatic
	|- style="background-color: #FFD79B; font-size: 95%"
	! {{#invoke:getn|show_list|s|ol}}
	! {{#invoke:getn|show_list|p|pa}}
	! {{#invoke:getn|show_list|s|ol}}
	! {{#invoke:getn|show_list|p|pa}}
	! {{#invoke:getn|show_list|s|ol}}
	! {{#invoke:getn|show_list|p|pa}}
	! {{#invoke:getn|show_list|s|ol}}
	! {{#invoke:getn|show_list|p|pa}}
	|- ]=] .. make_cases(data, true) .. [=[
	|}<ul style="margin-left:0px;"></ul>
	{| border="1px solid white" style="border-collapse: collapse; background:#ffffff; width:100%; text-align:center;" cellspacing="1" cellpadding="2"
	|- style="background-color: #FFB976; text-align:center;"
	! rowspan="2" style="background-color: #E57942;" | Prepositive
	! colspan="2" | lunar
	! colspan="2" | solar
	! colspan="2" | terrestrial
	! colspan="2" | aquatic
	|- style="background-color: #FFD79B; font-size: 95%"
	! {{#invoke:getn|show_list|s|ol}}
	! {{#invoke:getn|show_list|p|pa}}
	! {{#invoke:getn|show_list|s|ol}}
	! {{#invoke:getn|show_list|p|pa}}
	! {{#invoke:getn|show_list|s|ol}}
	! {{#invoke:getn|show_list|p|pa}}
	! {{#invoke:getn|show_list|s|ol}}
	! {{#invoke:getn|show_list|p|pa}}
	|- style="background-color:#fdfdfd;" ]=] .. make_cases(data, false) .. [=[
	|}</div></div>]=]

	return (gsub(wikicode, "{{{([a-z0-9_]+)}}}", repl)) .. require("Module:utilities").format_categories(pass.categories, lang)
end


return export