/traderous

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

« back to all changes in this revision

Viewing changes to trade_view.lua

  • Committer: Josh C
  • Date: 2013-10-21 18:31:55 UTC
  • Revision ID: josh@9ix.org-20131021183155-vl7pxaor2u3pw0t0
have enemies disengage when you land

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
 
132
132
              self:add(b)
133
133
 
 
134
              local sh = the.player.shield
 
135
              if sh.strength < sh.max then
 
136
                 sh.strength = sh.max
 
137
 
 
138
                 self:add(Text:new{
 
139
                             text = 'Your shield has been recharged',
 
140
                             width = 450,
 
141
                             align = 'center',
 
142
                             x = boxL,
 
143
                             y = boxB - 4 * th - 12
 
144
                          })
 
145
              end
 
146
 
 
147
              -- local cost = (sh.max - sh.strength) * sh.cost
 
148
              -- b = Button:new{
 
149
              --    x = boxL, y = boxT,
 
150
              --    width = 800,
 
151
              --    -- WTF: trailing space makes it not wrap?
 
152
              --    label = Text:new{ text = 'Repair shields (' .. cost .. ') ',
 
153
              --                      x = 3, y = 2 },
 
154
              --    onMouseDown = function(self)
 
155
              --                     if the.player.money >= cost and sh.strength < sh.max then
 
156
              --                        the.player.money = the.player.money - cost
 
157
              --                        sh.strength = sh.max
 
158
              --                        self.visible = false
 
159
              --                     end
 
160
              --                  end
 
161
              -- }
 
162
 
 
163
              -- local tw, th = b.label:getSize()
 
164
              -- b.background = Fill:new{
 
165
              --    fill = {100,100,100},
 
166
              --    width = tw + 3,
 
167
              --    height = th + 4
 
168
              -- }
 
169
              -- b.x = boxR - b.background.width - 60
 
170
              -- b.y = boxB - b.background.height - 10
 
171
 
 
172
              -- if sh.strength < sh.max then
 
173
              --    self:add(b)
 
174
              -- end
 
175
 
134
176
              self.playerMoney = Text:new{
135
177
                 text = 'Your money: ',
136
178
                 width = 200,
139
181
              }
140
182
              self:add(self.playerMoney)
141
183
 
 
184
              self.availSpace = Text:new{
 
185
                 text = 'Available cargo space: ',
 
186
                 width = 200,
 
187
                 x = boxL + 10,
 
188
                 y = boxB - 2 * th - 12
 
189
              }
 
190
              self:add(self.availSpace)
 
191
 
 
192
              if the.player.kills > 0 then
 
193
                 -- local award = the.player.kills * 100
 
194
                 -- self:add(Text:new{
 
195
                 --             text = 'You have been awarded ' ..
 
196
                 --                award ..
 
197
                 --                ' credits for killing bandits.',
 
198
                 --             width = 450,
 
199
                 --             align = 'center',
 
200
                 --             x = boxL,
 
201
                 --             y = boxB - 4 * th - 12
 
202
                 --          })
 
203
 
 
204
                 -- the.player.money = the.player.money + award
 
205
                 the.player.kills = 0
 
206
              end
 
207
 
142
208
              -- give the buttons a cycle to get out of the T/L corner
143
209
              self:update(0)
144
210
           end,
151
217
                 Subview.activate(self)
152
218
              end,
153
219
   close = function (self)
 
220
              the.player:save()
 
221
 
154
222
              the.cursor.visible = true
155
223
              love.mouse.setVisible(false)
156
224
              love.mouse.setGrab(true)
164
232
                 end
165
233
 
166
234
                 self.playerMoney.text = 'Your money: ' .. the.player.money
 
235
                 self.availSpace.text = 'Available cargo space: ' .. the.player:availableSpace()
167
236
 
168
237
                 for good, have in pairs(self.have) do
169
238
                    have.text = the.player.goods[good] or 0