/traderous

To get this branch, use:
bzr branch /bzr/traderous

« back to all changes in this revision

Viewing changes to cursor.lua

  • Committer: Josh C
  • Date: 2013-05-07 22:24:32 UTC
  • Revision ID: josh@9ix.org-20130507222432-74d3ul1p8ffq40s5
only fire if cursor is in target area.  change cursor to reflect this.

Show diffs side-by-side

added added

removed removed

1
1
Cursor = Tile:extend {
2
2
   image = 'data/cursor.png',
 
3
   inTargetArea = function(self)
 
4
                     -- TODO: memoize this per-tick
 
5
 
 
6
                     local mouseAngle = math.atan2(
 
7
                        love.mouse.getY() - the.app.height/2,
 
8
                        love.mouse.getX() - the.app.width/2
 
9
                     )
 
10
                     local mouseVsShipAbs = math.abs(the.player.rotation - mouseAngle)
 
11
                     local mouseVsShip = math.min(2*math.pi - mouseVsShipAbs,
 
12
                                                  mouseVsShipAbs)
 
13
 
 
14
                     return mouseVsShip < 0.75
 
15
                  end,
3
16
   onUpdate = function(self)
4
 
                 if the.keys:justPressed('t') then
 
17
                 if self:inTargetArea() then
5
18
                    self.image = 'data/cursor-target.png'
6
 
                 end
7
 
                 if the.keys:justPressed('c') then
 
19
                 else
8
20
                    self.image = 'data/cursor.png'
9
21
                 end
10
 
 
11
22
              end,
12
23
   onEndFrame = function(self)
13
24
                   self.x = love.mouse.getX() + 8 + the.player.x - the.app.width / 2