/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:06:49 UTC
  • Revision ID: josh@9ix.org-20131215200649-pkajtwnaq6l5guf3
vague warning about the blue things

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
STRICT = true
 
2
DEBUG = true
 
3
 
 
4
require 'zoetrope'
 
5
deque = require 'deque'
 
6
--inspect = require 'inspect'
 
7
require 'sprite'
 
8
 
 
9
require 'util'
 
10
require 'version'
 
11
require 'player'
 
12
require 'clone'
 
13
require 'goal'
 
14
require 'goal_person'
 
15
 
 
16
dirs = {'left', 'right', 'up', 'down'}
 
17
 
 
18
GameView = View:extend {
 
19
   onNew = function (self)
 
20
              self:loadLayers('data/map.lua')
 
21
 
 
22
              local tw = math.floor(the.app.width / 16)
 
23
              local th = math.floor(the.app.height / 16)
 
24
 
 
25
              the.player = Player:new{
 
26
                 x = math.random(2, tw-2) * 16,
 
27
                 y = math.random(2, th-2) * 16
 
28
              }
 
29
              self:add(the.player)
 
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
 
 
37
              the.clones = Group:new()
 
38
              self:add(the.clones)
 
39
              for _ = 1, 15 do
 
40
                 the.clones:add(Clone:new {
 
41
                                   x = math.random(2, tw-2) * 16,
 
42
                                   y = math.random(2, th-2) * 16
 
43
                                })
 
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
 
57
           end,
 
58
   onUpdate = function(self, dt)
 
59
                 if the.player.moved then
 
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
 
 
67
                    for _, np in ipairs(the.clones.sprites) do
 
68
                       np:doMove()
 
69
                    end
 
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
 
 
75
                    the.clones:collide(self.map)
 
76
                    the.player:collide(self.map)
 
77
                    the.goalPerson:collide(self.map)
 
78
 
 
79
                    the.clones:collide()
 
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
 
87
 
 
88
                    the.player.moved = false
 
89
                 end
 
90
 
 
91
                 if the.keys:justPressed('r') then
 
92
                    the.app.view = GameView:new{level = self.level}
 
93
                 end
 
94
              end,
 
95
}
 
96
 
 
97
SlowView = View:extend {
 
98
   onNew = function(self)
 
99
              local texts = {
 
100
                 '',
 
101
                 "Your movements have slowed...",
 
102
                 "Your movements have slowed...\nand they no longer only imitate you..."
 
103
              }
 
104
 
 
105
              local text = Text:new {
 
106
                 text = texts[self.level],
 
107
                 --height = the.app.height,
 
108
                 width = the.app.width,
 
109
                 align = 'center',
 
110
                 font = 18
 
111
              }
 
112
              text:centerAround(the.app.width / 2, the.app.height / 2)
 
113
              self:add(text)
 
114
 
 
115
              self.timer:after(2, function()
 
116
                 the.app.view = GameView:new{level = self.level}
 
117
              end)
 
118
           end
 
119
}
 
120
 
 
121
WinView = View:extend {
 
122
   onNew = function(self)
 
123
              local text = Text:new {
 
124
                 text = 'You win!',
 
125
                 width = the.app.width,
 
126
                 align = 'center',
 
127
                 font = 18
 
128
              }
 
129
              text:centerAround(the.app.width / 2, the.app.height / 2)
 
130
              self:add(text)
 
131
           end
 
132
}
 
133
 
 
134
TitleView = View:extend {
 
135
   onNew = function(self)
 
136
              self:add(Tile:new{
 
137
                          image = 'data/title.png'
 
138
                       })
 
139
           end,
 
140
   onUpdate = function(self)
 
141
                 if the.keys:allJustPressed() then
 
142
                    the.app.view = GameView:new{level = 1}
 
143
                 end
 
144
              end
 
145
}
 
146
 
 
147
the.app = App:new {
 
148
   name = "LD28",
 
149
   fps = 30,
 
150
   onRun = function (self)
 
151
              print('Version: ' .. VERSION)
 
152
 
 
153
              --self.view = GameView:new{level = 1}
 
154
              self.view = TitleView:new()
 
155
 
 
156
              if DEBUG then
 
157
                 self.console:watch('VERSION', 'VERSION')
 
158
                 self.console:watch('level', 'the.view.level')
 
159
 
 
160
                 -- back off that dark overlay a bit
 
161
                 self.console.fill.fill[4] = 75
 
162
              end
 
163
           end,
 
164
   onUpdate = function (self, dt)
 
165
                 if the.keys:justPressed('f1') then
 
166
                    local ss = love.graphics.newScreenshot()
 
167
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
168
                 end
 
169
 
 
170
                 if the.keys:justPressed('escape', 'q') then
 
171
                    the.app:quit()
 
172
                 end
 
173
              end
 
174
}