/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 16:04:57 UTC
  • Revision ID: josh@9ix.org-20130825160457-m0le8k88t0i2ooun
win screen activate!

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'
10
6
 
11
7
require 'version'
12
8
require 'player'
16
12
 
17
13
GameView = View:extend {
18
14
   gameStart = 0,
19
 
   switchSounds = {},
20
15
   onNew = function (self)
21
16
              self:loadLayers('data/map.lua')
22
17
              self.focus = the.player
43
38
                 end
44
39
              end
45
40
 
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
 
 
53
41
              --the.interface = Group:new()
54
42
 
55
43
              --self:add(the.interface)
70
58
                 end
71
59
 
72
60
                 if not (DEBUG and the.console.visible) then
73
 
                    --the.player.collider:collide(the.activeMaze)
 
61
                    the.activeMaze:collide(the.player.collider)
74
62
                    the.player.collider:collide(the.activeGoal)
75
63
                 end
76
64
 
96
84
                         the.activeGoal.visible = false
97
85
                      end
98
86
                      the.activeGoal = self.goals[newMaze]
99
 
 
100
 
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
101
87
                   else
102
88
                      the.activeMaze = self.maze2
103
89
                      the.activeBg = self.bg
125
111
}
126
112
 
127
113
MenuScreen = View:extend {
128
 
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
 
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
116
   onNew = function(self)
130
 
              self:add(self.bg)
131
 
              --self.title:centerAround(400, 200)
132
 
 
133
 
              local nr = 'data/NewRocker-Regular.otf'
134
 
              self:add(Text:new{
135
 
                          text = 'Name Of Game',
136
 
                          --x = 0,
137
 
                          y = 100,
138
 
                          width = self.bg.width,
139
 
                          font = {nr, 48},
140
 
                          align = 'center',
141
 
                          tint = {0,0,0}
142
 
                       })
143
 
 
144
 
              self:add(Text:new{
145
 
                          text = 'Find the 3 lost shinies!',
146
 
                          y = 170,
147
 
                          width = self.bg.width,
148
 
                          font = {nr, 28},
149
 
                          align = 'center',
150
 
                          tint = {0,0,0}
151
 
                       })
152
 
 
153
 
              self:add(Text:new{
154
 
                          text = 'Use the arrow keys to move',
155
 
                          y = 375,
156
 
                          width = self.bg.width,
157
 
                          font = {nr, 24},
158
 
                          align = 'center',
159
 
                          tint = {0,0,0}
160
 
                       })
161
 
 
162
 
              self:add(Text:new{
163
 
                          text = 'Press a key to start',
164
 
                          y = 425,
165
 
                          width = self.bg.width,
166
 
                          font = {nr, 24},
167
 
                          align = 'center',
168
 
                          tint = {0,0,0}
169
 
                       })
170
 
 
171
 
 
 
117
              self:add(self.title)
 
118
              self.title:centerAround(400, 200)
172
119
           end,
173
120
   onUpdate = function(self, elapsed)
174
121
                 if the.keys:allJustPressed() then
181
128
   onRun = function (self)
182
129
              print('Version: ' .. VERSION)
183
130
 
184
 
              self.view = MenuScreen:new()
 
131
              self.view = GameView:new()
185
132
 
186
133
              if DEBUG then
187
134
                 self.console:watch('VERSION', 'VERSION')
188
 
                 self.console:watch('player.x', 'the.player.x')
189
 
                 self.console:watch('player.y', 'the.player.y')
190
135
 
191
136
                 -- back off that dark overlay a bit
192
137
                 self.console.fill.fill[4] = 75