/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-26 01:11:27 UTC
  • Revision ID: josh@9ix.org-20130626011127-7e7z5ed0r0xmtva3
show planet labels, get better names

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
                  end
20
20
}
21
21
 
22
 
local velLimit = 400
 
22
local velLimit = 300
23
23
--local velLimit = 50
24
24
SpacePlayer = Tile:extend{
25
25
   image = 'data/ship.png',
28
28
   lastFired = 0,
29
29
   money = 2000, -- what to use for money symbol? ✪ or ☥ or Ⓐ?
30
30
   goods = {},
 
31
   cargoSpace = 20,
31
32
   onNew = function(self)
32
33
              self.thrust = Tile:new{image = 'data/thrust.png'}
33
34
              self.shield = Shield:new{ship = self}
61
62
                           b = Bullet:new{
62
63
                              x = self.x + self.width / 2,
63
64
                              y = self.y + self.height / 2,
64
 
                              rotation = self.rotation
 
65
                              rotation = self.rotation,
 
66
                              source = self
65
67
                           }
66
68
                           self.lastFired = love.timer.getTime()
67
69
                     end
75
77
                   self:collide(the.rockColliders)
76
78
                end,
77
79
   onCollide = function(self, other)
78
 
                  if other:instanceOf(Bullet) then
 
80
                  if other:instanceOf(Bullet) and other.source ~= self then
79
81
                     if self.shield.strength == 0 then
80
82
                        -- die
81
83
                        the.app.view:add( Boom:new {
88
90
                        self.thrust:die()
89
91
                     else
90
92
                        self.shield:onHit()
91
 
                        other:die()
92
 
                        the.bullets:remove(other)
93
93
                     end
 
94
 
 
95
                     other:die()
 
96
                     the.bullets:remove(other)
94
97
                  end
95
98
 
96
99
                  if other:instanceOf(RockCollider) then
102
105
 
103
106
                     self:die()
104
107
                     self.thrust:die()
105
 
 
106
 
                     the.over.visible = true
107
 
                     the.instructions.visible = true
108
 
                     the.app.view:updateScore()
109
 
 
110
 
                     local score = love.timer.getTime() - the.app.view.gameStart
111
 
                     if score > the.storage.data.highScore then
112
 
                        the.storage.data.highScore = score
113
 
                        the.storage:save()
114
 
 
115
 
                        the.highScore.text = string.format(
116
 
                           'High Score: %d:%02d', score / 60, score % 60
117
 
                        )
118
 
                     end
 
108
                  end
 
109
 
 
110
                  if not self.active then
 
111
                     the.interface:add(GameOver:new())
119
112
                  end
120
113
               end,
121
114
   buy = function(self, good, price)
122
 
            if self.money >= price then
 
115
            if self.money >= price and self:availableSpace() > 0 then
123
116
               self.goods[good] = (self.goods[good] or 0) + 1
124
117
               self.money = self.money - price
125
118
            end
129
122
                self.goods[good] = self.goods[good] - 1
130
123
                self.money = self.money + price
131
124
             end
132
 
          end
 
125
          end,
 
126
   availableSpace = function(self)
 
127
                       local cargo = 0
 
128
                       for _, amt in pairs(self.goods) do
 
129
                          cargo = cargo + amt
 
130
                       end
 
131
 
 
132
                       return self.cargoSpace - cargo
 
133
                    end
133
134
}
 
 
b'\\ No newline at end of file'