/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)
28
31
                  return -1
29
32
               end
30
33
            end,
31
 
   shortestVector = function(from, to)
32
 
                       if STRICT then
33
 
                          if from.x < the.app.width / 2 or
34
 
                             from.x > the.bg.width - the.app.width / 2 or
35
 
                             from.y < the.app.height / 2 or
36
 
                             from.y > the.bg.height - the.app.height / 2 then
37
 
                             error('"from" coordinate out of bounds: X='..from.x..' Y='..from.y)
38
 
                          end
39
 
 
40
 
                          if to.x < the.app.width / 2 or
41
 
                             to.x > the.bg.width - the.app.width / 2 or
42
 
                             to.y < the.app.height / 2 or
43
 
                             to.y > the.bg.height - the.app.height / 2 then
44
 
                             error('"to" coordinate out of bounds: X='..to.x..' Y='..to.y)
45
 
                          end
46
 
                       end
47
 
 
48
 
                       -- normalize grid to account for mirror zones
49
 
                       local fx = from.x - the.app.width / 2
50
 
                       local fy = from.y - the.app.height / 2
51
 
                       local tx = to.x - the.app.width / 2
52
 
                       local ty = to.y - the.app.height / 2
53
 
 
54
 
                       local short = {}
55
 
 
56
 
                       -- pick shorter x
57
 
                       if math.abs(tx - fx) < math.abs(tx - fx - (the.bg.width - the.app.width)) then
58
 
                          -- straight path is shorter
59
 
                          short.x = tx - fx
60
 
                       else
61
 
                          short.x = tx - fx - (the.bg.width - the.app.width)
62
 
                       end
63
 
 
64
 
                       -- pick shorter y
65
 
                       if math.abs(ty - fy) < math.abs(ty - fy - (the.bg.height - the.app.height)) then
66
 
                          -- straight path is shorter
67
 
                          short.y = ty - fy
68
 
                       else
69
 
                          short.y = ty - fy - (the.bg.height - the.app.height)
70
 
                       end
71
 
 
72
 
                       return vector.new(short.x, short.y)
73
 
                    end
74
34
}
75
35
 
76
36
GameView = View:extend {
77
37
   onNew = function (self)
78
 
              the.storage = Storage:new{filename = 'scores.lua'}
 
38
              the.storage = Storage:new{filename = 'world.lua'}
79
39
              the.storage:load()
80
40
              --if not the.storage.data.highScore then
81
41
              --   print('initializing storage')
85
45
              the.bullets = Group:new()
86
46
              the.interface = Group:new()
87
47
              the.planets = Group:new()
 
48
              the.planetLabels = Group:new()
88
49
              the.indicators = Group:new()
 
50
              the.enemies = Group:new()
89
51
 
 
52
              -- init bg before build/load since planets need to know bg size
90
53
              the.bg = Tile:new{
91
54
                 image = 'data/stars3.png',
92
 
                 width = 13660,
93
 
                 height = 7680
 
55
                 width = 27320,
 
56
                 height = 15360
94
57
              }
95
58
              self:add(the.bg)
96
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
 
97
106
              self:add(the.planets)
 
107
              self:add(the.planetLabels)
98
108
 
99
 
              --the.player = CrystalPlayer:new{x=400,y=300}
100
 
              the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
101
109
              self:add(the.player)
102
110
              self:add(the.player.thrust)
103
111
              self:add(the.player.shield)
104
112
 
105
 
              local e = Enemy:new{x=400, y=300}
106
 
              --local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
107
 
              self:add(e)
108
 
              self:add(e.thrust) -- why doesn't this work in Enemy.new?
 
113
              self:add(the.enemies)
 
114
 
 
115
              for _ = 1, 20 do
 
116
                 local e = Enemy:new{x = math.random(the.bg.width),
 
117
                                     y = math.random(the.bg.height)}
 
118
                 --local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
 
119
                 the.enemies:add(e)
 
120
                 self:add(e.thrust) -- why doesn't this work in Enemy.new?
 
121
                 self:add(e.shield)
 
122
              end
109
123
 
110
124
              self:add(the.bullets)
111
125
              self:add(the.indicators)
112
126
              self:add(the.interface)
113
127
 
114
 
              for _ = 1, math.random(6) do
115
 
                 local planet = Planet:new{
116
 
                    x = math.random(the.app.width / 2,
117
 
                                    the.bg.width - the.app.width / 2),
118
 
                    y = math.random(the.app.height / 2,
119
 
                                    the.bg.height - the.app.height / 2),
120
 
                    rotation = math.random() * math.pi
121
 
                 }
122
 
                 the.planets:add(planet)
123
 
              end
124
 
 
125
128
              the.cursor = Cursor:new()
126
129
              self:add(the.cursor)
127
130
 
132
135
              self.focus = the.player
133
136
           end,
134
137
   onUpdate = function(self, dt)
 
138
                 if the.keys:justPressed('escape') then
 
139
                    PauseView:new():activate()
 
140
                 end
 
141
 
135
142
                 the.bullets:collide(the.planets)
136
143
                 the.bullets:collide(the.player)
 
144
                 the.bullets:collide(the.enemies)
137
145
              end,
138
146
   onEndFrame = function(self)
139
147
                   the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
177
185
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
178
186
                 self.console:watch('num rocks', '#the.rocks.sprites')
179
187
                 self.console:watch('num planets', '#the.planets.sprites')
 
188
                 self.console:watch('num enemies', 'the.enemies:count()')
180
189
                 --self.console:watch('drawTook', 'the.drawTook')
181
190
 
182
191
                 -- back off that dark overlay a bit
185
194
           end,
186
195
   onUpdate = function (self, dt)
187
196
                 if not (DEBUG and the.console.visible) then
188
 
                    if the.keys:justPressed('q') then
189
 
                       self.quit()
190
 
                    elseif the.keys:justPressed('return') then
191
 
                       if the.keys:pressed('alt') then
192
 
                          love.graphics.toggleFullscreen()
193
 
                       else
194
 
                          self.view = GameView:new()
195
 
                       end
 
197
                    if the.keys:justPressed('return') and the.keys:pressed('alt') then
 
198
                       love.graphics.toggleFullscreen()
196
199
                    elseif the.keys:justPressed('f1') then
197
200
                       local ss = love.graphics.newScreenshot()
198
201
                       ss:encode('screenshot-' ..love.timer.getTime()..'.png')