Module:GetRandomCreature: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(75 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p = {}
local p = {}
local cargo = mw.ext.cargo


function p.parse(frame)
function p.a(seed)
local a = string.gsub(frame.args[1],"(&)(%w)([^&\n]*)", function(_,color,text)
  math.randomseed(tonumber(seed))
        local luatable = {
  local count = cargo.query('Characters=C, GeneralData=GD', 'TRIM(COUNT(C._pageName))=Number', {join='C.ObjectID=GD.ObjectID', where='C._pageNamespace="0" AND (NOT GD.ParentObject WITHIN "Wall" AND NOT GD.PlainName LIKE "* door")'})[1]['Number']
            ['r'] = "#a64a2e",
  local offsetin = math.random(0 , tonumber(count)-2)
            ['R'] = "#d74200",
  local tables = 'Characters=C, GeneralData=GD'
            ['g'] = "#009403",
  local fields = 'GD.PlainName=Name, GD._pageName=Page'
            ['G'] = "#00c420",
  local args ={join='C._pageName=GD._pageName', where='GD._pageNamespace="0" AND (NOT GD.ParentObject WITHIN "Wall" AND NOT  GD.PlainName LIKE "* door")', offset=offsetin,limit = 1}
            ['b'] = "#0048bd",
  local result = cargo.query(tables, fields, args)
            ['B'] = "#0096ff",
  if not next(result) then
            ['c'] = "#40a4b9",
    error('?????')
            ['C'] = "#77bfcf",
  end
            ['m'] = "#b154cf",
  return '[[' .. result[1]['Page'] .. '|'.. result[1]['Name'] .. ']]'
            ['M'] = "#da5bd6",
end
            ['w'] = "#98875f",
            ['W'] = "#cfc041",
            ['k'] = "#0f3b3a",
            ['K'] = "#155352",
            ['y'] = "#b1c9c3",
            ['Y'] = "#FFFFFF",
            ['o'] = "#f15f22",
            ['O'] = "#e99f10"
        }


        return "<span style=\"color: " .. luatable[color] .. ";\">"  .. text .. "</span>"
function p.getRandomChara(frame)
    end)
  return p.a(frame.args.seed)
return a
end
end


function p.test(seed)
  return p.a(tostring(seed))
end
return p
return p

Latest revision as of 14:42, 27 July 2023

Documentation for this module may be created at Module:GetRandomCreature/doc

local p = {}
local cargo = mw.ext.cargo

function p.a(seed)
  math.randomseed(tonumber(seed))
  local count = cargo.query('Characters=C, GeneralData=GD', 'TRIM(COUNT(C._pageName))=Number', {join='C.ObjectID=GD.ObjectID', where='C._pageNamespace="0" AND (NOT GD.ParentObject WITHIN "Wall" AND NOT GD.PlainName LIKE "* door")'})[1]['Number']
  local offsetin = math.random(0 , tonumber(count)-2)
  local tables = 'Characters=C, GeneralData=GD'
  local fields = 'GD.PlainName=Name, GD._pageName=Page'
  local args ={join='C._pageName=GD._pageName', where='GD._pageNamespace="0" AND (NOT GD.ParentObject WITHIN "Wall" AND NOT  GD.PlainName LIKE "* door")', offset=offsetin,limit = 1}
  local result = cargo.query(tables, fields, args)
  if not next(result) then
    error('?????')
  end
  return '[[' .. result[1]['Page'] .. '|'.. result[1]['Name'] .. ']]'
end

function p.getRandomChara(frame)
  return p.a(frame.args.seed)
end

function p.test(seed)
  return p.a(tostring(seed))
end
return p