/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 02:26:10 UTC
  • Revision ID: josh@9ix.org-20130825022610-13j6ydir3gmihiwz
.bzrignore

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
DEBUG = true
3
3
 
4
4
require 'zoetrope'
 
5
--require 'pepperprof'
5
6
 
6
7
--require 'group'
7
8
 
43
44
 
44
45
              self:switchMaze()
45
46
 
 
47
              -- profiling...
 
48
              --the.profiler = newProfiler()
 
49
              --the.profiler:start()
 
50
 
46
51
              self.gameStart = love.timer.getMicroTime()
47
52
              self.lastChange = love.timer.getMicroTime()
48
53
           end,
54
59
 
55
60
                 if not (DEBUG and the.console.visible) then
56
61
                    the.activeMaze:collide(the.player)
 
62
                    the.player:collide(the.activeGoal)
57
63
                 end
58
64
 
59
65
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
75
81
                      the.activeBg.visible = false
76
82
                      the.activeBg = self.bgs[newMaze]
77
83
 
78
 
                      the.activeGoal.visible = false
 
84
                      if the.activeGoal then
 
85
                         the.activeGoal.visible = false
 
86
                      end
79
87
                      the.activeGoal = self.goals[newMaze]
80
88
                   else
81
89
                      the.activeMaze = self.maze2
85
93
 
86
94
                   the.activeMaze:revive()
87
95
                   the.activeBg.visible = true
88
 
                   the.activeGoal.visible = true
 
96
                   if the.activeGoal then
 
97
                      the.activeGoal.visible = true
 
98
                   end
89
99
                   the.player.scale = the.activeMaze.playerScale
90
100
 
91
101
                   self._fx = {0,0,0,0}
128
138
           end,
129
139
   onUpdate = function (self, dt)
130
140
                 if the.keys:justPressed('escape') then
 
141
                    if the.profiler then
 
142
                       the.profiler:stop()
 
143
                       local outfile = io.open( "profile.txt", "w+" )
 
144
                       the.profiler:report( outfile )
 
145
                       outfile:close()
 
146
                    end
 
147
 
131
148
                    self.quit()
132
149
                 end
133
150
              end