Difference between revisions of "Module:Test"

From RimWorld Wiki
Jump to navigation Jump to search
m
m
 
(92 intermediate revisions by the same user not shown)
Line 1: Line 1:
-----------------
+
DefInfo = {}
-- environment --
+
local wiki = {}
-----------------
 
  
_DEV = false
+
local function runTime()
 +
  return string.format("%i", os.clock() * 1000)
 +
end
 +
 
 +
------------------------------------------------------------------
 +
-- deal with differences between MediaWiki and dev environments --
 +
------------------------------------------------------------------
 +
 
 +
if mw then
  
data = {}
+
  log = mw.log
 +
  logObject = mw.logObject
  
if _DEV then
+
   local timeDataStart = runTime()
   data["Biomes"] = loadfile("./data/BiomeDefs.lua")()
+
    
   data["Races"] = loadfile("./data/ThingDefs_Races.lua")()
+
   Data   = mw.loadData('Module:Test/data')
else
 
   print = mw.log
 
  data["Biomes"] = mw.loadData('Module:Test/data/biomes')
 
   data["Races"] = mw.loadData('Module:Test/data/races')
 
end
 
  
------------------------
+
  local timeDataEnd = runTime()
-- load dev libraries --
+
  log(string.format('@%ims, data loaded in %ims', timeDataEnd, timeDataEnd - timeDataStart))
------------------------
 
  
--ref: https://github.com/kikito/inspect.lua
+
  Util  = require("Module:Test/lib/util")
if _DEV then inspect = require './lib/inspect' end
+
  Search = require("Module:Test/lib/search")
--~ local inspect = loadfile("./lib/inspect.lua")()
+
  VF    = require("Module:Test/data/virtual")
--~ print(inspect["_VERSION"])
 
  
-------------
+
  log(string.format('@%ims, modules loaded', runTime()))
-- utility --
 
-------------
 
  
---procedure
+
else
local function hl()
 
  print(string.rep("-", 80))
 
end
 
  
--ref: https://gist.github.com/ripter/4270799
+
   logDevStore = {}
local function tprint (tbl, indent)
 
   if not indent then indent = 0 end
 
  
   if type(tbl) ~= "table" then
+
   log = function(str)
     print(tbl)
+
     table.insert(logDevStore, str)
    return 0
 
 
   end
 
   end
  
   for k, v in pairs(tbl) do
+
   logObject = function(obj, prefix)
    formatting = string.rep("  ", indent) .. k .. ": "
+
     if prefix then
     if type(v) == "table" then
+
      assert(type(prefix) == "string")
      print(formatting)
+
       table.insert(logDevStore, prefix .. " = " .. Inspect(obj))
       tprint(v, indent+1)
 
    elseif type(v) == 'boolean' then
 
      print(formatting .. tostring(v))
 
 
     else
 
     else
       print(formatting .. v)
+
       table.insert(logDevStore, Inspect(obj))
 
     end
 
     end
 
   end
 
   end
end
 
  
local function shallowcopy(original_table)
+
  function pp(tbl, title) -- pretty print tables
    local orig_type = type(original_table)
+
     Util.hl(title)
    local copy
+
     print(Inspect(tbl))
    if orig_type == 'table' then
+
  end
        copy = {}
 
        for orig_key, orig_value in pairs(original_table) do
 
            copy[orig_key] = orig_value
 
        end
 
    else -- number, string, boolean, etc
 
        copy = original_table
 
    end
 
     return copy
 
end
 
 
 
--ref: https://gist.github.com/balaam/3122129
 
local function reverse_numeric_table(tbl)
 
     local reversed_table = {}
 
    local length = #tbl
 
    for i,v in ipairs(tbl) do
 
        reversed_table[length + 1 - i] = v
 
    end
 
    return reversed_table
 
end
 
 
 
----------
 
-- find --
 
----------
 
  
local dr = {
+
  local timeDataStart = runTime()
  ["state"] = {
 
    ["args"] = {},
 
    ["quads"] = {}
 
  },
 
  ["ancestors"] = {}
 
}
 
  
function dr.conductor(...)
+
   Data    = require "data/data"
   local query, tbl, tbl_key, max_depth = ...
 
  
   local f_name = "find"
+
   local timeDataEnd = runTime()
   assert(query, string.format("bad argument #1 to '%s' (argument missing, search query)", f_name))
