/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-27 19:55:06 UTC
  • Revision ID: josh@9ix.org-20130427195506-xd6p6y8druwyt2sz
area transitions

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
require 'version'
8
8
 
9
9
require 'player'
 
10
require 'transition'
10
11
 
11
12
levels = {
12
13
   forest1 = {
13
14
      objects = function() return {
14
15
                      Tile:new{image = 'data/forest1-bg.png'},
15
 
                      Player:new{x = 200, y = 370, image = 'data/forest1-player.png'},
 
16
                      Player:new{x = 200, y = 370,
 
17
                                 minY = 330, maxY = 500,
 
18
                                 image = 'data/forest1-player.png'},
16
19
                      Tile:new{image = 'data/forest1-fg.png'}
17
20
                   } end,
18
21
   },
19
22
   shore = {
20
23
      objects = function() return {
21
24
                      Tile:new{image = 'data/shore-bg.png'},
22
 
                      Player:new{x = 145, y = 133, image = 'data/shore-player.png'},
23
 
                      Tile:new{image = 'data/shore-fg.png'}
 
25
                      Player:new{x = 145, y = 133,
 
26
                                 minY = 133, maxY = 133,
 
27
                                 image = 'data/shore-player.png'},
 
28
                      Tile:new{image = 'data/shore-fg.png'},
 
29
                      Transition:new{x = 10, y = 133, target = 'forest1'}
24
30
                   } end
25
31
   }
26
32
}
57
63
                 self.console:watch('VERSION', 'VERSION')
58
64
                 self.console:watch('updateTook', 'the.updateTook')
59
65
                 --self.console:watch('drawTook', 'the.drawTook')
 
66
 
 
67
                 -- back off that dark overlay a bit
 
68
                 self.console.fill.fill[4] = 75
60
69
              end
61
70
           end,
62
71
   onUpdate = function (self, dt)