/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-16 02:07:23 UTC
  • Revision ID: josh@9ix.org-20130516020723-ntq1ydr2fczd9w5b
stick things into layers

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
                  end
20
20
}
21
21
 
22
 
local velLimit = 600
 
22
local velLimit = 400
23
23
--local velLimit = 50
24
 
SpacePlayer = Tile:extend{
 
24
SpacePlayer = WrapTile:extend{
25
25
   image = 'data/ship.png',
26
26
   maxVelocity = {x=velLimit,y=velLimit},
27
27
   minVelocity = {x=-velLimit, y=-velLimit},
37
37
                     self.rotation = math.atan2(mouseVec.y, mouseVec.x)
38
38
 
39
39
                     if mouseVec:len2() > 64^2 then
40
 
                        self.acceleration = vector.new(500, 0)
 
40
                        self.acceleration = vector.new(300, 0)
41
41
                        self.acceleration:rotate_inplace(self.rotation)
42
42
                     else
43
43
                        self.acceleration = {x=0, y=0}
 
44
                        if DEBUG and the.console.visible then
 
45
                           self.velocity = {x=0, y=0}
 
46
                        end
44
47
                     end
45
48
 
46
49
                     if the.mouse:pressed() and -- assumes left button
48
51
                       the.cursor:inTargetArea() then
49
52
                           --print('pew')
50
53
                           b = Bullet:new{
51
 
                              x = self.x, y = self.y,
 
54
                              x = self.x + self.width / 2,
 
55
                              y = self.y + self.height / 2,
52
56
                           }
53
 
                           the.app.view:add(b)
54
57
                           self.lastFired = love.timer.getTime()
55
58
                     end
56
59
                  end,
57
60
   onUpdate = function(self)
58
 
              end
 
61
              end,
 
62
   onEndFrame = function(self)
 
63
                   self:collide(the.rockColliders)
 
64
                end,
 
65
   onCollide = function(self, other)
 
66
                  if other:instanceOf(RockCollider) then
 
67
                     the.app.view:add( Boom:new {
 
68
                                          x = self.x,
 
69
                                          y = self.y,
 
70
                                          velocity = { rotation = 5 }
 
71
                                       })
 
72
 
 
73
                     self:die()
 
74
 
 
75
                     local over = Text:new{
 
76
                        y = self.y,
 
77
                        x = self.x - the.app.width / 2,
 
78
                        width = the.app.width,
 
79
                        align = 'center',
 
80
                        font = 25,
 
81
                        text = "Game Over" }
 
82
                     the.app.view:add(over)
 
83
                  end
 
84
               end
59
85
}
 
 
b'\\ No newline at end of file'