/traderous

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

« back to all changes in this revision

Viewing changes to enemy.lua

  • Committer: Josh C
  • Date: 2013-06-19 00:50:23 UTC
  • Revision ID: josh@9ix.org-20130619005023-necyd2i8kgqbp1s9
shield

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
-- player = 300 accel, 400 velLimit
2
2
local accelLimit = 150
3
 
local velLimit = 300
 
3
local velLimit = 200
4
4
Enemy = Tile:extend {
5
5
   image = 'data/enemy.png',
6
6
   maxVelocity = {x=velLimit,y=velLimit},
7
7
   minVelocity = {x=-velLimit, y=-velLimit},
8
8
   lastFired = 0,
9
 
   state = 'patrolling',
10
9
   onNew = function (self)
11
10
              self.thrust = Tile:new{image = 'data/thrust.png'}
12
11
              --the.app.view:add(self.thrust)
13
 
              self.shield = Shield:new{ship = self}
14
 
 
15
 
              self:chooseTarget()
16
12
           end,
17
13
   onStartFrame = function (self)
18
14
 
19
 
                     local tvec = vector.new(self.target.x - self.x,
20
 
                                             self.target.y - self.y)
21
 
 
22
 
 
23
 
                     local tAngle = math.atan2(tvec.y, tvec.x)
24
 
                     local aDiff = self.rotation - tAngle
 
15
                     local pvec = vector.new(the.player.x - self.x,
 
16
                                             the.player.y - self.y)
 
17
 
 
18
 
 
19
                     local pAngle = math.atan2(pvec.y, pvec.x)
 
20
                     local aDiff = self.rotation - pAngle
25
21
 
26
22
                     while aDiff < (-math.pi) do
27
23
                        --print(aDiff .. ' < -π')
41
37
                        self.velocity.rotation = 0
42
38
                     end
43
39
 
44
 
                     if self.state == 'combat' and not the.player.active then
45
 
                        self.state = 'patrolling'
46
 
                     end
47
 
 
48
 
                     local pdist2 = vector.new(the.player.x - self.x,
49
 
                                               the.player.y - self.y):len2()
50
 
 
51
 
                     if pdist2 < (the.app.width / 2)^2 then
52
 
                        -- if player is roughly on enemy's screen
53
 
                        if self.state == 'patrolling' and the.player.active then
54
 
                           self.state = 'combat'
55
 
                           self.target = the.player
56
 
                        end
57
 
                     elseif pdist2 > (3 * the.app.width)^2 then
58
 
                        if self.state == 'combat' then
59
 
                           self.state = 'patrolling'
60
 
                           self:chooseTarget()
61
 
                        end
62
 
                     end
63
 
 
64
 
                     local tdist2 = tvec:len2()
65
 
 
66
 
                     if tdist2 > 400^2 then
 
40
                     local pdist2 = pvec:len2()
 
41
 
 
42
                     if pdist2 > 400^2 then -- ... if player dist > 64?
67
43
                        self.acceleration = vector.new(300, 0)
68
44
                        self.acceleration:rotate_inplace(self.rotation)
69
45
                        self.thrust.visible = true
72
48
                        self.thrust.visible = false
73
49
                     end
74
50
 
75
 
                     if tdist2 < 400^2 then
76
 
                        if self.state == 'patrolling' then
77
 
                           self:chooseTarget()
78
 
                        elseif self.state == 'combat' then
79
 
                           if math.abs(aDiff) < 0.5 * math.pi and
80
 
                             love.timer.getTime() - self.lastFired > 0.25 then
81
 
                             --print('pew')
82
 
                               b = Bullet:new{
83
 
                                  x = self.x + self.width / 2,
84
 
                                  y = self.y + self.height / 2,
85
 
                                  rotation = self.rotation,
86
 
                                  source = self
87
 
                               }
88
 
                               self.lastFired = love.timer.getTime()
89
 
                            end
90
 
                        end
 
51
                     if math.abs(aDiff) < 0.5 * math.pi and
 
52
                       pdist2 < 400^2 and
 
53
                       love.timer.getTime() - self.lastFired > 0.25 then
 
54
                       --print('pew')
 
55
                         b = Bullet:new{
 
56
                            x = self.x + self.width / 2,
 
57
                            y = self.y + self.height / 2,
 
58
                            rotation = self.rotation
 
59
                         }
 
60
                         self.lastFired = love.timer.getTime()
91
61
                     end
92
62
 
93
63
                  end,
96
66
                 self.thrust.y = self.y
97
67
                 self.thrust.rotation = self.rotation
98
68
              end,
99
 
   onCollide = function (self, other)
100
 
                  if other:instanceOf(Bullet) and other.source ~= self then
101
 
                     if self.shield.strength == 0 then
102
 
                        -- die
103
 
                        the.app.view:add( Boom:new {
104
 
                                             x = self.x,
105
 
                                             y = self.y,
106
 
                                             velocity = { rotation = 5 }
107
 
                                          })
108
 
 
109
 
                        self:die()
110
 
                        self.thrust:die()
111
 
                        self.shield:die()
112
 
                        the.enemies:remove(self)
113
 
                        the.app.view:remove(self.thrust)
114
 
                        the.app.view:remove(self.shield)
115
 
 
116
 
                        -- and add a new enemy somewhere else...
117
 
                        local e = Enemy:new{x = math.random(the.bg.width),
118
 
                                            y = math.random(the.bg.height)}
119
 
                        the.enemies:add(e)
120
 
                        the.view:add(e.thrust)
121
 
                        the.view:add(e.shield)
122
 
                     else
123
 
                        self.shield:onHit()
124
 
                     end
125
 
 
126
 
                     other:die()
127
 
                     the.bullets:remove(other)
128
 
                  end
129
 
               end,
130
 
   chooseTarget = function (self)
131
 
                     self.target = {
132
 
                        x = math.random(the.bg.width),
133
 
                        y = math.random(the.bg.height)
134
 
                     }
135
 
                  end
 
69
 
136
70
}
 
 
b'\\ No newline at end of file'