/zoeplat

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-04-19 01:35:57 UTC
  • Revision ID: josh@9ix.org-20130419013557-jbmje9kqsagj0x3j
title screen

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
   --        end
56
56
}
57
57
 
 
58
MenuScreen = View:extend {
 
59
   --title = Text:new{text = "Test Platform Game", font = 48, wordWrap = false},
 
60
   title = Tile:new{image = 'data/title.png', x = 0, y = 0},
 
61
   onNew = function(self)
 
62
              self:add(self.title)
 
63
              --self.title:centerAround(400, 200)
 
64
           end,
 
65
   onUpdate = function(self, elapsed)
 
66
                 if the.keys:allJustPressed() then
 
67
                    the.app.view = GameView:new()
 
68
                 end
 
69
              end
 
70
}
 
71
 
58
72
the.app = App:new {
59
73
   record = true,
60
74
   onRun = function (self)
61
 
              self.view = GameView:new()
 
75
              self.view = MenuScreen:new()
62
76
              if DEBUG then
63
77
                 self.console:watch('onGround', 'the.player.onGround')
64
78
                 self.console:watch('onWall', 'the.player.onWall')
80
94
                       outfile:close()
81
95
                    end
82
96
 
83
 
                    if self.record then
 
97
                    if self.record and the.recorder then
84
98
                       if not love.filesystem.remove('record.lua') then
85
99
                          print('could not remove record.lua')
86
100
                       end