streuner-game/src/engine/controllers/gridwalker.lua

135 lines
3.3 KiB
Lua
Raw Normal View History

2014-05-21 09:21:27 +00:00
local object = require '../engine/object'
local animator = require '../engine/animator'
2014-04-03 07:15:25 +00:00
Gridwalker = class()
Gridwalker.speed = 2
2014-06-04 13:40:35 +00:00
Gridwalker.collisionTestSize = 13
Gridwalker.neighbourOffsetX = (object.width - Gridwalker.collisionTestSize) / 2
2014-06-04 13:40:35 +00:00
Gridwalker.neighbourOffsetY = object.width - Gridwalker.collisionTestSize * 1.9
2014-04-03 07:15:25 +00:00
Gridwalker.testShape = nil
Gridwalker.objectinfo = nil
2014-04-29 13:35:14 +00:00
Gridwalker.animation = nil
2014-04-03 07:15:25 +00:00
function Gridwalker:sendKey(key)
if key == "w" or key == "up" then
self:up()
end
if key == "s" or key == "down" then
self:down()
end
if key == "d" or key == "right" then
self:right()
end
if key == "a" or key == "left" then
self:left()
end
end
2014-06-04 12:16:32 +00:00
function Gridwalker:findAnimation(animationName)
local foundAnimation = nil
if animationName == 'up' then
foundAnimation = self.animator.walk_up
elseif animationName == 'down' then
foundAnimation = self.animator.walk_down
elseif animationName == 'right' then
foundAnimation = self.animator.walk_right
elseif animationName == 'left' then
foundAnimation = self.animator.walk_left
elseif animationName == 'play' then
foundAnimation = self.animator.play
end
return foundAnimation
end
2014-04-29 13:35:14 +00:00
function Gridwalker:stopAnimation()
self.animation:pauseAtStart()
end
2014-06-04 12:16:32 +00:00
function Gridwalker:startAnimation(animationName)
self.animation = self:findAnimation(animationName)
self.animation:resume()
end
2014-04-03 07:15:25 +00:00
function Gridwalker:up()
local newX = self.objectinfo.x
local newY = self.objectinfo.y - self.speed
2014-04-03 07:15:25 +00:00
2014-04-29 13:35:14 +00:00
self.animation = self.animator.walk_up
self:move(newX, newY)
2014-04-03 07:15:25 +00:00
end
function Gridwalker:down()
local newX = self.objectinfo.x
local newY = self.objectinfo.y + self.speed
2014-04-03 07:15:25 +00:00
2014-04-29 13:35:14 +00:00
self.animation = self.animator.walk_down
self:move(newX, newY)
2014-04-03 07:15:25 +00:00
end
function Gridwalker:right()
local newX = self.objectinfo.x + self.speed
local newY = self.objectinfo.y
2014-04-03 07:15:25 +00:00
2014-04-29 13:35:14 +00:00
self.animation = self.animator.walk_right
self:move(newX, newY)
2014-04-03 07:15:25 +00:00
end
function Gridwalker:left()
local newX = self.objectinfo.x - self.speed
local newY = self.objectinfo.y
2014-04-03 07:15:25 +00:00
2014-04-29 13:35:14 +00:00
self.animation = self.animator.walk_left
self:move(newX, newY)
2014-04-03 07:15:25 +00:00
end
function Gridwalker:init()
self.testShape = collider:addRectangle(self.objectinfo.x + self.neighbourOffsetX, self.objectinfo.y + self.neighbourOffsetY, self.collisionTestSize, self.collisionTestSize)
2014-04-03 07:15:25 +00:00
collider:setPassive(self.testShape)
2014-06-04 12:16:32 +00:00
self.animator = Animator:new(self.objectinfo.image:getWidth(), self.objectinfo.image:getHeight())
2014-06-04 08:36:42 +00:00
2014-06-04 12:16:32 +00:00
self.animation = self:findAnimation(self.objectinfo.pose)
2014-06-04 08:36:42 +00:00
2014-04-29 13:35:14 +00:00
self.animation:pauseAtStart()
2014-04-03 07:15:25 +00:00
end
function Gridwalker:setTestShape(x, y)
local testX = x + self.neighbourOffsetX + self.collisionTestSize / 2
local testY = y + self.neighbourOffsetY + self.collisionTestSize / 2
self.testShape:moveTo(testX, testY)
return testX, testY
end
2014-04-29 13:35:14 +00:00
function Gridwalker:move(x, y)
2014-04-03 07:15:25 +00:00
local noCollision = true
local testX, testY = self:setTestShape(x, y)
for other in pairs(collider:shapesInRange(testX, testY, testX + self.collisionTestSize, testY + self.collisionTestSize)) do
if self.testShape:collidesWith(other) then
noCollision = false
break
end
end
if noCollision then
2014-04-29 13:35:14 +00:00
self.animation:resume()
self.objectinfo.x = x
self.objectinfo.y = y
2014-04-03 07:15:25 +00:00
else
self:setTestShape(self.objectinfo.x, self.objectinfo.y)
2014-04-03 07:15:25 +00:00
end
end