/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 17:02:07 UTC
  • Revision ID: josh@9ix.org-20130824170207-8fzjr3j0t2rpfb5s
goal... thing

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
 
10
9
--require 'wrap_tile'
11
10
require 'player'
12
11
require 'goal'
13
 
require 'pause_view'
14
12
 
15
13
GameView = View:extend {
16
14
   gameStart = 0,
19
17
              self.focus = the.player
20
18
              self:clampTo(self.bg)
21
19
 
22
 
              self.mazes = {self.maze1, self.maze2, self.maze3}
23
 
              self.bgs = {self.bg, self.bg, self.bg2}
24
 
              for _, maze in ipairs(self.mazes) do maze:die() end
25
 
              for _, bg in ipairs(self.bgs) do bg.visible = false end
26
 
 
27
 
              self.maze1.moveMod = 1
28
 
              self.maze2.moveMod = 0.55
29
 
              self.maze3.moveMod = -1
30
 
              self.maze1.playerScale = 1
31
 
              self.maze2.playerScale = 0.5
32
 
              self.maze3.playerScale = 1
33
 
 
34
 
              self.goals = {}
35
 
              for _, obj in ipairs(self.objects.sprites) do
36
 
                 if obj:instanceOf(Goal) then
37
 
                    obj.visible = false
38
 
                    self.goals[tonumber(obj.map)] = obj
39
 
                 end
40
 
              end
 
20
              self.mazes = {self.maze1, self.maze2}
 
21
              --self.maze1:revive()
 
22
              --self.maze2:die()
 
23
              the.activeMaze = self.maze1
41
24
 
42
25
              --the.interface = Group:new()
43
26
 
45
28
 
46
29
              self:switchMaze()
47
30
 
48
 
              -- profiling...
49
 
              --the.profiler = newProfiler()
50
 
              --the.profiler:start()
51
 
 
52
31
              self.gameStart = love.timer.getMicroTime()
53
32
              self.lastChange = love.timer.getMicroTime()
54
33
           end,
58
37
                    self:switchMaze()
59
38
                 end
60
39
 
61
 
                 if not (DEBUG and the.console.visible) then
62
 
                    the.activeMaze:collide(the.player.collider)
63
 
                    the.player.collider:collide(the.activeGoal)
64
 
                 end
65
 
 
66
 
                 if the.keys:justPressed('escape', 'q') then
67
 
                    PauseView:new():activate()
68
 
                 end
 
40
                 the.activeMaze:collide(the.player)
 
41
 
 
42
 
 
43
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
 
44
                 --    if not mirror.of then
 
45
                 --       print('mirror:' .. inspect(mirror))
 
46
                 --       error('mirror OF NOTHING')
 
47
                 --    end
 
48
                 -- end
69
49
              end,
70
50
   switchMaze = function(self)
71
 
                   if the.activeMaze then
72
 
                      repeat
73
 
                         newMaze = math.random(3)
74
 
                      until self.mazes[newMaze] ~= the.activeMaze
75
 
 
76
 
                      the.activeMaze:die()
77
 
                      the.activeMaze = self.mazes[newMaze]
78
 
 
79
 
                      the.activeBg.visible = false
80
 
                      the.activeBg = self.bgs[newMaze]
81
 
 
82
 
                      if the.activeGoal then
83
 
                         the.activeGoal.visible = false
84
 
                      end
85
 
                      the.activeGoal = self.goals[newMaze]
 
51
                   the.activeMaze:die()
 
52
                   if the.activeMaze == self.maze1 then
 
53
                      the.activeMaze = self.maze2
86
54
                   else
87
 
                      the.activeMaze = self.maze2
88
 
                      the.activeBg = self.bg
89
 
                      the.activeGoal = self.goals[2]
 
55
                      the.activeMaze = self.maze1
90
56
                   end
91
 
 
92
57
                   the.activeMaze:revive()
93
 
                   the.activeBg.visible = true
94
 
                   if the.activeGoal then
95
 
                      the.activeGoal.visible = true
96
 
                   end
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
100
58
 
101
59
                   self._fx = {0,0,0,0}
102
 
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
 
60
                   self.tween:start(self._fx, 4, 150, 10, 'quadIn')
103
61
 
104
62
                   self.lastChange = love.timer.getMicroTime()
105
63
                end,
137
95
              end
138
96
           end,
139
97
   onUpdate = function (self, dt)
 
98
                 if the.keys:justPressed('escape') then
 
99
                    self.quit()
 
100
                 end
140
101
              end
141
102
}