/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-26 00:10:14 UTC
  • Revision ID: josh@9ix.org-20130826001014-d7iobtdaet72558t
actually handle multiple goals in one maze

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
require 'zoetrope'
5
5
--require 'pepperprof'
 
6
--inspect = require 'inspect'
 
7
 
 
8
require 'sprite'
 
9
require 'util'
6
10
 
7
11
require 'version'
8
12
require 'player'
12
16
 
13
17
GameView = View:extend {
14
18
   gameStart = 0,
 
19
   switchSounds = {},
15
20
   onNew = function (self)
16
21
              self:loadLayers('data/map.lua')
17
22
              self.focus = the.player
29
34
              self.maze2.playerScale = 0.5
30
35
              self.maze3.playerScale = 1
31
36
 
32
 
              self.goals = {}
 
37
              self.goals = {{},{},{}}
33
38
              the.goalsAchieved = 0
34
39
              for _, obj in ipairs(self.objects.sprites) do
35
40
                 if obj:instanceOf(Goal) then
36
41
                    obj.visible = false
37
 
                    self.goals[tonumber(obj.map)] = obj
 
42
                    table.insert(self.goals[tonumber(obj.map)], obj)
38
43
                 end
39
44
              end
40
45
 
 
46
              local sndFiles = {'data/Explosion2.wav', 'data/Explosion3.wav', 'data/Hit_Hurt3.wav'}
 
47
 
 
48
              for _, sndFile in ipairs(sndFiles) do
 
49
                 local snd = love.audio.newSource(sndFile, 'static')
 
50
                 table.insert(self.switchSounds, snd)
 
51
              end
 
52
 
41
53
              --the.interface = Group:new()
42
54
 
43
55
              --self:add(the.interface)
58
70
                 end
59
71
 
60
72
                 if not (DEBUG and the.console.visible) then
61
 
                    the.activeMaze:collide(the.player.collider)
62
 
                    the.player.collider:collide(the.activeGoal)
 
73
                    for _, goal in ipairs(the.activeGoals) do
 
74
                       the.player.collider:collide(goal)
 
75
                    end
63
76
                 end
64
77
 
65
78
                 if the.keys:justPressed('escape', 'q') then
80
93
                      the.activeBg.visible = false
81
94
                      the.activeBg = self.bgs[newMaze]
82
95
 
83
 
                      if the.activeGoal then
84
 
                         the.activeGoal.visible = false
 
96
                      for _, goal in ipairs(the.activeGoals) do
 
97
                         goal.visible = false
85
98
                      end
86
 
                      the.activeGoal = self.goals[newMaze]
 
99
                      the.activeGoals = self.goals[newMaze]
 
100
 
 
101
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
87
102
                   else
88
103
                      the.activeMaze = self.maze2
89
104
                      the.activeBg = self.bg
90
 
                      the.activeGoal = self.goals[2]
 
105
                      the.activeGoals = self.goals[2]
91
106
                   end
92
107
 
93
108
                   the.activeMaze:revive()
94
109
                   the.activeBg.visible = true
95
 
                   if the.activeGoal then
96
 
                      the.activeGoal.visible = true
 
110
                   for _, goal in ipairs(the.activeGoals) do
 
111
                      goal.visible = true
97
112
                   end
98
113
                   the.player.scale = the.activeMaze.playerScale
99
114
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
111
126
}
112
127
 
113
128
MenuScreen = View:extend {
114
 
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
115
 
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
 
129
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
116
130
   onNew = function(self)
117
 
              self:add(self.title)
118
 
              self.title:centerAround(400, 200)
 
131
              self:add(self.bg)
 
132
              --self.title:centerAround(400, 200)
 
133
 
 
134
              local nr = 'data/NewRocker-Regular.otf'
 
135
              self:add(Text:new{
 
136
                          text = 'Name Of Game',
 
137
                          --x = 0,
 
138
                          y = 100,
 
139
                          width = self.bg.width,
 
140
                          font = {nr, 48},
 
141
                          align = 'center',
 
142
                          tint = {0,0,0}
 
143
                       })
 
144
 
 
145
              self:add(Text:new{
 
146
                          text = 'Find the 4 lost shinies!',
 
147
                          y = 170,
 
148
                          width = self.bg.width,
 
149
                          font = {nr, 28},
 
150
                          align = 'center',
 
151
                          tint = {0,0,0}
 
152
                       })
 
153
 
 
154
              self:add(Text:new{
 
155
                          text = 'Use the arrow keys to move',
 
156
                          y = 375,
 
157
                          width = self.bg.width,
 
158
                          font = {nr, 24},
 
159
                          align = 'center',
 
160
                          tint = {0,0,0}
 
161
                       })
 
162
 
 
163
              self:add(Text:new{
 
164
                          text = 'Press a key to start',
 
165
                          y = 425,
 
166
                          width = self.bg.width,
 
167
                          font = {nr, 24},
 
168
                          align = 'center',
 
169
                          tint = {0,0,0}
 
170
                       })
 
171
 
 
172
 
119
173
           end,
120
174
   onUpdate = function(self, elapsed)
121
175
                 if the.keys:allJustPressed() then
128
182
   onRun = function (self)
129
183
              print('Version: ' .. VERSION)
130
184
 
131
 
              self.view = GameView:new()
 
185
              self.view = MenuScreen:new()
132
186
 
133
187
              if DEBUG then
134
188
                 self.console:watch('VERSION', 'VERSION')
 
189
                 self.console:watch('player.x', 'the.player.x')
 
190
                 self.console:watch('player.y', 'the.player.y')
135
191
 
136
192
                 -- back off that dark overlay a bit
137
193
                 self.console.fill.fill[4] = 75