Module:Modifier compatibility: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
(the unveiled mod is in unveiled domain now. Crafted version does not have spawn weight and probably out of scope of to list those)
(Big rework: Made queries and data processing much more efficient. Changed formatting of output, using new styles and scripts.)
Line 8: Line 8:
require('Module:No globals')
require('Module:No globals')
local m_util = require('Module:Util')
local m_util = require('Module:Util')
local m_item_util = require('Module:Item util')
local m_cargo = require('Module:Cargo')
local m_cargo = require('Module:Cargo')


Line 38: Line 39:
end
end


function h.header(str)
function h.genericize_stat_text(str)
     --[[
     --[[
     This function replaces specific numbers with a generic #.
     This function replaces individual numbers and ranges of numbers with a number sign (#).
     ]]
     ]]


     local s = table.concat(m_util.string.split(str, '%(%d+%.*%d*%-%d+%.*%d*%)'), '#')
     str = string.gsub(str, '%(%d+%.?%d*%-%d+%.?%d*%)', '#')
     s = table.concat(m_util.string.split(s, '%d+%.*%d*'), '#')
     str = string.gsub(str, '%d+%.?%d*', '#')
     s = table.concat(m_util.string.split(s, '<br>'), ', ')
     return str
    s = table.concat(m_util.string.split(s, '<br />'), ' ')
 
  return s
end
 
h.tbl = {}
h.tbl.display = {}
h.tbl.display.factory = {}
function h.tbl.display.factory.value(args)
    -- Format options for each field:
    args.options = args.options or {}
 
    -- Separator between fields:
    args.delimiter = args.delimiter or ', '
 
    return function(tpl_args, tr, data, fields)
        local values = {}
        local fmt_values = {}
 
        for index, field in ipairs(fields) do
            local value = {
                min=data[field],
                max=data[field],
                base=data[field],
            }
            if value.min then
                values[#values+1] = value.max
                local opts = args.options[index] or {}
                -- Global colour is set, no overrides.
                if args.color ~= nil or opts.color == nil then
                    opts.no_color = true
                end
                fmt_values[#fmt_values+1] = m_util.html.format_value(nil, value, opts)
            end
        end
 
        if #values == 0 then
            tr
                :wikitext(m_util.html.td.na())
        else
            local td = tr:tag('td')
            td
                :attr('data-sort-value', table.concat(values, args.delimiter))
                :wikitext(table.concat(fmt_values, args.delimiter))
            if args.color then
                td:attr('class', 'tc -' .. args.color)
            end
        end
    end
end
end


-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------
-- Additional configuration
-- Data and configuration for item mods
-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------


local c = {}
local item_mods = {}
 
c.item_mods = {}


c.item_mods.sections = {
item_mods.sections = {
     {
     {
         header = i18n.item_mods.prefix,
         heading = i18n.item_mods.standard_mods,
         where = function(tpl_args, item_data)
         where = function (item_data)
             return string.format(
             return [[
                [[
                mods.id NOT LIKE "%%Royale%%"
                    mods.domain = %s
            ]]
                    AND mods.generation_type = %s
                    AND mods.stat_text > ''
                    AND mod_spawn_weights.tag IN ("%s")
                ]],
                item_data['items.domain'],
                cfg.mod_generation_types.prefix,
                table.concat(tpl_args.item_tags, '","')
            )
         end,
         end,
     },
     },
     {
     {
         header = i18n.item_mods.suffix,
         show = function (item_data)
        where = function(tpl_args, item_data)
             return item_data.can_have_influences
             return string.format(
                [[
                    mods.domain = %s
                    AND mods.generation_type = %s
                    AND mods.stat_text > ''
                    AND mod_spawn_weights.tag IN ("%s")
                ]],
                item_data['items.domain'],
                cfg.mod_generation_types.suffix,
                table.concat(tpl_args.item_tags, '","')
            )
         end,
         end,
    },
         tags = function (item_data)
    {
             return {item_data.addon_tags.shaper}
         tags = {'elder'},
        header = i18n.item_mods.elder_prefix,
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.elder,
                cfg.mod_generation_types.prefix,
                item_data['items.domain']
            )
         end,
         end,
        heading = i18n.item_mods.shaper_mods,
     },
     },
     {
     {
         tags = {'elder'},
         show = function (item_data)
        header = i18n.item_mods.elder_suffix,
             return item_data.can_have_influences
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.elder,
                cfg.mod_generation_types.suffix,
                item_data['items.domain']
            )
         end,
         end,
    },
         tags = function (item_data)
    {
             return {item_data.addon_tags.elder}
         tags = {'shaper'},
        header = i18n.item_mods.shaper_prefix,
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.shaper,
                cfg.mod_generation_types.prefix,
                item_data['items.domain']
            )
         end,
         end,
        heading = i18n.item_mods.elder_mods,
     },
     },
     {
     {
         tags = {'shaper'},
         show = function (item_data)
        header = i18n.item_mods.shaper_suffix,
             return item_data.can_have_influences
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.shaper,
                cfg.mod_generation_types.suffix,
                item_data['items.domain']
            )
         end,
         end,
    },
         tags = function (item_data)
    {
             return {item_data.addon_tags.crusader}
        header = i18n.item_mods.delve_prefix,
         where = function(tpl_args, item_data)
             return string.format(
                [[
                    mods.domain = %s
                    AND mods.generation_type = %s
                    AND mods.stat_text > ''
                    AND mod_spawn_weights.tag IN ("%s")
                ]],
                cfg.mod_domains.delve,
                cfg.mod_generation_types.prefix,
                table.concat(tpl_args.item_tags, '","')
            )
         end,
         end,
        heading = i18n.item_mods.crusader_mods,
     },
     },
     {
     {
         header = i18n.item_mods.delve_suffix,
         show = function (item_data)
        where = function(tpl_args, item_data)
             return item_data.can_have_influences
             return string.format(
                [[
                    mods.domain = %s
                    AND mods.generation_type = %s
                    AND mods.stat_text > ''
                    AND mod_spawn_weights.tag IN ("%s")
                ]],
                cfg.mod_domains.delve,
                cfg.mod_generation_types.suffix,
                table.concat(tpl_args.item_tags, '","')
            )
         end,
         end,
    },
         tags = function (item_data)
    {
             return {item_data.addon_tags.eyrie}
         tags = {'crusader'},
        header = i18n.item_mods.crusader_prefix,
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.crusader,
                cfg.mod_generation_types.prefix,
                item_data['items.domain']
            )
         end,
         end,
        heading = i18n.item_mods.redeemer_mods,
     },
     },
     {
     {
         tags = {'crusader'},
         show = function (item_data)
        header = i18n.item_mods.crusader_suffix,
             return item_data.can_have_influences
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.crusader,
                cfg.mod_generation_types.suffix,
                item_data['items.domain']
            )
         end,
         end,
    },
         tags = function (item_data)
    {
             return {item_data.addon_tags.basilisk}
         tags = {'eyrie'},
        header = i18n.item_mods.eyrie_prefix,
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.eyrie,
                cfg.mod_generation_types.prefix,
                item_data['items.domain']
            )
         end,
         end,
        heading = i18n.item_mods.hunter_mods,
     },
     },
     {
     {
         tags = {'eyrie'},
         show = function (item_data)
        header = i18n.item_mods.eyrie_suffix,
             return item_data.can_have_influences
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.eyrie,
                cfg.mod_generation_types.suffix,
                item_data['items.domain']
            )
         end,
         end,
    },
         tags = function (item_data)
    {
             return {item_data.addon_tags.adjudicator}
         tags = {'basilisk'},
        header = i18n.item_mods.basilisk_prefix,
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.basilisk,
                cfg.mod_generation_types.prefix,
                item_data['items.domain']
            )
         end,
         end,
        heading = i18n.item_mods.warlord_mods,
     },
     },
     {
     {
         tags = {'basilisk'},
         show = function (item_data)
        header = i18n.item_mods.basilisk_suffix,
             return not item_data.is_corrupted and not item_data.is_unmodifiable
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.basilisk,
                cfg.mod_generation_types.suffix,
                item_data['items.domain']
            )
         end,
         end,
        heading = i18n.item_mods.delve_mods,
        domain = cfg.mod_domains.delve,
     },
     },
     {
     {
         tags = {'adjudicator'},
         show = function (item_data)
        header = i18n.item_mods.adjudicator_prefix,
             return item_data.can_have_veiled_mods
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.adjudicator,
                cfg.mod_generation_types.prefix,
                item_data['items.domain']
            )
         end,
         end,
        heading = i18n.item_mods.veiled_mods,
        domain = cfg.mod_domains.unveiled,
     },
     },
     {
     {
         tags = {'adjudicator'},
         show = function (item_data)
        header = i18n.item_mods.adjudicator_suffix,
             return item_data.can_be_corrupted
        where = function(tpl_args, item_data)
             return string.format(
                [[
                    (mod_spawn_weights.tag="%s"
                    AND mods.generation_type=%s
                    AND mods.domain=%s
                    AND mods.stat_text > '')
                ]],
                item_data.tags_cfg.adjudicator,
                cfg.mod_generation_types.suffix,
                item_data['items.domain']
            )
         end,
         end,
    },
         heading = i18n.item_mods.corruption_implicit_mods,
    {
         generation_types = {
         header = i18n.item_mods.veiled_prefix,
             {
         where = function(tpl_args, item_data)
                 id = cfg.mod_generation_types.corrupted,
            return string.format(
             },
                [[
         },
                    mods.domain = %s
                    AND mods.generation_type = %s
                    AND mods.stat_text > ''
                    AND mod_spawn_weights.tag IN ("%s")
                    AND mods.id LIKE "%%Master%%"
                ]],
                cfg.mod_domains.unveiled,
                cfg.mod_generation_types.prefix,
                table.concat(tpl_args.item_tags, '","')
             )
        end,
    },
    {
        header = i18n.item_mods.veiled_suffix,
        where = function(tpl_args, item_data)
            return string.format(
                 [[
                    mods.domain = %s
                    AND mods.generation_type = %s
                    AND mods.stat_text > ''
                    AND mod_spawn_weights.tag IN ("%s")
                    AND mods.id LIKE "%%Master%%"
                ]],
                cfg.mod_domains.unveiled,
                cfg.mod_generation_types.suffix,
                table.concat(tpl_args.item_tags, '","')
            )
        end,
    },
    {
        header = i18n.item_mods.corrupted,
        where = function(tpl_args, item_data)
            return string.format(
                [[
                    mods.domain = %s
                    AND mods.generation_type = %s
                    AND mods.stat_text > ''
                    AND mod_spawn_weights.tag IN ("%s")
                ]],
                item_data['items.domain'],
                cfg.mod_generation_types.corrupted,
                table.concat(tpl_args.item_tags, '","')
             )
        end,
         is_implicit = true,
     },
     },
}
}
Line 490: Line 208:
     ]]
     ]]


     -- Format the cargo query:
     -- Support legacy args
     local where
     tpl_args.item_name = tpl_args.item_name or tpl_args.item
    for _,v in ipairs({
            {tpl_args.page, 'items._pageName = "%s"'},
            {tpl_args.item, 'items.name = "%s"'},
    }) do
        if v[1] ~= nil then
            where = string.format(v[2], v[1])
            break
        end
    end


     local item_data = m_cargo.query(
    -- Query item
        {'items'},
     local item_data = m_item_util.query_item(tpl_args, {
         {
         fields = {
             'items.name',
             'items.name=name',
             'items.tags',
             'items.tags=tags',
             'items.class_id',
             'items.is_corrupted=is_corrupted',
             'items.inventory_icon',
             'items.is_unmodifiable=is_unmodifiable',
             'items.html',
             'items.inventory_icon=inventory_icon',
             'items.release_version',
             'items.html=html',
            'items._pageName'
        },
        {
            where = where,
            groupBy = 'items._pageID',
            orderBy = 'items.name, items.release_version DESC',
         }
         }
     )[1]
     })
 
    if item_data.error then
    -- Set the item class as key and the corresponding mod domain as
        return item_data.error
     -- value:
     end


     -- Get the domain, if it's not defined in the table assume it's
     -- Get the domain, if it's not defined in the table assume it's
     -- in the item domain.
     -- in the item domain.
     item_data['items.domain'] = tonumber(tpl_args.domain) or cfg.mod_domains_by_item_class[item_data['items.class_id']] or cfg.mod_domains.item
     item_data.domain = tonumber(tpl_args.domain) or cfg.mod_domains_by_item_class[item_data.class_id] or cfg.mod_domains.item


    -- Convert the mod domain number to understandable text:
     -- Format item tags
    item_data['items.domain_text'] = m_game.constants.mod.domains[item_data['items.domain']]['short_lower']
     tpl_args.item_tags = m_util.cast.table(tpl_args.item_tags or item_data.tags)
 
    if tpl_args.extra_item_tags then
     -- Format item tags:
         local extra_tags = m_util.cast.table(tpl_args.extra_item_tags)
     tpl_args.item_tags = m_util.string.split_args(
        for _, v in ipairs(extra_tags) do
        tpl_args.item_tags or item_data['items.tags'],
            tpl_args.item_tags[#tpl_args.item_tags+1] = v
         {sep=',%s*'}
        end
    )
    for _,v in ipairs(m_util.string.split_args(tpl_args.extra_item_tags, {sep=',%s*'})) do
        tpl_args.item_tags[#tpl_args.item_tags+1] = v
     end
     end


     -- Format extra fields:
     item_data.is_corrupted = m_util.cast.boolean(item_data.is_corrupted)
     local extra_fields = m_util.string.split_args(tpl_args.extra_fields, {sep=',%s*'})
     item_data.is_unmodifiable = m_util.cast.boolean(item_data.is_unmodifiable)


    -- Determine whether the item can have influences
    item_data.can_have_influences = m_util.cast.boolean(m_game.constants.item.classes[item_data.class_id].can_have_influences)


     -- Get tags that are appended to special items:
     -- Determine whether the item can be corrupted
     item_data.tags_cfg = m_game.constants.item.classes[item_data['items.class_id']].tags or {}
     item_data.can_be_corrupted = m_util.cast.boolean(m_game.constants.item.classes[item_data.class_id].can_be_corrupted)


     -- Save the original tag format:
     -- Determine whether the item can have veiled mods
     local item_tags_orig = {}
     item_data.can_have_veiled_mods = m_util.cast.boolean(m_game.constants.item.classes[item_data.class_id].can_have_veiled_mods)
    for i,v in ipairs(tpl_args.item_tags) do
        item_tags_orig[i] = v
    end


     local item_mods = {}
     -- Get tags that are appended to influenced items
     local mod_group_counter = {}
     item_data.addon_tags = m_game.constants.item.classes[item_data.class_id].tags or {}
    mod_group_counter['all'] = {}
    local extra_fieldss = {}
    local table_index_base = -1
    for _, sctn in ipairs(c.item_mods.sections) do
        item_mods[sctn['header']] = {}


        -- Preallocate the mod group counter, implicit and explicit mods
    -- Populate mods data
         -- are counted separetely because they can spawn together:
    for _, section in ipairs(item_mods.sections) do
         mod_group_counter[sctn['header']] = {}
         -- Default generation types
        local adj = 'explicit'
         if type(section.generation_types) ~= 'table' then
        if sctn['is_implicit'] then
            section.generation_types = {
             adj = 'implicit'
                {
                    id = cfg.mod_generation_types.prefix,
                    heading = i18n.item_mods.prefixes,
                    no_results = i18n.item_mods.prefixes_no_results
                },
                {
                    id = cfg.mod_generation_types.suffix,
                    heading = i18n.item_mods.suffixes,
                    no_results = i18n.item_mods.suffixes_no_results
                }
             }
         end
         end
         for _, header in ipairs({sctn['header'], 'all'}) do
 
            if mod_group_counter[header][adj] == nil then
        -- Show the section? Default: Show
                mod_group_counter[header][adj] = {}
         local show = section.show ~= false
            end
        if type(section.show) == 'function' then
            show = section.show(item_data)
         end
         end
 
         if show then
        local continue = true
             -- Get item tags
        local current_tags = {}
             local section_tags = type(section.tags) == 'function' and section.tags(item_data) or section.tags or tpl_args.item_tags
         if sctn['tags'] then
            if type(section_tags) ~= 'table' or #section_tags == 0 then
             -- some item classes do not have shaper/elder items, so the table
                 error('No tags.')
            -- will not contain any tags:
             if #sctn['tags'] == 0 or m_util.table.length(item_data.tags_cfg) == 0 then
                 continue = false
            else
                for _, tag in ipairs(sctn['tags']) do
                    current_tags[#current_tags+1] = item_data.tags_cfg[tag]
                end
             end
             end
        else
            -- Reset to original tags:
            for i,v in ipairs(item_tags_orig) do
                current_tags[i] = v
            end
        end


        if continue then
             -- Build mods data for each generation type
             -- Cargo preparation:
             section.mods_data = {}
             local q_fields = {
             for _, gen_type in ipairs(section.generation_types) do
                'mods._pageName',
                 section.mods_data[gen_type.id] = {}
                'mods.name',
                'mods.id',
                'mods.required_level',
                'mods.generation_type',
                'mods.domain',
                'mods.mod_group',
                'mods.mod_type',
                'mods.stat_text',
                'mods.stat_text_raw',
                'mods.tags',
                'mod_stats.id',
                'mod_spawn_weights.tag',
                'mod_spawn_weights.value',
                'mod_spawn_weights.ordinal',
                'mod_spawn_weights._pageName'
            }
             for i, v in ipairs(extra_fields) do
                 q_fields[#q_fields+1] = v
            end


            -- Query mods and map the results to the pagename:
                -- Query mods
            local results = m_cargo.map_results_to_id{
                local where = {
                 results=m_cargo.query(
                    string.format('mods.domain = %s', section.domain or item_data.domain),
                     {'mods', 'mod_spawn_weights', 'mod_stats'},
                    string.format('mods.generation_type = %s', gen_type.id),
                     q_fields,
                    'mods.stat_text IS NOT NULL',
                    string.format('mod_spawn_weights.tag IN ("%s")', table.concat(section_tags, '","')),
                }
                if section.where then
                    where[#where+1] = section.where(item_data)
                end
                 local results = m_cargo.query(
                     {
                        'mods',
                        'mod_stats',
                        'mod_spawn_weights',
                    },
                    {
                        'mods._pageID',
                        'mods._pageName',
                        'mods.name',
                        'mods.id',
                        'mods.required_level',
                        'mods.generation_type',
                        'mods.domain',
                        'mods.mod_group',
                        'mods.mod_groups',
                        'mods.mod_type',
                        'mods.stat_text',
                        'mods.stat_text_raw',
                        'mods.tags',
                        'mod_stats.id',
                        'mod_spawn_weights.tag',
                        'mod_spawn_weights.value',
                        'mod_spawn_weights.ordinal',
                     },
                     {
                     {
                         join = [[
                         join = [[
Line 626: Line 329:
                             mods._pageID=mod_stats._pageID
                             mods._pageID=mod_stats._pageID
                         ]],
                         ]],
                         where = sctn['where'](tpl_args, item_data),
                         where = table.concat(where, ' AND '),
                         groupBy = [[
                         groupBy = 'mods._pageID',
                            mods._pageName,
                        having = 'mod_spawn_weights.value > 0',
                            mod_spawn_weights.tag,
                            mod_spawn_weights.value
                        ]],
                         orderBy = [[
                         orderBy = [[
                             mods.generation_type,
                             mods.mod_groups ASC,
                            mods.mod_group,
                             mods.mod_type ASC,
                             mods.mod_type,
                             mods.required_level ASC,
                             mods.required_level,
                             mod_spawn_weights.ordinal ASC
                            mods._pageName,
                             mod_spawn_weights.ordinal
                         ]],
                         ]],
                     }
                     }
                 ),
                 )
                field='mods._pageName',
                keep_id_field=true,
                append_id_field=true,
            }
 
            if #results > 0 then
                -- Loop through all found modifiers:
                local last
                for _, id in ipairs(results) do
                    -- Loop through all the modifier tags until they match
                    -- the item tags:
                    local j = 0
                    local tag_match_stop
                    repeat
                        j = j+1
                        local mod_tag = results[id][j]['mod_spawn_weights.tag']
                        local mod_tag_weight = tonumber(
                            results[id][j]['mod_spawn_weights.value']
                        )
 
                        -- Loop through the item tags until it matches the
                        -- spawn weight tag and the mod tag has a value larger than
                        -- zero:
                        local y = 0
                        local tag_match_add = false
                        repeat
                            y = y+1
                            tag_match_stop = ((mod_tag == current_tags[y]) and ((mod_tag_weight or -1) >= 0)) or (results[id][j] == nil)
                            tag_match_add  =  (mod_tag == current_tags[y]) and ((mod_tag_weight or -1) > 0)
                        until tag_match_stop or y == #current_tags
 
                        -- If there's a match then save that mod and other
                        -- interesting information:
                        if tag_match_add then


                            -- Assume that the mod is global then go through
                -- Group results
                            -- all the stat ids and check if any of the
                if #results > 0 then
                            -- stats are local:
                    for _, row in ipairs(results) do
                            local mod_scope = 'Global'
                        row['mods.mod_groups'] = m_util.cast.table(row['mods.mod_groups'])
                            for _, vv in ipairs(results[id]) do
                        row['mods.tags'] = m_util.cast.table(row['mods.tags'])
                                if vv['mod_stats.id']:find('.*local.*') ~= nil then
                        if #row['mods.mod_groups'] > 0 then
                                    mod_scope = 'Local'
                             for _, group in ipairs(row['mods.mod_groups']) do
                                end
                                 section.mods_data[gen_type.id][group] = section.mods_data[gen_type.id][group] or {}
                            end
                                 section.mods_data[gen_type.id][group][row['mods.mod_type']] = section.mods_data[gen_type.id][group][row['mods.mod_type']] or {}
 
                                 table.insert(section.mods_data[gen_type.id][group][row['mods.mod_type']], row)
                            -- Save the matching modifier tag:
                            local a = #item_mods[sctn['header']]
                            item_mods[sctn['header']][a+1] = results[id][j]
 
                            -- Save other interesting fields:
                            item_mods[sctn['header']][a+1]['mods.scope'] = mod_scope
                            item_mods[sctn['header']][a+1]['spawn_weight.idx_match'] = j
                            item_mods[sctn['header']][a+1]['mods.add'] = tag_match_add
                            item_mods[sctn['header']][a+1]['mods.stop'] = tag_match_stop
 
                            -- Count the mod groups:
                            local group = item_mods[sctn['header']][a+1]['mods.mod_group'] or 'nil_group'
                             for _, header in ipairs({sctn['header'], 'all'}) do
                                 if mod_group_counter[header][adj][group] == nil then
                                    mod_group_counter[header][adj][group] = {}
                                 end
                                local tp = results[id][j]['mods.mod_type']
                                local bef = mod_group_counter[header][adj][group][tp] or 0
                                 mod_group_counter[header][adj][group][tp] = 1 + bef
                             end
                             end
                         end
                         end
                     until tag_match_stop
                     end
                 end
                 end
            end


                 extra_fieldss[sctn['header']] = extra_fields
            if tpl_args.debug then
                 mw.logObject(section.mods_data)
             end
             end
         end
         end
     end
     end


 
     -- Build html output
     --
     local html = mw.html.create()
     -- Display the item mods
     for _, section in ipairs(item_mods.sections) do
     --
        local section_wrapper
 
        local empty = true -- Section is empty
    -- Introductory text:
        if section.mods_data then
    local out = {}
            section_wrapper = mw.html.create('div')
    out[#out+1] = string.format(
                    :addClass('mod-compat__section')
        '==%s== \n',
                    :tag('h3')
        tpl_args['header'] or table.concat(tpl_args.item_tags, ', ')
                        :addClass('mod-compat__section-heading')
    )
                        :wikitext(section.heading)
    local expand_button = string.format(
                        :done()
        '<div style="float: right; text-align:center"><div class="mw-collapsible-collapse-all" style="cursor:pointer;">[%s]</div><hr><div class="mw-collapsible-expand-all" style="cursor:pointer;">[%s]</div></div>',
            for _, gen_type in ipairs(section.generation_types) do
        i18n.item_mods.collapse_all,
                local gentype_wrapper = section_wrapper
        i18n.item_mods.expand_all
                    :tag('div')
    )
                        :addClass('mod-compat__gentype')
    out[#out+1] = expand_button
                local gentype_header = gentype_wrapper
    out[#out+1] = string.format('%s %s.<br><br><br>',
                    :tag('div')
        i18n.item_mods.table_intro,
                        :addClass('mod-compat__gentype-header')
        h.item_link{
                        :tag('span')
            page=item_data['items._pageName'],
                            :addClass('mod-compat__gentype-heading')
            name=item_data['items.name'],
                            :wikitext(gen_type.heading or i18n.item_mods.modifiers)
            inventory_icon=item_data['items.inventory_icon'] or '',
                            :done()
            html=item_data['items.html'] or '',
                if type(section.mods_data[gen_type.id]) == 'table' and m_util.table.length(section.mods_data[gen_type.id]) > 0 then
            skip_query=true
                    empty = false
        }
                    gentype_header
    )
                        :tag('span')
 
                            :addClass('accordion__controls mw-editsection-like')
    -- Loop through the sections:
                    for gkey, gval in pairs(section.mods_data[gen_type.id]) do
    for _, sctn in ipairs(c.item_mods.sections) do
                        local group_wrapper = gentype_wrapper
        local extra_fields = extra_fieldss[sctn['header']]
                            :tag('div')
        local adj = 'explicit'
                                :addClass('mod-compat__group')
        if sctn['is_implicit'] then
                                :tag('div')
            adj = 'implicit'
                                    :addClass('mod-compat__group-label')
        end
                                    :wikitext( string.format('%s %s', i18n.item_mods.group, gkey) )
 
                                    :done()
        -- Create html container:
                        local mod_type_list = group_wrapper
        local container = mw.html.create('div')
                            :tag('dl')
            :attr('style', 'vertical-align:top; display:inline-block;')
                                :addClass('mod-compat__type-list accordion')
 
                        for tkey, tval in pairs(gval) do
        -- Create the drop down table with <table></table>:
                            local summary_text = tval[1]['mods.stat_text_raw']
        if #item_mods[sctn['header']] > 0 then
                            if m_util.table.length(tval) > 1 then
            container
                                summary_text = h.genericize_stat_text(summary_text)
                :tag('h3')
                            end
                    :wikitext(string.format('%s', sctn['header']))
                            local mod_type_heading = mod_type_list
                    :done()
                                :tag('dt')
                :done()
                                    :addClass('mod-compat__type-summary accordion__toggle')
        end
                                    :wikitext( m_util.html.poe_color('mod', summary_text) )
 
                            local mod_type_body = mod_type_list
        local total_mod_groups = 0
                                :tag('dd')
        for _ in pairs(mod_group_counter[sctn['header']][adj]) do
                                    :addClass('mod-compat__type-details accordion__panel')
            total_mod_groups = 1+total_mod_groups
                            local mod_table = mod_type_body
        end
                                :tag('table')
 
                                    :addClass('wikitable modifier-table')
        -- Loop through and add all matching mods to the <table>.
                                    :tag('tr')
        local tbl, last_group, last_type, table_index
                                        :tag('th')
        for _, rows in ipairs(item_mods[sctn['header']]) do
                                            :wikitext(i18n.item_mods.modifier)
 
                                            :done()
            -- If the last mod group is different to the current
                                        :tag('th')
            -- mod group then assume the mod isn't related and start
                                            :wikitext(i18n.item_mods.required_level)
            -- a new drop down list, if there's only one mod group
                                            :done()
            -- then use mod type instead:
                                        :tag('th')
            if rows['mods.mod_group'] ~= last_group or (total_mod_groups == 1 and rows['mods.mod_type'] ~= last_type) then
                                            :wikitext(i18n.item_mods.stats)
                -- Check through all the mods and see if there are
                                            :done()
                -- multiple mod types within the same mod group:
                                        :tag('th')
                local count = {}
                                            :wikitext(i18n.item_mods.tags)
                for _, n in ipairs(item_mods[sctn['header']]) do
                                            :done()
 
                                        :done()
                    -- If the mod has the same mod group, then add
                            for _, mod in ipairs(tval) do
                    -- the mod type to the counter. Only unique mod
                                local name = mod['mods.name'] or mod['mods.mod_type'] or mod['mods.id']
                    -- types matter so the number is just a dummy
                                local tag_list = mw.html.create('ul')
                    -- value:
                                    :addClass('modifier-table__tag-list')
                    if n['mods.mod_group'] == rows['mods.mod_group'] then
                                for _, tag in ipairs(mod['mods.tags']) do
                        count[n['mods.mod_type']] = 1
                                    tag_list
                                        :tag('li')
                                            :addClass('modifier-table__tag')
                                            :wikitext(tag)
                                end
                                mod_table
                                    :tag('tr')
                                        :tag('td')
                                            :wikitext( m_util.html.wikilink(mod['mods._pageName'], name) )
                                            :done()
                                        :tag('td')
                                            :wikitext(mod['mods.required_level'])
                                            :done()
                                        :tag('td')
                                            :wikitext( m_util.html.poe_color('mod', mod['mods.stat_text_raw']) )
                                            :done()
                                        :tag('td')
                                            :node(tag_list)
                                            :done()
                            end
                        end
                     end
                     end
                end
                -- Calculate how many unique mod types with the
                -- same mod group there are for all explicit or implicit
                -- sections since a mod with the same mod group can't
                -- spawn. Doesn't matter if it's prefix or suffix.
                local number_of_mod_types = 0
                for _ in pairs(mod_group_counter['all'][adj][rows['mods.mod_group']]) do
                    number_of_mod_types = 1 + number_of_mod_types
                end
                -- If there are multiple unique mod types with the
                -- same mod group then change the style of the drop
                -- down list to indicate it, if there's only one
                -- mod group in the generation type then ignore it:
                local table_index_mod_group
                local tbl_caption
                if number_of_mod_types > 1 and total_mod_groups > 1 then
                    table_index_mod_group = table.concat(
                        {string.byte(rows['mods.mod_group'], 1, #rows['mods.mod_group'])},
                        ''
                    )
                    tbl_caption = string.format(
                        '%s',
                        m_util.html.poe_color(
                            'stat',
                            string.format(
                                '%s %s',
                                i18n.item_mods.mod_group,
                                rows['mods.mod_group']
                            )
                        ) or ''
                    )
                 else
                 else
                     tbl_caption = string.format(
                     gentype_wrapper
                         '%s (%s)',
                         :wikitext(gen_type.no_results)
                        m_util.html.poe_color(
                            'mod',
                            h.header(rows['mods.stat_text_raw'])
                        ) or '',
                        rows['mods.scope']
                    )
                 end
                 end
                -- Create a table index for handling the collapsible:
                table_index_base = table_index_base+1
                if table_index_mod_group ~= nil then
                    table_index = table_index_mod_group
                else
                    table_index = table_index_base
                end
                -- Add class and style to the <table>:
                tbl = container:tag('table')
                tbl
                    :attr('class', 'mw-collapsible mw-collapsed')
                    :attr('style',
                        'text-align:left; line-height:1.60em; width:810px;'
                    )
                    :tag('th')
                        :attr('class',
                            string.format('mw-customtoggle-%s', table_index)
                        )
                        :attr('style',
                            'text-align:left; line-height:1.40em; border-bottom:1pt solid dimgrey;'
                        )
                        :attr('colspan', '3' .. #extra_fields)
                        :wikitext(tbl_caption)
                        :done()
                    :done()
             end
             end
            -- If the mod has no name then use the mod type:
            local mod_name = rows['mods.name'] or ''
            if  mod_name == '' then
                mod_name = rows['mods.mod_type']
            end
            -- Check if there are any extra properties to show in
            -- the drop down list and then add a cell for that,
            -- add this node at the end of the table row:
            local td = mw.html.create('td')
            if extra_fields ~= nil then
                for _, extra_field in ipairs(extra_fields) do
                    td
                        :attr('width', '*')
                        :wikitext(string.format(
                            '%s:&nbsp;%s ',
                            extra_field,
                            rows[extra_field] or ''
                            )
                        )
                        :done()
                end
            end
            -- Style mods.tags:
            local mods_tags = table.concat(
                m_util.string.split_args(rows['mods.tags'], {sep=',%s*'}),
                ', '
            )
            if mods_tags ~= '' then
                mods_tags = m_util.html.tooltip('*', mods_tags)
            end
            -- Add a table row with the interesting properties that
            -- modifier has:
            if table_index ~= nil then
                tbl
                    :tag('tr')
                        :attr('class', 'mw-collapsible mw-collapsed')
                        :attr(
                            'id',
                            string.format('mw-customcollapsible-%s', table_index)
                        )
                        :tag('td')
                            :attr('width', '160')
                            :wikitext(
                                string.format(
                                    '&nbsp;&nbsp;&nbsp;[[%s|%s]]',
                                    rows['mods._pageName'],
                                    mod_name:gsub('%s', '&nbsp;')
                                )
                            )
                            :done()
                        :tag('td')
                            :attr('width', '1')
                            :wikitext(
                                string.format(
                                    '%s&nbsp;%s',
                                    m_game.level_requirement['short_upper']
                                        :gsub('%s', '&nbsp;'),
                                    rows['mods.required_level']
                                )
                            )
                            :done()
                        :tag('td')
                            :attr('width', '*')
                            :wikitext(
                                string.format(
                                    '%s%s',
                                    m_util.html.poe_color(
                                        'mod',
                                        rows['mods.stat_text']
                                            :gsub('<br>', ', ')
                                            :gsub('<br />', ' ')
                                    ) or '',
                                    mods_tags
                                )
                            )
                            :done()
                        :node(td)
                        :done()
                    :done()
            end
            -- Save the last mod group for later comparison:
            last_group = rows['mods.mod_group']
            last_type = rows['mods.mod_type']
         end
         end
         out[#out+1] = tostring(container)
         if not empty then
            html:node(section_wrapper)
        end
     end
     end
 
     return tostring(html)
    -- Outro text:
    out[#out+1] = '<br>'
    out[#out+1] = m_util.html.poe_color(
        'normal',
        string.format('[[#Top|%s]]', i18n.item_mods.back_to_top)
    )
 
     return table.concat(out,'')
end
end



Revision as of 09:24, 28 November 2022

Module documentation[view] [edit] [history] [purge]


Implements {{Item modifier compatibility}}.

-------------------------------------------------------------------------------
-- 
--                           Module:Modifier compatibility
-- 
-- This module implements Template:Item modifier compatibility
-------------------------------------------------------------------------------

require('Module:No globals')
local m_util = require('Module:Util')
local m_item_util = require('Module:Item util')
local m_cargo = require('Module:Cargo')

-- Should we use the sandbox version of our submodules?
local use_sandbox = m_util.misc.maybe_sandbox('Modifier compatibility')

local m_game = mw.loadData('Module:Game')

-- Lazy loading
local f_item_link -- require('Module:Item link').item_link

-- The cfg table contains all localisable strings and configuration, to make it
-- easier to port this module to another wiki.
local cfg = use_sandbox and mw.loadData('Module:Modifier compatibility/config/sandbox') or mw.loadData('Module:Modifier compatibility/config')

local i18n = cfg.i18n

-- ----------------------------------------------------------------------------
-- Helper functions
-- ----------------------------------------------------------------------------

local h = {}

-- Lazy loading for Module:Item link
function h.item_link(args)
    if not f_item_link then
        f_item_link = require('Module:Item link').item_link
    end
    return f_item_link(args)
end

function h.genericize_stat_text(str)
    --[[
    This function replaces individual numbers and ranges of numbers with a number sign (#).
    ]]

    str = string.gsub(str, '%(%d+%.?%d*%-%d+%.?%d*%)', '#')
    str = string.gsub(str, '%d+%.?%d*', '#')
    return str
end

-- ----------------------------------------------------------------------------
-- Data and configuration for item mods
-- ----------------------------------------------------------------------------

local item_mods = {}

item_mods.sections = {
    {
        heading = i18n.item_mods.standard_mods,
        where = function (item_data)
            return [[
                mods.id NOT LIKE "%%Royale%%"
            ]]
        end,
    },
    {
        show = function (item_data)
            return item_data.can_have_influences
        end,
        tags = function (item_data)
            return {item_data.addon_tags.shaper}
        end,
        heading = i18n.item_mods.shaper_mods,
    },
    {
        show = function (item_data)
            return item_data.can_have_influences
        end,
        tags = function (item_data)
            return {item_data.addon_tags.elder}
        end,
        heading = i18n.item_mods.elder_mods,
    },
    {
        show = function (item_data)
            return item_data.can_have_influences
        end,
        tags = function (item_data)
            return {item_data.addon_tags.crusader}
        end,
        heading = i18n.item_mods.crusader_mods,
    },
    {
        show = function (item_data)
            return item_data.can_have_influences
        end,
        tags = function (item_data)
            return {item_data.addon_tags.eyrie}
        end,
        heading = i18n.item_mods.redeemer_mods,
    },
    {
        show = function (item_data)
            return item_data.can_have_influences
        end,
        tags = function (item_data)
            return {item_data.addon_tags.basilisk}
        end,
        heading = i18n.item_mods.hunter_mods,
    },
    {
        show = function (item_data)
            return item_data.can_have_influences
        end,
        tags = function (item_data)
            return {item_data.addon_tags.adjudicator}
        end,
        heading = i18n.item_mods.warlord_mods,
    },
    {
        show = function (item_data)
            return not item_data.is_corrupted and not item_data.is_unmodifiable
        end,
        heading = i18n.item_mods.delve_mods,
        domain = cfg.mod_domains.delve,
    },
    {
        show = function (item_data)
            return item_data.can_have_veiled_mods
        end,
        heading = i18n.item_mods.veiled_mods,
        domain = cfg.mod_domains.unveiled,
    },
    {
        show = function (item_data)
            return item_data.can_be_corrupted
        end,
        heading = i18n.item_mods.corruption_implicit_mods,
        generation_types = {
            {
                id = cfg.mod_generation_types.corrupted,
            },
        },
    },
}

-- ----------------------------------------------------------------------------
-- Main functions
-- ----------------------------------------------------------------------------

local function _item_modifier_compatibility(tpl_args)
    --[[
    This function queries mods that can spawn on an item. It compares
    the item tags and the spawn weight tags. If there's a match and
    the spawn weight is larger than zero, then that mod is added to a
    drop down list.

    To Do:
    * Add support to:
        * Forsaken masters
        * Bestiary
    * Add a proper expand/collapse toggle for the entire header row so
        it reacts together with mw-collapsible.
    * Show Mod group in a better way perhaps:
        Mod group [Collapsible, default=Expanded]
            # to Damage [Collapsible, default=Collapsed]
                3 to Damage
                5 to Damage
    * Add a where condition that somehow filters out mods that obviously
      wont match with the item. mod_spawn_weights.value>0 isn't enough due
      to possible edge cases.


    Examples:
    Weapons
    = p.drop_down_table{item='Rusted Hatchet', header='One Handed Axes'}
    = p.drop_down_table{item='Stone Axe', header='Two Handed Axes'}

    Accessories
    = p.drop_down_table{item='Amber Amulet', header='Amulets'}

    Jewels
    = p.drop_down_table{item='Cobalt Jewel', header='Jewels'}

    Armour
    = p.drop_down_table{item='Plate Vest', header='Body armours'}

    Boots
    = p.drop_down_table{item='Iron Greaves', header='Boots'}

    = p.drop_down_table{
        item='Fishing Rod',
        header='FISH PLEASE',
        item_tags='fishing_rod',
        extra_fields='mods.tags'
    }

    = p.drop_down_table{
        item='Fishing Rod',
        item_tags='axe, one_hand_weapon, onehand, weapon, default',
        extra_item_tags='fishing_rod'
    }

    = p.drop_down_table{
        item='Vaal Blade',
    }

    ]]

    -- Support legacy args
    tpl_args.item_name = tpl_args.item_name or tpl_args.item

    -- Query item
    local item_data = m_item_util.query_item(tpl_args, {
        fields = {
            'items.name=name',
            'items.tags=tags',
            'items.is_corrupted=is_corrupted',
            'items.is_unmodifiable=is_unmodifiable',
            'items.inventory_icon=inventory_icon',
            'items.html=html',
        }
    })
    if item_data.error then
        return item_data.error
    end

    -- Get the domain, if it's not defined in the table assume it's
    -- in the item domain.
    item_data.domain = tonumber(tpl_args.domain) or cfg.mod_domains_by_item_class[item_data.class_id] or cfg.mod_domains.item

    -- Format item tags
    tpl_args.item_tags = m_util.cast.table(tpl_args.item_tags or item_data.tags)
    if tpl_args.extra_item_tags then
        local extra_tags = m_util.cast.table(tpl_args.extra_item_tags)
        for _, v in ipairs(extra_tags) do
            tpl_args.item_tags[#tpl_args.item_tags+1] = v
        end
    end

    item_data.is_corrupted = m_util.cast.boolean(item_data.is_corrupted)
    item_data.is_unmodifiable = m_util.cast.boolean(item_data.is_unmodifiable)

    -- Determine whether the item can have influences
    item_data.can_have_influences = m_util.cast.boolean(m_game.constants.item.classes[item_data.class_id].can_have_influences)

    -- Determine whether the item can be corrupted
    item_data.can_be_corrupted = m_util.cast.boolean(m_game.constants.item.classes[item_data.class_id].can_be_corrupted)

    -- Determine whether the item can have veiled mods
    item_data.can_have_veiled_mods = m_util.cast.boolean(m_game.constants.item.classes[item_data.class_id].can_have_veiled_mods)

    -- Get tags that are appended to influenced items
    item_data.addon_tags = m_game.constants.item.classes[item_data.class_id].tags or {}

    -- Populate mods data
    for _, section in ipairs(item_mods.sections) do
        -- Default generation types
        if type(section.generation_types) ~= 'table' then
            section.generation_types = {
                {
                    id = cfg.mod_generation_types.prefix,
                    heading = i18n.item_mods.prefixes,
                    no_results = i18n.item_mods.prefixes_no_results
                },
                {
                    id = cfg.mod_generation_types.suffix,
                    heading = i18n.item_mods.suffixes,
                    no_results = i18n.item_mods.suffixes_no_results
                }
            }
        end

        -- Show the section? Default: Show
        local show = section.show ~= false
        if type(section.show) == 'function' then
            show = section.show(item_data)
        end
        if show then
            -- Get item tags
            local section_tags = type(section.tags) == 'function' and section.tags(item_data) or section.tags or tpl_args.item_tags
            if type(section_tags) ~= 'table' or #section_tags == 0 then
                error('No tags.')
            end

            -- Build mods data for each generation type
            section.mods_data = {}
            for _, gen_type in ipairs(section.generation_types) do
                section.mods_data[gen_type.id] = {}

                -- Query mods
                local where = {
                    string.format('mods.domain = %s', section.domain or item_data.domain),
                    string.format('mods.generation_type = %s', gen_type.id),
                    'mods.stat_text IS NOT NULL',
                    string.format('mod_spawn_weights.tag IN ("%s")', table.concat(section_tags, '","')),
                }
                if section.where then
                    where[#where+1] = section.where(item_data)
                end
                local results = m_cargo.query(
                    {
                        'mods',
                        'mod_stats',
                        'mod_spawn_weights',
                    },
                    {
                        'mods._pageID',
                        'mods._pageName',
                        'mods.name',
                        'mods.id',
                        'mods.required_level',
                        'mods.generation_type',
                        'mods.domain',
                        'mods.mod_group',
                        'mods.mod_groups',
                        'mods.mod_type',
                        'mods.stat_text',
                        'mods.stat_text_raw',
                        'mods.tags',
                        'mod_stats.id',
                        'mod_spawn_weights.tag',
                        'mod_spawn_weights.value',
                        'mod_spawn_weights.ordinal',
                    },
                    {
                        join = [[
                            mods._pageID=mod_spawn_weights._pageID,
                            mods._pageID=mod_stats._pageID
                        ]],
                        where = table.concat(where, ' AND '),
                        groupBy = 'mods._pageID',
                        having = 'mod_spawn_weights.value > 0',
                        orderBy = [[
                            mods.mod_groups ASC,
                            mods.mod_type ASC,
                            mods.required_level ASC,
                            mod_spawn_weights.ordinal ASC
                        ]],
                    }
                )

                -- Group results
                if #results > 0 then
                    for _, row in ipairs(results) do
                        row['mods.mod_groups'] = m_util.cast.table(row['mods.mod_groups'])
                        row['mods.tags'] = m_util.cast.table(row['mods.tags'])
                        if #row['mods.mod_groups'] > 0 then
                            for _, group in ipairs(row['mods.mod_groups']) do
                                section.mods_data[gen_type.id][group] = section.mods_data[gen_type.id][group] or {}
                                section.mods_data[gen_type.id][group][row['mods.mod_type']] = section.mods_data[gen_type.id][group][row['mods.mod_type']] or {}
                                table.insert(section.mods_data[gen_type.id][group][row['mods.mod_type']], row)
                            end
                        end
                    end
                end
            end

            if tpl_args.debug then
                mw.logObject(section.mods_data)
            end
        end
    end

    -- Build html output
    local html = mw.html.create()
    for _, section in ipairs(item_mods.sections) do
        local section_wrapper
        local empty = true -- Section is empty
        if section.mods_data then
            section_wrapper = mw.html.create('div')
                    :addClass('mod-compat__section')
                    :tag('h3')
                        :addClass('mod-compat__section-heading')
                        :wikitext(section.heading)
                        :done()
            for _, gen_type in ipairs(section.generation_types) do
                local gentype_wrapper = section_wrapper
                    :tag('div')
                        :addClass('mod-compat__gentype')
                local gentype_header = gentype_wrapper
                    :tag('div')
                        :addClass('mod-compat__gentype-header')
                        :tag('span')
                            :addClass('mod-compat__gentype-heading')
                            :wikitext(gen_type.heading or i18n.item_mods.modifiers)
                            :done()
                if type(section.mods_data[gen_type.id]) == 'table' and m_util.table.length(section.mods_data[gen_type.id]) > 0 then
                    empty = false
                    gentype_header
                        :tag('span')
                            :addClass('accordion__controls mw-editsection-like')
                    for gkey, gval in pairs(section.mods_data[gen_type.id]) do
                        local group_wrapper = gentype_wrapper
                            :tag('div')
                                :addClass('mod-compat__group')
                                :tag('div')
                                    :addClass('mod-compat__group-label')
                                    :wikitext( string.format('%s %s', i18n.item_mods.group, gkey) )
                                    :done()
                        local mod_type_list = group_wrapper
                            :tag('dl')
                                :addClass('mod-compat__type-list accordion')
                        for tkey, tval in pairs(gval) do
                            local summary_text = tval[1]['mods.stat_text_raw']
                            if m_util.table.length(tval) > 1 then
                                summary_text = h.genericize_stat_text(summary_text)
                            end
                            local mod_type_heading = mod_type_list
                                :tag('dt')
                                    :addClass('mod-compat__type-summary accordion__toggle')
                                    :wikitext( m_util.html.poe_color('mod', summary_text) )
                            local mod_type_body = mod_type_list
                                :tag('dd')
                                    :addClass('mod-compat__type-details accordion__panel')
                            local mod_table = mod_type_body
                                :tag('table')
                                    :addClass('wikitable modifier-table')
                                    :tag('tr')
                                        :tag('th')
                                            :wikitext(i18n.item_mods.modifier)
                                            :done()
                                        :tag('th')
                                            :wikitext(i18n.item_mods.required_level)
                                            :done()
                                        :tag('th')
                                            :wikitext(i18n.item_mods.stats)
                                            :done()
                                        :tag('th')
                                            :wikitext(i18n.item_mods.tags)
                                            :done()
                                        :done()
                            for _, mod in ipairs(tval) do
                                local name = mod['mods.name'] or mod['mods.mod_type'] or mod['mods.id']
                                local tag_list = mw.html.create('ul')
                                    :addClass('modifier-table__tag-list')
                                for _, tag in ipairs(mod['mods.tags']) do
                                    tag_list
                                        :tag('li')
                                            :addClass('modifier-table__tag')
                                            :wikitext(tag)
                                end
                                mod_table
                                    :tag('tr')
                                        :tag('td')
                                            :wikitext( m_util.html.wikilink(mod['mods._pageName'], name) )
                                            :done()
                                        :tag('td')
                                            :wikitext(mod['mods.required_level'])
                                            :done()
                                        :tag('td')
                                            :wikitext( m_util.html.poe_color('mod', mod['mods.stat_text_raw']) )
                                            :done()
                                        :tag('td')
                                            :node(tag_list)
                                            :done()
                            end
                        end
                    end
                else
                    gentype_wrapper
                        :wikitext(gen_type.no_results)
                end
            end
        end
        if not empty then
            html:node(section_wrapper)
        end
    end
    return tostring(html)
end

-- ----------------------------------------------------------------------------
-- Exported functions
-- ----------------------------------------------------------------------------

local p = {}

-- 
-- Template:Item modifier compatibility
-- 
p.item_modifier_compatibility = m_util.misc.invoker_factory(_item_modifier_compatibility, {
    wrappers = cfg.wrappers.item_mods,
})

return p