/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:06:14 UTC
  • Revision ID: josh@9ix.org-20130619010614-j3rbcv1c0my2tw0f
enemy shields and death

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
require 'boom'
19
19
require 'planet'
20
20
require 'trade_view'
 
21
require 'shield'
21
22
 
22
23
util = {
23
24
   signOf = function(value)
85
86
              the.interface = Group:new()
86
87
              the.planets = Group:new()
87
88
              the.indicators = Group:new()
 
89
              the.enemies = Group:new()
88
90
 
89
91
              the.bg = Tile:new{
90
92
                 image = 'data/stars3.png',
99
101
              the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
100
102
              self:add(the.player)
101
103
              self:add(the.player.thrust)
 
104
              self:add(the.player.shield)
 
105
 
 
106
              self:add(the.enemies)
102
107
 
103
108
              local e = Enemy:new{x=400, y=300}
104
 
              self:add(e)
 
109
              --local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
 
110
              the.enemies:add(e)
105
111
              self:add(e.thrust) -- why doesn't this work in Enemy.new?
 
112
              self:add(e.shield)
106
113
 
107
114
              self:add(the.bullets)
108
115
              self:add(the.indicators)
130
137
           end,
131
138
   onUpdate = function(self, dt)
132
139
                 the.bullets:collide(the.planets)
 
140
                 the.bullets:collide(the.player)
 
141
                 the.bullets:collide(the.enemies)
133
142
              end,
134
143
   onEndFrame = function(self)
135
144
                   the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2