/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 02:26:10 UTC
  • Revision ID: josh@9ix.org-20130825022610-13j6ydir3gmihiwz
.bzrignore

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
STRICT = true
2
 
DEBUG = false
 
2
DEBUG = true
3
3
 
4
4
require 'zoetrope'
5
5
--require 'pepperprof'
6
 
--inspect = require 'inspect'
7
6
 
8
 
require 'sprite'
9
 
require 'util'
 
7
--require 'group'
10
8
 
11
9
require 'version'
 
10
--require 'wrap_tile'
12
11
require 'player'
13
12
require 'goal'
14
 
require 'pause_view'
15
 
require 'win_view'
16
13
 
17
14
GameView = View:extend {
18
15
   gameStart = 0,
19
 
   switchSounds = {},
20
16
   onNew = function (self)
21
17
              self:loadLayers('data/map.lua')
22
18
              self.focus = the.player
34
30
              self.maze2.playerScale = 0.5
35
31
              self.maze3.playerScale = 1
36
32
 
37
 
              self.goals = {{},{},{}}
38
 
              the.goalsAchieved = 0
 
33
              self.goals = {}
39
34
              for _, obj in ipairs(self.objects.sprites) do
40
35
                 if obj:instanceOf(Goal) then
41
36
                    obj.visible = false
42
 
                    table.insert(self.goals[tonumber(obj.map)], obj)
 
37
                    self.goals[tonumber(obj.map)] = obj
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)
60
48
              --the.profiler = newProfiler()
61
49
              --the.profiler:start()
62
50
 
63
 
              self.gameStart = love.timer.getTime()
64
 
              self.lastChange = love.timer.getTime()
 
51
              self.gameStart = love.timer.getMicroTime()
 
52
              self.lastChange = love.timer.getMicroTime()
65
53
           end,
66
54
   onUpdate = function(self, dt)
67
 
                 if the.player.active and love.timer.getTime() > self.lastChange + 10 then
 
55
                 if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
68
56
                    -- switch maze
69
57
                    self:switchMaze()
70
58
                 end
71
59
 
72
60
                 if not (DEBUG and the.console.visible) then
73
 
                    for _, goal in ipairs(the.activeGoals) do
74
 
                       the.player.collider:collide(goal)
75
 
                    end
 
61
                    the.activeMaze:collide(the.player)
 
62
                    the.player:collide(the.activeGoal)
76
63
                 end
77
64
 
78
 
                 if the.keys:justPressed('escape', 'q') then
79
 
                    PauseView:new():activate()
80
 
                 --elseif the.keys:justPressed('w') then
81
 
                 --   WinView:new():activate()
82
 
                 end
 
65
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
 
66
                 --    if not mirror.of then
 
67
                 --       print('mirror:' .. inspect(mirror))
 
68
                 --       error('mirror OF NOTHING')
 
69
                 --    end
 
70
                 -- end
83
71
              end,
84
72
   switchMaze = function(self)
85
73
                   if the.activeMaze then
93
81
                      the.activeBg.visible = false
94
82
                      the.activeBg = self.bgs[newMaze]
95
83
 
96
 
                      for _, goal in ipairs(the.activeGoals) do
97
 
                         goal.visible = false
 
84
                      if the.activeGoal then
 
85
                         the.activeGoal.visible = false
98
86
                      end
99
 
                      the.activeGoals = self.goals[newMaze]
100
 
 
101
 
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
 
87
                      the.activeGoal = self.goals[newMaze]
102
88
                   else
103
89
                      the.activeMaze = self.maze2
104
90
                      the.activeBg = self.bg
105
 
                      the.activeGoals = self.goals[2]
 
91
                      the.activeGoal = self.goals[2]
106
92
                   end
107
93
 
108
94
                   the.activeMaze:revive()
109
95
                   the.activeBg.visible = true
110
 
                   for _, goal in ipairs(the.activeGoals) do
111
 
                      goal.visible = true
 
96
                   if the.activeGoal then
 
97
                      the.activeGoal.visible = true
112
98
                   end
113
99
                   the.player.scale = the.activeMaze.playerScale
114
 
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
115
 
                   the.player.collider.height = the.player.height * the.activeMaze.playerScale
116
100
 
117
101
                   self._fx = {0,0,0,0}
118
102
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
119
103
 
120
 
                   self.lastChange = love.timer.getTime()
 
104
                   self.lastChange = love.timer.getMicroTime()
121
105
                end,
122
106
   onEndFrame = function(self)
123
107
                   --the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
126
110
}
127
111
 
128
112
MenuScreen = View:extend {
129
 
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
 
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},
130
115
   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
 
 
 
116
              self:add(self.title)
 
117
              self.title:centerAround(400, 200)
173
118
           end,
174
119
   onUpdate = function(self, elapsed)
175
120
                 if the.keys:allJustPressed() then
179
124
}
180
125
 
181
126
the.app = App:new {
182
 
   name = "Treasures of the Decimaze",
183
127
   onRun = function (self)
184
128
              print('Version: ' .. VERSION)
185
129
 
186
 
              self.view = MenuScreen:new()
 
130
              self.view = GameView:new()
187
131
 
188
132
              if DEBUG then
189
133
                 self.console:watch('VERSION', 'VERSION')
190
 
                 self.console:watch('player.x', 'the.player.x')
191
 
                 self.console:watch('player.y', 'the.player.y')
192
134
 
193
135
                 -- back off that dark overlay a bit
194
136
                 self.console.fill.fill[4] = 75
195
137
              end
196
138
           end,
197
139
   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')
 
140
                 if the.keys:justPressed('escape') then
 
141
                    if the.profiler then
 
142
                       the.profiler:stop()
 
143
                       local outfile = io.open( "profile.txt", "w+" )
 
144
                       the.profiler:report( outfile )
 
145
                       outfile:close()
 
146
                    end
 
147
 
 
148
                    self.quit()
201
149
                 end
202
150
              end
203
151
}