/ld26

To get this branch, use:
bzr branch http://9ix.org/bzr/ld26
5 by Josh C
load a level, move a player around
1
STRICT = true
2
DEBUG = true
3
4
require 'zoetrope'
5
6
--require 'sprite'
7
require 'version'
8
9
require 'player'
12 by Josh C
area transitions
10
require 'transition'
13 by Josh C
pull data from svg to place objects into the world
11
require 'displacer'
19 by Josh C
inventory (and a flower)
12
require 'inventory'
13
require 'flower'
14
13 by Josh C
pull data from svg to place objects into the world
15
require 'svg_levels'
5 by Josh C
load a level, move a player around
16
9 by Josh C
levels hash, scale player
17
levels = {
18
   forest1 = {
19
      objects = function() return {
20
                      Tile:new{image = 'data/forest1-bg.png'},
15 by Josh C
more transitions and collisions
21
                      Player:new{x = 200, y = 380,
11 by Josh C
player min/maxY on a level
22
                                 minY = 330, maxY = 500,
23
                                 image = 'data/forest1-player.png'},
9 by Josh C
levels hash, scale player
24
                      Tile:new{image = 'data/forest1-fg.png'}
25
                   } end,
26
   },
27
   shore = {
28
      objects = function() return {
29
                      Tile:new{image = 'data/shore-bg.png'},
11 by Josh C
player min/maxY on a level
30
                      Player:new{x = 145, y = 133,
31
                                 minY = 133, maxY = 133,
32
                                 image = 'data/shore-player.png'},
12 by Josh C
area transitions
33
                      Tile:new{image = 'data/shore-fg.png'},
15 by Josh C
more transitions and collisions
34
                      Transition:new{x = 10, y = 133, target = 'forest1',
35
                                     targetX = 735, targetY = 370}
9 by Josh C
levels hash, scale player
36
                   } end
18 by Josh C
village, lake
37
   },
38
   lake = {
39
      objects = function() return {
40
                      Tile:new{image = 'data/lake-bg.png'},
41
                      Player:new{x = 540, y = 266,
42
                                 image = 'data/lake-player.png'},
43
                   }
44
                end
45
   },
46
   village = {
47
      objects = function() return {
48
                      Tile:new{image = 'data/village-bg.png'},
49
                      Player:new{x = 121, y = 440,
50
                                 image = 'data/village-player.png'},
51
                   }
52
                end
9 by Josh C
levels hash, scale player
53
   }
54
}
55
5 by Josh C
load a level, move a player around
56
GameView = View:extend {
21 by Josh C
level tweaks
57
   level = 'shore', --default level
5 by Josh C
load a level, move a player around
58
   onNew = function (self)
16 by Josh C
fade in
59
              --print('loading level: '..self.level)
60
              for _, obj in ipairs(levels[self.level].objects()) do
61
                 self:add(obj)
62
              end
63
              for _, obj in ipairs(svg_objects[self.level]) do
20 by Josh C
don't pick things up twice
64
                 if not the.inventory.items[obj.name] then
65
                    self:add(obj)
66
                 end
16 by Josh C
fade in
67
              end
68
19 by Josh C
inventory (and a flower)
69
              self:add(the.inventory)
70
16 by Josh C
fade in
71
              self:flash({0,0,0})
72
5 by Josh C
load a level, move a player around
73
              --self.focus = the.player
74
              --self:clampTo(self.map)
75
           end,
76
   draw = function (self, x, y)
77
             View.draw(self, x, y)
19 by Josh C
inventory (and a flower)
78
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
7 by Josh C
show version
79
             love.graphics.print('version:' .. VERSION, 20, 570)
8 by Josh C
add shore, first pass level switching
80
          end,
81
   onUpdate = function (self, dt)
82
                 if the.keys:justPressed('a') then
16 by Josh C
fade in
83
                    the.app.view = GameView:new{level = 'forest1'}
8 by Josh C
add shore, first pass level switching
84
                 elseif the.keys:justPressed('b') then
16 by Josh C
fade in
85
                    the.app.view = GameView:new{level = 'shore'}
13 by Josh C
pull data from svg to place objects into the world
86
                 end
8 by Josh C
add shore, first pass level switching
87
              end
5 by Josh C
load a level, move a player around
88
}
89
90
the.app = App:new {
91
   onRun = function (self)
92
              self.view = GameView:new()
93
              if DEBUG then
94
                 self.console:watch('VERSION', 'VERSION')
95
                 self.console:watch('updateTook', 'the.updateTook')
16 by Josh C
fade in
96
                 self.console:watch('view.tween.status', 'the.app.view.tween.status()')
97
                 self.console:watch('view.tween.active', 'the.app.view.tween.active')
5 by Josh C
load a level, move a player around
98
                 --self.console:watch('drawTook', 'the.drawTook')
12 by Josh C
area transitions
99
100
                 -- back off that dark overlay a bit
101
                 self.console.fill.fill[4] = 75
5 by Josh C
load a level, move a player around
102
              end
103
           end,
104
   onUpdate = function (self, dt)
105
                 if the.keys:justPressed('escape') then
106
                    self.quit()
107
                 end
108
              end,
109
   update = function (self, dt)
110
               the.updateStart = love.timer.getMicroTime()
111
               App.update(self, dt)
112
               if the.updateStart then
113
                  the.updateTook = love.timer.getMicroTime() - the.updateStart
114
               end
115
            end
116
}
18 by Josh C
village, lake
117
118
-- for accessing from debug console
119
function l(level)
120
   the.app.view = GameView:new{level = level}
121
end