1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
CrystalPlayer = Fill:extend{
fill = {255,0,0},
height = 32,
width = 32,
onStartFrame = function(self)
if the.mouse:pressed() then
print('hi')
end
local dx = love.mouse.getX() - the.app.width / 2
local dy = love.mouse.getY() - the.app.height / 2
self.acceleration.x = dx * 10
self.acceleration.y = dy * 10
--print(dx, dy)
love.mouse.setPosition(the.app.width /2, the.app.height/2)
end
}
local velLimit = 600
--local velLimit = 50
SpacePlayer = Tile:extend{
image = 'data/ship.png',
maxVelocity = {x=velLimit,y=velLimit},
minVelocity = {x=-velLimit, y=-velLimit},
lastFired = 0,
onStartFrame = function(self)
--- TAKE 2
local mouseVec = vector.new(
love.mouse.getX() - the.app.width / 2,
love.mouse.getY() - the.app.height / 2
)
self.rotation = math.atan2(mouseVec.y, mouseVec.x)
if mouseVec:len2() > 64^2 then
self.acceleration = vector.new(500, 0)
self.acceleration:rotate_inplace(self.rotation)
else
self.acceleration = {x=0, y=0}
end
if the.mouse:pressed() and -- assumes left button
love.timer.getTime() - self.lastFired > 0.25 and
the.cursor:inTargetArea() then
--print('pew')
b = Bullet:new{
x = self.x, y = self.y,
}
the.app.view:add(b)
self.lastFired = love.timer.getTime()
end
end,
onUpdate = function(self)
if self.x < the.app.width / 2 then
self.x = the.bg.width - the.app.width / 2
elseif self.x > the.bg.width - the.app.width / 2 then
self.x = the.app.width / 2
end
if self.y < the.app.height / 2 then
self.y = the.bg.height - the.app.height / 2
elseif self.y > the.bg.height - the.app.height / 2 then
self.y = the.app.height / 2
end
end
}
|