/traderous

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

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-10-21 18:31:55 UTC
  • Revision ID: josh@9ix.org-20131021183155-vl7pxaor2u3pw0t0
have enemies disengage when you land

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
   money = 2000, -- what to use for money symbol? ✪ or ☥ or Ⓐ?
30
30
   goods = {},
31
31
   cargoSpace = 20,
 
32
   onPlanet = false,
 
33
   kills = 0,
32
34
   onNew = function(self)
33
35
              self.thrust = Tile:new{image = 'data/thrust.png'}
34
36
              self.shield = Shield:new{ship = self}
67
69
                           }
68
70
                           self.lastFired = love.timer.getTime()
69
71
                     end
 
72
 
 
73
                     if the.keys:justPressed('x') then
 
74
                        --self:doHit()
 
75
                     end
70
76
                  end,
71
77
   onUpdate = function(self)
72
78
                 self.thrust.x = self.x - self.width
76
82
   onEndFrame = function(self)
77
83
                   self:collide(the.rockColliders)
78
84
                end,
 
85
   doHit = function(self)
 
86
              if self.shield.strength == 0 then
 
87
                 -- die
 
88
                 the.app.view:add( Boom:new {
 
89
                                      x = self.x,
 
90
                                      y = self.y,
 
91
                                      velocity = { rotation = 5 }
 
92
                                   })
 
93
 
 
94
                 self:die()
 
95
                 self.thrust:die()
 
96
              else
 
97
                 self.shield:onHit()
 
98
              end
 
99
 
 
100
              if not self.active then
 
101
                 the.interface:add(GameOver:new())
 
102
              end
 
103
           end,
79
104
   onCollide = function(self, other)
80
105
                  if other:instanceOf(Bullet) and other.source ~= self then
81
 
                     if self.shield.strength == 0 then
82
 
                        -- die
83
 
                        the.app.view:add( Boom:new {
84
 
                                             x = self.x,
85
 
                                             y = self.y,
86
 
                                             velocity = { rotation = 5 }
87
 
                                          })
88
 
 
89
 
                        self:die()
90
 
                        self.thrust:die()
91
 
                     else
92
 
                        self.shield:onHit()
93
 
                     end
 
106
                     self:doHit()
94
107
 
95
108
                     other:die()
96
109
                     the.bullets:remove(other)
106
119
                     self:die()
107
120
                     self.thrust:die()
108
121
                  end
109
 
 
110
 
                  if not self.active then
111
 
                     the.over.visible = true
112
 
                     the.instructions.visible = true
113
 
                  end
114
122
               end,
115
123
   buy = function(self, good, price)
116
124
            if self.money >= price and self:availableSpace() > 0 then
131
139
                       end
132
140
 
133
141
                       return self.cargoSpace - cargo
134
 
                    end
 
142
                    end,
 
143
   save = function(self)
 
144
             -- save player data
 
145
             the.storage.data.player = {x = self.x,
 
146
                                        y = self.y,
 
147
                                        money = self.money,
 
148
                                        goods = self.goods,
 
149
                                        cargoSpace = self.cargoSpace
 
150
                                     }
 
151
             the.storage:save()
 
152
          end
135
153
}
 
 
b'\\ No newline at end of file'