camera.lua 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. --[[
  2. Copyright (c) 2010-2013 Matthias Richter
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. Except as contained in this notice, the name(s) of the above copyright holders
  12. shall not be used in advertising or otherwise to promote the sale, use or
  13. other dealings in this Software without prior written authorization.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. THE SOFTWARE.
  21. ]]--
  22. local _PATH = (...):match('^(.*[%./])[^%.%/]+$') or ''
  23. local cos, sin = math.cos, math.sin
  24. local camera = {}
  25. camera.__index = camera
  26. local function new(x,y, zoom, rot)
  27. x,y = x or love.graphics.getWidth()/2, y or love.graphics.getHeight()/2
  28. zoom = zoom or 1
  29. rot = rot or 0
  30. return setmetatable({x = x, y = y, scale = zoom, rot = rot}, camera)
  31. end
  32. function camera:lookAt(x,y)
  33. self.x, self.y = x,y
  34. return self
  35. end
  36. function camera:move(x,y)
  37. self.x, self.y = self.x + x, self.y + y
  38. return self
  39. end
  40. function camera:pos()
  41. return self.x, self.y
  42. end
  43. function camera:rotate(phi)
  44. self.rot = self.rot + phi
  45. return self
  46. end
  47. function camera:rotateTo(phi)
  48. self.rot = phi
  49. return self
  50. end
  51. function camera:zoom(mul)
  52. self.scale = self.scale * mul
  53. return self
  54. end
  55. function camera:zoomTo(zoom)
  56. self.scale = zoom
  57. return self
  58. end
  59. function camera:attach()
  60. local cx,cy = love.graphics.getWidth()/(2*self.scale), love.graphics.getHeight()/(2*self.scale)
  61. love.graphics.push()
  62. love.graphics.scale(self.scale)
  63. love.graphics.translate(cx, cy)
  64. love.graphics.rotate(self.rot)
  65. love.graphics.translate(-self.x, -self.y)
  66. end
  67. function camera:detach()
  68. love.graphics.pop()
  69. end
  70. function camera:draw(func)
  71. self:attach()
  72. func()
  73. self:detach()
  74. end
  75. function camera:cameraCoords(x,y)
  76. -- x,y = ((x,y) - (self.x, self.y)):rotated(self.rot) * self.scale + center
  77. local w,h = love.graphics.getWidth(), love.graphics.getHeight()
  78. local c,s = cos(self.rot), sin(self.rot)
  79. x,y = x - self.x, y - self.y
  80. x,y = c*x - s*y, s*x + c*y
  81. return x*self.scale + w/2, y*self.scale + h/2
  82. end
  83. function camera:worldCoords(x,y)
  84. -- x,y = (((x,y) - center) / self.scale):rotated(-self.rot) + (self.x,self.y)
  85. local w,h = love.graphics.getWidth(), love.graphics.getHeight()
  86. local c,s = cos(-self.rot), sin(-self.rot)
  87. x,y = (x - w/2) / self.scale, (y - h/2) / self.scale
  88. x,y = c*x - s*y, s*x + c*y
  89. return x+self.x, y+self.y
  90. end
  91. function camera:mousepos()
  92. return self:worldCoords(love.mouse.getPosition())
  93. end
  94. -- the module
  95. return setmetatable({new = new},
  96. {__call = function(_, ...) return new(...) end})