/spacey

To get this branch, use:
bzr branch http://9ix.org/bzr/spacey

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-05-05 01:05:32 UTC
  • Revision ID: josh@9ix.org-20130505010532-905cpj0k6o7kpm02
ship graphic.  point it in the direction of movement.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
require 'version'
8
8
require 'player'
9
 
require 'enemy'
10
 
require 'cursor'
11
 
require 'bullet'
12
 
 
13
 
util = {
14
 
   signOf = function(value)
15
 
               if value >= 0 then
16
 
                  return 1
17
 
               else
18
 
                  return -1
19
 
               end
20
 
            end
21
 
}
22
9
 
23
10
GameView = View:extend {
24
11
   onNew = function (self)
35
22
              the.player = SpacePlayer:new{x=400,y=300}
36
23
              self:add(the.player)
37
24
 
38
 
              self:add(Enemy:new{x=400, y=300})
39
 
 
40
 
              self:add(Cursor:new())
41
 
 
42
25
              love.mouse.setGrab(true)
43
 
              love.mouse.setVisible(false)
 
26
              --love.mouse.setVisible(false)
44
27
 
45
28
              --self:loadLayers('data/map.lua')
46
29
              self.focus = the.player