/traderous

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-06-19 01:44:47 UTC
  • Revision ID: josh@9ix.org-20130619014447-mtpps0g4w7aeckpg
enemy "patrol path" (pick random destination)

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
 
106
106
              self:add(the.enemies)
107
107
 
108
 
              for _ = 1, 5 do
109
 
                 local e = Enemy:new{x = math.random(the.bg.width),
110
 
                                     y = math.random(the.bg.height)}
111
 
                 --local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
112
 
                 the.enemies:add(e)
113
 
                 self:add(e.thrust) -- why doesn't this work in Enemy.new?
114
 
                 self:add(e.shield)
115
 
              end
 
108
              --local e = Enemy:new{x=400, y=300}
 
109
              local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
 
110
              the.enemies:add(e)
 
111
              self:add(e.thrust) -- why doesn't this work in Enemy.new?
 
112
              self:add(e.shield)
116
113
 
117
114
              self:add(the.bullets)
118
115
              self:add(the.indicators)
119
116
              self:add(the.interface)
120
117
 
121
 
              for _ = 1, math.random(3, 6) do
 
118
              for _ = 1, math.random(6) do
122
119
                 local planet = Planet:new{
123
120
                    x = math.random(the.app.width / 2,
124
121
                                    the.bg.width - the.app.width / 2),