PartySendItem.lua
2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
-- ToME - Tales of Maj'Eyal
-- Copyright (C) 2009 - 2015 Nicolas Casalini
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-- Nicolas Casalini "DarkGod"
-- darkgod@te4.org
require "engine.class"
require "engine.ui.Dialog"
local List = require "engine.ui.List"
module(..., package.seeall, class.inherit(engine.ui.Dialog))
function _M:init(source, o, inven, item, on_end)
self:generateList()
self.on_end = on_end
self.source = source
self.inven = inven
self.item = item
self.o = o
engine.ui.Dialog.init(self, "Give item to a party member", 1, 1)
local list = List.new{width=400, nb_items=#self.list, list=self.list, fct=function(item) self:use(item) end}
self:loadUI{
{left=0, top=0, ui=list},
}
self:setupUI(true, true)
self.key:addCommands{ __TEXTINPUT = function(c) if self.list and self.list.chars[c] then self:use(self.list[self.list.chars[c]]) end end}
self.key:addBinds{
EXIT = function() game:unregisterDialog(self) end,
}
end
function _M:on_register()
game:onTickEnd(function() self.key:unicodeInput(true) end)
end
function _M:use(item)
if not item or not item.actor:canAddToInven(item.actor.INVEN_INVEN) then return end
game:unregisterDialog(self)
self.source:removeObject(self.inven, self.item, true)
self.source:sortInven(self.inven)
self.o.__transmo = nil
item.actor:addObject(item.actor.INVEN_INVEN, self.o, true) -- force full stack transfer
game.log("You give %s to %s.", self.o:getName{do_color=true}, item.actor.name)
item.actor:sortInven(item.actor.INVEN_INVEN)
self.on_end()
end
function _M:generateList()
local list = {}
for i, act in ipairs(game.party.m_list) do
if not act.no_inventory_access and act ~= game.player and act:getInven(act.INVEN_INVEN) then
list[#list+1] = {name=act.name..(act:canAddToInven(act.INVEN_INVEN) and "" or " #YELLOW#[NO ROOM]#LAST#"), actor=act}
end
end
local chars = {}
for i, v in ipairs(list) do
v.name = self:makeKeyChar(i)..") "..v.name
chars[self:makeKeyChar(i)] = i
end
list.chars = chars
self.list = list
end