/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:25:26 UTC
  • Revision ID: josh@9ix.org-20130513212526-3q6md6n9xzhcmoa6
and that fixes the corner bug

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 'wrap_tile'
 
10
require 'player'
 
11
require 'enemy'
 
12
require 'cursor'
 
13
require 'bullet'
 
14
 
 
15
util = {
 
16
   signOf = function(value)
 
17
               if value >= 0 then
 
18
                  return 1
 
19
               else
 
20
                  return -1
 
21
               end
 
22
            end
 
23
}
 
24
 
 
25
GameView = View:extend {
 
26
   onNew = function (self)
 
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)
 
43
 
 
44
              --the.player = CrystalPlayer:new{x=400,y=300}
 
45
              the.player = SpacePlayer:new{x=1366,y=768}
 
46
              self:add(the.player)
 
47
 
 
48
              self:add(Enemy:new{x=400, y=300})
 
49
 
 
50
              the.cursor = Cursor:new()
 
51
              self:add(the.cursor)
 
52
 
 
53
              love.mouse.setGrab(true)
 
54
              love.mouse.setVisible(false)
 
55
 
 
56
              --self:loadLayers('data/map.lua')
 
57
              self.focus = the.player
 
58
              --self:clampTo(self.map)
 
59
           end,
 
60
   draw = function (self, x, y)
 
61
             View.draw(self, x, y)
 
62
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
 
63
          end
 
64
}
 
65
 
 
66
MenuScreen = View:extend {
 
67
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
 
68
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
 
69
   onNew = function(self)
 
70
              self:add(self.title)
 
71
              self.title:centerAround(400, 200)
 
72
           end,
 
73
   onUpdate = function(self, elapsed)
 
74
                 if the.keys:allJustPressed() then
 
75
                    the.app.view = GameView:new()
 
76
                 end
 
77
              end
 
78
}
 
79
 
 
80
the.app = App:new {
 
81
   onRun = function (self)
 
82
              print('Version: ' .. VERSION)
 
83
              self.view = GameView:new()
 
84
              if DEBUG then
 
85
                 self.console:watch('VERSION', 'VERSION')
 
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')
 
91
                 --self.console:watch('drawTook', 'the.drawTook')
 
92
 
 
93
                 -- back off that dark overlay a bit
 
94
                 self.console.fill.fill[4] = 75
 
95
              end
 
96
           end,
 
97
   onUpdate = function (self, dt)
 
98
                 if the.keys:justPressed('escape') then
 
99
                    self.quit()
 
100
                 end
 
101
              end,
 
102
   update = function (self, dt)
 
103
               the.updateStart = love.timer.getMicroTime()
 
104
               App.update(self, dt)
 
105
               if the.updateStart then
 
106
                  the.updateTook = love.timer.getMicroTime() - the.updateStart
 
107
               end
 
108
            end
 
109
}