/traderous

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

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-06-30 22:39:43 UTC
  • Revision ID: josh@9ix.org-20130630223943-863q2kff3f3bqp7v
save on arriving at & leaving a planet both

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
   money = 2000, -- what to use for money symbol? ✪ or ☥ or Ⓐ?
30
30
   goods = {},
31
31
   cargoSpace = 20,
 
32
   onPlanet = false,
32
33
   onNew = function(self)
33
34
              self.thrust = Tile:new{image = 'data/thrust.png'}
34
35
              self.shield = Shield:new{ship = self}
108
109
                  end
109
110
 
110
111
                  if not self.active then
111
 
                     the.over.visible = true
112
 
                     the.instructions.visible = true
 
112
                     the.interface:add(GameOver:new())
113
113
                  end
114
114
               end,
115
115
   buy = function(self, good, price)
131
131
                       end
132
132
 
133
133
                       return self.cargoSpace - cargo
134
 
                    end
 
134
                    end,
 
135
   save = function(self)
 
136
             -- save player data
 
137
             the.storage.data.player = {x = self.x,
 
138
                                        y = self.y,
 
139
                                        money = self.money,
 
140
                                        goods = self.goods,
 
141
                                        cargoSpace = self.cargoSpace
 
142
                                     }
 
143
             the.storage:save()
 
144
          end
135
145
}
 
 
b'\\ No newline at end of file'