/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-14 04:19:19 UTC
  • Revision ID: josh@9ix.org-20131214041919-p4awvb0gf7axmzc1
add a couple other clones that move randomly

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
require 'version'
8
8
require 'player'
 
9
require 'notplayer'
9
10
 
10
11
GameView = View:extend {
11
12
   onNew = function (self)
13
14
              --self.focus = the.player
14
15
              --self:clampTo(self.bg)
15
16
 
16
 
              the.player = Player:new{x = the.app.width / 2,
17
 
                                      y = the.app.height / 2}
 
17
              the.player = Player:new{
 
18
                 x = math.random(the.app.width),
 
19
                 y = math.random(the.app.height),
 
20
              }
18
21
              self:add(the.player)
 
22
 
 
23
              the.notplayers = Group:new()
 
24
              self:add(the.notplayers)
 
25
              for _ = 1, math.random(1,2) do
 
26
                 the.notplayers:add(NotPlayer:new {
 
27
                                       x = math.random(the.app.width),
 
28
                                       y = math.random(the.app.height),
 
29
                                    })
 
30
              end
19
31
           end,
20
32
   onUpdate = function(self, dt)
 
33
                 if the.player.moved then
 
34
                    -- this should encapsulate
 
35
                    for _, np in ipairs(the.notplayers.sprites) do
 
36
                       np:doMove()
 
37
                    end
 
38
 
 
39
                    the.player.moved = false
 
40
                 end
 
41
 
21
42
                 if the.keys:justPressed('escape', 'q') then
22
43
                    the.app:quit()
23
44
                 end
25
46
}
26
47
 
27
48
the.app = App:new {
28
 
   name = "LD Warmup",
 
49
   name = "LD28",
29
50
   onRun = function (self)
30
51
              print('Version: ' .. VERSION)
31
52