33
23
GameView = View:extend {
34
24
onNew = function (self)
35
the.storage = Storage:new{filename = 'scores.lua'}
37
--if not the.storage.data.highScore then
38
-- print('initializing storage')
39
-- the.storage.data = {highScore = 0}
42
the.bullets = Group:new()
43
the.interface = Group:new()
44
the.planets = Group:new()
45
the.indicators = Group:new()
46
the.enemies = Group:new()
49
image = 'data/stars3.png',
27
self:add(Fill:new{x=x*400, y=y*400,
28
width = 32, height = 32,
57
34
--the.player = CrystalPlayer:new{x=400,y=300}
58
the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
35
the.player = SpacePlayer:new{x=400,y=300}
59
36
self:add(the.player)
60
self:add(the.player.thrust)
61
self:add(the.player.shield)
66
local e = Enemy:new{x = math.random(the.bg.width),
67
y = math.random(the.bg.height)}
68
--local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
70
self:add(e.thrust) -- why doesn't this work in Enemy.new?
75
self:add(the.indicators)
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)
89
the.cursor = Cursor:new()
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)
38
self:add(Enemy:new{x=400, y=300})
40
self:add(Cursor:new())
113
42
love.mouse.setGrab(true)
114
43
love.mouse.setVisible(false)
115
love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
45
--self:loadLayers('data/map.lua')
117
46
self.focus = the.player
47
--self:clampTo(self.map)
119
onUpdate = function(self, dt)
120
the.bullets:collide(the.planets)
121
the.bullets:collide(the.player)
122
the.bullets:collide(the.enemies)
124
onEndFrame = function(self)
125
the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
126
the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
128
49
draw = function (self, x, y)
129
50
View.draw(self, x, y)
130
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
51
love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
134
55
MenuScreen = View:extend {
148
69
the.app = App:new {
149
70
onRun = function (self)
150
71
print('Version: ' .. VERSION)
152
math.randomseed(os.time())
154
72
self.view = GameView:new()
157
74
self.console:watch('VERSION', 'VERSION')
158
75
self.console:watch('updateTook', 'the.updateTook')
159
self.console:watch('the.player.x', 'the.player.x')
160
self.console:watch('the.player.y', 'the.player.y')
161
self.console:watch('the.app.width', 'the.app.width')
162
self.console:watch('the.app.height', 'the.app.height')
163
self.console:watch('num mirrors', '#the.mirrors.sprites')
164
self.console:watch('num rocks', '#the.rocks.sprites')
165
self.console:watch('num planets', '#the.planets.sprites')
166
76
--self.console:watch('drawTook', 'the.drawTook')
168
-- back off that dark overlay a bit
169
self.console.fill.fill[4] = 75
172
79
onUpdate = function (self, dt)
173
if not (DEBUG and the.console.visible) then
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()
182
elseif the.keys:justPressed('f1') then
183
local ss = love.graphics.newScreenshot()
184
ss:encode('screenshot-' ..love.timer.getTime()..'.png')
185
elseif the.keys:justPressed('f11') then
186
love.graphics.toggleFullscreen()
80
if the.keys:justPressed('escape') then
190
84
update = function (self, dt)