/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: 2015-09-05 20:31:03 UTC
  • Revision ID: josh@9ix.org-20150905203103-hgxn36kuk5fm739l
catch <1080p scaling case

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
STRICT = true
2
 
DEBUG = true
3
 
 
 
1
STRICT = false
 
2
DEBUG = false
 
3
 
 
4
if SDL then
 
5
  print = SDL.log
 
6
end
 
7
 
 
8
--lovebird = require 'lovebird'
4
9
require 'zoetrope'
5
10
--require 'pepperprof'
 
11
--inspect = require 'inspect'
6
12
 
7
 
--require 'group'
 
13
require 'sprite'
 
14
require 'util'
8
15
 
9
16
require 'version'
10
 
--require 'wrap_tile'
11
17
require 'player'
12
18
require 'goal'
 
19
require 'pause_view'
 
20
require 'win_view'
13
21
 
14
22
GameView = View:extend {
15
23
   gameStart = 0,
 
24
   switchSounds = {},
16
25
   onNew = function (self)
17
26
              self:loadLayers('data/map.lua')
18
27
              self.focus = the.player
19
28
              self:clampTo(self.bg)
20
29
 
 
30
              the.app:setScaling(self)
 
31
 
21
32
              self.mazes = {self.maze1, self.maze2, self.maze3}
22
33
              self.bgs = {self.bg, self.bg, self.bg2}
23
34
              for _, maze in ipairs(self.mazes) do maze:die() end
30
41
              self.maze2.playerScale = 0.5
31
42
              self.maze3.playerScale = 1
32
43
 
33
 
              self.goals = {}
 
44
              self.goals = {{},{},{}}
 
45
              the.goalsAchieved = 0
34
46
              for _, obj in ipairs(self.objects.sprites) do
35
47
                 if obj:instanceOf(Goal) then
36
48
                    obj.visible = false
37
 
                    self.goals[tonumber(obj.map)] = obj
 
49
                    table.insert(self.goals[tonumber(obj.map)], obj)
38
50
                 end
39
51
              end
40
52
 
 
53
              local sndFiles = {'data/Explosion2.wav', 'data/Explosion3.wav', 'data/Hit_Hurt3.wav'}
 
54
 
 
55
              for _, sndFile in ipairs(sndFiles) do
 
56
                 local snd = love.audio.newSource(sndFile, 'static')
 
57
                 table.insert(self.switchSounds, snd)
 
58
              end
 
59
 
41
60
              --the.interface = Group:new()
42
61
 
43
62
              --self:add(the.interface)
48
67
              --the.profiler = newProfiler()
49
68
              --the.profiler:start()
50
69
 
51
 
              self.gameStart = love.timer.getMicroTime()
52
 
              self.lastChange = love.timer.getMicroTime()
 
70
              self.gameStart = love.timer.getTime()
 
71
              self.lastChange = love.timer.getTime()
53
72
           end,
54
73
   onUpdate = function(self, dt)
55
 
                 if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
 
74
                 if the.player.active and love.timer.getTime() > self.lastChange + 10 then
56
75
                    -- switch maze
57
76
                    self:switchMaze()
58
77
                 end
59
78
 
60
79
                 if not (DEBUG and the.console.visible) then
61
 
                    the.activeMaze:collide(the.player.collider)
62
 
                    the.player.collider:collide(the.activeGoal)
 
80
                    for _, goal in ipairs(the.activeGoals) do
 
81
                       the.player.collider:collide(goal)
 
82
                    end
63
83
                 end
64
84
 
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
 
85
                 if the.keys:justPressed('escape', 'q') then
 
86
                    PauseView:new():activate()
 
87
                 --elseif the.keys:justPressed('w') then
 
88
                 --   WinView:new():activate()
 
89
                 end
71
90
              end,
72
91
   switchMaze = function(self)
73
92
                   if the.activeMaze then
81
100
                      the.activeBg.visible = false
82
101
                      the.activeBg = self.bgs[newMaze]
83
102
 
84
 
                      if the.activeGoal then
85
 
                         the.activeGoal.visible = false
 
103
                      for _, goal in ipairs(the.activeGoals) do
 
104
                         goal.visible = false
86
105
                      end
87
 
                      the.activeGoal = self.goals[newMaze]
 
106
                      the.activeGoals = self.goals[newMaze]
 
107
 
 
108
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
88
109
                   else
89
110
                      the.activeMaze = self.maze2
90
111
                      the.activeBg = self.bg
91
 
                      the.activeGoal = self.goals[2]
 
112
                      the.activeGoals = self.goals[2]
92
113
                   end
93
114
 
94
115
                   the.activeMaze:revive()
95
116
                   the.activeBg.visible = true
96
 
                   if the.activeGoal then
97
 
                      the.activeGoal.visible = true
 
117
                   for _, goal in ipairs(the.activeGoals) do
 
118
                      goal.visible = true
98
119
                   end
99
120
                   the.player.scale = the.activeMaze.playerScale
100
121
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
103
124
                   self._fx = {0,0,0,0}
104
125
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
105
126
 
106
 
                   self.lastChange = love.timer.getMicroTime()
 
127
                   self.lastChange = love.timer.getTime()
107
128
                end,
108
129
   onEndFrame = function(self)
109
130
                   --the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
112
133
}
113
134
 
