/ld27

To get this branch, use:
bzr branch http://9ix.org/bzr/ld27

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-08-25 16:04:57 UTC
  • Revision ID: josh@9ix.org-20130825160457-m0le8k88t0i2ooun
win screen activate!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
STRICT = true
2
 
DEBUG = false
3
 
LOVEBIRD = false
4
 
 
5
 
if SDL then
6
 
  print = SDL.log
7
 
end
 
2
DEBUG = true
8
3
 
9
4
require 'zoetrope'
10
5
--require 'pepperprof'
11
 
--inspect = require 'inspect'
12
 
 
13
 
require 'sprite'
14
 
require 'util'
15
6
 
16
7
require 'version'
17
8
require 'player'
21
12
 
22
13
GameView = View:extend {
23
14
   gameStart = 0,
24
 
   switchSounds = {},
25
15
   onNew = function (self)
26
16
              self:loadLayers('data/map.lua')
27
17
              self.focus = the.player
28
18
              self:clampTo(self.bg)
29
19
 
30
 
              the.app:setScaling(self)
31
 
 
32
20
              self.mazes = {self.maze1, self.maze2, self.maze3}
33
21
              self.bgs = {self.bg, self.bg, self.bg2}
34
22
              for _, maze in ipairs(self.mazes) do maze:die() end
41
29
              self.maze2.playerScale = 0.5
42
30
              self.maze3.playerScale = 1
43
31
 
44
 
              self.goals = {{},{},{}}
 
32
              self.goals = {}
45
33
              the.goalsAchieved = 0
46
34
              for _, obj in ipairs(self.objects.sprites) do
47
35
                 if obj:instanceOf(Goal) then
48
36
                    obj.visible = false
49
 
                    table.insert(self.goals[tonumber(obj.map)], obj)
 
37
                    self.goals[tonumber(obj.map)] = obj
50
38
                 end
51
39
              end
52
40
 
53
 
              local sndFiles = {'data/Explosion2.wav', 'data/Explosion3.wav', 'data/Hit_Hurt3.wav'}
54
 
 
55
 
              for _, sndFile in ipairs(sndFiles) do
56
 
                 local snd = love.audio.newSource(sndFile, 'static')
57
 
                 table.insert(self.switchSounds, snd)
58
 
              end
59
 
 
60
41
              --the.interface = Group:new()
61
42
 
62
43
              --self:add(the.interface)
67
48
              --the.profiler = newProfiler()
68
49
              --the.profiler:start()
69
50
 
70
 
              self.gameStart = love.timer.getTime()
71
 
              self.lastChange = love.timer.getTime()
 
51
              self.gameStart = love.timer.getMicroTime()
 
52
              self.lastChange = love.timer.getMicroTime()
72
53
           end,
73
54
   onUpdate = function(self, dt)
74
 
                 if the.player.active and love.timer.getTime() > self.lastChange + 10 then
 
55
                 if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
75
56
                    -- switch maze
76
57
                    self:switchMaze()
77
58
                 end
78
59
 
79
60
                 if not (DEBUG and the.console.visible) then
80
 
                    for _, goal in ipairs(the.activeGoals) do
81
 
                       the.player.collider:collide(goal)
82
 
                    end
 
61
                    the.activeMaze:collide(the.player.collider)
 
62
                    the.player.collider:collide(the.activeGoal)
83
63
                 end
84
64
 
85
65
                 if the.keys:justPressed('escape', 'q') then
100
80
                      the.activeBg.visible = false
101
81
                      the.activeBg = self.bgs[newMaze]
102
82
 
103
 
                      for _, goal in ipairs(the.activeGoals) do
104
 
                         goal.visible = false
 
83
                      if the.activeGoal then
 
84
                         the.activeGoal.visible = false
105
85
                      end
106
 
                      the.activeGoals = self.goals[newMaze]
107
 
 
108
 
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
 
86
                      the.activeGoal = self.goals[newMaze]
109
87
                   else
110
88
                      the.activeMaze = self.maze2
111
89
                      the.activeBg = self.bg
112
 
                      the.activeGoals = self.goals[2]
 
90
                      the.activeGoal = self.goals[2]
113
91
                   end
114
92
 
115
93
                   the.activeMaze:revive()
116
94
                   the.activeBg.visible = true
117
 
                   for _, goal in ipairs(the.activeGoals) do
118
 
                      goal.visible = true
 
95
                   if the.activeGoal then
 
96
                      the.activeGoal.visible = true
119
97
                   end
120
98
                   the.player.scale = the.activeMaze.playerScale
121
99
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
124
102
                   self._fx = {0,0,0,0}
125
103
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
126
104
 
127
 
                   self.lastChange = love.timer.getTime()
 
105
                   self.lastChange = love.timer.getMicroTime()
128
106
                end,
129
107
   onEndFrame = function(self)
130
108
                   --the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
133
111
}
134
112
 
