Difference between revisions of "Module:Test"
Line 1: | Line 1: | ||
− | + | local DefInfo = {} | |
− | local | + | local wiki = {} |
− | + | local inspect | |
− | util | + | local util |
− | search | + | local search |
− | data | + | local data |
+ | local frame | ||
− | ------------------ | + | ------------------------------------------------------------------ |
− | -- | + | -- deal with differences between MediaWiki and dev environments -- |
− | ------------------ | + | ------------------------------------------------------------------ |
− | + | if mw then | |
− | + | util = require("Module:Test/lib/util") | |
− | + | search = require("Module:Test/lib/search") | |
+ | data = mw.loadData('Module:Test/data') | ||
− | + | frame = mw and mw.getCurrentFrame() | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | log = mw.log | |
− | + | logObject = mw.logObject | |
− | + | else | |
− | + | logStore = {} | |
− | |||
− | |||
− | |||
− | |||
− | + | util = require "lib/util" | |
− | + | search = require "lib/search" | |
− | + | data = require "data/data" | |
− | + | inspect = require 'lib/inspect' | |
− | + | function pp(tbl, title) -- pretty print tables | |
− | + | util.hl(title) | |
− | + | print(inspect(tbl)) | |
− | + | end | |
− | |||
− | + | log = function(str) | |
− | + | table.insert(logStore, str) | |
− | + | end | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | logObject = function(obj, prefix) | |
− | + | if prefix then | |
− | + | assert(type(prefix) == "string") | |
− | + | table.insert(logStore, prefix .. " = " .. inspect(obj)) | |
− | + | else | |
− | + | table.insert(logStore, inspect(obj)) | |
− | + | end | |
− | end | + | end |
− | + | end | |
− | |||
− | |||
----------------------- | ----------------------- | ||
Line 71: | Line 52: | ||
----------------------- | ----------------------- | ||
− | local function vardefine(name, value) | + | local function runTime() |
+ | local clock = string.format("%i", os.clock() * 1000) | ||
+ | return clock | ||
+ | end | ||
+ | |||
+ | function DefInfo.vardefine(name, value) | ||
assert(name, "vardefine: missing argument #1 (variable to definePrefix)") | assert(name, "vardefine: missing argument #1 (variable to definePrefix)") | ||
assert(type(name) == "string", string.format("vardefine: bad argument #1 (string expected, got %s)", type(name))) | assert(type(name) == "string", string.format("vardefine: bad argument #1 (string expected, got %s)", type(name))) | ||
Line 79: | Line 65: | ||
end | end | ||
− | + | function DefInfo.mergeParents(baseDef, ignoreKeys) | |
local ancestorIDs = {} | local ancestorIDs = {} | ||
local mergedDef = {} | local mergedDef = {} | ||
Line 100: | Line 86: | ||
end | end | ||
− | + | function DefInfo.getDef(defID) | |
local ignoreKeys = {"Abstract", "Name", "ParentName"} | local ignoreKeys = {"Abstract", "Name", "ParentName"} | ||
local baseDef | local baseDef | ||
local mergedDef | local mergedDef | ||
+ | local expandedDef | ||
− | if | + | if not defID then return nil end |
− | + | ||
− | + | for _,def in pairs(data) do | |
− | + | if def.defName == defID then | |
− | + | baseDef = def | |
− | + | break | |
− | + | elseif string.upper(def.label or '') == string.upper(defID) then | |
− | + | baseDef = def | |
− | + | break | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
end | end | ||
− | + | if not baseDef then | |
− | + | return nil | |
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
+ | |||
+ | mergedDef = DefInfo.mergeParents(baseDef, ignoreKeys) | ||
return mergedDef | return mergedDef | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
local function setPrefix(tbl, parentKey) | local function setPrefix(tbl, parentKey) | ||
local mt = getmetatable(tbl) or {} | local mt = getmetatable(tbl) or {} | ||
− | + | ||
for k,v in pairs(tbl) do | for k,v in pairs(tbl) do | ||
local prefix = parentKey .. "_" .. k | local prefix = parentKey .. "_" .. k | ||
Line 175: | Line 132: | ||
if type(v) ~= 'table' then | if type(v) ~= 'table' then | ||
local mt = getmetatable(tbl) | local mt = getmetatable(tbl) | ||
− | + | log(string.format('%s = %s', mt[k], v)) | |
− | vardefine(mt[k], v) | + | if mw then DefInfo.vardefine(mt[k], v) end |
else | else | ||
definePrefixed(v) | definePrefixed(v) | ||
Line 187: | Line 144: | ||
---------------------- | ---------------------- | ||
− | function | + | function wiki.getDefName(frame) |
local defName | local defName | ||
local label = frame.args[1] | local label = frame.args[1] | ||
if not label then | if not label then | ||
− | + | log(runTime()) | |
− | + | log("getDefName: missing argument #1 (label)") | |
+ | logObject(frame.args, "frame.args") | ||
return nil | return nil | ||
end | end | ||
− | + | ||
for defID,def in pairs(data) do | for defID,def in pairs(data) do | ||
if string.upper(def.label or "") == string.upper(label) then | if string.upper(def.label or "") == string.upper(label) then | ||
Line 204: | Line 162: | ||
if not defName then | if not defName then | ||
− | + | log(runTime()) | |
− | + | log(string.format("getDefName: '%s' not found", label)) | |
+ | logObject(frame.args, "frame.args") | ||
+ | return nil | ||
end | end | ||
+ | log(runTime()) | ||
return defName | return defName | ||
end | end | ||
− | function | + | function wiki.query(frame) |
− | local | + | |
− | if | + | local argLen = util.table.count(frame.args, "number") -- #frame.args won't work as expected, check the doc |
− | + | ||
− | + | if not frame.args['defName'] and not frame.args['label'] then | |
− | return | + | logObject(frame.args, string.format('query @ %ims: missing an identifying argument (defName or label)\nframe.args', runTime())) |
+ | return nil | ||
end | end | ||
− | |||
− | + | local def = DefInfo.getDef(frame.args['defName']) or DefInfo.getDef(frame.args['label']) | |
− | local | ||
− | |||
if not def then | if not def then | ||
− | + | logObject(frame.args, string.format("query @ %ims: Def not found\nframe.args", runTime())) | |
− | |||
return nil | return nil | ||
end | end | ||
if def and argLen == 0 then | if def and argLen == 0 then | ||
− | + | logObject(def, string.format("['%s:%s'] @ %ims", def._.DefCategory, def.defName, runTime())) | |
return nil | return nil | ||
end | end | ||
Line 241: | Line 199: | ||
if i == argLen and frame.args["sibling"] then | if i == argLen and frame.args["sibling"] then | ||
− | prune = search. | + | prune = search.find({nil, frame.args["sibling"]} , prune) |
if not prune then | if not prune then | ||
− | + | logObject(frame.args, string.format("query @ %ims: bad argument 'sibling' ('%s' not found')\nframe.args", runTime(), frame.args["sibling"])) | |
− | |||
return nil | return nil | ||
else | else | ||
− | prune = | + | prune = search.meta.parent.table[arg] |
if not prune then | if not prune then | ||
− | + | logObject(frame.args, string.format("query @ %ims: bad argument #%i ('%s' is not a sibling of '%s')", runTime(), i, arg, frame.args["sibling"])) | |
− | |||
return nil | return nil | ||
end | end | ||
Line 256: | Line 212: | ||
end | end | ||
− | if i == argLen and not frame.args["sibling"] then | + | if i < argLen or i == argLen and not frame.args["sibling"] then |
− | prune = search. | + | prune = search.find(arg, prune) |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
if not prune then | if not prune then | ||
− | + | logObject(frame.args, string.format("query @ %ims: bad argument #%i ('%s' not found)\nframe.args", runTime(), i, frame.args[i])) | |
− | |||
return nil | return nil | ||
else | else | ||
− | + | if type(prune) ~= 'table' and i < argLen then | |
− | if type(prune) ~= 'table' then | + | log(string.format("query @ %ims: warning Def ['%s'] argument #%i ('%s' returns a value, all extra arguments ignored)", runTime(), def['label'], i, frame.args[i])) |
return prune | return prune | ||
end | end | ||
Line 284: | Line 228: | ||
if type(prune) == "table" then | if type(prune) == "table" then | ||
+ | log(string.format("@ %ims", runTime())) | ||
setPrefix(prune, frame.args[argLen]) | setPrefix(prune, frame.args[argLen]) | ||
definePrefixed(prune) | definePrefixed(prune) | ||
Line 289: | Line 234: | ||
end | end | ||
+ | log(string.format("@ %ims", runTime())) | ||
return prune | return prune | ||
+ | |||
end | end | ||
+ | --------------------------------- | ||
+ | -- simulate module invocation -- | ||
+ | --------------------------------- | ||
− | local | + | if not mw then |
− | + | -- local simframe = { ["args"] = {} } | |
− | + | -- simframe.args['label'] = 'feNnec fox' | |
− | + | -- simframe.args[1] = 'tools' | |
+ | -- simframe.args[2] = 'label' | ||
+ | -- local query = wiki.query(simframe) | ||
+ | -- if query then print(query) end | ||
+ | end | ||
---------------------------------------- | ---------------------------------------- | ||
Line 302: | Line 256: | ||
---------------------------------------- | ---------------------------------------- | ||
− | if | + | if not mw then |
− | util.hl("log") | + | util.hl("DefInfo log") |
− | for _,v in ipairs( | + | for _,v in ipairs(logStore) do |
print(v) | print(v) | ||
end | end | ||
end | end | ||
− | return | + | if mw then |
+ | return wiki | ||
+ | else | ||
+ | return DefInfo | ||
+ | end |
Revision as of 06:42, 16 May 2021
This module is used for development.
Purpose
This module is used to query information from the uploaded and parsed game files.
Its main purpose is to populate the infoboxes.
Usage
A note on the order of named parameters. All of the parameters that look like ...=...
are called named parameters and their order is not important (this is true for all templates).
query
{{#invoke:Test|query|<def ID>[|...|][|tag|][|sibling=...]}}
The work-horse. Output varies based on use:
- If only the
<def ID>
parameter is set, it will show the whole Def in the log. - If simple values are queried it will return them.
- If lists are queried it will return nothing but call
{{#vardefine}}
on all the simple values within it. What got defined can be seen in the page's log.
Named parameters:
<def ID>
- This parameter identifies the Def so it is mandatory. It can take two forms, if both are defined then
defName
takes preference.
- This parameter identifies the Def so it is mandatory. It can take two forms, if both are defined then
defName=<defName>
<defName>
(case sensitive) should be replaced with the actual defName of a Def.
label=<label>
<label>
(case insensitive) should be replaced with the actual label of a Def.
[sibling=...]
(optional) (case sensitive)- Allows querying for something if we know its sibling's value (works only for values at the moment).
Anonymous parameters:
[|...|]
(optional) (case sensitive)- Anonymous paramaters before the last one (
[tag]
) are here to help uniquely identify it. If the[tag]
is already unique within a Def tree, then these additional parameters are not needed.
- Anonymous paramaters before the last one (
[|tag|]
(optional) (case sensitive)- The final anonymous parameter defines what is to be queried.
count
{{#invoke:Test|count|<def ID>[|...|][|tag|][|sibling=...]}}
Parameters are the same as for query
. It's basically a wrapped up query that behaves a bit differently.
The difference is in how it handles lists. If a list is queried, unlike query
, it will return the length of the list.
How-to
Take a look at a Def
{{#invoke:Test|query|label=desert}}
Data is in the log.
Retrieve a simple value
{{#invoke:Test|query|defName=Caribou|description}}
A large member of the deer family, well-adapted to life in cold climates. Caribou can be milked, but refuse to carry packs.
Dealing with lists
{{#invoke:Test|query|defName=Mech_Scyther|tools}}
When a list is retrieved there will be no output but the log will contain a list of defined variables.
For convenience the list is reprinted here:
tools_1_linkedBodyPartsGroup = LeftBlade tools_1_cooldownTime = 2 tools_1_label = left blade tools_1_DPS = 10 tools_1_power = 20 tools_1_capacities_1 = Cut tools_1_capacities_2 = Stab tools_2_linkedBodyPartsGroup = RightBlade tools_2_cooldownTime = 2 tools_2_label = right blade tools_2_DPS = 10 tools_2_power = 20 tools_2_capacities_1 = Cut tools_2_capacities_2 = Stab tools_3_linkedBodyPartsGroup = HeadAttackTool tools_3_capacities_1 = Blunt tools_3_label = head tools_3_DPS = 4.5 tools_3_chanceFactor = 0.2 tools_3_power = 9 tools_3_cooldownTime = 2
All of the above can be accessed with the use of {{#var:...}}
.
{{#var:tools_1_DPS}}
DPS is not a normal member of this table but has been added with Lua. Let's call it a virtual field.
Retrieve something if a sibling is known
{{#invoke:Test|query|label=guinea pig|minAge|sibling=AnimalAdult}}
0.3
local DefInfo = {} local wiki = {} local inspect local util local search local data local frame ------------------------------------------------------------------ -- deal with differences between MediaWiki and dev environments -- ------------------------------------------------------------------ if mw then util = require("Module:Test/lib/util") search = require("Module:Test/lib/search") data = mw.loadData('Module:Test/data') frame = mw and mw.getCurrentFrame() log = mw.log logObject = mw.logObject else logStore = {} util = require "lib/util" search = require "lib/search" data = require "data/data" inspect = require 'lib/inspect' function pp(tbl, title) -- pretty print tables util.hl(title) print(inspect(tbl)) end log = function(str) table.insert(logStore, str) end logObject = function(obj, prefix) if prefix then assert(type(prefix) == "string") table.insert(logStore, prefix .. " = " .. inspect(obj)) else table.insert(logStore, inspect(obj)) end end end ----------------------- -- private functions -- ----------------------- local function runTime() local clock = string.format("%i", os.clock() * 1000) return clock end function DefInfo.vardefine(name, value) assert(name, "vardefine: missing argument #1 (variable to definePrefix)") assert(type(name) == "string", string.format("vardefine: bad argument #1 (string expected, got %s)", type(name))) assert(value, "vardefine: missing argument #2 (value to assign)") assert(type(value) == "string" or type(value) == "number" or type(value) =="boolean", string.format("vardefine: bad argument #2 (string, number or boolean expected, got %s)", type(value))) frame:callParserFunction('#vardefine', name, value) end function DefInfo.mergeParents(baseDef, ignoreKeys) local ancestorIDs = {} local mergedDef = {} local def = baseDef while def._.ParentName do local parentID = def._.DefCategory .. ":" .. def._.ParentName table.insert(ancestorIDs, parentID) def = data[parentID] end ancestorIDs = util.table.reverse(ancestorIDs) table.insert(ancestorIDs, baseDef._.DefCategory .. ":" .. baseDef.defName) for _,parentID in ipairs(ancestorIDs) do util.table.overwrite(mergedDef, data[parentID], ignoreKeys) end return mergedDef end function DefInfo.getDef(defID) local ignoreKeys = {"Abstract", "Name", "ParentName"} local baseDef local mergedDef local expandedDef if not defID then return nil end for _,def in pairs(data) do if def.defName == defID then baseDef = def break elseif string.upper(def.label or '') == string.upper(defID) then baseDef = def break end end if not baseDef then return nil end mergedDef = DefInfo.mergeParents(baseDef, ignoreKeys) return mergedDef end local function setPrefix(tbl, parentKey) local mt = getmetatable(tbl) or {} for k,v in pairs(tbl) do local prefix = parentKey .. "_" .. k if type(v) == 'table' then setPrefix(v, prefix) else mt[k] = prefix end end setmetatable(tbl, mt) end local function definePrefixed(tbl) for k,v in pairs(tbl) do if type(v) ~= 'table' then local mt = getmetatable(tbl) log(string.format('%s = %s', mt[k], v)) if mw then DefInfo.vardefine(mt[k], v) end else definePrefixed(v) end end end ---------------------- -- public interface -- ---------------------- function wiki.getDefName(frame) local defName local label = frame.args[1] if not label then log(runTime()) log("getDefName: missing argument #1 (label)") logObject(frame.args, "frame.args") return nil end for defID,def in pairs(data) do if string.upper(def.label or "") == string.upper(label) then defName = def.defName end end if not defName then log(runTime()) log(string.format("getDefName: '%s' not found", label)) logObject(frame.args, "frame.args") return nil end log(runTime()) return defName end function wiki.query(frame) local argLen = util.table.count(frame.args, "number") -- #frame.args won't work as expected, check the doc if not frame.args['defName'] and not frame.args['label'] then logObject(frame.args, string.format('query @ %ims: missing an identifying argument (defName or label)\nframe.args', runTime())) return nil end local def = DefInfo.getDef(frame.args['defName']) or DefInfo.getDef(frame.args['label']) if not def then logObject(frame.args, string.format("query @ %ims: Def not found\nframe.args", runTime())) return nil end if def and argLen == 0 then logObject(def, string.format("['%s:%s'] @ %ims", def._.DefCategory, def.defName, runTime())) return nil end local prune = def for i,arg in ipairs(frame.args) do -- arguments arg = tonumber(arg) or arg -- frame.args are always strings on MediaWiki so convert back the numbers if i == argLen and frame.args["sibling"] then prune = search.find({nil, frame.args["sibling"]} , prune) if not prune then logObject(frame.args, string.format("query @ %ims: bad argument 'sibling' ('%s' not found')\nframe.args", runTime(), frame.args["sibling"])) return nil else prune = search.meta.parent.table[arg] if not prune then logObject(frame.args, string.format("query @ %ims: bad argument #%i ('%s' is not a sibling of '%s')", runTime(), i, arg, frame.args["sibling"])) return nil end end end if i < argLen or i == argLen and not frame.args["sibling"] then prune = search.find(arg, prune) if not prune then logObject(frame.args, string.format("query @ %ims: bad argument #%i ('%s' not found)\nframe.args", runTime(), i, frame.args[i])) return nil else if type(prune) ~= 'table' and i < argLen then log(string.format("query @ %ims: warning Def ['%s'] argument #%i ('%s' returns a value, all extra arguments ignored)", runTime(), def['label'], i, frame.args[i])) return prune end end end end -- for arguments if type(prune) == "table" then log(string.format("@ %ims", runTime())) setPrefix(prune, frame.args[argLen]) definePrefixed(prune) return nil end log(string.format("@ %ims", runTime())) return prune end --------------------------------- -- simulate module invocation -- --------------------------------- if not mw then -- local simframe = { ["args"] = {} } -- simframe.args['label'] = 'feNnec fox' -- simframe.args[1] = 'tools' -- simframe.args[2] = 'label' -- local query = wiki.query(simframe) -- if query then print(query) end end ---------------------------------------- -- simulate wiki log while developing -- ---------------------------------------- if not mw then util.hl("DefInfo log") for _,v in ipairs(logStore) do print(v) end end if mw then return wiki else return DefInfo end