/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: 2014-07-06 22:51:43 UTC
  • Revision ID: josh@9ix.org-20140706225143-q72jn0va7v4ssvyy
ignore lovebird, inspect

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
STRICT = true
2
 
DEBUG = true
3
 
 
 
1
STRICT = false
 
2
DEBUG = false
 
3
 
 
4
if SDL then
 
5
  print = SDL.log
 
6
end
 
7
 
 
8
--lovebird = require 'lovebird'
4
9
require 'zoetrope'
5
10
--require 'pepperprof'
6
11
--inspect = require 'inspect'
22
27
              self.focus = the.player
23
28
              self:clampTo(self.bg)
24
29
 
 
30
              the.app:setScaling(self)
 
31
 
25
32
              self.mazes = {self.maze1, self.maze2, self.maze3}
26
33
              self.bgs = {self.bg, self.bg, self.bg2}
27
34
              for _, maze in ipairs(self.mazes) do maze:die() end
60
67
              --the.profiler = newProfiler()
61
68
              --the.profiler:start()
62
69
 
63
 
              self.gameStart = love.timer.getMicroTime()
64
 
              self.lastChange = love.timer.getMicroTime()
 
70
              self.gameStart = love.timer.getTime()
 
71
              self.lastChange = love.timer.getTime()
65
72
           end,
66
73
   onUpdate = function(self, dt)
67
 
                 if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
 
74
                 if the.player.active and love.timer.getTime() > self.lastChange + 10 then
68
75
                    -- switch maze
69
76
                    self:switchMaze()
70
77
                 end
117
124
                   self._fx = {0,0,0,0}
118
125
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
119
126
 
120
 
                   self.lastChange = love.timer.getMicroTime()
 
127
                   self.lastChange = love.timer.getTime()
121
128
                end,
122
129
   onEndFrame = function(self)
123
130
                   --the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
128
135
MenuScreen = View:extend {
129
136
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
130
137
   onNew = function(self)
 
138
              the.app:setScaling(self)
 
139
 
131
140
              self:add(self.bg)
132
141
              --self.title:centerAround(400, 200)
133
142
 
172
181
 
173
182
           end,
174
183
   onUpdate = function(self, elapsed)
175
 
                 if the.keys:allJustPressed() then
176
 
                    the.app.view = GameView:new()
177
 
                 end
178
 
              end
 
184
     if the.keys:allJustPressed() or the.mouse:pressed() then
 
185
       the.app.view = GameView:new()
 
186
     end
 
187
   end
179
188
}
180
189
 
181
190
the.app = App:new {
 
191
   width = 800,
 
192
   height = 600,
182
193
   name = "Treasures of the Decimaze",
183
194
   onRun = function (self)
184
195
              print('Version: ' .. VERSION)
185
196
 
186
197
              self.view = MenuScreen:new()
 
198
              self:setScaling()
187
199
 
188
200
              if DEBUG then
189
201
                 self.console:watch('VERSION', 'VERSION')
195
207
              end
196
208
           end,
197
209
   onUpdate = function (self, dt)
198
 
              end
 
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
       fps = love.timer.getFPS()
 
218
       lovebird.update()
 
219
     end
 
220
     App.update(self, dt)
 
221
   end,
 
222
   setScaling = function(self, view)
 
223
     local view = view or the.app.view
 
224
 
 
225
     local winw, winh = love.window.getMode()
 
226
     --if love.window.getFullscreen() then
 
227
     if winw == self.width and winh == self.height then
 
228
       self.scale = 1
 
229
       view.realTranslate = { x=0, y=0 }
 
230
       love.graphics.setScissor()
 
231
     else
 
232
       --self.scale = math.min(
 
233
       --  math.floor(winw / the.app.viewWidth),
 
234
       --  math.floor(winh / the.app.viewHeight)
 
235
       --)
 
236
       if winh >= 1050 then
 
237
         self.scale = 1.5
 
238
       elseif winh < the.app.height then
 
239
         self.scale = winh / the.app.height
 
240
       end
 
241
       view.realTranslate.x = math.floor((winw - self.width * self.scale) / 2)
 
242
       view.realTranslate.y = math.floor((winh - self.height * self.scale) / 2)
 
243
       --print('translate: ' .. view.realTranslate.x .. ', ' .. view.realTranslate.y)
 
244
 
 
245
       love.graphics.setColor(0,0,0)
 
246
       love.graphics.rectangle('fill', 0, 0, winw, winh)
 
247
       love.graphics.setScissor( view.realTranslate.x,
 
248
                                 view.realTranslate.y,
 
249
                                 self.width * self.scale,
 
250
                                 self.height * self.scale)
 
251
     end
 
252
 
 
253
     view.scale = self.scale
 
254
   end
199
255
}
 
256
 
 
257
function love.resize(w, h)
 
258
  print('love.resize')
 
259
  the.app:setScaling()
 
260
end