30
shortestVector = function(from, to)
32
if from.x < the.app.width / 2 or
33
from.x > the.bg.width - the.app.width / 2 or
34
from.y < the.app.height / 2 or
35
from.y > the.bg.height - the.app.height / 2 then
36
error('"from" coordinate out of bounds: X='..from.x..' Y='..from.y)
39
if to.x < the.app.width / 2 or
40
to.x > the.bg.width - the.app.width / 2 or
41
to.y < the.app.height / 2 or
42
to.y > the.bg.height - the.app.height / 2 then
43
error('"to" coordinate out of bounds: X='..to.x..' Y='..to.y)
47
-- normalize grid to account for mirror zones
48
local fx = from.x - the.app.width / 2
49
local fy = from.y - the.app.height / 2
50
local tx = to.x - the.app.width / 2
51
local ty = to.y - the.app.height / 2
56
if math.abs(tx - fx) < math.abs(tx - fx - (the.bg.width - the.app.width)) then
57
-- straight path is shorter
60
short.x = tx - fx - (the.bg.width - the.app.width)
64
if math.abs(ty - fy) < math.abs(ty - fy - (the.bg.height - the.app.height)) then
65
-- straight path is shorter
68
short.y = ty - fy - (the.bg.height - the.app.height)
71
return vector.new(short.x, short.y)
34
75
GameView = View:extend {
44
85
the.interface = Group:new()
45
86
the.planets = Group:new()
46
87
the.indicators = Group:new()
47
the.enemies = Group:new()
50
90
image = 'data/stars3.png',
59
99
the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
60
100
self:add(the.player)
61
101
self:add(the.player.thrust)
62
self:add(the.player.shield)
67
local e = Enemy:new{x = math.random(the.bg.width),
68
y = math.random(the.bg.height)}
69
--local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
71
self:add(e.thrust) -- why doesn't this work in Enemy.new?
103
self:add(Enemy:new{x=400, y=300})
75
105
self:add(the.bullets)
76
106
self:add(the.indicators)
77
107
self:add(the.interface)
79
for _ = 1, math.random(3, 6) do
109
for _ = 1, math.random(6) do
80
110
local planet = Planet:new{
81
111
x = math.random(the.app.width / 2,
82
112
the.bg.width - the.app.width / 2),
90
120
the.cursor = Cursor:new()
91
121
self:add(the.cursor)
94
y = the.app.height / 2,
95
width = the.app.width,
101
the.interface:add(the.over)
104
the.instructions = Text:new{
105
y = the.app.height / 2 + 32,
106
width = the.app.width,
109
text = "Press Enter to start a new game\nPress Q to quit",
112
the.interface:add(the.instructions)
114
123
love.mouse.setGrab(true)
115
124
love.mouse.setVisible(false)
116
125
love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
118
127
self.focus = the.player
120
129
onUpdate = function(self, dt)
121
if the.keys:justPressed('escape') then
122
PauseView:new():activate()
125
130
the.bullets:collide(the.planets)
126
the.bullets:collide(the.player)
127
the.bullets:collide(the.enemies)
129
132
onEndFrame = function(self)
130
133
the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
168
171
self.console:watch('num mirrors', '#the.mirrors.sprites')
169
172
self.console:watch('num rocks', '#the.rocks.sprites')
170
173
self.console:watch('num planets', '#the.planets.sprites')
171
self.console:watch('num enemies', 'the.enemies:count()')
172
174
--self.console:watch('drawTook', 'the.drawTook')
174
176
-- back off that dark overlay a bit
178
180
onUpdate = function (self, dt)
179
181
if not (DEBUG and the.console.visible) then
180
if the.keys:justPressed('return') and the.keys:pressed('alt') then
181
love.graphics.toggleFullscreen()
182
if the.keys:justPressed('q') then
184
elseif the.keys:justPressed('return') then
185
if the.keys:pressed('alt') then
186
love.graphics.toggleFullscreen()
188
self.view = GameView:new()
182
190
elseif the.keys:justPressed('f1') then
183
191
local ss = love.graphics.newScreenshot()
184
192
ss:encode('screenshot-' ..love.timer.getTime()..'.png')