/ld27

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

« back to all changes in this revision

Viewing changes to pause_view.lua

  • Committer: Josh C
  • Date: 2013-08-25 00:16:36 UTC
  • Revision ID: josh@9ix.org-20130825001636-xoivc9byo1mdx0fu
1 goal in each maze

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
PauseView = Subview:extend {
2
 
   onNew = function (self)
3
 
              local boxW = 200
4
 
              local boxH = 90
5
 
              local boxL = the.app.width / 2 - boxW / 2
6
 
              local boxT = the.app.height / 2 - boxH / 2
7
 
              local boxR = boxL + boxW
8
 
              local boxB = boxT + boxH
9
 
              local nr = 'data/NewRocker-Regular.otf'
10
 
 
11
 
              self.scale = the.app.scale
12
 
              self.realTranslate = the.app.view.realTranslate
13
 
 
14
 
              self:add(Fill:new{
15
 
                          fill = {240,221,58},
16
 
                          x = boxL - 16,
17
 
                          y = boxT - 16,
18
 
                          width = boxW + 32,
19
 
                          height = boxH + 32,
20
 
                       })
21
 
 
22
 
              self:add(Fill:new{
23
 
                          fill = {166,44,217},
24
 
                          x = boxL,
25
 
                          y = boxT,
26
 
                          width = boxW,
27
 
                          height = boxH,
28
 
                       })
29
 
 
30
 
              self:add(Text:new{
31
 
                          text = 'Quit?',
32
 
                          x = boxL,
33
 
                          y = boxT + 16,
34
 
                          width = boxW,
35
 
                          font = {nr, 24},
36
 
                          align = 'center',
37
 
                          tint = {0,0,0}
38
 
                       })
39
 
 
40
 
              self:add(Text:new{
41
 
                          text = 'Y/N',
42
 
                          x = boxL,
43
 
                          y = boxT + 48,
44
 
                          width = boxW,
45
 
                          font = {nr, 24},
46
 
                          align = 'center',
47
 
                          tint = {0,0,0}
48
 
                       })
49
 
 
50
 
 
51
 
           end,
52
 
   onUpdate = function (self)
53
 
                 if the.keys:justPressed('escape', 'n') then
54
 
                   if love.system.getOS() == 'Android' then
55
 
                     the.app:quit()
56
 
                   else
57
 
                    self:deactivate()
58
 
                   end
59
 
                 elseif the.keys:justPressed('q', 'y') then
60
 
                    if the.profiler then
61
 
                       the.profiler:stop()
62
 
                       local outfile = io.open( "profile.txt", "w+" )
63
 
                       the.profiler:report( outfile )
64
 
                       outfile:close()
65
 
                    end
66
 
 
67
 
                    the.app:quit()
68
 
                 end
69
 
              end
70
 
}