/ld26

To get this branch, use:
bzr branch http://9ix.org/bzr/ld26

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-04-28 21:10:57 UTC
  • Revision ID: josh@9ix.org-20130428211057-uyld2pqi31n1tghc
sheep!

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
require 'player'
10
10
require 'transition'
11
11
require 'displacer'
 
12
require 'inventory'
 
13
require 'flower'
 
14
require 'levels'
 
15
 
12
16
require 'svg_levels'
13
17
 
14
 
levels = {
15
 
   forest1 = {
16
 
      objects = function() return {
17
 
                      Tile:new{image = 'data/forest1-bg.png'},
18
 
                      Player:new{x = 200, y = 370,
19
 
                                 minY = 330, maxY = 500,
20
 
                                 image = 'data/forest1-player.png'},
21
 
                      Tile:new{image = 'data/forest1-fg.png'}
22
 
                   } end,
23
 
   },
24
 
   shore = {
25
 
      objects = function() return {
26
 
                      Tile:new{image = 'data/shore-bg.png'},
27
 
                      Player:new{x = 145, y = 133,
28
 
                                 minY = 133, maxY = 133,
29
 
                                 image = 'data/shore-player.png'},
30
 
                      Tile:new{image = 'data/shore-fg.png'},
31
 
                      Transition:new{x = 10, y = 133, target = 'forest1'}
32
 
                   } end
33
 
   }
34
 
}
35
 
 
36
18
GameView = View:extend {
37
19
   onNew = function (self)
38
 
              self:newLevel('forest1')
39
 
 
40
 
              --self:loadLayers('data/map.lua')
 
20
              --print('loading level: '..self.level)
 
21
              if not levels[self.level] then
 
22
                 error('no such level: '..self.level)
 
23
              end
 
24
              for _, obj in ipairs(levels[self.level].objects()) do
 
25
                 self:add(obj)
 
26
              end
 
27
              for _, obj in ipairs(svg_objects[self.level]) do
 
28
                 if not the.inventory.items[obj.name] then
 
29
                    self:add(obj)
 
30
                 end
 
31
              end
 
32
 
 
33
              self:add(the.inventory)
 
34
 
 
35
              self:flash({0,0,0})
 
36
 
41
37
              --self.focus = the.player
42
38
              --self:clampTo(self.map)
43
39
           end,
44
40
   draw = function (self, x, y)
45
41
             View.draw(self, x, y)
46
 
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
47
 
             love.graphics.print('version:' .. VERSION, 20, 570)
 
42
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
 
43
             --love.graphics.print('version:' .. VERSION, 20, 570)
48
44
          end,
49
45
   onUpdate = function (self, dt)
50
 
                 if the.keys:justPressed('a') then
51
 
                    self:newLevel('forest1')
52
 
                 elseif the.keys:justPressed('b') then
53
 
                    self:newLevel('shore')
54
 
                 end
55
 
              end,
56
 
   newLevel = function (self, level)
57
 
                 self.sprites = levels[level].objects()
58
 
                 for _, obj in ipairs(svg_objects[level]) do
59
 
                    self:add(obj)
60
 
                 end
61
46
              end
62
47
}
63
48
 
64
49
the.app = App:new {
 
50
   level = 'shore', --default level
65
51
   onRun = function (self)
66
 
              self.view = GameView:new()
 
52
              print('Version: ' .. VERSION)
 
53
              self.view = GameView:new{level = self.level}
67
54
              if DEBUG then
68
55
                 self.console:watch('VERSION', 'VERSION')
69
56
                 self.console:watch('updateTook', 'the.updateTook')
 
57
                 self.console:watch('view.tween.status', 'the.app.view.tween.status()')
 
58
                 self.console:watch('view.tween.active', 'the.app.view.tween.active')
70
59
                 --self.console:watch('drawTook', 'the.drawTook')
71
60
 
72
61
                 -- back off that dark overlay a bit
86
75
               end
87
76
            end
88
77
}
 
78
 
 
79
-- for accessing from debug console
 
80
function l(level)
 
81
   the.app.view = GameView:new{level = level}
 
82
end
 
83
 
 
84
function love.load(arg)
 
85
   if arg[2] then
 
86
      the.app.level = arg[2]
 
87
   end
 
88
 
 
89
   the.app:run()
 
90
end
 
 
b'\\ No newline at end of file'