/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-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:
 
1
STRICT = true
 
2
DEBUG = true
 
3
 
 
4
require 'zoetrope'
 
5
--__ = require 'underscore'
 
6
vector = require 'vector'
 
7
 
 
8
require 'version'
 
9
require 'player'
 
10
require 'enemy'
 
11
require 'cursor'
 
12
require 'bullet'
 
13
 
 
14
util = {
 
15
   signOf = function(value)
 
16
               if value >= 0 then
 
17
                  return 1
 
18
               else
 
19
                  return -1
 
20
               end
 
21
            end
 
22
}
 
23
 
 
24
GameView = View:extend {
 
25
   onNew = function (self)
 
26
              for x = 1,30 do
 
27
                 for y = 1,30 do
 
28
                    self:add(Fill:new{x=x*400, y=y*400,
 
29
                                      width = 32, height = 32,
 
30
                                      fill = {0,0,255}
 
31
                                   })
 
32
                 end
 
33
              end
 
34
 
 
35
              --the.player = CrystalPlayer:new{x=400,y=300}
 
36
              the.player = SpacePlayer:new{x=400,y=300}
 
37
              self:add(the.player)
 
38
 
 
39
              self:add(Enemy:new{x=400, y=300})
 
40
 
 
41
              self:add(Cursor:new())
 
42
 
 
43
              love.mouse.setGrab(true)
 
44
              love.mouse.setVisible(false)
 
45
 
 
46
              --self:loadLayers('data/map.lua')
 
47
              self.focus = the.player
 
48
              --self:clampTo(self.map)
 
49
           end,
 
50
   draw = function (self, x, y)
 
51
             View.draw(self, x, y)
 
52
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
 
53
          end
 
54
}
 
55
 
 
56
MenuScreen = View:extend {
 
57
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
 
58
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
 
59
   onNew = function(self)
 
60
              self:add(self.title)
 
61
              self.title:centerAround(400, 200)
 
62
           end,
 
63
   onUpdate = function(self, elapsed)
 
64
                 if the.keys:allJustPressed() then
 
65
                    the.app.view = GameView:new()
 
66
                 end
 
67
              end
 
68
}
 
69
 
 
70
the.app = App:new {
 
71
   onRun = function (self)
 
72
              print('Version: ' .. VERSION)
 
73
              self.view = GameView:new()
 
74
              if DEBUG then
 
75
                 self.console:watch('VERSION', 'VERSION')
 
76
                 self.console:watch('updateTook', 'the.updateTook')
 
77
                 --self.console:watch('drawTook', 'the.drawTook')
 
78
              end
 
79
           end,
 
80
   onUpdate = function (self, dt)
 
81
                 if the.keys:justPressed('escape') then
 
82
                    self.quit()
 
83
                 end
 
84
              end,
 
85
   update = function (self, dt)
 
86
               the.updateStart = love.timer.getMicroTime()
 
87
               App.update(self, dt)
 
88
               if the.updateStart then
 
89
                  the.updateTook = love.timer.getMicroTime() - the.updateStart
 
90
               end
 
91
            end
 
92
}