/traderous

To get this branch, use:
bzr branch http://9ix.org/bzr/traderous

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-05-04 20:45:17 UTC
  • Revision ID: josh@9ix.org-20130504204517-1rfp92svud12kg42
zoetrope 1.4

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
 
              the.cursor = Cursor:new()
42
 
              self:add(the.cursor)
43
 
 
44
 
              love.mouse.setGrab(true)
45
 
              love.mouse.setVisible(false)
46
 
 
47
 
              --self:loadLayers('data/map.lua')
48
 
              self.focus = the.player
49
 
              --self:clampTo(self.map)
50
 
           end,
51
 
   draw = function (self, x, y)
52
 
             View.draw(self, x, y)
53
 
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
54
 
          end
55
 
}
56
 
 
57
 
MenuScreen = View:extend {
58
 
   title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
59
 
   --title = Tile:new{image = 'data/title.png', x = 0, y = 0},
60
 
   onNew = function(self)
61
 
              self:add(self.title)
62
 
              self.title:centerAround(400, 200)
63
 
           end,
64
 
   onUpdate = function(self, elapsed)
65
 
                 if the.keys:allJustPressed() then
66
 
                    the.app.view = GameView:new()
67
 
                 end
68
 
              end
69
 
}
70
 
 
71
 
the.app = App:new {
72
 
   onRun = function (self)
73
 
              print('Version: ' .. VERSION)
74
 
              self.view = GameView:new()
75
 
              if DEBUG then
76
 
                 self.console:watch('VERSION', 'VERSION')
77
 
                 self.console:watch('updateTook', 'the.updateTook')
78
 
                 --self.console:watch('drawTook', 'the.drawTook')
79
 
              end
80
 
           end,
81
 
   onUpdate = function (self, dt)
82
 
                 if the.keys:justPressed('escape') then
83
 
                    self.quit()
84
 
                 end
85
 
              end,
86
 
   update = function (self, dt)
87
 
               the.updateStart = love.timer.getMicroTime()
88
 
               App.update(self, dt)
89
 
               if the.updateStart then
90
 
                  the.updateTook = love.timer.getMicroTime() - the.updateStart
91
 
               end
92
 
            end
93
 
}