/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 17:18:46 UTC
  • Revision ID: josh@9ix.org-20130428171846-5m9e3db99r338ppj
foresthut

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
 
12
15
require 'svg_levels'
13
16
 
14
17
levels = {
21
24
                      Tile:new{image = 'data/forest1-fg.png'}
22
25
                   } end,
23
26
   },
 
27
   foresthut = {
 
28
      objects = function() return {
 
29
                      Tile:new{image = 'data/foresthut-bg.png'},
 
30
                      Player:new{x = 745, y = 430,
 
31
                                 image = 'data/forest1-player.png'},
 
32
                      Tile:new{image = 'data/foresthut-fg.png'}
 
33
                   } end,
 
34
   },
24
35
   shore = {
25
36
      objects = function() return {
26
37
                      Tile:new{image = 'data/shore-bg.png'},
31
42
                      Transition:new{x = 10, y = 133, target = 'forest1',
32
43
                                     targetX = 735, targetY = 370}
33
44
                   } end
 
45
   },
 
46
   lake = {
 
47
      objects = function() return {
 
48
                      Tile:new{image = 'data/lake-bg.png'},
 
49
                      Player:new{x = 540, y = 266,
 
50
                                 image = 'data/lake-player.png'},
 
51
                   }
 
52
                end
 
53
   },
 
54
   village = {
 
55
      objects = function() return {
 
56
                      Tile:new{image = 'data/village-bg.png'},
 
57
                      Player:new{x = 121, y = 440,
 
58
                                 image = 'data/village-player.png'},
 
59
                   }
 
60
                end
34
61
   }
35
62
}
36
63
 
37
64
GameView = View:extend {
 
65
   level = 'shore', --default level
38
66
   onNew = function (self)
39
 
              self:newLevel('forest1')
40
 
 
41
 
              --self:loadLayers('data/map.lua')
 
67
              --print('loading level: '..self.level)
 
68
              for _, obj in ipairs(levels[self.level].objects()) do
 
69
                 self:add(obj)
 
70
              end
 
71
              for _, obj in ipairs(svg_objects[self.level]) do
 
72
                 if not the.inventory.items[obj.name] then
 
73
                    self:add(obj)
 
74
                 end
 
75
              end
 
76
 
 
77
              self:add(the.inventory)
 
78
 
 
79
              self:flash({0,0,0})
 
80
 
42
81
              --self.focus = the.player
43
82
              --self:clampTo(self.map)
44
83
           end,
45
84
   draw = function (self, x, y)
46
85
             View.draw(self, x, y)
47
 
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
 
86
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
48
87
             love.graphics.print('version:' .. VERSION, 20, 570)
49
88
          end,
50
89
   onUpdate = function (self, dt)
51
 
                 if the.keys:justPressed('a') then
52
 
                    self:newLevel('forest1')
53
 
                 elseif the.keys:justPressed('b') then
54
 
                    self:newLevel('shore')
55
 
                 end
56
 
              end,
57
 
   newLevel = function (self, level)
58
 
                 self.sprites = levels[level].objects()
59
 
                 for _, obj in ipairs(svg_objects[level]) do
60
 
                    self:add(obj)
61
 
                 end
62
90
              end
63
91
}
64
92
 
68
96
              if DEBUG then
69
97
                 self.console:watch('VERSION', 'VERSION')
70
98
                 self.console:watch('updateTook', 'the.updateTook')
 
99
                 self.console:watch('view.tween.status', 'the.app.view.tween.status()')
 
100
                 self.console:watch('view.tween.active', 'the.app.view.tween.active')
71
101
                 --self.console:watch('drawTook', 'the.drawTook')
72
102
 
73
103
                 -- back off that dark overlay a bit
87
117
               end
88
118
            end
89
119
}
 
120
 
 
121
-- for accessing from debug console
 
122
function l(level)
 
123
   the.app.view = GameView:new{level = level}
 
124
end
 
 
b'\\ No newline at end of file'