/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 15:24:12 UTC
  • Revision ID: josh@9ix.org-20130825152412-t0uzxw6fd92i81rj
pause/quit screen

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
 
9
10
--require 'wrap_tile'
10
11
require 'player'
11
12
require 'goal'
 
13
require 'pause_view'
12
14
 
13
15
GameView = View:extend {
14
16
   gameStart = 0,
43
45
 
44
46
              self:switchMaze()
45
47
 
 
48
              -- profiling...
 
49
              --the.profiler = newProfiler()
 
50
              --the.profiler:start()
 
51
 
46
52
              self.gameStart = love.timer.getMicroTime()
47
53
              self.lastChange = love.timer.getMicroTime()
48
54
           end,
53
59
                 end
54
60
 
55
61
                 if not (DEBUG and the.console.visible) then
56
 
                    the.activeMaze:collide(the.player)
 
62
                    the.activeMaze:collide(the.player.collider)
 
63
                    the.player.collider:collide(the.activeGoal)
57
64
                 end
58
65
 
59
 
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
60
 
                 --    if not mirror.of then
61
 
                 --       print('mirror:' .. inspect(mirror))
62
 
                 --       error('mirror OF NOTHING')
63
 
                 --    end
64
 
                 -- end
 
66
                 if the.keys:justPressed('escape', 'q') then
 
67
                    PauseView:new():activate()
 
68
                 end
65
69
              end,
66
70
   switchMaze = function(self)
67
71
                   if the.activeMaze then
75
79
                      the.activeBg.visible = false
76
80
                      the.activeBg = self.bgs[newMaze]
77
81
 
78
 
                      the.activeGoal.visible = false
 
82
                      if the.activeGoal then
 
83
                         the.activeGoal.visible = false
 
84
                      end
79
85
                      the.activeGoal = self.goals[newMaze]
80
86
                   else
81
87
                      the.activeMaze = self.maze2
85
91
 
86
92
                   the.activeMaze:revive()
87
93
                   the.activeBg.visible = true
88
 
                   the.activeGoal.visible = true
 
94
                   if the.activeGoal then
 
95
                      the.activeGoal.visible = true
 
96
                   end
89
97
                   the.player.scale = the.activeMaze.playerScale
 
98
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
 
99
                   the.player.collider.height = the.player.height * the.activeMaze.playerScale
90
100
 
91
101
                   self._fx = {0,0,0,0}
92
102
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
127
137
              end
128
138
           end,
129
139
   onUpdate = function (self, dt)
130
 
                 if the.keys:justPressed('escape') then
131
 
                    self.quit()
132
 
                 end
133
140
              end
134
141
}