/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: 2014-07-03 14:41:57 UTC
  • Revision ID: josh@9ix.org-20140703144157-xydxt62xzcdq6bdk
cluke009 zoetrope + my spritebatch changes

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 = {{},{},{}}
 
38
              the.goalsAchieved = 0
33
39
              for _, obj in ipairs(self.objects.sprites) do
34
40
                 if obj:instanceOf(Goal) then
35
41
                    obj.visible = false
36
 
                    self.goals[tonumber(obj.map)] = obj
 
42
                    table.insert(self.goals[tonumber(obj.map)], obj)
37
43
                 end
38
44
              end
39
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
 
40
53
              --the.interface = Group:new()
41
54
 
42
55
              --self:add(the.interface)
57
70
                 end
58
71
 
59
72
                 if not (DEBUG and the.console.visible) then
60
 
                    the.activeMaze:collide(the.player.collider)
61
 
                    the.player.collider:collide(the.activeGoal)
 
73
                    for _, goal in ipairs(the.activeGoals) do
 
74
                       the.player.collider:collide(goal)
 
75
                    end
62
76
                 end
63
77
 
64
78
                 if the.keys:justPressed('escape', 'q') then
79
93
                      the.activeBg.visible = false
80
94
                      the.activeBg = self.bgs[newMaze]
81
95
 
82
 
                      if the.activeGoal then
83
 
                         the.activeGoal.visible = false
 
96
                      for _, goal in ipairs(the.activeGoals) do
 
97
                         goal.visible = false
84
98
                      end
85
 
                      the.activeGoal = self.goals[newMaze]
 
99
                      the.activeGoals = self.goals[newMaze]
 
100
 
 
101
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
86
102
                   else
87
103
                      the.activeMaze = self.maze2
88
104
                      the.activeBg = self.bg
89
 
                      the.activeGoal = self.goals[2]
 
105
                      the.activeGoals = self.goals[2]
90
106
                   end
91
107
 
92
108
                   the.activeMaze:revive()
93
109
                   the.activeBg.visible = true
94
 
                   if the.activeGoal then
95
 
                      the.activeGoal.visible = true
 
110
                   for _, goal in ipairs(the.activeGoals) do
 
111
                      goal.visible = true
96
112
                   end
97
113
                   the.player.scale = the.activeMaze.playerScale
98
114
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
110
126
}
111
127
 
112
128
MenuScreen = View:extend {
113
 
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
114
 
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
 
129
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
115
130
   onNew = function(self)
116
 
              self:add(self.title)
117
 
              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 = '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
 
118
173
           end,
119
174
   onUpdate = function(self, elapsed)
120
175
                 if the.keys:allJustPressed() then
124
179
}
125
180
 
126
181
the.app = App:new {
 
182
   name = "Treasures of the Decimaze",
127
183
   onRun = function (self)
128
184
              print('Version: ' .. VERSION)
129
185
 
130
 
              self.view = GameView:new()
 
186
              self.view = MenuScreen:new()
131
187
 
132
188
              if DEBUG then
133
189
                 self.console:watch('VERSION', 'VERSION')
 
190
                 self.console:watch('player.x', 'the.player.x')
 
191
                 self.console:watch('player.y', 'the.player.y')
134
192
 
135
193
                 -- back off that dark overlay a bit
136
194
                 self.console.fill.fill[4] = 75
137
195
              end
138
196
           end,
139
197
   onUpdate = function (self, dt)
 
198
                 if the.keys:justPressed('f1') then
 
199
                    local ss = love.graphics.newScreenshot()
 
200
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
201
                 end
140
202
              end
141
203
}