runtime.lua 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. local lume = require("libraries.lume")
  2. local r = {}
  3. function r:newGlobals(spritesheet,tilemap)
  4. local GLOB = {
  5. assert=assert,
  6. error=error,
  7. ipairs=ipairs,
  8. pairs=pairs,
  9. ripairs = lume.ripairs,
  10. next=next,
  11. pcall=pcall,
  12. select=select,
  13. tonumber=tonumber,
  14. tostring=tostring,
  15. type=type,
  16. unpack=unpack,
  17. _VERSION=_VERSION,
  18. xpcall=xpcall,
  19. string={
  20. byte=string.byte,
  21. char=string.char,
  22. find=string.find,
  23. format=string.format,
  24. gmatch=string.gmatch,
  25. gsub=string.gsub,
  26. len=string.len,
  27. lower=string.lower,
  28. match=string.match,
  29. rep=string.rep,
  30. reverse=string.reverse,
  31. sub=string.sub,
  32. upper=string.upper
  33. },
  34. table={
  35. insert=table.insert,
  36. maxn=table.maxn,
  37. remove=table.remove,
  38. sort=table.sort
  39. },
  40. math={
  41. abs=math.abs,
  42. acos=math.acos,
  43. asin=math.asin,
  44. atan=math.atan,
  45. atan2=math.atan2,
  46. ceil=math.ceil,
  47. cos=math.cos,
  48. cosh=math.cosh,
  49. deg=math.deg,
  50. exp=math.exp,
  51. floor=math.floor,
  52. fmod=math.fmod,
  53. frexp=math.frexp,
  54. huge=math.huge,
  55. ldexp=math.ldexp,
  56. log=math.log,
  57. log10=math.log10,
  58. max=math.max,
  59. min=math.min,
  60. modf=math.modf,
  61. pi=math.pi,
  62. pow=math.pow,
  63. rad=math.rad,
  64. random=math.random,
  65. randomseed=math.randomseed,
  66. sin=math.sin,
  67. sinh=math.sinh,
  68. sqrt=math.sqrt,
  69. tan=math.tan,
  70. tanh=math.tanh,
  71. }
  72. }
  73. local newAPI = api.newAPI(true,spritesheet,tilemap)
  74. for k,v in pairs(newAPI) do
  75. GLOB[k] = v
  76. end
  77. GLOB._G=GLOB --Mirror Mirror
  78. return GLOB
  79. end
  80. local function tr(fnc,...)
  81. if not fnc then return end
  82. local ok, err = pcall(fnc,...)
  83. if not ok then
  84. r.onerr(err)
  85. r.cg = {}
  86. end
  87. end
  88. function r:compile(code, G, spritesheet)
  89. local G = G or r:newGlobals(spritesheet)
  90. local chunk, err = loadstring(code or "")
  91. if err and not chunk then -- maybe it's an expression, not a statement
  92. chunk, err = loadstring("return " .. code)
  93. if err and not chunk then
  94. return false, err
  95. end
  96. end
  97. setfenv(chunk,G)
  98. self.cg = G
  99. return chunk
  100. end
  101. function r:loadGame(code,spritesheet,tilemap,onerr,...)
  102. --[[local success, err = self:compile(code, false, spritesheet, false)
  103. if not success then return false, err end
  104. self.onerr = onerr or error
  105. return true]] -- The loadGame will have it's own loading code because r:compile made by technomancy is so so buggy..
  106. local G = self:newGlobals(spritesheet,tilemap)
  107. local cart, err = loadstring(code or "")
  108. if not cart then return false, err end
  109. setfenv(cart,G)
  110. local ok, err = pcall(cart,...)
  111. if not ok then return err end
  112. self.cg = G
  113. self.onerr = onerr or error
  114. require("editor.console").G = G
  115. return self
  116. end
  117. function r:startGame()
  118. api.clear(1)
  119. tr(self.cg._init)
  120. end
  121. function r:_init()
  122. self.cg = {}
  123. end
  124. function r:_update(...)
  125. tr(self.cg._update,...)
  126. end
  127. function r:_mpress(...)
  128. tr(self.cg._mpress,...)
  129. end
  130. function r:_mmove(...)
  131. tr(self.cg._mmove,...)
  132. end
  133. function r:_mrelease(...)
  134. tr(self.cg._mrelease,...)
  135. end
  136. function r:_tpress(...)
  137. tr(self.cg._tpress,...)
  138. end
  139. function r:_tmove(...)
  140. tr(self.cg._tmove,...)
  141. end
  142. function r:_trelease(...)
  143. tr(self.cg._trelease,...)
  144. end
  145. function r:_kpress(...)
  146. tr(self.cg._kpress,...)
  147. end
  148. function r:_krelease(...)
  149. tr(self.cg._krelease,...)
  150. end
  151. function r:_tinput(...)
  152. tr(self.cg._tinput,...)
  153. end
  154. return r