22
22
local velLimit = 600
23
24
SpacePlayer = Tile:extend{
24
25
image = 'data/ship.png',
25
26
maxVelocity = {x=velLimit,y=velLimit},
26
27
minVelocity = {x=-velLimit, y=-velLimit},
28
29
onStartFrame = function(self)
29
--local dx = love.mouse.getX() - self.x
30
--local dy = love.mouse.getY() - self.y
31
local dx = love.mouse.getX() - the.app.width / 2
32
local dy = love.mouse.getY() - the.app.height / 2
35
self.acceleration.x = dx * 2
36
self.acceleration.y = dy * 2
38
--TODO: acceleration limit. It should at least be proportional (not 16:9)
40
if the.mouse:pressed() then -- assumes left button
41
if love.timer.getTime() - self.lastFired > 0.25 then
32
self.rotation = math.atan2(
33
love.mouse.getY() - the.app.height / 2,
34
love.mouse.getX() - the.app.width / 2
37
self.acceleration = vector.new(500, 0)
38
self.acceleration:rotate_inplace(self.rotation)
40
if the.mouse:pressed() and -- assumes left button
41
love.timer.getTime() - self.lastFired > 0.25 and
42
the.cursor:inTargetArea() then
44
45
x = self.x, y = self.y,
45
rotation = self.rotation,
47
47
the.app.view:add(b)
48
48
self.lastFired = love.timer.getTime()
52
51
onUpdate = function(self)
53
self.rotation = math.atan2(self.velocity.y, self.velocity.x)
b'\\ No newline at end of file'