28
shortestVector = function(from, to)
30
if from.x < the.app.width / 2 or
31
from.x > the.bg.width - the.app.width / 2 or
32
from.y < the.app.height / 2 or
33
from.y > the.bg.height - the.app.height / 2 then
34
error('"from" coordinate out of bounds: X='..from.x..' Y='..from.y)
37
if to.x < the.app.width / 2 or
38
to.x > the.bg.width - the.app.width / 2 or
39
to.y < the.app.height / 2 or
40
to.y > the.bg.height - the.app.height / 2 then
41
error('"to" coordinate out of bounds: X='..to.x..' Y='..to.y)
45
-- normalize grid to account for mirror zones
46
local fx = from.x - the.app.width / 2
47
local fy = from.y - the.app.height / 2
48
local tx = to.x - the.app.width / 2
49
local ty = to.y - the.app.height / 2
54
if math.abs(tx - fx) < math.abs(tx - fx - (the.bg.width - the.app.width)) then
55
-- straight path is shorter
58
short.x = tx - fx - (the.bg.width - the.app.width)
62
if math.abs(ty - fy) < math.abs(ty - fy - (the.bg.height - the.app.height)) then
63
-- straight path is shorter
66
short.y = ty - fy - (the.bg.height - the.app.height)
69
return vector.new(short.x, short.y)
73
35
GameView = View:extend {
77
36
onNew = function (self)
80
-- self:add(Fill:new{x=x*400, y=y*400,
81
-- width = 32, height = 32,
87
the.storage = Storage:new{filename = 'scores.lua'}
37
the.storage = Storage:new{filename = 'world.lua'}
89
if not the.storage.data.highScore then
90
print('initializing storage')
91
the.storage.data = {highScore = 0}
39
--if not the.storage.data.highScore then
40
-- print('initializing storage')
41
-- the.storage.data = {highScore = 0}
94
--the.rockColliders = Group:new()
95
44
the.bullets = Group:new()
96
the.mirrors = Group:new()
97
--the.rocks = Group:new()
98
45
the.interface = Group:new()
99
46
the.planets = Group:new()
47
the.indicators = Group:new()
48
the.enemies = Group:new()
50
-- init bg before build/load since planets need to know bg size
101
51
the.bg = Tile:new{
102
52
image = 'data/stars3.png',
58
if self.newWorld or not the.storage.data.player then
59
the.storage.data = {planets = {}}
61
-- build planets from random
62
for _ = 1, math.random(3, 6) do
63
local planet = Planet:new{
64
x = math.random(the.app.width / 2,
65
the.bg.width - the.app.width / 2),
66
y = math.random(the.app.height / 2,
67
the.bg.height - the.app.height / 2),
68
rotation = math.random() * math.pi
70
the.planets:add(planet)
71
table.insert(the.storage.data.planets, {
74
rotation = planet.rotation,
80
local player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
82
the.storage.data.player = {x = player.x,
86
cargoSpace = player.cargoSpace
91
-- load planets with x, y, goods
92
for _, planetData in ipairs(the.storage.data.planets) do
93
the.planets:add(Planet:new(planetData))
96
-- load player with cargo, money, position
97
the.player = SpacePlayer:new(the.storage.data.player)
99
-- reload storage as we've turned it all into objects
108
103
self:add(the.planets)
110
--the.player = CrystalPlayer:new{x=400,y=300}
111
the.player = SpacePlayer:new{x=1366,y=768}
112
105
self:add(the.player)
113
106
self:add(the.player.thrust)
115
--self:add(Enemy:new{x=400, y=300})
107
self:add(the.player.shield)
109
self:add(the.enemies)
112
local e = Enemy:new{x = math.random(the.bg.width),
113
y = math.random(the.bg.height)}
114
--local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
116
self:add(e.thrust) -- why doesn't this work in Enemy.new?
117
120
self:add(the.bullets)
118
--self:add(the.rockColliders)
119
self:add(the.mirrors)
120
--self:add(the.rocks)
121
self:add(the.indicators)
121
122
self:add(the.interface)
123
for _ = 1, math.random(6) do
124
local planet = Tile:new{
125
image = 'data/planet1.png',
126
x = math.random(the.app.width / 2,
127
the.bg.width - the.app.width / 2),
128
y = math.random(the.app.height / 2,
129
the.bg.height - the.app.height / 2),
130
rotation = math.random() * math.pi
132
the.planets:add(planet)
135
124
the.cursor = Cursor:new()
136
125
self:add(the.cursor)
138
the.score = Text:new{
141
width = the.app.width,
144
the.interface:add(the.score)
146
local hs = the.storage.data.highScore
150
the.highScore = Text:new{
153
width = the.app.width,
156
text = string.format('High Score: %d:%02d', m, s)
158
the.interface:add(the.highScore)
161
y = the.app.height / 2,
162
width = the.app.width,
168
the.interface:add(the.over)
171
the.instructions = Text:new{
172
y = the.app.height / 2 + 32,
173
width = the.app.width,
176
text = "Press Enter to start a new game\nPress Q to quit",
179
the.interface:add(the.instructions)
181
127
love.mouse.setGrab(true)
182
128
love.mouse.setVisible(false)
183
129
love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
185
--self:loadLayers('data/map.lua')
186
131
self.focus = the.player
187
--self:clampTo(self.map)
189
self.gameStart = love.timer.getTime()
191
133
onUpdate = function(self, dt)
192
if false and the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
193
local unseenRock = nil
194
while not unseenRock do
195
local rock = Rock:new{
196
x = math.random(the.app.width / 2,
197
the.bg.width - the.app.width / 2),
198
y = math.random(the.app.height / 2,
199
the.bg.height - the.app.height / 2),
201
x = math.random(-300, 300),
202
y = math.random(-300, 300),
203
rotation = math.random(-7, 7)
205
scale = math.random() + 0.5
208
local rockToPlayer = util.shortestVector(rock, the.player)
209
if math.abs(rockToPlayer.x) > the.app.width / 2 + rock.width * rock.scale and
210
math.abs(rockToPlayer.y) > the.app.height / 2 + rock.height * rock.scale then
215
the.rocks:add(unseenRock)
217
self.lastRock = love.timer.getTime()
134
if the.keys:justPressed('escape') then
135
PauseView:new():activate()
220
the.bullets:collide(the.rockColliders)
222
-- for _, mirror in ipairs(the.mirrors.sprites) do
223
-- if not mirror.of then
224
-- print('mirror:' .. inspect(mirror))
225
-- error('mirror OF NOTHING')
138
the.bullets:collide(the.planets)
139
the.bullets:collide(the.player)
140
the.bullets:collide(the.enemies)
229
142
onEndFrame = function(self)
230
143
the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
231
144
the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
233
if the.player.active then
237
146
draw = function (self, x, y)
238
147
View.draw(self, x, y)
239
148
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
241
updateScore = function(self)
242
local t = love.timer.getTime() - self.gameStart
246
the.score.text = string.format('Score: %d:%02d', m, s)
247
--the.score.y = the.player.y - the.app.height / 2 + the.player.height
248
--the.score.x = the.player.x - the.app.width / 2 + the.player.width
250
--the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
251
--the.highScore.x = the.player.x - the.app.width / 2
255
152
MenuScreen = View:extend {