/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-13 21:23:20 UTC
  • Revision ID: josh@9ix.org-20130513212320-t1sgc5dcpjwmjp38
mirror (contains a bug where things in the corner aren't getting mirrored?

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
require 'zoetrope'
5
5
--__ = require 'underscore'
 
6
vector = require 'vector'
6
7
 
7
8
require 'version'
 
9
require 'wrap_tile'
8
10
require 'player'
9
11
require 'enemy'
 
12
require 'cursor'
 
13
require 'bullet'
10
14
 
11
15
util = {
12
16
   signOf = function(value)
20
24
 
21
25
GameView = View:extend {
22
26
   onNew = function (self)
23
 
              for x = 1,30 do
24
 
                 for y = 1,30 do
25
 
                    self:add(Fill:new{x=x*400, y=y*400,
26
 
                                      width = 32, height = 32,
27
 
                                      fill = {0,0,255}
28
 
                                   })
29
 
                 end
30
 
              end
 
27
              -- for x = 1,30 do
 
28
              --    for y = 1,30 do
 
29
              --       self:add(Fill:new{x=x*400, y=y*400,
 
30
              --                         width = 32, height = 32,
 
31
              --                         fill = {0,0,255}
 
32
              --                      })
 
33
              --    end
 
34
              -- end
 
35
 
 
36
              the.bg = Tile:new{
 
37
                 image = 'data/stars3.png',
 
38
                 -- 1366x768 * 3
 
39
                 width = 4098,
 
40
                 height = 2304
 
41
              }
 
42
              self:add(the.bg)
31
43
 
32
44
              --the.player = CrystalPlayer:new{x=400,y=300}
33
 
              the.player = SpacePlayer:new{x=400,y=300}
 
45
              the.player = SpacePlayer:new{x=1366,y=768}
34
46
              self:add(the.player)
35
47
 
36
48
              self:add(Enemy:new{x=400, y=300})
37
49
 
 
50
              the.cursor = Cursor:new()
 
51
              self:add(the.cursor)
 
52
 
38
53
              love.mouse.setGrab(true)
39
 
              --love.mouse.setVisible(false)
 
54
              love.mouse.setVisible(false)
40
55
 
41
56
              --self:loadLayers('data/map.lua')
42
57
              self.focus = the.player
69
84
              if DEBUG then
70
85
                 self.console:watch('VERSION', 'VERSION')
71
86
                 self.console:watch('updateTook', 'the.updateTook')
 
87
                 self.console:watch('the.player.x', 'the.player.x')
 
88
                 self.console:watch('the.player.y', 'the.player.y')
 
89
                 self.console:watch('the.app.width', 'the.app.width')
 
90
                 self.console:watch('the.app.height', 'the.app.height')
72
91
                 --self.console:watch('drawTook', 'the.drawTook')
 
92
 
 
93
                 -- back off that dark overlay a bit
 
94
                 self.console.fill.fill[4] = 75
73
95
              end
74
96
           end,
75
97
   onUpdate = function (self, dt)