/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-07-04 18:15:10 UTC
  • Revision ID: josh@9ix.org-20130704181510-lnj4iqrprewr71pu
window title

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
require 'trade_view'
21
21
require 'shield'
22
22
require 'pause_view'
 
23
require 'game_over'
 
24
require 'names'
 
25
require 'good'
23
26
 
24
27
util = {
25
28
   signOf = function(value)
43
46
              the.bullets = Group:new()
44
47
              the.interface = Group:new()
45
48
              the.planets = Group:new()
 
49
              the.planetLabels = Group:new()
46
50
              the.indicators = Group:new()
47
51
              the.enemies = Group:new()
48
52
 
58
62
                 the.storage.data = {planets = {}}
59
63
 
60
64
                 -- build planets from random
61
 
                 for _ = 1, math.random(3, 6) do
 
65
                 for _ = 1, math.random(5, 7) do
62
66
                    local planet = Planet:new{
63
67
                       x = math.random(the.app.width / 2,
64
68
                                       the.bg.width - the.app.width / 2),
71
75
                                    x = planet.x,
72
76
                                    y = planet.y,
73
77
                                    rotation = planet.rotation,
74
 
                                    goods = planet.goods
 
78
                                    goods = planet.goods,
 
79
                                    name = planet.name
75
80
                                 })
76
81
                 end
77
82
 
 
83
                 Good:stockPlanets()
 
84
 
78
85
                 -- build fresh player
79
86
                 local player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
80
87
                 the.player = player
100
107
              end
101
108
 
102
109
              self:add(the.planets)
 
110
              self:add(the.planetLabels)
103
111
 
104
112
              self:add(the.player)
105
113
              self:add(the.player.thrust)
123
131
              the.cursor = Cursor:new()
124
132
              self:add(the.cursor)
125
133
 
126
 
              the.over = Text:new{
127
 
                 y = the.app.height / 2,
128
 
                 width = the.app.width,
129
 
                 align = 'center',
130
 
                 font = 25,
131
 
                 text = "Game Over",
132
 
                 visible = false
133
 
              }
134
 
              the.interface:add(the.over)
135
 
 
136
 
 
137
 
              the.instructions = Text:new{
138
 
                 y = the.app.height / 2 + 32,
139
 
                 width = the.app.width,
140
 
                 align = 'center',
141
 
                 font = 12,
142
 
                 text = "Press Enter to start a new game\nPress Q to quit",
143
 
                 visible = false
144
 
              }
145
 
              the.interface:add(the.instructions)
146
 
 
147
134
              love.mouse.setGrab(true)
148
135
              love.mouse.setVisible(false)
149
136
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
184
171
}
185
172
 
186
173
the.app = App:new {
 
174
   name = 'Traderous',
187
175
   onRun = function (self)
188
176
              print('Version: ' .. VERSION)
189
177
 
202
190
                 self.console:watch('num rocks', '#the.rocks.sprites')
203
191
                 self.console:watch('num planets', '#the.planets.sprites')
204
192
                 self.console:watch('num enemies', 'the.enemies:count()')
 
193
                 self.console:watch('onPlanet', 'the.player.onPlanet')
 
194
                 self.console:watch('kills', 'the.player.kills')
205
195
                 --self.console:watch('drawTook', 'the.drawTook')
206
196
 
207
197
                 -- back off that dark overlay a bit