/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:35:26 UTC
  • Revision ID: josh@9ix.org-20130825153526-dcl4okzlmbyhmziz
cruft

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'
13
9
require 'goal'
14
10
require 'pause_view'
15
 
require 'win_view'
16
11
 
17
12
GameView = View:extend {
18
13
   gameStart = 0,
19
 
   switchSounds = {},
20
14
   onNew = function (self)
21
15
              self:loadLayers('data/map.lua')
22
16
              self.focus = the.player
34
28
              self.maze2.playerScale = 0.5
35
29
              self.maze3.playerScale = 1
36
30
 
37
 
              self.goals = {{},{},{}}
38
 
              the.goalsAchieved = 0
 
31
              self.goals = {}
39
32
              for _, obj in ipairs(self.objects.sprites) do
40
33
                 if obj:instanceOf(Goal) then
41
34
                    obj.visible = false
42
 
                    table.insert(self.goals[tonumber(obj.map)], obj)
 
35
                    self.goals[tonumber(obj.map)] = obj
43
36
                 end
44
37
              end
45
38
 
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
39
              --the.interface = Group:new()
54
40
 
55
41
              --self:add(the.interface)
70
56
                 end
71
57
 
72
58
                 if not (DEBUG and the.console.visible) then
73
 
                    for _, goal in ipairs(the.activeGoals) do
74
 
                       the.player.collider:collide(goal)
75
 
                    end
 
59
                    the.activeMaze:collide(the.player.collider)
 
60
                    the.player.collider:collide(the.activeGoal)
76
61
                 end
77
62
 
78
63
                 if the.keys:justPressed('escape', 'q') then
79
64
                    PauseView:new():activate()
80
 
                 --elseif the.keys:justPressed('w') then
81
 
                 --   WinView:new():activate()
82
65
                 end
83
66
              end,
84
67
   switchMaze = function(self)
93
76
                      the.activeBg.visible = false
94
77
                      the.activeBg = self.bgs[newMaze]
95
78
 
96
 
                      for _, goal in ipairs(the.activeGoals) do
97
 
                         goal.visible = false
 
79
                      if the.activeGoal then
 
80
                         the.activeGoal.visible = false
98
81
                      end
99
 
                      the.activeGoals = self.goals[newMaze]
100
 
 
101
 
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
 
82
                      the.activeGoal = self.goals[newMaze]
102
83
                   else
103
84
                      the.activeMaze = self.maze2
104
85
                      the.activeBg = self.bg
105
 
                      the.activeGoals = self.goals[2]
 
86
                      the.activeGoal = self.goals[2]
106
87
                   end
107
88
 
108
89
                   the.activeMaze:revive()
109
90
                   the.activeBg.visible = true
110
 
                   for _, goal in ipairs(the.activeGoals) do
111
 
                      goal.visible = true
 
91
                   if the.activeGoal then
 
92
                      the.activeGoal.visible = true
112
93
                   end
113
94
                   the.player.scale = the.activeMaze.playerScale
114
95
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
126
107
}
127
108
 
128
109
MenuScreen = View:extend {
129
 
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
 
110
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
 
111
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
130
112
   onNew = function(self)
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 = 'Treasures of the Decimaze',
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
 
 
 
113
              self:add(self.title)
 
114
              self.title:centerAround(400, 200)
173
115
           end,
174
116
   onUpdate = function(self, elapsed)
175
117
                 if the.keys:allJustPressed() then
179
121
}
180
122
 
181
123
the.app = App:new {
182
 
   name = "Treasures of the Decimaze",
183
124
   onRun = function (self)
184
125
              print('Version: ' .. VERSION)
185
126
 
186
 
              self.view = MenuScreen:new()
 
127
              self.view = GameView:new()
187
128
 
188
129
              if DEBUG then
189
130
                 self.console:watch('VERSION', 'VERSION')
190
 
                 self.console:watch('player.x', 'the.player.x')
191
 
                 self.console:watch('player.y', 'the.player.y')
192
131
 
193
132
                 -- back off that dark overlay a bit
194
133
                 self.console.fill.fill[4] = 75