/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-24 23:59:23 UTC
  • Revision ID: josh@9ix.org-20130824235923-xorddky74v31bsfm
first draft map complete!

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'
6
5
 
7
6
--require 'group'
8
7
 
30
29
              self.maze2.playerScale = 0.5
31
30
              self.maze3.playerScale = 1
32
31
 
33
 
              self.goals = {}
34
 
              for _, obj in ipairs(self.objects.sprites) do
35
 
                 if obj:instanceOf(Goal) then
36
 
                    obj.visible = false
37
 
                    self.goals[tonumber(obj.map)] = obj
38
 
                 end
39
 
              end
40
 
 
41
32
              --the.interface = Group:new()
42
33
 
43
34
              --self:add(the.interface)
44
35
 
45
36
              self:switchMaze()
46
37
 
47
 
              -- profiling...
48
 
              --the.profiler = newProfiler()
49
 
              --the.profiler:start()
50
 
 
51
38
              self.gameStart = love.timer.getMicroTime()
52
39
              self.lastChange = love.timer.getMicroTime()
53
40
           end,
58
45
                 end
59
46
 
60
47
                 if not (DEBUG and the.console.visible) then
61
 
                    the.activeMaze:collide(the.player.collider)
62
 
                    the.player.collider:collide(the.activeGoal)
 
48
                    the.activeMaze:collide(the.player)
63
49
                 end
64
50
 
65
51
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
80
66
 
81
67
                      the.activeBg.visible = false
82
68
                      the.activeBg = self.bgs[newMaze]
83
 
 
84
 
                      if the.activeGoal then
85
 
                         the.activeGoal.visible = false
86
 
                      end
87
 
                      the.activeGoal = self.goals[newMaze]
88
69
                   else
89
70
                      the.activeMaze = self.maze2
90
71
                      the.activeBg = self.bg
91
 
                      the.activeGoal = self.goals[2]
92
72
                   end
93
73
 
94
74
                   the.activeMaze:revive()
95
75
                   the.activeBg.visible = true
96
 
                   if the.activeGoal then
97
 
                      the.activeGoal.visible = true
98
 
                   end
99
76
                   the.player.scale = the.activeMaze.playerScale
100
 
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
101
 
                   the.player.collider.height = the.player.height * the.activeMaze.playerScale
102
77
 
103
78
                   self._fx = {0,0,0,0}
104
79
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
140
115
           end,
141
116
   onUpdate = function (self, dt)
142
117
                 if the.keys:justPressed('escape') then
143
 
                    if the.profiler then
144
 
                       the.profiler:stop()
145
 
                       local outfile = io.open( "profile.txt", "w+" )
146
 
                       the.profiler:report( outfile )
147
 
                       outfile:close()
148
 
                    end
149
 
 
150
118
                    self.quit()
151
119
                 end
152
120
              end