/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 15:28:23 UTC
  • Revision ID: josh@9ix.org-20140703152823-4241je58pflhx7ec
scaling

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
STRICT = true
2
 
DEBUG = true
 
2
DEBUG = false
3
3
 
4
4
require 'zoetrope'
5
5
--require 'pepperprof'
16
16
 
17
17
GameView = View:extend {
18
18
   gameStart = 0,
 
19
   switchSounds = {},
19
20
   onNew = function (self)
20
21
              self:loadLayers('data/map.lua')
21
22
              self.focus = the.player
22
23
              self:clampTo(self.bg)
23
24
 
 
25
              self.scale = the.app.scale
 
26
 
24
27
              self.mazes = {self.maze1, self.maze2, self.maze3}
25
28
              self.bgs = {self.bg, self.bg, self.bg2}
26
29
              for _, maze in ipairs(self.mazes) do maze:die() end
33
36
              self.maze2.playerScale = 0.5
34
37
              self.maze3.playerScale = 1
35
38
 
36
 
              self.goals = {}
 
39
              self.goals = {{},{},{}}
37
40
              the.goalsAchieved = 0
38
41
              for _, obj in ipairs(self.objects.sprites) do
39
42
                 if obj:instanceOf(Goal) then
40
43
                    obj.visible = false
41
 
                    self.goals[tonumber(obj.map)] = obj
 
44
                    table.insert(self.goals[tonumber(obj.map)], obj)
42
45
                 end
43
46
              end
44
47
 
 
48
              local sndFiles = {'data/Explosion2.wav', 'data/Explosion3.wav', 'data/Hit_Hurt3.wav'}
 
49
 
 
50
              for _, sndFile in ipairs(sndFiles) do
 
51
                 local snd = love.audio.newSource(sndFile, 'static')
 
52
                 table.insert(self.switchSounds, snd)
 
53
              end
 
54
 
45
55
              --the.interface = Group:new()
46
56
 
47
57
              --self:add(the.interface)
52
62
              --the.profiler = newProfiler()
53
63
              --the.profiler:start()
54
64
 
55
 
              self.gameStart = love.timer.getMicroTime()
56
 
              self.lastChange = love.timer.getMicroTime()
 
65
              self.gameStart = love.timer.getTime()
 
66
              self.lastChange = love.timer.getTime()
57
67
           end,
58
68
   onUpdate = function(self, dt)
59
 
                 if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
 
69
                 if the.player.active and love.timer.getTime() > self.lastChange + 10 then
60
70
                    -- switch maze
61
71
                    self:switchMaze()
62
72
                 end
63
73
 
64
74
                 if not (DEBUG and the.console.visible) then
65
 
                    --the.player.collider:collide(the.activeMaze)
66
 
                    the.player.collider:collide(the.activeGoal)
 
75
                    for _, goal in ipairs(the.activeGoals) do
 
76
                       the.player.collider:collide(goal)
 
77
                    end
67
78
                 end
68
79
 
69
80
                 if the.keys:justPressed('escape', 'q') then
84
95
                      the.activeBg.visible = false
85
96
                      the.activeBg = self.bgs[newMaze]
86
97
 
87
 
                      if the.activeGoal then
88
 
                         the.activeGoal.visible = false
 
98
                      for _, goal in ipairs(the.activeGoals) do
 
99
                         goal.visible = false
89
100
                      end
90
 
                      the.activeGoal = self.goals[newMaze]
 
101
                      the.activeGoals = self.goals[newMaze]
 
102
 
 
103
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
91
104
                   else
92
105
                      the.activeMaze = self.maze2
93
106
                      the.activeBg = self.bg
94
 
                      the.activeGoal = self.goals[2]
 
107
                      the.activeGoals = self.goals[2]
95
108
                   end
96
109
 
97
110
                   the.activeMaze:revive()
98
111
                   the.activeBg.visible = true
99
 
                   if the.activeGoal then
100
 
                      the.activeGoal.visible = true
 
112
                   for _, goal in ipairs(the.activeGoals) do
 
113
                      goal.visible = true
101
114
                   end
102
115
                   the.player.scale = the.activeMaze.playerScale
103
116
                   the.player.collider.width = the.player.width * the.activeMaze.playerScale
106
119
                   self._fx = {0,0,0,0}
107
120
                   self.tween:start(self._fx, 4, 175, 10, 'quadIn')
108
121
 
109
 
                   self.lastChange = love.timer.getMicroTime()
 
122
                   self.lastChange = love.timer.getTime()
110
123
                end,
111
124
   onEndFrame = function(self)
112
125
                   --the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
117
130
MenuScreen = View:extend {
118
131
   bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
119
132
   onNew = function(self)
 
133
              self.scale = the.app.scale
 
134
 
120
135
              self:add(self.bg)
121
136
              --self.title:centerAround(400, 200)
122
137
 
123
138
              local nr = 'data/NewRocker-Regular.otf'
124
139
              self:add(Text:new{
125
 
                          text = 'Name Of Game',
 
140
                          text = 'Treasures of the Decimaze',
126
141
                          --x = 0,
127
142
                          y = 100,
128
143
                          width = self.bg.width,
132
147
                       })
133
148
 
134
149
              self:add(Text:new{
135
 
                          text = 'Find the 3 lost shinies!',
 
150
                          text = 'Find the 4 lost shinies!',
136
151
                          y = 170,
137
152
                          width = self.bg.width,
138
153
                          font = {nr, 28},
168
183
}
169
184
 
170
185
the.app = App:new {
 
186
   width = 800,
 
187
   height = 600,
 
188
   name = "Treasures of the Decimaze",
171
189
   onRun = function (self)
172
190
              print('Version: ' .. VERSION)
173
191
 
174
192
              self.view = MenuScreen:new()
 
193
              self:setScaling()
175
194
 
176
195
              if DEBUG then
177
196
                 self.console:watch('VERSION', 'VERSION')
183
202
              end
184
203
           end,
185
204
   onUpdate = function (self, dt)
186
 
              end
 
205
                 if the.keys:justPressed('f1') then
 
206
                    local ss = love.graphics.newScreenshot()
 
207
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
208
                 end
 
209
              end,
 
210
   setScaling = function(self)
 
211
     local winw, winh = love.window.getMode()
 
212
     --if love.window.getFullscreen() then
 
213
     if winw == self.width and winh == self.height then
 
214
       self.scale = 1
 
215
       self.view.realTranslate = { x=0, y=0 }
 
216
       love.graphics.setScissor()
 
217
     else
 
218
       --self.scale = math.min(
 
219
       --  math.floor(winw / the.app.viewWidth),
 
220
       --  math.floor(winh / the.app.viewHeight)
 
221
       --)
 
222
       if winh >= 1050 then
 
223
         self.scale = 1.5
 
224
       elseif winh < the.app.height then
 
225
         self.scale = winh / the.app.height
 
226
       end
 
227
       self.view.realTranslate.x = math.floor((winw - self.width * self.scale) / 2)
 
228
       self.view.realTranslate.y = math.floor((winh - self.height * self.scale) / 2)
 
229
       --print('translate: ' .. self.view.realTranslate.x .. ', ' .. self.view.realTranslate.y)
 
230
 
 
231
       love.graphics.setColor(0,0,0)
 
232
       love.graphics.rectangle('fill', 0, 0, winw, winh)
 
233
       love.graphics.setScissor( self.view.realTranslate.x,
 
234
                                 self.view.realTranslate.y,
 
235
                                 self.width * self.scale,
 
236
                                 self.height * self.scale)
 
237
     end
 
238
 
 
239
     self.view.scale = self.scale
 
240
   end
187
241
}
 
242
 
 
243
function love.resize(w, h)
 
244
  print('love.resize')
 
245
  the.app:setScaling()
 
246
end