1
1
TradeView = Subview:extend {
2
2
drawParent = true, --default?
4
3
onNew = function (self)
5
4
-- create all the interface bits from the planet
6
5
-- and add them to the view
8
local boxL = the.app.width / 2 - 225
9
local boxT = the.app.height / 2 - 150
10
local boxR = boxL + 450
11
local boxB = boxT + 300
7
local boxL = the.app.width / 2 - 200
8
local boxT = the.app.height / 2 - 200
9
local boxR = boxL + 400
13
11
local lh = 17 -- line height
66
y = boxT + 10 + i * lh,
42
y = boxT + 10 + (i-1) * lh,
72
48
local b = Button:new{
74
y = boxT + 10 + i * lh - 1,
50
y = boxT + 10 + (i-1) * lh - 1,
75
51
label = Text:new{ text = 'BUY', x = 1 },
76
52
onMouseDown = function (self)
77
53
the.player:buy(good[1], good[2])
90
y = boxT + 10 + i * lh - 1,
66
y = boxT + 10 + (i-1) * lh - 1,
91
67
label = Text:new{ text = 'SELL', x = 1 },
92
68
onMouseDown = function (self)
93
69
the.player:sell(good[1], good[2])
129
95
b.x = boxR - b.background.width - 10
130
b.y = boxB - b.background.height - 10
96
b.y = boxT + 400 - b.background.height - 10
134
local sh = the.player.shield
135
local cost = (sh.max - sh.strength) * sh.cost
139
-- WTF: trailing space makes it not wrap?
140
label = Text:new{ text = 'Repair shields (' .. cost .. ') ',
142
onMouseDown = function(self)
143
if the.player.money >= cost and sh.strength < sh.max then
144
the.player.money = the.player.money - cost
151
local tw, th = b.label:getSize()
152
b.background = Fill:new{
153
fill = {100,100,100},
157
b.x = boxR - b.background.width - 60
158
b.y = boxB - b.background.height - 10
160
if sh.strength < sh.max then
164
100
self.playerMoney = Text:new{
165
101
text = 'Your money: ',
104
y = boxT + 400 - th - 10
170
106
self:add(self.playerMoney)
172
self.availSpace = Text:new{
173
text = 'Available cargo space: ',
176
y = boxB - 2 * th - 12
178
self:add(self.availSpace)
180
if the.player.kills > 0 then
181
local award = the.player.kills * 100
183
text = 'You have been awarded ' ..
185
' credits for killing bandits.',
189
y = boxB - 4 * th - 12
192
the.player.money = the.player.money + award
195
108
-- give the buttons a cycle to get out of the T/L corner
199
112
the.cursor.visible = false
200
113
love.mouse.setVisible(true)
201
114
love.mouse.setGrab(false)
202
love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
204
116
Subview.activate(self)
206
118
close = function (self)
209
119
the.cursor.visible = true
210
120
love.mouse.setVisible(false)
211
121
love.mouse.setGrab(true)
212
love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
214
123
self:deactivate()
221
130
self.playerMoney.text = 'Your money: ' .. the.player.money
222
self.availSpace.text = 'Available cargo space: ' .. the.player:availableSpace()
224
for good, have in pairs(self.have) do
225
have.text = the.player.goods[good] or 0
b'\\ No newline at end of file'