main.lua 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. io.stdout:setvbuf("no")
  2. love.graphics.setDefaultFilter("nearest")
  3. api = require("api") --I STILL WANT IT AS A GLOBAL !
  4. local utf8 = require("utf8")
  5. function love.mousepressed(x,y,button,istouch)
  6. local x,y = _ScreenToLiko(x,y) if x < 0 or x > 192 or y < 0 or y > 128 then return end
  7. _auto_mpress(x,y,button,istouch)
  8. end
  9. function love.mousemoved(x,y,dx,dy,istouch)
  10. local x, y = _ScreenToLiko(x,y) if x < 0 or x > 192 or y < 0 or y > 128 then return end
  11. _auto_mmove(x,y,dx,dy,istouch)
  12. end
  13. function love.mousereleased(x,y,button,istouch)
  14. local x, y = _ScreenToLiko(x,y) if x < 0 or x > 192 or y < 0 or y > 128 then return end
  15. _auto_mrelease(x,y,button,istouch)
  16. end
  17. function love.wheelmoved(x,y)
  18. _auto_mmove(x,y,0,0,false,true) --Mouse button 0 is the wheel
  19. end
  20. function love.touchpressed(id,x,y,dx,dy,pressure)
  21. local x, y = _ScreenToLiko(x,y) if x < 0 or x > 192 or y < 0 or y > 128 then return end
  22. _auto_tpress(id,x,y,pressure)
  23. end
  24. function love.touchmoved(id,x,y,dx,dy,pressure)
  25. local x, y = _ScreenToLiko(x,y) if x < 0 or x > 192 or y < 0 or y > 128 then return end
  26. _auto_tmove(id,x,y,pressure)
  27. end
  28. function love.touchreleased(id,x,y,dx,dy,pressure)
  29. local x, y = _ScreenToLiko(x,y) if x < 0 or x > 192 or y < 0 or y > 128 then return end
  30. _auto_trelease(id,x,y,pressure)
  31. end
  32. function love.keypressed(key,scancode,isrepeat)
  33. _auto_kpress(key,scancode,isrepeat)
  34. end
  35. function love.keyreleased(key,scancode)
  36. _auto_krelease(key,scancode)
  37. end
  38. function love.textinput(text)
  39. local text_escaped = text:gsub("[%(%)%.%%%+%-%*%?%[%]%^%$]", "%%%1")
  40. if #text == 1 and _FontChars:find(text_escaped) then
  41. _auto_tinput(text)
  42. end
  43. end
  44. --Internal Callbacks--
  45. function love.load()
  46. --love.keyboard.setTextInput(true)
  47. if not love.filesystem.exists("/data/") then love.filesystem.createDirectory("/data/") end
  48. if not love.filesystem.exists("/data/demos/") then
  49. love.filesystem.createDirectory("/data/demos/")
  50. for k, demo in ipairs(love.filesystem.getDirectoryItems("/demos/")) do
  51. api.fs.write("/demos/"..demo,love.filesystem.read("/demos/"..demo))
  52. end
  53. end
  54. api.loadDefaultCursors()
  55. _ScreenCanvas = love.graphics.newCanvas(192,128)
  56. _ScreenCanvas:setFilter("nearest")
  57. love.graphics.clear(0,0,0,255)
  58. love.graphics.setCanvas(_ScreenCanvas)
  59. love.graphics.clear(0,0,0,255)
  60. love.graphics.translate(_ScreenTX,_ScreenTY)
  61. love.resize(love.graphics.getDimensions())
  62. love.graphics.setLineStyle("rough")
  63. love.graphics.setLineJoin("miter")
  64. love.graphics.setFont(_Font)
  65. api.clear() --Clear the canvas for the first time
  66. api.stroke(1)
  67. require("autorun")
  68. --require("debugrun")
  69. --require("editor")
  70. _auto_init()
  71. end
  72. function love.resize(w,h)
  73. _ScreenWidth, _ScreenHeight = w, h
  74. local TSX, TSY = w/192, h/128 --TestScaleX, TestScaleY
  75. if TSX < TSY then
  76. _ScreenScaleX, _ScreenScaleY, _ScreenScale = w/192, w/192, w/192
  77. _ScreenX, _ScreenY = 0, (_ScreenHeight-128*_ScreenScaleY)/2
  78. else
  79. _ScreenScaleX, _ScreenScaleY, _ScreenScale = h/128, h/128, h/128
  80. _ScreenX, _ScreenY = (_ScreenWidth-192*_ScreenScaleX)/2, 0
  81. end
  82. api.clearCursorsCache()
  83. _ShouldDraw = true
  84. end
  85. function love.update(dt)
  86. local mx, my = _ScreenToLiko(love.mouse.getPosition())
  87. love.window.setTitle(_ScreenTitle.." FPS: "..love.timer.getFPS().." ShouldDraw: "..(_ForceDraw and "FORCE" or (_ShouldDraw and "Yes" or "No")).." MX, MY: "..mx..","..my)
  88. _auto_update(dt)
  89. end
  90. function love.visible(v)
  91. _ForceDraw = not v
  92. _ShouldDraw = v
  93. end
  94. function love.focus(f)
  95. _ForceDraw = not f
  96. ShouldDraw = f
  97. end
  98. function love.run()
  99. if love.math then
  100. love.math.setRandomSeed(os.time())
  101. end
  102. if love.load then love.load(arg) end
  103. -- We don't want the first frame's dt to include time taken by love.load.
  104. if love.timer then love.timer.step() end
  105. local dt = 0
  106. -- Main loop time.
  107. while true do
  108. -- Process events.
  109. if love.event then
  110. love.event.pump()
  111. for name, a,b,c,d,e,f in love.event.poll() do
  112. if name == "quit" then
  113. if not love.quit or not love.quit() then
  114. return a
  115. end
  116. end
  117. love.handlers[name](a,b,c,d,e,f)
  118. end
  119. end
  120. -- Update dt, as we'll be passing it to update
  121. if love.timer then
  122. love.timer.step()
  123. dt = love.timer.getDelta()
  124. end
  125. -- Call update and draw
  126. if love.update then love.update(dt) end -- will pass 0 if love.timer is disabled
  127. if love.graphics and love.graphics.isActive() and (_ShouldDraw or _ForceDraw) then
  128. love.graphics.setCanvas()
  129. love.graphics.origin()
  130. love.graphics.setColor(255,255,255)
  131. love.graphics.draw(_ScreenCanvas, _ScreenX,_ScreenY, 0, _ScreenScaleX,_ScreenScaleY)
  132. --love.graphics.api.points(1,1,_ScreenWidth,_ScreenHeight)
  133. love.graphics.present()
  134. love.graphics.setCanvas(_ScreenCanvas)
  135. love.graphics.translate(_ScreenTX,_ScreenTY)
  136. _ShouldDraw = false
  137. end
  138. if love.timer then love.timer.sleep(0.001) end
  139. end
  140. end