+
   log(string.format('@%ims, data loaded in %ims', timeDataEnd, timeDataEnd - timeDataStart))
  assert(tbl, string.format("bad argument #2 to '%s' (argument missing, table to search through)", f_name))
 
  
   max_depth = max_depth or "infinite"
+
   Util    = require "lib/util"
 +
  Search  = require "lib/search"
 +
  Inspect = require "lib/inspect"
 +
  VF      = require "data/virtual"
  
   dr.state.args.query = query
+
   log(string.format('@%ims, modules loaded', runTime()))
  dr.state.args.tbl = tostring(tbl)
 
  dr.state.args.tbl_key = tbl_key or ""
 
  dr.state.args.max_depth = max_depth
 
  
  return dr.main(query, tbl, tbl_key, max_depth, 0)
 
 
end
 
end
  
local find = dr.conductor
+
-----------------------
 +
-- private functions --
 +
-----------------------
  
function dr.ancestry(quad, quads, ancestors)
+
function DefInfo.vardefine(name, value, frame)
   quad = quad or {}
+
   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)))
 +
  assert(frame, "vardefine: 'frame' missing")
 +
  frame:callParserFunction('#vardefine', name, value)
 +
end
  
   for _,v in ipairs(quads) do
+
function DefInfo.expandDef(def, runMe)
     if v.v == quad.parent then
+
  if not runMe then return nil end
       table.insert(ancestors, quad.parent_key)
+
  local vFuncs = VF
      dr.ancestry(v, quads, ancestors)
+
   for fName,func in pairs(vFuncs) do
    elseif not quad.parent_key then return nil
+
     if func(def) then
 +
       log(string.format('@%ims, expandDef: %s expanded with %s', runTime(), def.defName, fName))
 
     end
 
     end
 
   end
 
   end
 
end
 
end
  
function dr.condition(query, key, value) --todo: optimize
+
function DefInfo.mergeParents(baseDef, ignoreKeys)
   local condition = false
+
   local ancestorIDs = {}
 +
  local mergedDef = {}
 +
  local def = baseDef
  
   -- the order
+
   while def._.ParentName do
  if query.key and query.value then
+
     local parentID = def._.DefCategory .. ":" .. def._.ParentName
     condition = key == query.key and value == query.value
+
     table.insert(ancestorIDs, parentID)
  elseif query.key then
+
    def = Data[parentID]
    condition = key == query.key
+
  end
  elseif query.value then
+
 
    condition = value == query.value
+
  ancestorIDs = Util.table.reverse(ancestorIDs)
  elseif query.keys_of_type then
+
   table.insert(ancestorIDs, baseDef._.DefCategory .. ":" .. baseDef.defName)
     if type(query.keys_of_type) == "table" then
+
 
      for _,v in ipairs(query.keys_of_type) do
+
  for _,parentID in ipairs(ancestorIDs) do
        if type(key) == v then
+
     Util.table.overwrite(mergedDef, Data[parentID], ignoreKeys)
          condition = true
 
          break
 
        end
 
      end
 
    else -- assume it's a key search
 
      condition = type(key) == query.keys_of_type
 
    end
 
   elseif query.values_of_type then
 
    if type(query.values_of_type) == "table" then
 
      for _,v in ipairs(query.values_of_type) do
 
        if type(value) == v then
 
          condition = true
 
          break
 
        end
 
      end
 
     else
 
      condition = type(value) == query.keys_of_type
 
    end
 
 
   end
 
   end
  
   return condition
+
   return mergedDef
 
end
 
end
  
function dr.main(query, tbl, tbl_key, max_depth, depth)
+
function DefInfo.getDef(defID, expandVF)
   if max_depth ~= "infinite" then
+
   if expandVF ~= false then expandVF = true end
    if depth > max_depth then return nil end
 
  end
 
  
   local subtables = {}
+
   local ignoreKeys = {"Abstract", "Name", "ParentName"}
 +
  local baseDef
 +
  local def
  
   for k,v in pairs(tbl) do
+
   if not defID then return nil end
    local quad = {}
 
    quad.k = k
 
    quad.v = v
 
    quad.parent = tbl
 
    quad.parent_key = tbl_key
 
    quad.depth = depth
 
    table.insert(dr.state.quads, quad)
 
  
     if dr.condition(query, k, v) then
+
  for _,def in pairs(Data) do
       return quad
+
     if def.defName == defID then
     elseif type(v) == "table" then
+
       baseDef = def
       table.insert(subtables, k)
+
      break
 +
     elseif string.upper(def.label or '') == string.upper(defID) then
 +
       baseDef = def
 +
      break
 
     end
 
     end
 
   end
 
   end
  
   for _,k in ipairs(subtables) do
