/traderous

To get this branch, use:
bzr branch http://9ix.org/bzr/traderous

« back to all changes in this revision

Viewing changes to planet.lua

  • Committer: Josh C
  • Date: 2013-06-25 18:23:38 UTC
  • Revision ID: josh@9ix.org-20130625182338-gkx8evr4z93zh9x7
load/save (not working yet)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
              self.indicator = Tile:new{ image = 'data/planet1ind.png' }
17
17
              the.indicators:add(self.indicator)
18
18
 
19
 
              while not self.name do
20
 
                 local name = PlanetNames[math.random(#PlanetNames)]
21
 
                 local inUse = false
22
 
                 for _, planet in ipairs(the.planets.sprites) do
23
 
                    if name == planet.name then inUse = true end
24
 
                 end
25
 
 
26
 
                 if not inUse then
27
 
                    self.name = name
28
 
                 end
29
 
              end
30
 
 
31
19
              while #self.goods == 0 do
32
20
                 for _, good in ipairs(self.potentialGoods) do
33
21
                    if math.random() < good.chance then
43
31
                    end
44
32
                 end
45
33
              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)
66
34
           end,
67
35
   onUpdate = function (self)
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
 
                    the.player.onPlanet = self
76
 
 
77
 
                    if the.keys:justPressed('l') then
 
36
                 if the.keys:justPressed('l') then
 
37
                    local hw = self.width / 2
 
38
                    local pvec = vector.new(the.player.x - (self.x + hw),
 
39
                                            the.player.y - (self.y + hw))
 
40
 
 
41
                    if pvec:len2() < hw ^ 2 then
78
42
                       the.player.velocity = {x=0, y=0}
79
43
                       the.player.acceleration = {x=0, y=0}
80
44
 
85
49
                                                  goods = the.player.goods,
86
50
                                                  cargoSpace = the.player.cargoSpace
87
51
                                               }
 
52
                       print('saving')
88
53
                       the.storage:save()
 
54
                       print('finished saving')
89
55
 
90
56
                       tradeView = TradeView:new{ planet = self }
91
57
                       tradeView:activate()
92
58
                    end
93
 
                 else
94
 
                    self.label.visible = false
95
 
                    self.keyLabel.visible = false
96
 
                    if the.player.onPlanet == self then
97
 
                       the.player.onPlanet = false
98
 
                    end
99
59
                 end
100
60
              end,
101
61
   onEndFrame = function (self)