/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:14:01 UTC
  • Revision ID: josh@9ix.org-20130824231401-civglef1wj2oi7g6
... more maze (and darker fade, and no collision during debug)

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
 
--inspect = require 'inspect'
7
5
 
8
 
require 'sprite'
9
 
require 'util'
 
6
--require 'group'
10
7
 
11
8
require 'version'
 
9
--require 'wrap_tile'
12
10
require 'player'
13
11
require 'goal'
14
 
require 'pause_view'
15
 
require 'win_view'
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
34
29
              self.maze2.playerScale = 0.5
35
30
              self.maze3.playerScale = 1
36
31
 
37
 
              self.goals = {}
38
 
              the.goalsAchieved = 0
39
 
              for _, obj in ipairs(self.objects.sprites) do
40
 
                 if obj:instanceOf(Goal) then
41
 
                    obj.visible = false
42
 
                    self.goals[tonumber(obj.map)] = obj
43
 
                 end
44
 
              end
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
 
 
53
32
              --the.interface = Group:new()
54
33
 
55
34
              --self:add(the.interface)
56
35
 
57
36
              self:switchMaze()
58
37
 
59
 
              -- profiling...
60
 
              --the.profiler = newProfiler()
61
 
              --the.profiler:start()
62
 
 
63
38
              self.gameStart = love.timer.getMicroTime()
64
39
              self.lastChange = love.timer.getMicroTime()
65
40
           end,
70
45
                 end
71
46
 
72
47
                 if not (DEBUG and the.console.visible) then
73
 
                    --the.player.collider:collide(the.activeMaze)
74
 
                    the.player.collider:collide(the.activeGoal)
 
48
                    the.activeMaze:collide(the.player)
75
49
                 end
76
50
 
77
 
                 if the.keys:justPressed('escape', 'q') then
78
 
                    PauseView:new():activate()
79
 
                 --elseif the.keys:justPressed('w') then
80
 
                 --   WinView:new():activate()
81
 
                 end
 
51
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
 
52
                 --    if not mirror.of then
 
53
                 --       print('mirror:' .. inspect(mirror))
 
54
                 --       error('mirror OF NOTHING')
 
55
                 --    end
 
56
                 -- end
82
57
              end,
83
58
   switchMaze = function(self)
84
59
                   if the.activeMaze then
91
66
 
92
67
                      the.activeBg.visible = false
93
68
                      the.activeBg = self.bgs[newMaze]
94
 
 
95
 
                      if the.activeGoal then
96
 
                         the.activeGoal.visible = false
97
 
                      end
98
 
                      the.activeGoal = self.goals[newMaze]
99
 
 
100
 
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
101
69
                   else
102
70
                      the.activeMaze = self.maze2
103
71
                      the.activeBg = self.bg
104
 
                      the.activeGoal = self.goals[2]
105
72
                   end
106
73
 
107
74
                   the.activeMaze:revive()
108
75
                   the.activeBg.visible = true
109
 
                   if the.activeGoal then
110
 
                      the.activeGoal.visible = true
111
 
                   end
112
76
                   the.player.scale = the.activeMaze.playerScale
113
 
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
114
 
                   the.player.collider.height = the.player.height * the.activeMaze.playerScale
115
77
 
116
78
                   self._fx = {0,0,0,0}
117
79
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
125
87
}
126
88
 
127
89
MenuScreen = View:extend {
128
 
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
 
90
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
 
91
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
129
92
   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
 
 
 
93
              self:add(self.title)
 
94
              self.title:centerAround(400, 200)
172
95
           end,
173
96
   onUpdate = function(self, elapsed)
174
97
                 if the.keys:allJustPressed() then
181
104
   onRun = function (self)
182
105
              print('Version: ' .. VERSION)
183
106
 
184
 
              self.view = MenuScreen:new()
 
107
              self.view = GameView:new()
185
108
 
186
109
              if DEBUG then
187
110
                 self.console:watch('VERSION', 'VERSION')
188
 
                 self.console:watch('player.x', 'the.player.x')
189
 
                 self.console:watch('player.y', 'the.player.y')
190
111
 
191
112
                 -- back off that dark overlay a bit
192
113
                 self.console.fill.fill[4] = 75
193
114
              end
194
115
           end,
195
116
   onUpdate = function (self, dt)
 
117
                 if the.keys:justPressed('escape') then
 
118
                    self.quit()
 
119
                 end
196
120
              end
197
121
}