/ld27

To get this branch, use:
bzr branch http://9ix.org/bzr/ld27
3 by Josh C
map loading, super basic movement
1
STRICT = true
2
DEBUG = true
3
4
require 'zoetrope'
5
6
--require 'group'
7
8
require 'version'
9
--require 'wrap_tile'
10
require 'player'
8 by Josh C
goal... thing
11
require 'goal'
3 by Josh C
map loading, super basic movement
12
13
GameView = View:extend {
14
   gameStart = 0,
15
   onNew = function (self)
16
              self:loadLayers('data/map.lua')
17
              self.focus = the.player
4 by Josh C
switch mazes
18
              self:clampTo(self.bg)
19
9 by Josh C
3rd maze... reverse
20
              self.mazes = {self.maze1, self.maze2, self.maze3}
21
              self.bgs = {self.bg, self.bg, self.bg2}
22
              for _, maze in ipairs(self.mazes) do maze:die() end
23
              for _, bg in ipairs(self.bgs) do bg.visible = false end
24
25
              self.maze1.moveMod = 1
26
              self.maze2.moveMod = 1
27
              self.maze3.moveMod = -1
3 by Josh C
map loading, super basic movement
28
29
              --the.interface = Group:new()
30
31
              --self:add(the.interface)
32
5 by Josh C
fade in to let you know change is coming
33
              self:switchMaze()
34
4 by Josh C
switch mazes
35
              self.gameStart = love.timer.getMicroTime()
36
              self.lastChange = love.timer.getMicroTime()
3 by Josh C
map loading, super basic movement
37
           end,
38
   onUpdate = function(self, dt)
4 by Josh C
switch mazes
39
                 if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
3 by Josh C
map loading, super basic movement
40
                    -- switch maze
5 by Josh C
fade in to let you know change is coming
41
                    self:switchMaze()
3 by Josh C
map loading, super basic movement
42
                 end
43
4 by Josh C
switch mazes
44
                 the.activeMaze:collide(the.player)
45
46
3 by Josh C
map loading, super basic movement
47
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
48
                 --    if not mirror.of then
49
                 --       print('mirror:' .. inspect(mirror))
50
                 --       error('mirror OF NOTHING')
51
                 --    end
52
                 -- end
53
              end,
5 by Josh C
fade in to let you know change is coming
54
   switchMaze = function(self)
9 by Josh C
3rd maze... reverse
55
                   if the.activeMaze then
56
                      repeat
57
                         newMaze = math.random(3)
58
                      until self.mazes[newMaze] ~= the.activeMaze
59
60
                      the.activeMaze:die()
61
                      the.activeMaze = self.mazes[newMaze]
62
63
                      the.activeBg.visible = false
64
                      the.activeBg = self.bgs[newMaze]
65
                   else
5 by Josh C
fade in to let you know change is coming
66
                      the.activeMaze = self.maze2
9 by Josh C
3rd maze... reverse
67
                      the.activeBg = self.bg
5 by Josh C
fade in to let you know change is coming
68
                   end
9 by Josh C
3rd maze... reverse
69
5 by Josh C
fade in to let you know change is coming
70
                   the.activeMaze:revive()
9 by Josh C
3rd maze... reverse
71
                   the.activeBg.visible = true
5 by Josh C
fade in to let you know change is coming
72
6 by Josh C
how about fade to black instead?
73
                   self._fx = {0,0,0,0}
5 by Josh C
fade in to let you know change is coming
74
                   self.tween:start(self._fx, 4, 150, 10, 'quadIn')
75
76
                   self.lastChange = love.timer.getMicroTime()
77
                end,
3 by Josh C
map loading, super basic movement
78
   onEndFrame = function(self)
79
                   --the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
80
                   --the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
81
                end
82
}
83
84
MenuScreen = View:extend {
85
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
86
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
87
   onNew = function(self)
88
              self:add(self.title)
89
              self.title:centerAround(400, 200)
90
           end,
91
   onUpdate = function(self, elapsed)
92
                 if the.keys:allJustPressed() then
93
                    the.app.view = GameView:new()
94
                 end
95
              end
96
}
97
98
the.app = App:new {
99
   onRun = function (self)
100
              print('Version: ' .. VERSION)
101
102
              self.view = GameView:new()
103
104
              if DEBUG then
105
                 self.console:watch('VERSION', 'VERSION')
106
107
                 -- back off that dark overlay a bit
108
                 self.console.fill.fill[4] = 75
109
              end
110
           end,
111
   onUpdate = function (self, dt)
112
                 if the.keys:justPressed('escape') then
113
                    self.quit()
114
                 end
115
              end
116
}