114
135
MenuScreen = View:extend {
115
 
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
116
 
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
 
136
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
117
137
   onNew = function(self)
118
 
              self:add(self.title)
119
 
              self.title:centerAround(400, 200)
 
138
              the.app:setScaling(self)
 
139
 
 
140
              self:add(self.bg)
 
141
              --self.title:centerAround(400, 200)
 
142
 
 
143
              local nr = 'data/NewRocker-Regular.otf'
 
144
              self:add(Text:new{
 
145
                          text = 'Treasures of the Decimaze',
 
146
                          --x = 0,
 
147
                          y = 100,
 
148
                          width = self.bg.width,
 
149
                          font = {nr, 48},
 
150
                          align = 'center',
 
151
                          tint = {0,0,0}
 
152
                       })
 
153
 
 
154
              self:add(Text:new{
 
155
                          text = 'Find the 4 lost shinies!',
 
156
                          y = 170,
 
157
                          width = self.bg.width,
 
158
                          font = {nr, 28},
 
159
                          align = 'center',
 
160
                          tint = {0,0,0}
 
161
                       })
 
162
 
 
163
              self:add(Text:new{
 
164
                          text = 'Use the arrow keys to move',
 
165
                          y = 375,
 
166
                          width = self.bg.width,
 
167
                          font = {nr, 24},
 
168
                          align = 'center',
 
169
                          tint = {0,0,0}
 
170
                       })
 
171
 
 
172
              self:add(Text:new{
 
173
                          text = 'Press a key to start',
 
174
                          y = 425,
 
175
                          width = self.bg.width,
 
176
                          font = {nr, 24},
 
177
                          align = 'center',
 
178
                          tint = {0,0,0}
 
179
                       })
 
180
 
 
181
 
120
182
           end,
121
183
   onUpdate = function(self, elapsed)
122
 
                 if the.keys:allJustPressed() then
123
 
                    the.app.view = GameView:new()
124
 
                 end
125
 
              end
 
184
     if the.keys:allJustPressed() or the.mouse:pressed() then
 
185
       the.app.view = GameView:new()
 
186
     end
 
187
   end
126
188
}
127
189
 
128
190
the.app = App:new {
 
191
   width = 800,
 
192
   height = 600,
 
193
   name = "Treasures of the Decimaze",
129
194
   onRun = function (self)
130
195
              print('Version: ' .. VERSION)
131
196
 
132
 
              self.view = GameView:new()
 
197
              self.view = MenuScreen:new()
 
198
              self:setScaling()
133
199
 
134
200
              if DEBUG then
135
201
                 self.console:watch('VERSION', 'VERSION')
 
202
                 self.console:watch('player.x', 'the.player.x')
 
203
                 self.console:watch('player.y', 'the.player.y')
136
204
 
137
205
                 -- back off that dark overlay a bit
138
206
                 self.console.fill.fill[4] = 75
139
207
              end
140
208
           end,
141
209
   onUpdate = function (self, dt)
142
 
                 if the.keys:justPressed('escape') then
143
 
                    if the.profiler then
144
 
                       the.profiler:stop()
145
 
                       local outfile = io.open( "profile.txt", "w+" )
146
 
                       the.profiler:report( outfile )
147
 
                       outfile:close()
148
 
                    end
149
 
 
150
 
                    self.quit()
 
210
                 if the.keys:justPressed('f1') then
 
211
                    local ss = love.graphics.newScreenshot()
 
212
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
151
213
                 end
152
 
              end
 
214
              end,
 
215
   update = function(self, dt)
 
216
     if lovebird then
 
217
       fps = love.timer.getFPS()
 
218
       lovebird.update()
 
219
     end
 
220
     App.update(self, dt)
 
221
   end,
 
222
   setScaling = function(self, view)
 
223
     local view = view or the.app.view
 
224
 
 
225
     local winw, winh = love.window.getMode()
 
226
     --if love.window.getFullscreen() then
 
227
     if winw == self.width and winh == self.height then
 
228
       self.scale = 1
 
229
       view.realTranslate = { x=0, y=0 }
 
230
       love.graphics.setScissor()
 
231
     else
 
232
       --self.scale = math.min(
 
233
       --  math.floor(winw / the.app.viewWidth),
 
234
       --  math.floor(winh / the.app.viewHeight)
 
235
       --)
 
236
       if winh >= 1050 then
 
237
         self.scale = 1.5
 
238
       elseif winh < the.app.height then
 
239
         self.scale = winh / the.app.height
 
240
       else
 
241
         self.scale = 1
 
242
       end
 
243
       view.realTranslate.x = math.floor((winw - self.width * self.scale) / 2)
 
244
       view.realTranslate.y = math.floor((winh - self.height * self.scale) / 2)
 
245
       --print('translate: ' .. view.realTranslate.x .. ', ' .. view.realTranslate.y)
 
246
 
 
247
       love.graphics.setColor(0,0,0)
 
248
       love.graphics.rectangle('fill', 0, 0, winw, winh)
 
249
       love.graphics.setScissor( view.realTranslate.x,
 
250
                                 view.realTranslate.y,
 
251
                                 self.width * self.scale,
 
252
                                 self.height * self.scale)
 
253
     end
 
254
 
 
255
     view.scale = self.scale
 
256
   end
153
257
}
 
258
 
 
259
function love.resize(w, h)
 
260
  print('love.resize')
 
261
  the.app:setScaling()
 
262
end