+
   if not baseDef then return nil end
    local f = dr.main(query, tbl[k], k, max_depth, depth+1)
+
 
    if f then return f
+
  def = DefInfo.mergeParents(baseDef, ignoreKeys)
    end
+
 
   end
+
   DefInfo.expandDef(def, expandVF)
  
 +
  return def
 
end
 
end
  
local q1 = {["key"] = "Hare"}
+
local function setPrefix(tbl, parentKey)
local q2 = {["key"] = "defName", ["value"] = "Hare"}
+
  local mt = getmetatable(tbl) or {}
local q = q2
 
local r = find(q, data)
 
--~ tprint(#dr.quads)
 
dr.ancestry(r, dr.state.quads, dr.ancestors)
 
--~ tprint(dr.state.args)
 
print(inspect(r))
 
hl()
 
tprint(r)
 
--~ tprint({["ancestors"] = dr.ancestors})
 
--~ tprint({result = r})
 
  
-------------
 
-- utility --
 
-------------
 
 
local function count(tbl, key_type)
 
  local length = 0;
 
 
   for k,v in pairs(tbl) do
 
   for k,v in pairs(tbl) do
     if key_type then
+
     local prefix = parentKey .. "_" .. k
      if type(k) == key_type then
+
    if type(v) == 'table' then
        length = length + 1
+
       setPrefix(v, prefix)
       end
 
 
     else
 
     else
       length = length + 1
+
       mt[k] = prefix
 
     end
 
     end
 
   end
 
   end
  return length
 
end
 
 
 
-- "delimiter" must be a single character or the removal of the final one won't work
 
local function string_csv(simple_table, delimiter)
 
  local f_name = "string_csv"
 
  delimiter = tostring(delimiter) or ","
 
  assert(#delimiter == 1, string.format("bad argument #2 to '%s' (single character expected)", f_name))
 
 
  local list = ""
 
 
  for k,v in pairs(simple_table) do
 
    list = tostring(list) .. v .. delimiter
 
  end
 
  list = string.sub(list, 1, -2)
 
  return list
 
end
 
  
 
+
   setmetatable(tbl, mt)
---procedure
 
local function vardefine(var_name, var_value)
 
  local f_name = "vardefine"
 
  assert(var_name, string.format("bad argument #1 to '%s' (argument missing, name of variable to define)", f_name))
 
  assert(var_name == "string", string.format("bad argument #1 to '%s' (string expected, got %s)", f_name, type(var_name)))
 
  assert(var_value, string.format("bad argument #2 to '%s' (argument missing, value to assign to variable)", f_name))
 
  assert(var_value == "string" or var_value == "number", string.format("bad argument #2 to '%s' (string or number expected, got %s)", f_name, type(var_value)))
 
 
 
   frame:callParserFunction('#vardefine', var_name, var_value)
 
 
end
 
end
  
---procedure
+
local function definePrefixed(tbl, frame)
local function overwrite_first_table_with_second(first_table, second_table, ignore_keys)
+
   for k,v in pairs(tbl) do
  ignore_keys = ignore_keys or {}
+
     if type(v) ~= 'table' then
 
+
      local mt = getmetatable(tbl)
   for k,v in pairs(second_table) do
+
      log(string.format('%s = %s', mt[k], tostring(v)))
     local ignore = false
+
      if mw then DefInfo.vardefine(mt[k], v, frame) end
 
+
    else
    for _, ignored_key in ipairs(ignore_keys) do
+
      definePrefixed(v, frame)
      if k == ignored_key then ignore = true end
 
    end
 
 
 
    if not ignore then
 
      if type(v) == "table" then
 
        if type(first_table[k]) == "table" then
 
          overwrite_first_table_with_second(first_table[k], v)
 
        else
 
          first_table[k] = {}
 
          overwrite_first_table_with_second(first_table[k], v)
 
        end
 
      else
 
        first_table[k] = v
 
      end
 
 
     end
 
     end
 
   end
 
   end
Line 277: Line 166:
  
 
----------------------
 
----------------------
-- dataset specific --
+
-- public interface --
 
----------------------
 
----------------------
  
---hidden vars: data
+
function wiki.count(frame)
local function find_def_table(def)
+
   local query = wiki.query(frame)
   for k1,v1 in pairs(data) do
+
  if type(wiki.queried) == 'table' then -- WARNING: checks a variable that is set in wiki.query (ugly)
    if type(v1) == "table" then
+
    return Util.table.count(wiki.queried)
      for k2,v2 in pairs(v1) do
 
        if k2 == def then return v2 end
 
      end
 
    end
 
 
   end
 
   end
 
end
 
end
  
 +
function wiki.query(frame)
  
---hidden vars: data
+
   local argLen = Util.table.count(frame.args, "number") -- #frame.args won't work as expected, check the doc
local function search_parent_def_table(key, def_table)
 
   local ParentName = getParentName(def_table)
 
  if not ParentName then return nil end
 
  local parentdef_table = search_table_recursive(ParentName, data)
 
  if not parentdef_table then return nil end
 
  
  local found = search_table_recursive(key, parentdef_table)
+
   if not frame.args['defName'] and not frame.args['label'] then
   if found then return found
+
     logObject(frame.args, string.format('query @ %ims: missing an identifying argument (defName or label)\nframe.args', runTime()))
  else
+
     return nil
     found = search_parent_def_table(key, parentdef_table)
 
     if found then return found end
 
 
   end
 
   end
end
 
  
 +
  local def = DefInfo.getDef(frame.args['defName']) or DefInfo.getDef(frame.args['label'])
  
---hidden vars: data
+
  if not def then
local function merge_def_with_parents(def_table, def_category, ignore_keys)
+
    logObject(frame.args, string.format("query @ %ims: Def not found\nframe.args", runTime()))
 +
    return nil
 +
  end
  
   local parent_names = {}
+
   if def and argLen == 0 then
  local parent_name = def_table["ParentName"]
+
    logObject(def, string.format("['%s:%s'] @ %ims", def._.DefCategory, def.defName, runTime()))
  local parent_table = def_category_table[parent_name]
+
     return nil
 
 
  while parent_name do
 
    table.insert(parent_names, parent_name)
 
     parent_name = parent_table["ParentName"]
 
    parent_table = def_category_table[parent_name]
 
 
   end
 
   end
  
   local inheritance_chain = shallowcopy(reverse_numeric_table(parent_names))
+
   local processedDef = def
  table.insert(inheritance_chain, def)
 
  
  local merged = {}
+
   for i,arg in ipairs(frame.args) do -- arguments
  local chain_length = #inheritance_chain
+
     arg = tonumber(arg) or arg -- frame.args are always strings on MediaWiki so convert back the numbers
   for i,v in ipairs(inheritance_chain) do
 
     overwrite_first_table_with_second(merged, data[def_category][inheritance_chain[i]], ignore_keys)
 
  end
 
  
  return merged
+
    if i == argLen and frame.args["sibling"] then
end
+
      processedDef = Search.find({nil, frame.args["sibling"]} , processedDef)
 +
      if not processedDef then
 +
        logObject(frame.args, string.format("query @ %ims: bad argument 'sibling' ('%s' not found')\nframe.args", runTime(), frame.args["sibling"]))
 +
        return nil
 +
      else
 +
        processedDef = Search.meta.parent.table[arg]
 +
        if not processedDef 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
 +
      processedDef = Search.find(arg, processedDef)
 +
      if not processedDef 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(processedDef) ~= '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 processedDef
 +
        end
 +
      end
 +
    end
  
---hidden vars: data
+
  end -- for arguments
function def_info(key, value)
 
  assert(type(key) == "string" and type(data) == "table")
 
  
   local category
+
   if type(processedDef) == "table" then
   local table_reference
+
    log(string.format("@%ims, query: table vardefined", runTime()))
 +
    setPrefix(processedDef, frame.args[argLen])
 +
    definePrefixed(processedDef, frame)
 +
    wiki.queried = processedDef -- WARNING: sets a variable that is used in another function wiki.count (ugly)
 +
    return nil
 +
   end
  
   local t = search(data, "recursive", key, value)
+
   log(string.format("@%ims, query: %s printed", runTime(), type(processedDef)))
 
+
   return processedDef
   return {
 
    ["category"] = t,
 
    ["table_reference"] = table_reference,
 
    ["defName"] = defName
 
  }
 
 
end
 
end
  
------------
+
------------------------------------
-- public --
+
-- simulate MediaWiki environment --
------------
+
------------------------------------
  
local p = {}
+
if not mw then
 
+
  local simframe = { ["args"] = {} }
--~ local categories = {}
+
  simframe.args['label'] = 'ancient cryptosleep casket'
--~ for k,_ in pairs(data) do
+
--~  simframe.args[1] = 'verbs'
--~  p[k] = function (frame) end --ref: https://www.lua.org/manual/5.1/manual.html#2.5.9
+
--~  simframe.args[2] = 'label'
--~ end
+
  wiki.query(simframe)
 
+
end
function p.query(frame)
 
  local f_name = "query"
 
 
 
   assert(frame.args["defName"] or frame.args["label"], string.format("bad argument to '%s' (missing named argument 'defName' or 'label', needed to identify a Def)", f_name))
 
  
  local sign = {}
+
if not mw then
  if frame.args["defName"] then
+
  Util.hl("DefInfo log")
    sign.key = "defName"
+
   for _,v in ipairs(logDevStore) do
    sign.value = frame.args["defName"]
+
     print(v)
   elseif frame.args["label"] then
 
     sign.key = "label"
 
    sign.value = frame.args["label"]
 
 
   end
 
   end
 +
end
  
  local q = search(data, "recursive", sign.key, sign.value, nil)
+
------------
  if q then
+
-- return --
--~    q = merge_def_with_parents(data[q.parent_key][sign.], {"ParentName", "Abstract"})
+
------------
  end
 
 
 
  tprint(q)
 
 
 
  assert(q, "Def not found")
 
 
 
--~  local numbered_args_length = count(frame.args, "number")
 
--~  if numbered_args_length == 0 then
 
--~    tprint(res)
 
--~    return "Table returned. Check the log."
 
--~  else
 
--~    local filtered = res
 
--~    -- filtered is just a reference to res (not copied) so updates on filtered are updates on res
 
 
 
--~    for i=1, numbered_args_length do
 
--~      assert(frame.args[i], string.format("bad argument to '%s' (missing numeric argument #%i)", f_name, i))
 
 
 
--~      filtered = search_table_recursive(frame.args[i], filtered)
 
--~      assert(filtered, string.format("'%s' not found in '%s'", frame.args[i], def_query_tag))
 
 
 
--~      if filtered then
 
--~        if (type(filtered) == "string" or type(filtered) == "number" or type(filtered) == "boolean") and (i < numbered_args_length) then
 
--~          error(string.format("too many numeric arguments to '%s' ('%s' already found in '%s')", f_name, frame.args[i], def_query_tag))
 
--~        end
 
--~      else
 
--~        error(string.format("'%s' not found in '%s'", v, def_query_tag))
 
--~      end
 
--~    end
 
 
 
--~    if type(filtered) == "table" then
 
--~      tprint(filtered)
 
--~      return "Table returned. Check the log."
 
--~    else
 
--~      return filtered
 
--~    end
 
 
 
--~  end
 
  
 +
if mw then
 +
  return wiki
 +
else
 +
  return DefInfo
 
end
 
end
 
-------------------------------------------------------------------
 
-- simulate MediaWiki/Scribunto module invocation using 'frame'  --
 
-------------------------------------------------------------------
 
 
local simframe = { ["args"] = {} }
 
 
simframe.args["label"] = "fennec fox"
 
simframe.args[1] = "points"
 
simframe.args[2] = "4"
 
simframe.args[3] = "1"
 
 
frame = frame or simframe
 
 
--~ local invoke = p.query(frame)
 
 
--~ if type(invoke) == "table" then
 
--~  tprint(invoke)
 
--~ else
 
--~  print(invoke)
 
--~ end
 
 
--~ print(type(invoke))
 
--~ search_table_recursive(3, invoke)
 
 
---------
 
-- log --
 
---------
 
 
local clock = string.format("Module:DefInfo:os.clock(): %i ms", os.clock() * 1000)
 
print("--" .. string.rep("-", #clock) .. "--")
 
print("- " .. clock .. " -")
 
print("--" .. string.rep("-", #clock) .. "--")
 
 
return p
 
 
------------------
 
--[[ references --
 
------------------
 
 
- http://lua-users.org/wiki/CopyTable
 
- https://stackoverflow.com/questions/1283388/lua-how-to-merge-two-tables-overwriting-the-elements-which-are-in-both
 
- https://stackoverflow.com/questions/9168058/how-to-dump-a-table-to-console
 
 
Some table.*() functions in Scribunto do not work as they should when using mw.loadData().
 
- https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.loadData
 
 
------------------
 
-- references ]]--
 
------------------
 

Latest revision as of 09:56, 18 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.
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.
[|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}}

10

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


DefInfo = {}
local wiki = {}

local function runTime()
  return string.format("%i", os.clock() * 1000)
end

------------------------------------------------------------------
-- deal with differences between MediaWiki and dev environments --
------------------------------------------------------------------

if mw then

  log = mw.log
  logObject = mw.logObject

  local timeDataStart = runTime()
  
  Data   = mw.loadData('Module:Test/data')

  local timeDataEnd = runTime()
  log(string.format('@%ims, data loaded in %ims', timeDataEnd, timeDataEnd - timeDataStart))

  Util   = require("Module:Test/lib/util")
  Search = require("Module:Test/lib/search")
  VF     = require("Module:Test/data/virtual")

  log(string.format('@%ims, modules loaded', runTime()))

else

  logDevStore = {}

  log = function(str)
    table.insert(logDevStore, str)
  end

  logObject = function(obj, prefix)
    if prefix then
      assert(type(prefix) == "string")
      table.insert(logDevStore, prefix .. " = " .. Inspect(obj))
    else
      table.insert(logDevStore, Inspect(obj))
    end
  end

  function pp(tbl, title) -- pretty print tables
    Util.hl(title)
    print(Inspect(tbl))
  end

  local timeDataStart = runTime()

  Data    = require "data/data"

  local timeDataEnd = runTime()
  log(string.format('@%ims, data loaded in %ims', timeDataEnd, timeDataEnd - timeDataStart))

  Util    = require "lib/util"
  Search  = require "lib/search"
  Inspect = require "lib/inspect"
  VF      = require "data/virtual"

  log(string.format('@%ims, modules loaded', runTime()))

end

-----------------------
-- private functions --
-----------------------

function DefInfo.vardefine(name, value, frame)
  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)))
  assert(frame, "vardefine: 'frame' missing")
  frame:callParserFunction('#vardefine', name, value)
end

function DefInfo.expandDef(def, runMe)
  if not runMe then return nil end
  local vFuncs = VF
  for fName,func in pairs(vFuncs) do
    if func(def) then
      log(string.format('@%ims, expandDef: %s expanded with %s', runTime(), def.defName, fName))
    end
  end
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, expandVF)
  if expandVF ~= false then expandVF = true end

  local ignoreKeys = {"Abstract", "Name", "ParentName"}
  local baseDef
  local def

  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

  def = DefInfo.mergeParents(baseDef, ignoreKeys)

  DefInfo.expandDef(def, expandVF)

  return def
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, frame)
  for k,v in pairs(tbl) do
    if type(v) ~= 'table' then
      local mt = getmetatable(tbl)
      log(string.format('%s = %s', mt[k], tostring(v)))
      if mw then DefInfo.vardefine(mt[k], v, frame) end
    else
      definePrefixed(v, frame)
    end
  end
