Module:Quest

From Path of Exile Wiki
Revision as of 02:14, 10 July 2015 by >OmegaK2 (don't expand item template for the key item (in case of multiple items for example))
Jump to navigation Jump to search
Module documentation[view] [edit] [history] [purge]


Lua logo

This module depends on the following other modules:

This module implements {{Quest}} and {{Quest list}}

local p = {}

local g_frame, g_args

local getArgs = require('Module:Arguments').getArgs
local show_reward = require('Module:QuestReward').show_reward
local util = require('Module:Util')

--
-- For Template:Quest
--
function p.quest(frame)
    g_args = getArgs(frame, {
		parentFirst = true
	})
    if frame == nil or type(frame) == 'table' then
        frame = mw.getCurrentFrame()
    end
    
    g_frame = frame
    
    --
    -- Args
    --
    
    if string.len(g_args.name) == 0 then
        error('Name is required')
    end
    
    g_args.icon = g_args.icon or g_args.name .. ' Quest icon.png'
    g_args.boss = g_args.boss
    if g_args.boss then
        g_args.boss_image = g_args.boss_image or g_args.boss .. '.png'
    end
    g_args.key_item = g_args.key_item
    g_args.required = util.cast.boolean(g_args.required)
    g_args.start = g_args.start
    g_args.objective = g_args.objective
    g_args.completion = g_args.completion
    
    --
    -- Formatting
    --
    
    tbl = mw.html.create('table')
    tbl
        :attr('style', 'width:300px; color: #bfbfbf; float:right; padding:0.1em; background-color:#1a1812; margin: 0px 0px 5px 5px;')
        :tag('tr')
            :tag('td')
                :attr('colspan', 2)
                :attr('style', 'text-align:center;font-size:20px;font-weight:bold;')
                :wikitext(g_args.name .. '<br>[[File:' .. g_args.icon .. '|128x128px|alt=' .. g_args.icon .. ']]')
     
    local rtext = ''
    if g_args.required then
        rtext = 'Yes'
    else
        rtext = 'No'
    end
    display_quest_add_row(tbl, 'Required: ', rtext)
     
    for _, v in pairs({'Start', 'Objective', 'Completion'}) do
        display_quest_add_row(tbl, v .. ': ', g_args[string.lower(v)])
    end
    
    if g_args.boss then
        v = '[[' .. g_args.boss .. ']]<br>[[File:' .. g_args.boss_image .. '|alt=' .. g_args.boss .. ']]'
        display_quest_add_row(tbl, 'Boss: ', v)
    end
    
    if g_args.key_item then
        display_quest_add_row(tbl, 'Key Item: ', g_args.key_item)
    end
    
    local quest_rewards = show_reward{data_type='default', show_empty_message=false, filter_by_quest=g_args.name}
    g_frame:callParserFunction('#vardefine', {'quest_rewards', quest_rewards})
    
    local vendor_rewards = show_reward{data_type='vendor', show_empty_message=false, filter_by_quest=g_args.name}
    g_frame:callParserFunction('#vardefine', {'vendor_rewards', vendor_rewards})
    
    return tostring(tbl)
end

function display_quest_add_row(tbl, head, content)
    if content == nil then
        content = ''
    end
    tbl
        :tag('tr')
            :tag('td')
                :attr('style', 'text-align: right; font-weight: bold; background-color: #332f24;')
                :attr('scope', 'row')
                :wikitext(head)
                :done()
            :tag('td')
                :attr('style', 'text-align: center; background-color: #26231b;')
                :wikitext(content)
                :done()
end

return p