/ld28

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-12-15 20:03:17 UTC
  • Revision ID: josh@9ix.org-20131215200317-nr8no8pnv222eo39
R = restart level

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
require 'player'
12
12
require 'clone'
13
13
require 'goal'
 
14
require 'goal_person'
 
15
 
 
16
dirs = {'left', 'right', 'up', 'down'}
14
17
 
15
18
GameView = View:extend {
16
19
   onNew = function (self)
25
28
              }
26
29
              self:add(the.player)
27
30
 
 
31
              the.goalPerson = GoalPerson:new{
 
32
                 x = math.random(2, tw-2) * 16,
 
33
                 y = math.random(2, th-2) * 16
 
34
              }
 
35
              self:add(the.goalPerson)
 
36
 
28
37
              the.clones = Group:new()
29
38
              self:add(the.clones)
30
39
              for _ = 1, 15 do
33
42
                                   y = math.random(2, th-2) * 16
34
43
                                })
35
44
              end
 
45
 
 
46
              if self.level == 3 then
 
47
                 self:add(Text:new{
 
48
                             text = "R = Restart level",
 
49
                             x = 20, y = 20,
 
50
                             width = 200
 
51
                          })
 
52
              end
 
53
 
 
54
              if self.level ~= 1 then
 
55
                 self:flash({0,0,0})
 
56
              end
36
57
           end,
37
58
   onUpdate = function(self, dt)
38
59
                 if the.player.moved then
39
 
                    -- this should encapsulate
 
60
                    the.clones:collide(the.player)
 
61
                    the.goalPerson:collide(the.player)
 
62
 
 
63
                    if self.level ~= 2 then
 
64
                       the.goalPerson:doMove()
 
65
                    end
 
66
 
40
67
                    for _, np in ipairs(the.clones.sprites) do
41
68
                       np:doMove()
42
69
                    end
43
70
 
 
71
                    -- yeah, again.  once for flip, twice for displace
 
72
                    the.clones:collide(the.player)
 
73
                    the.goalPerson:collide(the.player) -- will this fix?
 
74
 
44
75
                    the.clones:collide(self.map)
45
76
                    the.player:collide(self.map)
 
77
                    the.goalPerson:collide(self.map)
46
78
 
47
79
                    the.clones:collide()
48
 
                    the.clones:collide(the.player)
 
80
 
 
81
                    if math.random(1,6) == 1 then
 
82
                       local c = the.clones.sprites[math.random(the.clones:count())]
 
83
                       if self.level == 3 and not c.cured then
 
84
                          c.image = 'data/goal.png'
 
85
                       end
 
86
                    end
49
87
 
50
88
                    the.player.moved = false
51
89
                 end
52
90
 
53
 
                 if the.keys:justPressed('escape', 'q') then
54
 
                    the.app:quit()
 
91
                 if the.keys:justPressed('r') then
 
92
                    the.app.view = GameView:new{level = self.level}
55
93
                 end
56
94
              end,
57
95
}
58
96
 
 
97
SlowView = View:extend {
 
98
   onNew = function(self)
 
99
              local text = Text:new {
 
100
                 text = 'Your movements have slowed...',
 
101
                 --height = the.app.height,
 
102
                 width = the.app.width,
 
103
                 align = 'center',
 
104
                 font = 18
 
105
              }
 
106
              text:centerAround(the.app.width / 2, the.app.height / 2)
 
107
              self:add(text)
 
108
 
 
109
              self.timer:after(2, function()
 
110
                 the.app.view = GameView:new{level = self.level}
 
111
              end)
 
112
           end
 
113
}
 
114
 
 
115
WinView = View:extend {
 
116
   onNew = function(self)
 
117
              local text = Text:new {
 
118
                 text = 'You win!',
 
119
                 width = the.app.width,
 
120
                 align = 'center',
 
121
                 font = 18
 
122
              }
 
123
              text:centerAround(the.app.width / 2, the.app.height / 2)
 
124
              self:add(text)
 
125
           end
 
126
}
 
127
 
 
128
TitleView = View:extend {
 
129
   onNew = function(self)
 
130
              self:add(Tile:new{
 
131
                          image = 'data/title.png'
 
132
                       })
 
133
           end,
 
134
   onUpdate = function(self)
 
135
                 if the.keys:allJustPressed() then
 
136
                    the.app.view = GameView:new{level = 1}
 
137
                 end
 
138
              end
 
139
}
 
140
 
59
141
the.app = App:new {
60
142
   name = "LD28",
61
143
   fps = 30,
62
144
   onRun = function (self)
63
145
              print('Version: ' .. VERSION)
64
146
 
65
 
              self.view = GameView:new()
 
147
              --self.view = GameView:new{level = 1}
 
148
              self.view = TitleView:new()
66
149
 
67
150
              if DEBUG then
68
151
                 self.console:watch('VERSION', 'VERSION')
 
152
                 self.console:watch('level', 'the.view.level')
69
153
 
70
154
                 -- back off that dark overlay a bit
71
155
                 self.console.fill.fill[4] = 75
76
160
                    local ss = love.graphics.newScreenshot()
77
161
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
78
162
                 end
 
163
 
 
164
                 if the.keys:justPressed('escape', 'q') then
 
165
                    the.app:quit()
 
166
                 end
79
167
              end
80
168
}