135
113
MenuScreen = View:extend {
136
 
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
 
114
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
 
115
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
137
116
   onNew = function(self)
138
 
              the.app:setScaling(self)
139
 
 
140
 
              self:add(self.bg)
141
 
              --self.title:centerAround(400, 200)
142
 
 
143
 
              local nr = 'data/NewRocker-Regular.otf'
144
 
              self:add(Text:new{
145
 
                          text = 'Treasures of the Decimaze',
146
 
                          --x = 0,
147
 
                          y = 100,
148
 
                          width = self.bg.width,
149
 
                          font = {nr, 48},
150
 
                          align = 'center',
151
 
                          tint = {0,0,0}
152
 
                       })
153
 
 
154
 
              self:add(Text:new{
155
 
                          text = 'Find the 4 lost shinies!',
156
 
                          y = 170,
157
 
                          width = self.bg.width,
158
 
                          font = {nr, 28},
159
 
                          align = 'center',
160
 
                          tint = {0,0,0}
161
 
                       })
162
 
 
163
 
              self:add(Text:new{
164
 
                          text = 'Use the arrow keys to move',
165
 
                          y = 375,
166
 
                          width = self.bg.width,
167
 
                          font = {nr, 24},
168
 
                          align = 'center',
169
 
                          tint = {0,0,0}
170
 
                       })
171
 
 
172
 
              self:add(Text:new{
173
 
                          text = 'Press a key to start',
174
 
                          y = 425,
175
 
                          width = self.bg.width,
176
 
                          font = {nr, 24},
177
 
                          align = 'center',
178
 
                          tint = {0,0,0}
179
 
                       })
180
 
 
181
 
 
 
117
              self:add(self.title)
 
118
              self.title:centerAround(400, 200)
182
119
           end,
183
120
   onUpdate = function(self, elapsed)
184
121
                 if the.keys:allJustPressed() then
188
125
}
189
126
 
190
127
the.app = App:new {
191
 
   width = 800,
192
 
   height = 600,
193
 
   name = "Treasures of the Decimaze",
194
128
   onRun = function (self)
195
129
              print('Version: ' .. VERSION)
196
130
 
197
 
              self.view = MenuScreen:new()
198
 
              self:setScaling()
 
131
              self.view = GameView:new()
199
132
 
200
133
              if DEBUG then
201
134
                 self.console:watch('VERSION', 'VERSION')
202
 
                 self.console:watch('player.x', 'the.player.x')
203
 
                 self.console:watch('player.y', 'the.player.y')
204
135
 
205
136
                 -- back off that dark overlay a bit
206
137
                 self.console.fill.fill[4] = 75
207
138
              end
208
139
           end,
209
140
   onUpdate = function (self, dt)
210
 
                 if the.keys:justPressed('f1') then
211
 
                    local ss = love.graphics.newScreenshot()
212
 
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
213
 
                 end
214
 
              end,
215
 
   update = function(self, dt)
216
 
     if LOVEBIRD then
217
 
       require('lovebird').update()
218
 
     end
219
 
     App.update(self, dt)
220
 
   end,
221
 
   setScaling = function(self, view)
222
 
     local view = view or the.app.view
223
 
 
224
 
     local winw, winh = love.window.getMode()
225
 
     --if love.window.getFullscreen() then
226
 
     if winw == self.width and winh == self.height then
227
 
       self.scale = 1
228
 
       view.realTranslate = { x=0, y=0 }
229
 
       love.graphics.setScissor()
230
 
     else
231
 
       --self.scale = math.min(
232
 
       --  math.floor(winw / the.app.viewWidth),
233
 
       --  math.floor(winh / the.app.viewHeight)
234
 
       --)
235
 
       if winh >= 1050 then
236
 
         self.scale = 1.5
237
 
       elseif winh < the.app.height then
238
 
         self.scale = winh / the.app.height
239
 
       end
240
 
       view.realTranslate.x = math.floor((winw - self.width * self.scale) / 2)
241
 
       view.realTranslate.y = math.floor((winh - self.height * self.scale) / 2)
242
 
       --print('translate: ' .. view.realTranslate.x .. ', ' .. view.realTranslate.y)
243
 
 
244
 
       love.graphics.setColor(0,0,0)
245
 
       love.graphics.rectangle('fill', 0, 0, winw, winh)
246
 
       love.graphics.setScissor( view.realTranslate.x,
247
 
                                 view.realTranslate.y,
248
 
                                 self.width * self.scale,
249
 
                                 self.height * self.scale)
250
 
     end
251
 
 
252
 
     view.scale = self.scale
253
 
   end
 
141
              end
254
142
}
255
 
 
256
 
function love.resize(w, h)
257
 
  print('love.resize')
258
 
  the.app:setScaling()
259
 
end