/traderous

To get this branch, use:
bzr branch /bzr/traderous

« back to all changes in this revision

Viewing changes to planet.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

11
11
       low = 5000, med = 6000, high = 8000,
12
12
       chance = 0.1}
13
13
   },
14
 
   potentialNames = {
15
 
      'Planet A',
16
 
      'Planet B',
17
 
      'Planet C',
18
 
      'Planet D',
19
 
      'Planet E',
20
 
      'Planet F',
21
 
   },
22
14
   goods = {},
23
15
   onNew = function (self)
24
16
              self.indicator = Tile:new{ image = 'data/planet1ind.png' }
25
17
              the.indicators:add(self.indicator)
26
18
 
27
19
              while not self.name do
28
 
                 local name = self.potentialNames[math.random(#self.potentialNames)]
 
20
                 local name = PlanetNames[math.random(#PlanetNames)]
29
21
                 local inUse = false
30
22
                 for _, planet in ipairs(the.planets.sprites) do
31
23
                    if name == planet.name then inUse = true end
51
43
                    end
52
44
                 end
53
45
              end
 
46
 
 
47
              self.label = Text:new {
 
48
                 text = self.name,
 
49
                 x = self.x,
 
50
                 y = self.y - 32,
 
51
                 width = self.width,
 
52
                 align = 'center',
 
53
                 font = 20
 
54
              }
 
55
              the.planetLabels:add(self.label)
 
56
 
 
57
              self.keyLabel = Text:new {
 
58
                 text = 'Press L to land',
 
59
                 x = self.x,
 
60
                 y = self.y + self.height + 12,
 
61
                 width = self.width,
 
62
                 align = 'center',
 
63
                 font = 20
 
64
              }
 
65
              the.planetLabels:add(self.keyLabel)
54
66
           end,
55
67
   onUpdate = function (self)
56
 
                 if the.keys:justPressed('l') then
57
 
                    local hw = self.width / 2
58
 
                    local pvec = vector.new(the.player.x - (self.x + hw),
59
 
                                            the.player.y - (self.y + hw))
60
 
 
61
 
                    if pvec:len2() < hw ^ 2 then
 
68
                 local hw = self.width / 2
 
69
                 local pvec = vector.new(the.player.x - (self.x + hw),
 
70
                                         the.player.y - (self.y + hw))
 
71
 
 
72
                 if pvec:len2() < hw ^ 2 then
 
73
                    self.label.visible = true
 
74
                    self.keyLabel.visible = true
 
75
 
 
76
                    if the.keys:justPressed('l') then
62
77
                       the.player.velocity = {x=0, y=0}
63
78
                       the.player.acceleration = {x=0, y=0}
64
79
 
74
89
                       tradeView = TradeView:new{ planet = self }
75
90
                       tradeView:activate()
76
91
                    end
 
92
                 else
 
93
                    self.label.visible = false
 
94
                    self.keyLabel.visible = false
77
95
                 end
78
96
              end,
79
97
   onEndFrame = function (self)