/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-01 00:35:05 UTC
  • Revision ID: josh@9ix.org-20130701003505-nfdvnalobuuasfmb
exclude xcfs from packaging

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
require 'pause_view'
23
23
require 'game_over'
24
24
require 'names'
 
25
require 'good'
25
26
 
26
27
util = {
27
28
   signOf = function(value)
61
62
                 the.storage.data = {planets = {}}
62
63
 
63
64
                 -- build planets from random
64
 
                 for _ = 1, math.random(3, 6) do
 
65
                 for _ = 1, math.random(5, 7) do
65
66
                    local planet = Planet:new{
66
67
                       x = math.random(the.app.width / 2,
67
68
                                       the.bg.width - the.app.width / 2),
79
80
                                 })
80
81
                 end
81
82
 
 
83
                 Good:stockPlanets()
 
84
 
82
85
                 -- build fresh player
83
86
                 local player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
84
87
                 the.player = player
187
190
                 self.console:watch('num planets', '#the.planets.sprites')
188
191
                 self.console:watch('num enemies', 'the.enemies:count()')
189
192
                 self.console:watch('onPlanet', 'the.player.onPlanet')
 
193
                 self.console:watch('kills', 'the.player.kills')
190
194
                 --self.console:watch('drawTook', 'the.drawTook')
191
195
 
192
196
                 -- back off that dark overlay a bit