置顶公告:【置顶】关于临时开启评论区所有功能的公告(2022.10.22) | 【置顶】关于本站Widget恢复使用的公告
  • 你好~!欢迎来到萌娘百科镜像站!如需查看或编辑,请联系本站管理员注册账号。
  • 本镜像站和其他萌娘百科的镜像站无关,请注意分别。

Module:Random

贴贴♀百科,万娘皆可贴的百科全书!转载请标注来源页面的网页链接,并声明引自贴贴百科。内容不可商用。
跳到导航 跳到搜索
Template-info.svg 模块文档  [创建] [刷新]
  1. local module = {}
  2. local getArgs = require('Module:Arguments').getArgs
  3. function _main(args)
  4. local upset = 0
  5. function upsetRandomSeed()
  6. math.randomseed(tostring(os.time()):reverse():sub(1, 7)..upset..args['upset'])
  7. upset = upset + 1
  8. end
  9. upsetRandomSeed()
  10. local count = tonumber(args['count'] or 1)
  11. if count < 1 then count = 1 end
  12. local result = {}
  13. function testRepetition(val)
  14. for i, v in ipairs(result) do
  15. if v == val then
  16. return true
  17. end
  18. end
  19. return false
  20. end
  21. function getRandomNumber()
  22. local ran, min, max = 0, 0, 1
  23. if args[1] == nil then
  24. return math.random(0, 1), 0, 1
  25. elseif args[1] == 'raw' then
  26. ran = math.random()
  27. else
  28. if args[2] then
  29. min, max = tonumber(args[1]), tonumber(args[2])
  30. else
  31. max = tonumber(args[1])
  32. end
  33. if min > max then min, max = max, min end
  34. ran = math.random(min, max)
  35. end
  36. return ran, min, max
  37. end
  38. repeat
  39. local ran, min, max = getRandomNumber()
  40. if testRepetition(ran) == false or args['allowrepeat'] then
  41. result[#result + 1] = ran
  42. end
  43. if args[1] ~= 'raw' and #result >= max - min + 1 then
  44. for i=#result + 1, count do
  45. if args[1] == nil then upsetRandomSeed() end
  46. result[i] = math.random(min, max)
  47. end
  48. end
  49. until(#result >= count)
  50. return table.concat(result, ',')
  51. end
  52. function module.main(frame)
  53. local args = getArgs(frame)
  54. return _main(args)
  55. end
  56. return module