/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-06-25 21:47:47 UTC
  • Revision ID: josh@9ix.org-20130625214747-bqjfaktdqj76aq8o
game over timer & penalty

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,
34
32
   onNew = function(self)
35
33
              self.thrust = Tile:new{image = 'data/thrust.png'}
36
34
              self.shield = Shield:new{ship = self}
69
67
                           }
70
68
                           self.lastFired = love.timer.getTime()
71
69
                     end
72
 
 
73
 
                     if the.keys:justPressed('x') then
74
 
                        --self:doHit()
75
 
                     end
76
70
                  end,
77
71
   onUpdate = function(self)
78
72
                 self.thrust.x = self.x - self.width
82
76
   onEndFrame = function(self)
83
77
                   self:collide(the.rockColliders)
84
78
                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,
104
79
   onCollide = function(self, other)
105
80
                  if other:instanceOf(Bullet) and other.source ~= self then
106
 
                     self:doHit()
 
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
107
94
 
108
95
                     other:die()
109
96
                     the.bullets:remove(other)
119
106
                     self:die()
120
107
                     self.thrust:die()
121
108
                  end
 
109
 
 
110
                  if not self.active then
 
111
                     the.interface:add(GameOver:new())
 
112
                  end
122
113
               end,
123
114
   buy = function(self, good, price)
124
115
            if self.money >= price and self:availableSpace() > 0 then
139
130
                       end
140
131
 
141
132
                       return self.cargoSpace - cargo
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
 
133
                    end
153
134
}
 
 
b'\\ No newline at end of file'