/spacey

To get this branch, use:
bzr branch /bzr/spacey
3 by Josh C
basecode main.lua
1
STRICT = true
2
DEBUG = true
3
4
require 'zoetrope'
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
5
--__ = require 'underscore'
13 by Josh C
constant velocity for bullets. using hump.vector e9b86ef
6
vector = require 'vector'
3 by Josh C
basecode main.lua
7
8
require 'version'
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
9
require 'player'
7 by Josh C
enemy
10
require 'enemy'
8 by Josh C
targeting cursor (manual switch to start)
11
require 'cursor'
11 by Josh C
pew pew!
12
require 'bullet'
7 by Josh C
enemy
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
}
3 by Josh C
basecode main.lua
23
24
GameView = View:extend {
25
   onNew = function (self)
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
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
7 by Josh C
enemy
39
              self:add(Enemy:new{x=400, y=300})
40
8 by Josh C
targeting cursor (manual switch to start)
41
              self:add(Cursor:new())
42
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
43
              love.mouse.setGrab(true)
8 by Josh C
targeting cursor (manual switch to start)
44
              love.mouse.setVisible(false)
3 by Josh C
basecode main.lua
45
46
              --self:loadLayers('data/map.lua')
4 by Josh C
trying some movement styles. derivatives on crystal quest movement.
47
              self.focus = the.player
3 by Josh C
basecode main.lua
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
}