/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-05-07 21:30:17 UTC
  • Revision ID: josh@9ix.org-20130507213017-i9xbjk0qjjqe91dk
constant velocity for bullets.  using hump.vector e9b86ef 

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
}
21
21
 
22
22
local velLimit = 600
23
 
--local velLimit = 50
24
23
SpacePlayer = Tile:extend{
25
24
   image = 'data/ship.png',
26
25
   maxVelocity = {x=velLimit,y=velLimit},
38
37
 
39
38
                     --TODO: acceleration limit.  It should at least be proportional (not 16:9)
40
39
 
41
 
                     if the.mouse:pressed() and -- assumes left button
42
 
                       love.timer.getTime() - self.lastFired > 0.25 and
43
 
                       the.cursor:inTargetArea() then
 
40
                     if the.mouse:pressed() then -- assumes left button
 
41
                        if love.timer.getTime() - self.lastFired > 0.25 then
44
42
                           --print('pew')
45
43
                           b = Bullet:new{
46
44
                              x = self.x, y = self.y,
 
45
                              rotation = self.rotation,
47
46
                           }
48
47
                           the.app.view:add(b)
49
48
                           self.lastFired = love.timer.getTime()
 
49
                        end
50
50
                     end
51
51
                  end,
52
52
   onUpdate = function(self)