end

----------------------
-- public interface --
----------------------

function wiki.count(frame)
  local query = wiki.query(frame)
  if type(wiki.queried) == 'table' then -- WARNING: checks a variable that is set in wiki.query (ugly)
    return Util.table.count(wiki.queried)
  end
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 processedDef = 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
      processedDef = Search.find({nil, frame.args["sibling"]} , processedDef)
      if not processedDef then
        logObject(frame.args, string.format("query @ %ims: bad argument 'sibling' ('%s' not found')\nframe.args", runTime(), frame.args["sibling"]))
        return nil
      else
        processedDef = Search.meta.parent.table[arg]
        if not processedDef 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
      processedDef = Search.find(arg, processedDef)
      if not processedDef 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(processedDef) ~= '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 processedDef
        end
      end
    end

  end -- for arguments

  if type(processedDef) == "table" then
    log(string.format("@%ims, query: table vardefined", runTime()))
    setPrefix(processedDef, frame.args[argLen])
    definePrefixed(processedDef, frame)
    wiki.queried = processedDef -- WARNING: sets a variable that is used in another function wiki.count (ugly)
    return nil
  end

  log(string.format("@%ims, query: %s printed", runTime(), type(processedDef)))
  return processedDef
end

------------------------------------
-- simulate MediaWiki environment --
------------------------------------

if not mw then
  local simframe = { ["args"] = {} }
  simframe.args['label'] = 'ancient cryptosleep casket'
--~   simframe.args[1] = 'verbs'
--~   simframe.args[2] = 'label'
  wiki.query(simframe)
end

if not mw then
  Util.hl("DefInfo log")
  for _,v in ipairs(logDevStore) do
    print(v)
  end
end

------------
-- return --
------------

if mw then
  return wiki
else
  return DefInfo
end