/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-10 23:42:44 UTC
  • Revision ID: josh@9ix.org-20130610234244-r0qlqjqjymdc5nhs
move fullscreen into love.run so it doesn't keep toggling on ctl-alt-R

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
   maxVelocity = {x=velLimit,y=velLimit},
27
27
   minVelocity = {x=-velLimit, y=-velLimit},
28
28
   lastFired = 0,
29
 
   money = 2000, -- what to use for money symbol? ✪ or ☥ or Ⓐ?
30
 
   goods = {},
31
29
   onNew = function(self)
32
30
              self.thrust = Tile:new{image = 'data/thrust.png'}
33
31
           end,
60
58
                           b = Bullet:new{
61
59
                              x = self.x + self.width / 2,
62
60
                              y = self.y + self.height / 2,
63
 
                              rotation = self.rotation
64
61
                           }
65
62
                           self.lastFired = love.timer.getTime()
66
63
                     end
98
95
                        )
99
96
                     end
100
97
                  end
101
 
               end,
102
 
   buy = function(self, good, price)
103
 
            if self.money >= price then
104
 
               self.goods[good] = (self.goods[good] or 0) + 1
105
 
               self.money = self.money - price
106
 
            end
107
 
         end,
108
 
   sell = function(self, good, price)
109
 
             if self.goods[good] and self.goods[good] > 0 then
110
 
                self.goods[good] = self.goods[good] - 1
111
 
                self.money = self.money + price
112
 
             end
113
 
          end
 
98
               end
114
99
}
 
 
b'\\ No newline at end of file'