/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-30 22:39:43 UTC
  • Revision ID: josh@9ix.org-20130630223943-863q2kff3f3bqp7v
save on arriving at & leaving a planet both

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
require 'names'
 
25
require 'good'
22
26
 
23
27
util = {
24
28
   signOf = function(value)
32
36
 
33
37
GameView = View:extend {
34
38
   onNew = function (self)
35
 
              the.storage = Storage:new{filename = 'scores.lua'}
 
39
              the.storage = Storage:new{filename = 'world.lua'}
36
40
              the.storage:load()
37
41
              --if not the.storage.data.highScore then
38
42
              --   print('initializing storage')
42
46
              the.bullets = Group:new()
43
47
              the.interface = Group:new()
44
48
              the.planets = Group:new()
 
49
              the.planetLabels = Group:new()
45
50
              the.indicators = Group:new()
46
51
              the.enemies = Group:new()
47
52
 
 
53
              -- init bg before build/load since planets need to know bg size
48
54
              the.bg = Tile:new{
49
55
                 image = 'data/stars3.png',
50
56
                 width = 27320,
52
58
              }
53
59
              self:add(the.bg)
54
60
 
 
61
              if self.newWorld or not the.storage.data.player then
 
62
                 the.storage.data = {planets = {}}
 
63
 
 
64
                 -- build planets from random
 
65
                 for _ = 1, math.random(5, 7) do
 
66
                    local planet = Planet:new{
 
67
                       x = math.random(the.app.width / 2,
 
68
                                       the.bg.width - the.app.width / 2),
 
69
                       y = math.random(the.app.height / 2,
 
70
                                       the.bg.height - the.app.height / 2),
 
71
                       rotation = math.random() * math.pi
 
72
                    }
 
73
                    the.planets:add(planet)
 
74
                    table.insert(the.storage.data.planets, {
 
75
                                    x = planet.x,
 
76
                                    y = planet.y,
 
77
                                    rotation = planet.rotation,
 
78
                                    goods = planet.goods,
 
79
                                    name = planet.name
 
80
                                 })
 
81
                 end
 
82
 
 
83
                 Good:stockPlanets()
 
84
 
 
85
                 -- build fresh player
 
86
                 local player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
 
87
                 the.player = player
 
88
                 the.storage.data.player = {x = player.x,
 
89
                                            y = player.y,
 
90
                                            money = player.money,
 
91
                                            goods = player.goods,
 
92
                                            cargoSpace = player.cargoSpace
 
93
                                         }
 
94
 
 
95
                 the.storage:save()
 
96
              else
 
97
                 -- load planets with x, y, goods
 
98
                 for _, planetData in ipairs(the.storage.data.planets) do
 
99
                    the.planets:add(Planet:new(planetData))
 
100
                 end
 
101
 
 
102
                 -- load player with cargo, money, position
 
103
                 the.player = SpacePlayer:new(the.storage.data.player)
 
104
 
 
105
                 -- reload storage as we've turned it all into objects
 
106
                 the.storage:load()
 
107
              end
 
108
 
55
109
              self:add(the.planets)
 
110
              self:add(the.planetLabels)
56
111
 
57
 
              --the.player = CrystalPlayer:new{x=400,y=300}
58
 
              the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
59
112
              self:add(the.player)
60
113
              self:add(the.player.thrust)
61
114
              self:add(the.player.shield)
75
128
              self:add(the.indicators)
76
129
              self:add(the.interface)
77
130
 
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
 
 
89
131
              the.cursor = Cursor:new()
90
132
              self:add(the.cursor)
91
133
 
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
 
 
113
134
              love.mouse.setGrab(true)
114
135
              love.mouse.setVisible(false)
115
136
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
117
138
              self.focus = the.player
118
139
           end,
119
140
   onUpdate = function(self, dt)
 
141
                 if the.keys:justPressed('escape') then
 
142
                    PauseView:new():activate()
 
143
                 end
 
144
 
120
145
                 the.bullets:collide(the.planets)
121
146
                 the.bullets:collide(the.player)
122
147
                 the.bullets:collide(the.enemies)
163
188
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
164
189
                 self.console:watch('num rocks', '#the.rocks.sprites')
165
190
                 self.console:watch('num planets', '#the.planets.sprites')
 
191
                 self.console:watch('num enemies', 'the.enemies:count()')
 
192
                 self.console:watch('onPlanet', 'the.player.onPlanet')
166
193
                 --self.console:watch('drawTook', 'the.drawTook')
167
194
 
168
195
                 -- back off that dark overlay a bit
171
198
           end,
172
199
   onUpdate = function (self, dt)
173
200
                 if not (DEBUG and the.console.visible) then
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
 
201
                    if the.keys:justPressed('return') and the.keys:pressed('alt') then
 
202
                       love.graphics.toggleFullscreen()
182
203
                    elseif the.keys:justPressed('f1') then
183
204
                       local ss = love.graphics.newScreenshot()
184
205
                       ss:encode('screenshot-' ..love.timer.getTime()..'.png')