/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 22:25:16 UTC
  • Revision ID: josh@9ix.org-20130513222516-wem0v29pit3ivc6w
rocks!

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
--__ = require 'underscore'
6
6
vector = require 'vector'
7
7
 
 
8
require 'group'
 
9
 
8
10
require 'version'
9
11
require 'wrap_tile'
10
12
require 'player'
11
13
require 'enemy'
12
14
require 'cursor'
13
15
require 'bullet'
 
16
require 'rock'
14
17
 
15
18
util = {
16
19
   signOf = function(value)
23
26
}
24
27
 
25
28
GameView = View:extend {
 
29
   lastRock = 0,
 
30
   rockInterval = 1,
 
31
   gameStart = 0,
26
32
   onNew = function (self)
27
33
              -- for x = 1,30 do
28
34
              --    for y = 1,30 do
56
62
              --self:loadLayers('data/map.lua')
57
63
              self.focus = the.player
58
64
              --self:clampTo(self.map)
 
65
 
 
66
              self.gameStart = love.timer.getTime()
59
67
           end,
 
68
   onUpdate = function(self, dt)
 
69
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
 
70
                    local rock = Rock:new{
 
71
                       x = math.random(the.bg.width),
 
72
                       y = math.random(the.bg.height),
 
73
                       velocity = {
 
74
                          x = math.random(-300, 300),
 
75
                          y = math.random(-300, 300),
 
76
                          rotation = math.random(-7, 7)
 
77
                       },
 
78
                       scale = math.random() + 0.5
 
79
                    }
 
80
                    self:add(rock)
 
81
 
 
82
                    self.lastRock = love.timer.getTime()
 
83
                 end
 
84
              end,
60
85
   draw = function (self, x, y)
61
86
             View.draw(self, x, y)
62
87
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
80
105
the.app = App:new {
81
106
   onRun = function (self)
82
107
              print('Version: ' .. VERSION)
 
108
 
 
109
              math.randomseed(os.time())
 
110
 
83
111
              self.view = GameView:new()
84
112
              if DEBUG then
85
113
                 self.console:watch('VERSION', 'VERSION')