/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-26 01:11:27 UTC
  • Revision ID: josh@9ix.org-20130626011127-7e7z5ed0r0xmtva3
show planet labels, get better names

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