lmath.lua 659 B

12345678910111213141516171819202122232425262728293031
  1. -- luat math lib
  2. require "bit"
  3. module(..., package.seeall)
  4. local seed = tonumber(tostring(os.time()):reverse():sub(1, 7)) + rtos.tick()
  5. function randomseed(val)
  6. seed = val
  7. end
  8. function random(min, max)
  9. local next = seed
  10. next = next * 1103515245
  11. next = next + 12345
  12. local result = (next / 65536) % 2048
  13. next = next * 1103515245
  14. next = next + 12345
  15. result = result * 2 ^ 10
  16. result = bit.bxor(result, (next / 65536) % 1024)
  17. next = next * 1103515245
  18. next = next + 12345
  19. result = result * 2 ^ 10
  20. result = bit.bxor(result, (next / 65536) % 1024)
  21. seed = next
  22. return min + (result % (max - min))
  23. end