/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-06-23 02:52:56 UTC
  • Revision ID: josh@9ix.org-20130623025256-o80jq1o3hy8dw7lh
available cargo space

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
require 'planet'
20
20
require 'trade_view'
21
21
require 'shield'
22
 
require 'pause_view'
23
 
require 'game_over'
24
22
 
25
23
util = {
26
24
   signOf = function(value)
34
32
 
35
33
GameView = View:extend {
36
34
   onNew = function (self)
37
 
              the.storage = Storage:new{filename = 'world.lua'}
 
35
              the.storage = Storage:new{filename = 'scores.lua'}
38
36
              the.storage:load()
39
37
              --if not the.storage.data.highScore then
40
38
              --   print('initializing storage')
47
45
              the.indicators = Group:new()
48
46
              the.enemies = Group:new()
49
47
 
50
 
              -- init bg before build/load since planets need to know bg size
51
48
              the.bg = Tile:new{
52
49
                 image = 'data/stars3.png',
53
50
                 width = 27320,
55
52
              }
56
53
              self:add(the.bg)
57
54
 
58
 
              if self.newWorld or not the.storage.data.player then
59
 
                 the.storage.data = {planets = {}}
60
 
 
61
 
                 -- build planets from random
62
 
                 for _ = 1, math.random(3, 6) do
63
 
                    local planet = Planet:new{
64
 
                       x = math.random(the.app.width / 2,
65
 
                                       the.bg.width - the.app.width / 2),
66
 
                       y = math.random(the.app.height / 2,
67
 
                                       the.bg.height - the.app.height / 2),
68
 
                       rotation = math.random() * math.pi
69
 
                    }
70
 
                    the.planets:add(planet)
71
 
                    table.insert(the.storage.data.planets, {
72
 
                                    x = planet.x,
73
 
                                    y = planet.y,
74
 
                                    rotation = planet.rotation,
75
 
                                    goods = planet.goods
76
 
                                 })
77
 
                 end
78
 
 
79
 
                 -- build fresh player
80
 
                 local player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
81
 
                 the.player = player
82
 
                 the.storage.data.player = {x = player.x,
83
 
                                            y = player.y,
84
 
                                            money = player.money,
85
 
                                            goods = player.goods,
86
 
                                            cargoSpace = player.cargoSpace
87
 
                                         }
88
 
 
89
 
                 the.storage:save()
90
 
              else
91
 
                 -- load planets with x, y, goods
92
 
                 for _, planetData in ipairs(the.storage.data.planets) do
93
 
                    the.planets:add(Planet:new(planetData))
94
 
                 end
95
 
 
96
 
                 -- load player with cargo, money, position
97
 
                 the.player = SpacePlayer:new(the.storage.data.player)
98
 
 
99
 
                 -- reload storage as we've turned it all into objects
100
 
                 the.storage:load()
101
 
              end
102
 
 
103
55
              self:add(the.planets)
104
56
 
 
57
              --the.player = CrystalPlayer:new{x=400,y=300}
 
58
              the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
105
59
              self:add(the.player)
106
60
              self:add(the.player.thrust)
107
61
              self:add(the.player.shield)
121
75
              self:add(the.indicators)
122
76
              self:add(the.interface)
123
77
 
 
78
              for _ = 1, math.random(3, 6) do
 
79
                 local planet = Planet:new{
 
80
                    x = math.random(the.app.width / 2,
 
81
                                    the.bg.width - the.app.width / 2),
 
82
                    y = math.random(the.app.height / 2,
 
83
                                    the.bg.height - the.app.height / 2),
 
84
                    rotation = math.random() * math.pi
 
85
                 }
 
86
                 the.planets:add(planet)
 
87
              end
 
88
 
124
89
              the.cursor = Cursor:new()
125
90
              self:add(the.cursor)
126
91
 
 
92
              the.over = Text:new{
 
93
                 y = the.app.height / 2,
 
94
                 width = the.app.width,
 
95
                 align = 'center',
 
96
                 font = 25,
 
97
                 text = "Game Over",
 
98
                 visible = false
 
99
              }
 
100
              the.interface:add(the.over)
 
101
 
 
102
 
 
103
              the.instructions = Text:new{
 
104
                 y = the.app.height / 2 + 32,
 
105
                 width = the.app.width,
 
106
                 align = 'center',
 
107
                 font = 12,
 
108
                 text = "Press Enter to start a new game\nPress Q to quit",
 
109
                 visible = false
 
110
              }
 
111
              the.interface:add(the.instructions)
 
112
 
127
113
              love.mouse.setGrab(true)
128
114
              love.mouse.setVisible(false)
129
115
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
131
117
              self.focus = the.player
132
118
           end,
133
119
   onUpdate = function(self, dt)
134
 
                 if the.keys:justPressed('escape') then
135
 
                    PauseView:new():activate()
136
 
                 end
137
 
 
138
120
                 the.bullets:collide(the.planets)
139
121
                 the.bullets:collide(the.player)
140
122
                 the.bullets:collide(the.enemies)
181
163
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
182
164
                 self.console:watch('num rocks', '#the.rocks.sprites')
183
165
                 self.console:watch('num planets', '#the.planets.sprites')
184
 
                 self.console:watch('num enemies', 'the.enemies:count()')
185
166
                 --self.console:watch('drawTook', 'the.drawTook')
186
167
 
187
168
                 -- back off that dark overlay a bit
190
171
           end,
191
172
   onUpdate = function (self, dt)
192
173
                 if not (DEBUG and the.console.visible) then
193
 
                    if the.keys:justPressed('return') and the.keys:pressed('alt') then
194
 
                       love.graphics.toggleFullscreen()
 
174
                    if the.keys:justPressed('q') then
 
175
                       self.quit()
 
176
                    elseif the.keys:justPressed('return') then
 
177
                       if the.keys:pressed('alt') then
 
178
                          love.graphics.toggleFullscreen()
 
179
                       else
 
180
                          self.view = GameView:new()
 
181
                       end
195
182
                    elseif the.keys:justPressed('f1') then
196
183
                       local ss = love.graphics.newScreenshot()
197
184
                       ss:encode('screenshot-' ..love.timer.getTime()..'.png')