/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 23:25:58 UTC
  • Revision ID: josh@9ix.org-20130825232558-1fkg38q6emagbigx
moved the shinies.  added one more.

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'
5
7
 
6
 
--require 'group'
 
8
require 'sprite'
 
9
require 'util'
7
10
 
8
11
require 'version'
9
 
--require 'wrap_tile'
10
12
require 'player'
11
13
require 'goal'
 
14
require 'pause_view'
 
15
require 'win_view'
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
30
35
              self.maze3.playerScale = 1
31
36
 
32
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
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)
43
56
 
44
57
              self:switchMaze()
45
58
 
 
59
              -- profiling...
 
60
              --the.profiler = newProfiler()
 
61
              --the.profiler:start()
 
62
 
46
63
              self.gameStart = love.timer.getMicroTime()
47
64
              self.lastChange = love.timer.getMicroTime()
48
65
           end,
53
70
                 end
54
71
 
55
72
                 if not (DEBUG and the.console.visible) then
56
 
                    the.activeMaze:collide(the.player)
57
 
                    the.player:collide(the.activeGoal)
 
73
                    --the.player.collider:collide(the.activeMaze)
 
74
                    the.player.collider:collide(the.activeGoal)
58
75
                 end
59
76
 
60
 
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
61
 
                 --    if not mirror.of then
62
 
                 --       print('mirror:' .. inspect(mirror))
63
 
                 --       error('mirror OF NOTHING')
64
 
                 --    end
65
 
                 -- end
 
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
66
82
              end,
67
83
   switchMaze = function(self)
68
84
                   if the.activeMaze then
80
96
                         the.activeGoal.visible = false
81
97
                      end
82
98
                      the.activeGoal = self.goals[newMaze]
 
99
 
 
100
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
83
101
                   else
84
102
                      the.activeMaze = self.maze2
85
103
                      the.activeBg = self.bg
92
110
                      the.activeGoal.visible = true
93
111
                   end
94
112
                   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
95
115
 
96
116
                   self._fx = {0,0,0,0}
97
117
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
105
125
}
106
126
 
107
127
MenuScreen = View:extend {
108
 
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
109
 
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
 
128
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
110
129
   onNew = function(self)
111
 
              self:add(self.title)
112
 
              self.title:centerAround(400, 200)
 
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 4 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
 
113
172
           end,
114
173
   onUpdate = function(self, elapsed)
115
174
                 if the.keys:allJustPressed() then
122
181
   onRun = function (self)
123
182
              print('Version: ' .. VERSION)
124
183
 
125
 
              self.view = GameView:new()
 
184
              self.view = MenuScreen:new()
126
185
 
127
186
              if DEBUG then
128
187
                 self.console:watch('VERSION', 'VERSION')
 
188
                 self.console:watch('player.x', 'the.player.x')
 
189
                 self.console:watch('player.y', 'the.player.y')
129
190
 
130
191
                 -- back off that dark overlay a bit
131
192
                 self.console.fill.fill[4] = 75
132
193
              end
133
194
           end,
134
195
   onUpdate = function (self, dt)
135
 
                 if the.keys:justPressed('escape') then
136
 
                    self.quit()
137
 
                 end
138
196
              end
139
197
}