47
45
the.indicators = Group:new()
48
46
the.enemies = Group:new()
50
-- init bg before build/load since planets need to know bg size
52
49
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
103
55
self:add(the.planets)
57
--the.player = CrystalPlayer:new{x=400,y=300}
58
the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
105
59
self:add(the.player)
106
60
self:add(the.player.thrust)
107
61
self:add(the.player.shield)
121
75
self:add(the.indicators)
122
76
self:add(the.interface)
78
for _ = 1, math.random(3, 6) do
79
local planet = Planet:new{
80
x = math.random(the.app.width / 2,
81
the.bg.width - the.app.width / 2),
82
y = math.random(the.app.height / 2,
83
the.bg.height - the.app.height / 2),
84
rotation = math.random() * math.pi
86
the.planets:add(planet)
124
89
the.cursor = Cursor:new()
125
90
self:add(the.cursor)
93
y = the.app.height / 2,
94
width = the.app.width,
100
the.interface:add(the.over)
103
the.instructions = Text:new{
104
y = the.app.height / 2 + 32,
105
width = the.app.width,
108
text = "Press Enter to start a new game\nPress Q to quit",
111
the.interface:add(the.instructions)
127
113
love.mouse.setGrab(true)
128
114
love.mouse.setVisible(false)
129
115
love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
131
117
self.focus = the.player
133
119
onUpdate = function(self, dt)
134
if the.keys:justPressed('escape') then
135
PauseView:new():activate()
138
120
the.bullets:collide(the.planets)
139
121
the.bullets:collide(the.player)
140
122
the.bullets:collide(the.enemies)
181
163
self.console:watch('num mirrors', '#the.mirrors.sprites')
182
164
self.console:watch('num rocks', '#the.rocks.sprites')
183
165
self.console:watch('num planets', '#the.planets.sprites')
184
self.console:watch('num enemies', 'the.enemies:count()')
185
166
--self.console:watch('drawTook', 'the.drawTook')
187
168
-- back off that dark overlay a bit
191
172
onUpdate = function (self, dt)
192
173
if not (DEBUG and the.console.visible) then
193
if the.keys:justPressed('return') and the.keys:pressed('alt') then
194
love.graphics.toggleFullscreen()
174
if the.keys:justPressed('q') then
176
elseif the.keys:justPressed('return') then
177
if the.keys:pressed('alt') then
178
love.graphics.toggleFullscreen()
180
self.view = GameView:new()
195
182
elseif the.keys:justPressed('f1') then
196
183
local ss = love.graphics.newScreenshot()
197
184
ss:encode('screenshot-' ..love.timer.getTime()..'.png')