2016-06-08 22:29:27 +02:00
local shop_sell = { } --formspec temporary variables
2016-06-06 02:02:27 +02:00
local shop_buy = { }
2016-06-09 21:50:54 +02:00
local shop_admin = { }
2016-06-06 02:02:27 +02:00
minercantile.shop . max_stock = 20000 --shop don't buy infinity items
2016-06-08 22:29:27 +02:00
--shop type, only if item name contains word
minercantile.shop . shop_type = { " all " , " 3d_armor " , " beds " , " boats " , " brick " , " carts " , " chest " , " cobble " , " dye " , " doors " , " farming " , " food " , " signs " , " fishing " , " glass " , " decor " , " mesecons " , " nether " , " pipeworks " , " runes " , " spears " , " stone " , " tree " , " walls " , " wood " , " wool " }
2016-06-06 02:02:27 +02:00
--function shop money
function minercantile . shop . get_money ( )
return ( minercantile.stock . money or 0 )
end
function minercantile . shop . take_money ( money , saving )
minercantile.stock . money = minercantile.shop . get_money ( ) - money
if minercantile.shop . get_money ( ) < 0 then
minercantile.stock . money = 0
end
if saving then
minercantile.save_stock ( )
end
end
function minercantile . shop . give_money ( money , saving )
minercantile.stock . money = minercantile.shop . get_money ( ) + money
if saving then
minercantile.save_stock ( )
end
end
2016-06-09 21:50:54 +02:00
function minercantile . shop . get_nb ( item )
if minercantile.stock . items [ item ] then
return minercantile.stock . items [ item ] . nb
2016-06-06 02:02:27 +02:00
end
2016-06-09 21:50:54 +02:00
return 0
end
function minercantile . shop . get_transac_b ( )
return minercantile.stock . transac_b
end
function minercantile . shop . get_transac_s ( )
return minercantile.stock . transac_s
end
function minercantile . shop . set_transac_b ( )
minercantile.stock . transac_b = minercantile.stock . transac_b + 1
end
function minercantile . shop . set_transac_s ( )
minercantile.stock . transac_s = minercantile.stock . transac_s + 1
2016-06-06 02:02:27 +02:00
end
function minercantile . shop . is_available ( item )
if minercantile.registered_items [ item ] then
return true
end
return false
end
function minercantile . shop . get_item_def ( item )
if minercantile.registered_items [ item ] then
return minercantile.registered_items [ item ]
end
return nil
end
2016-06-09 21:50:54 +02:00
-- table of sellable/buyable items,ignore admin stuff
function minercantile . shop . register_items ( )
minercantile.registered_items = { }
for name , def in pairs ( minetest.registered_items ) do
if not name : find ( " maptools: " ) --ignore maptools
and not def.groups . not_in_creative_inventory
and not def.groups . unbreakable
and def.description and def.description ~= " " then
--and minetest.get_all_craft_recipes(name) then
minercantile.registered_items [ name ] = { groups = def.groups , desc = def.description }
end
end
end
2016-06-06 02:02:27 +02:00
--function save items_base
function minercantile . save_stock_base ( )
local input , err = io.open ( minercantile.file_stock_base , " w " )
if input then
input : write ( minetest.serialize ( minercantile.stock_base ) )
input : close ( )
else
minetest.log ( " error " , " open( " .. minercantile.file_stock_base .. " , 'w') failed: " .. err )
end
end
--function load items_base from file
function minercantile . load_stock_base ( )
local file = io.open ( minercantile.file_stock_base , " r " )
if file then
local data = minetest.deserialize ( file : read ( " *all " ) )
file : close ( )
if data and type ( data ) == " table " then
minercantile.stock_base = table.copy ( data )
end
end
end
--function save stock items
function minercantile . save_stock ( )
local input , err = io.open ( minercantile.file_stock , " w " )
if input then
input : write ( minetest.serialize ( minercantile.stock ) )
input : close ( )
else
minetest.log ( " error " , " open( " .. minercantile.file_stock .. " , 'w') failed: " .. err )
end
end
--function load stock items from file
function minercantile . load_stock ( )
local file = io.open ( minercantile.file_stock , " r " )
if file then
local data = minetest.deserialize ( file : read ( " *all " ) )
file : close ( )
if data and type ( data ) == " table " then
if data.money then
minercantile.stock . money = data.money
end
if data.items then
minercantile.stock . items = table.copy ( data.items )
end
2016-06-09 21:50:54 +02:00
if data.transac_b then
2016-06-09 22:13:24 +02:00
minercantile.stock . transac_b = data.transac_b
2016-06-09 21:50:54 +02:00
end
if data.transac_s then
2016-06-09 22:13:24 +02:00
minercantile.stock . transac_s = data.transac_s
2016-06-09 21:50:54 +02:00
end
2016-06-06 02:02:27 +02:00
return
end
else
if minercantile.stock_base then
minercantile.stock . items = table.copy ( minercantile.stock_base )
end
end
end
--create list items for formspec (search/pages)
2016-06-08 22:29:27 +02:00
function minercantile . shop . set_items_buy_list ( name , shop_type )
shop_buy [ name ] = { page = 1 , search = " " }
shop_buy [ name ] . items_type = { }
for itname , def in pairs ( minercantile.stock . items ) do
if minercantile.shop . is_available ( itname ) and def.nb > 0 then
--local mod = string.split(itname, ":")[1]
--if shop_type == "all" or shop_type == mod then
if shop_type == " all " or itname : find ( shop_type ) then
table.insert ( shop_buy [ name ] . items_type , itname )
end
2016-06-06 02:02:27 +02:00
end
end
2016-06-08 22:29:27 +02:00
table.sort ( shop_buy [ name ] . items_type )
2016-06-06 02:02:27 +02:00
end
-- sell fonction
2016-06-08 12:40:27 +02:00
function minercantile . shop . get_buy_price ( item )
2016-06-06 02:02:27 +02:00
if item == " maptools:copper_coin " or item == " maptools:silver_coin " or item == " maptools:gold_coin " then -- dont's buy/sell coins
return nil
end
local price = nil
local money = minercantile.shop . get_money ( )
if not minercantile.stock . items [ item ] then
2016-06-08 12:40:27 +02:00
minercantile.stock . items [ item ] = { nb = math.random ( 500 , 1000 ) }
2016-06-06 02:02:27 +02:00
end
local nb = minercantile.stock . items [ item ] . nb
if minercantile.stock . items [ item ] . price ~= nil then -- if defined price
price = math.ceil ( minercantile.stock . items [ item ] . price )
2016-06-08 12:40:27 +02:00
else
2016-06-06 02:02:27 +02:00
price = math.ceil ( ( money / 10 ) / ( math.log ( nb + 2000 - 99 ) * 10 ) * 1000000 / ( math.pow ( ( nb + 2000 - 99 ) , ( 2.01 ) ) ) )
end
2016-06-08 12:40:27 +02:00
if price and price < 1 then price = 1 end
return price
end
-- sell fonction
function minercantile . shop . get_sell_price ( item , wear )
if item == " maptools:copper_coin " or item == " maptools:silver_coin " or item == " maptools:gold_coin " then -- dont's buy/sell coins
return nil
end
local price = nil
local money = minercantile.shop . get_money ( )
if not minercantile.stock . items [ item ] then
2016-06-09 21:50:54 +02:00
minercantile.stock . items [ item ] = { nb = 0 }
2016-06-08 12:40:27 +02:00
end
local nb = minercantile.stock . items [ item ] . nb
if minercantile.stock . items [ item ] . price ~= nil then -- if defined price
2016-06-09 21:50:54 +02:00
price = math.floor ( minercantile.stock . items [ item ] . price )
2016-06-08 12:40:27 +02:00
else
2016-06-09 21:50:54 +02:00
price = math.floor ( ( money / 10 ) / ( math.log ( nb + 2000 + 99 ) * 10 ) * 1000000 / ( math.pow ( ( nb + 2000 + 99 ) , ( 2.01 ) ) ) )
2016-06-08 12:40:27 +02:00
end
if wear and wear > 0 then --calcul price with % wear, (0-65535)
local pct = math.ceil ( ( ( 65535 - wear ) * 100 ) / 65535 )
price = math.floor ( ( price * pct ) / 100 )
end
2016-06-06 02:02:27 +02:00
if price < 1 then price = 1 end
return price
end
local function set_pages_by_search ( name , search )
shop_buy [ name ] . page = 1
shop_buy [ name ] . search = minetest.formspec_escape ( search )
shop_buy [ name ] . items_list = { }
2016-06-08 22:29:27 +02:00
for _ , itname in ipairs ( shop_buy [ name ] . items_type ) do
if minercantile.shop . get_nb ( itname ) > 0 then
2016-06-06 02:02:27 +02:00
local item = minercantile.registered_items [ itname ]
if item then
if string.find ( itname , search ) or string.find ( string.lower ( item.desc ) , search ) then
table.insert ( shop_buy [ name ] . items_list , itname )
end
end
end
end
table.sort ( shop_buy [ name ] . items_list )
end
local function get_shop_inventory_by_page ( name )
local page = shop_buy [ name ] . page
local search = shop_buy [ name ] . search
local nb_items , nb_pages
local inv_list = { }
if search ~= " " then
nb_items = # shop_buy [ name ] . items_list
nb_pages = math.ceil ( nb_items / 32 )
if page > nb_pages then page = nb_pages end
local index = ( page * 32 ) - 32
for i = 1 , 32 do
local item = shop_buy [ name ] . items_list [ index + i ]
if not item then break end
local nb = minercantile.shop . get_nb ( item )
if nb > 0 then
2016-06-08 12:40:27 +02:00
local price = minercantile.shop . get_buy_price ( item )
2016-06-06 02:02:27 +02:00
if price and price > 0 then
table.insert ( inv_list , { name = item , nb = nb , price = price } )
end
end
end
else
2016-06-08 22:29:27 +02:00
nb_items = # shop_buy [ name ] . items_type
2016-06-06 02:02:27 +02:00
nb_pages = math.ceil ( nb_items / 32 )
if page > nb_pages then page = nb_pages end
local index = ( page * 32 ) - 32
for i = 1 , 32 do
2016-06-08 22:29:27 +02:00
local item = shop_buy [ name ] . items_type [ index + i ]
2016-06-06 02:02:27 +02:00
if item then
local nb = minercantile.shop . get_nb ( item )
if nb > 0 then
2016-06-08 12:40:27 +02:00
local price = minercantile.shop . get_buy_price ( item )
2016-06-06 02:02:27 +02:00
if price and price > 0 then
table.insert ( inv_list , { name = item , nb = nb , price = price } )
end
end
end
end
end
shop_buy [ name ] . nb_pages = nb_pages
return inv_list
end
--buy
2016-06-09 21:50:54 +02:00
function minercantile . shop . buy ( name , item , nb , price )
2016-06-06 02:02:27 +02:00
local player = minetest.get_player_by_name ( name )
if not player then return false end
local player_inv = player : get_inventory ( )
local shop_money = minercantile.shop . get_money ( )
local player_money = minercantile.wallet . get_money ( name )
if player_money < 1 then
minetest.show_formspec ( name , " minercantile:confirmed " , " size[6,3]bgcolor[#2A2A2A;]label[2.6,0;Shop]label[1,1;Sorry, you have not enough money]button[1.3,2.1;1.5,1;return_buy;Return]button_exit[3.3,2.1;1.5,1;close;Close] " )
return false
2016-06-08 12:40:27 +02:00
end
2016-06-06 02:02:27 +02:00
local items_nb = minercantile.stock . items [ item ] . nb
if items_nb < 1 then
minetest.show_formspec ( name , " minercantile:confirmed " , " size[6,3]bgcolor[#2A2A2A;]label[2.6,0;Shop]label[1,1;Sorry, shop have 0 item " .. item .. " ]button[1.3,2.1;1.5,1;return_buy;Return]button_exit[3.3,2.1;1.5,1;close;Close] " )
return false
end
local item_can_sell = nb
2016-06-07 21:32:26 +02:00
if items_nb < 4 then
2016-06-08 12:40:27 +02:00
item_can_sell = 1
elseif items_nb / 4 < nb then
item_can_sell = math.floor ( items_nb / 4 )
end
2016-06-06 02:02:27 +02:00
local price_total = math.floor ( item_can_sell * price )
local player_can_buy = item_can_sell
if player_money < price_total then
player_can_buy = math.floor ( player_money / price )
end
local sell_price = player_can_buy * price
local stack = ItemStack ( item .. " " .. player_can_buy )
--player_inv:room_for_item("main", stack)
local nn = player_inv : add_item ( " main " , stack )
local count = nn : get_count ( )
if count > 0 then
minetest.spawn_item ( player : getpos ( ) , { name = item , count = count , wear = 0 , metadata = " " } )
end
minercantile.stock . items [ item ] . nb = minercantile.stock . items [ item ] . nb - player_can_buy
2016-06-09 21:50:54 +02:00
minercantile.shop . set_transac_b ( )
2016-06-06 02:02:27 +02:00
minercantile.shop . give_money ( sell_price , true )
minercantile.wallet . take_money ( name , sell_price , " Buy " .. player_can_buy .. " " .. item .. " , price " .. sell_price )
2016-06-08 22:29:27 +02:00
minetest.show_formspec ( name , " minercantile:confirmed " , " size[6,3]bgcolor[#2A2A2A;]label[2.6,0;Shop]label[1.3,0.8;You buy " .. player_can_buy .. " " .. item .. " ]label[1.3,1.3;price " .. sell_price .. " $]button[1.3,2.1;1.5,1;return_buy;Return]button_exit[3.3,2.1;1.5,1;close;Close] " )
2016-06-06 02:02:27 +02:00
return true
end
local function show_formspec_to_buy ( name )
local player = minetest.get_player_by_name ( name )
2016-06-08 22:29:27 +02:00
if not player or not shop_buy [ name ] then return end
2016-06-09 21:50:54 +02:00
local formspec = { " size[13,10]bgcolor[#2A2A2A;]label[6,0;Buy Items] " }
2016-06-09 01:15:09 +02:00
table.insert ( formspec , " label[0,0;Your money: " .. minercantile.wallet . get_money ( name ) .. " $] " )
2016-06-06 02:02:27 +02:00
local inv_items = get_shop_inventory_by_page ( name )
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " label[0.8,1.4;Page: " .. shop_buy [ name ] . page .. " of " .. shop_buy [ name ] . nb_pages .. " ] " )
2016-06-06 02:02:27 +02:00
if shop_buy [ name ] . search ~= " " then
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " label[3,1.4;Filter: " .. minetest.formspec_escape ( shop_buy [ name ] . search ) .. " ] " )
2016-06-06 02:02:27 +02:00
end
2016-06-09 21:50:54 +02:00
local x = 0.8
2016-06-06 02:02:27 +02:00
local y = 2
local j = 1
for i = 1 , 32 do
local item = inv_items [ i ]
if item then
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " item_image_button[ " .. x .. " , " .. y .. " ;1,1; " .. item.name .. " ;buttonchoice_ " .. item.name .. " ; " .. item.nb .. " ] " )
2016-06-06 02:02:27 +02:00
table.insert ( formspec , " label[ " .. ( x ) .. " , " .. ( y + 0.8 ) .. " ; " .. item.price .. " $] " )
else
table.insert ( formspec , " image[ " .. x .. " , " .. y .. " ;1,1;minercantile_img_inv.png] " )
end
2016-06-09 21:50:54 +02:00
x = x + 1.5
2016-06-06 02:02:27 +02:00
j = j + 1
if j > 8 then
j = 1
2016-06-09 21:50:54 +02:00
x = 0.8
y = y + 1.6
2016-06-06 02:02:27 +02:00
end
end
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " field[5.75,8.75;2.2,1;searchbox;;] " )
table.insert ( formspec , " image_button[7.55,8.52;.8,.8;ui_search_icon.png;searchbutton;]tooltip[searchbutton;Search] " )
table.insert ( formspec , " button[5.65,9.3;1,1;page_dec;<] " )
table.insert ( formspec , " button[6.55,9.3;1,1;page_inc;>] " )
table.insert ( formspec , " button_exit[11,9.3;1.5,1;choice;Close] " )
2016-06-06 02:02:27 +02:00
minetest.show_formspec ( name , " minercantile:shop_buy " , table.concat ( formspec ) )
end
local function get_formspec_buy_items ( name )
2016-06-08 22:29:27 +02:00
local itname = shop_buy [ name ] . item
2016-06-06 02:02:27 +02:00
local max = shop_buy [ name ] . max
local nb = shop_buy [ name ] . nb
local price = shop_buy [ name ] . price
local formspec = { " size[8,6]bgcolor[#2A2A2A;]label[3.5,0;Buy Items] " }
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " label[3.4,1;Stock: " .. minercantile.shop . get_nb ( itname ) .. " ] " )
table.insert ( formspec , " item_image_button[3.6,1.5;1,1; " .. itname .. " ;buttonchoice_ " .. itname .. " ; " .. nb .. " ] " )
2016-06-08 22:29:27 +02:00
if minetest.registered_items [ itname ] and minetest.registered_items [ itname ] . stack_max and minetest.registered_items [ itname ] . stack_max == 1 then
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " label[2.2,2.5;This item is being sold by 1 max] " )
2016-06-06 02:02:27 +02:00
else
table.insert ( formspec , " button[0.6,1.5;1,1;amount;-1] " )
table.insert ( formspec , " button[1.6,1.5;1,1;amount;-10] " )
table.insert ( formspec , " button[2.6,1.5;1,1;amount;-20] " )
table.insert ( formspec , " button[4.6,1.5;1,1;amount;+20] " )
table.insert ( formspec , " button[5.6,1.5;1,1;amount;+10] " )
table.insert ( formspec , " button[6.6,1.5;1,1;amount;+1] " )
end
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " label[3.2,3;Price: " .. price .. " $] " )
table.insert ( formspec , " label[3.2,3.4;Amount: " .. nb .. " items] " )
table.insert ( formspec , " label[3.2,3.8;Total: " .. nb * price .. " $] " )
2016-06-06 02:02:27 +02:00
table.insert ( formspec , " button[3.3,5;1.5,1;confirm;Confirm] " )
table.insert ( formspec , " button[0,0;1.5,1;abort;Return] " )
return table.concat ( formspec )
end
-- sell
2016-06-08 12:40:27 +02:00
function minercantile . shop . player_sell ( name )
2016-06-06 02:02:27 +02:00
local player = minetest.get_player_by_name ( name )
if not player then return false end
local player_inv = player : get_inventory ( )
local shop_money = minercantile.shop . get_money ( )
if shop_money < 4 then
minetest.show_formspec ( name , " minercantile:confirmed " , " size[6,3]bgcolor[#2A2A2A;]label[2.6,0;Shop]label[1,1;Sorry, shop have not enough money]button[1.3,2.1;1.5,1;return_sell;Return]button_exit[3.3,2.1;1.5,1;close;Close] " )
return false
2016-06-08 12:40:27 +02:00
end
2016-06-08 22:29:27 +02:00
local item = shop_sell [ name ] . item
2016-06-08 12:40:27 +02:00
local index = item.index
2016-06-08 22:29:27 +02:00
local nb = shop_sell [ name ] . nb
local price = shop_sell [ name ] . price
2016-06-08 12:40:27 +02:00
local stack = player_inv : get_stack ( " main " , index )
local itname = stack : get_name ( )
local items_nb = stack : get_count ( )
2016-06-06 02:02:27 +02:00
2016-06-08 12:40:27 +02:00
if itname ~= item.name or items_nb == 0 then
2016-06-09 01:15:09 +02:00
minetest.show_formspec ( name , " minercantile:confirmed " , " size[6,3]bgcolor[#2A2A2A;]label[2.6,0;Shop]label[1.5,1;Sorry, You have 0 item .. " .. itname .. " ]button[1.3,2.1;1.5,1;return_sell;Return]button_exit[3.3,2.1;1.5,1;close;Close] " )
2016-06-06 02:02:27 +02:00
return false
end
local item_can_sell = nb
if items_nb < nb then
item_can_sell = items_nb
end
local price_total = math.floor ( item_can_sell * price )
local shop_can_buy = item_can_sell
if ( shop_money / 4 ) < price_total then
shop_can_buy = math.floor ( ( shop_money / 4 ) / price )
end
if shop_can_buy == 0 then
minetest.show_formspec ( name , " minercantile:confirmed " , " size[6,3]bgcolor[#2A2A2A;]label[2.6,0;Shop]label[1,1;Sorry, shop have not enough money]button[1.3,2.1;1.5,1;return_sell;Return]button_exit[3.3,2.1;1.5,1;close;Close] " )
return false
2016-06-08 12:40:27 +02:00
end
2016-06-06 02:02:27 +02:00
2016-06-08 12:40:27 +02:00
local taken = stack : take_item ( shop_can_buy )
local sell_price = math.floor ( ( taken : get_count ( ) ) * price )
player_inv : set_stack ( " main " , index , stack )
minercantile.stock . items [ itname ] . nb = minercantile.stock . items [ itname ] . nb + shop_can_buy
2016-06-09 21:50:54 +02:00
minercantile.shop . set_transac_s ( )
2016-06-06 02:02:27 +02:00
minercantile.shop . take_money ( sell_price , true )
2016-06-08 12:40:27 +02:00
minercantile.wallet . give_money ( name , sell_price , " Sell " .. shop_can_buy .. " " .. itname .. " , price " .. sell_price )
2016-06-08 22:29:27 +02:00
minetest.show_formspec ( name , " minercantile:confirmed " , " size[6,3]bgcolor[#2A2A2A;]label[2.6,0;Shop]label[1.3,0.8;You sell " .. shop_can_buy .. " " .. itname .. " ]label[1.3,1.3;price " .. sell_price .. " $]button[1.3,2.1;1.5,1;return_sell;Return]button_exit[3.3,2.1;1.5,1;close;Close] " )
2016-06-06 02:02:27 +02:00
return true
end
2016-06-09 01:15:09 +02:00
local function get_wear_img ( wear )
2016-06-09 21:50:54 +02:00
local pct = math.floor ( ( ( 65535 - wear ) * 10 ) / 65535 )
for i = 9 , 0 , - 1 do
if pct == i then
2016-06-09 01:15:09 +02:00
return " minercantile_wear_ " .. i .. " .png "
end
end
return nil
end
2016-06-06 02:02:27 +02:00
-- show sell formspec
local function show_formspec_to_sell ( name )
local player = minetest.get_player_by_name ( name )
if not player then return end
2016-06-09 01:15:09 +02:00
local formspec = { " size[13,10]bgcolor[#2A2A2A;]label[6,0;Sell Items] " }
table.insert ( formspec , " label[0,0;Your money: " .. minercantile.wallet . get_money ( name ) .. " $] " )
2016-06-06 02:02:27 +02:00
local player_inv = player : get_inventory ( )
2016-06-08 22:29:27 +02:00
shop_sell [ name ] = { }
shop_sell [ name ] . items = { }
2016-06-06 02:02:27 +02:00
for i = 1 , player_inv : get_size ( " main " ) do
local stack = player_inv : get_stack ( " main " , i )
2016-06-09 01:15:09 +02:00
if not stack : is_empty ( ) then
2016-06-08 12:40:27 +02:00
local itname = stack : get_name ( )
2016-06-09 01:15:09 +02:00
if minercantile.shop . is_available ( itname ) and minercantile.shop . get_nb ( itname ) < minercantile.shop . max_stock then
local nb = stack : get_count ( )
local wear = stack : get_wear ( )
local price = minercantile.shop . get_sell_price ( itname , wear )
if price and price > 0 then
table.insert ( shop_sell [ name ] . items , { name = itname , nb = nb , price = price , index = i , wear = wear } )
end
2016-06-06 02:02:27 +02:00
end
end
end
2016-06-09 01:15:09 +02:00
local x = 0.8
local y = 2
local j = 1
2016-06-06 02:02:27 +02:00
for i = 1 , 32 do
2016-06-08 22:29:27 +02:00
local item = shop_sell [ name ] . items [ i ]
2016-06-06 02:02:27 +02:00
if item then
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " item_image_button[ " .. x .. " , " .. y .. " ;1,1; " .. item.name .. " ;buttonchoice_ " .. i .. " ; " .. item.nb .. " ] " )
2016-06-06 02:02:27 +02:00
table.insert ( formspec , " label[ " .. ( x ) .. " , " .. ( y + 0.8 ) .. " ; " .. item.price .. " $] " )
2016-06-09 01:15:09 +02:00
if item.wear and item.wear > 0 then
local img = get_wear_img ( item.wear )
if img then
table.insert ( formspec , " image[ " .. x .. " , " .. y .. " ;1,1; " .. img .. " ] " )
end
end
2016-06-06 02:02:27 +02:00
else
table.insert ( formspec , " image[ " .. x .. " , " .. y .. " ;1,1;minercantile_img_inv.png] " )
end
2016-06-09 01:15:09 +02:00
x = x + 1.5
j = j + 1
if j > 8 then
j = 1
x = 0.8
y = y + 1.6
2016-06-06 02:02:27 +02:00
end
end
2016-06-09 01:15:09 +02:00
table.insert ( formspec , " button_exit[5.8,9.3;1.5,1;choice;Close] " )
2016-06-06 02:02:27 +02:00
minetest.show_formspec ( name , " minercantile:shop_sell " , table.concat ( formspec ) )
end
local function get_formspec_sell_items ( name )
2016-06-08 22:29:27 +02:00
local item = shop_sell [ name ] . item
local itname = item.name
local index = shop_sell [ name ] . index
local max = shop_sell [ name ] . max
local nb = shop_sell [ name ] . nb
local price = minercantile.shop . get_sell_price ( itname , item.wear )
shop_sell [ name ] . price = price
2016-06-06 02:02:27 +02:00
local formspec = { " size[8,6]bgcolor[#2A2A2A;]label[3.5,0;Sell Items] " }
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " item_image_button[3.6,1.5;1,1; " .. itname .. " ;buttonchoice_ " .. index .. " ; " .. nb .. " ] " )
if item.wear and item.wear > 0 then
local img = get_wear_img ( item.wear )
if img then
table.insert ( formspec , " image[3.6,1.5;1,1; " .. img .. " ] " )
end
end
2016-06-08 22:29:27 +02:00
if minetest.registered_items [ itname ] and minetest.registered_items [ itname ] . stack_max and minetest.registered_items [ itname ] . stack_max == 1 then
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " label[2.2,2.5;This item is being sold by 1 max] " )
2016-06-08 22:29:27 +02:00
else
table.insert ( formspec , " button[0.6,1.5;1,1;amount;-1] " )
table.insert ( formspec , " button[1.6,1.5;1,1;amount;-10] " )
table.insert ( formspec , " button[2.6,1.5;1,1;amount;-20] " )
table.insert ( formspec , " button[4.6,1.5;1,1;amount;+20] " )
table.insert ( formspec , " button[5.6,1.5;1,1;amount;+10] " )
table.insert ( formspec , " button[6.6,1.5;1,1;amount;+1] " )
end
2016-06-06 02:02:27 +02:00
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " label[3.2,3;Price: " .. price .. " $] " )
table.insert ( formspec , " label[3.2,3.4;Amount: " .. nb .. " items] " )
table.insert ( formspec , " label[3.2,3.8;Total: " .. nb * price .. " $] " )
2016-06-08 22:29:27 +02:00
table.insert ( formspec , " button[3.3,5;1.5,1;confirm;Confirm] " )
2016-06-06 02:02:27 +02:00
table.insert ( formspec , " button[0,0;1.5,1;abort;Return] " )
return table.concat ( formspec )
end
local function get_formspec_welcome ( name )
local formspec = { " size[6,5]bgcolor[#2A2A2A;]label[2.6,0;Shop] " }
table.insert ( formspec , " image[1,1;5,1.25;minercantile_shop_welcome.png] " )
2016-06-09 21:50:54 +02:00
table.insert ( formspec , " label[1,2.5;Total purchases: " .. minercantile.shop . get_transac_b ( ) .. " ] " )
table.insert ( formspec , " label[1,3;Total sales: " .. minercantile.shop . get_transac_s ( ) .. " ] " )
table.insert ( formspec , " button[1,4.3;1.5,1;choice;Buy] " )
table.insert ( formspec , " button[3.5,4.3;1.5,1;choice;Sell] " )
2016-06-06 02:02:27 +02:00
return table.concat ( formspec )
end
2016-06-08 22:29:27 +02:00
-- formspec admin shop
2016-06-06 02:02:27 +02:00
function minercantile . get_formspec_shop_admin_shop ( pos , node_name , name )
2016-06-09 21:50:54 +02:00
if not shop_admin [ name ] then
shop_admin [ name ] = { }
2016-06-06 02:02:27 +02:00
end
2016-06-09 21:50:54 +02:00
shop_admin [ name ] . pos = pos
shop_admin [ name ] . node_name = node_name
2016-06-06 02:02:27 +02:00
local formspec = { " size[6,6]bgcolor[#2A2A2A;]label[2.2,0;Shop Admin]button[4.5,0;1.5,1;shop;Shop] " }
local isnode = minetest.get_node_or_nil ( pos )
if not isnode or isnode.name ~= node_name then return end
local meta = minetest.get_meta ( pos )
2016-06-08 22:29:27 +02:00
local shop_type = meta : get_int ( " shop_type " ) or 1
table.insert ( formspec , " label[1,1;Shop Type:] " )
table.insert ( formspec , " dropdown[3,1;3,1;select_type; " .. table.concat ( minercantile.shop . shop_type , " , " ) .. " ; " .. shop_type .. " ] " )
2016-06-06 02:02:27 +02:00
local isopen = meta : get_int ( " open " ) or 0
if isopen == 1 then
2016-06-08 22:29:27 +02:00
table.insert ( formspec , " label[1,2;Is Open: Yes]button[3.5,1.8;1.5,1;open_close;No] " )
2016-06-06 02:02:27 +02:00
else
2016-06-08 22:29:27 +02:00
table.insert ( formspec , " label[1,2;Is Open: No]button[3.5,1.8;1.5,1;open_close;Yes] " )
2016-06-06 02:02:27 +02:00
end
local always_open = meta : get_int ( " always_open " ) or 0
if always_open == 1 then
2016-06-08 22:29:27 +02:00
table.insert ( formspec , " label[1,3;Open 24/24: Yes]button[3.5,2.8;1.5,1;always_open;No] " )
2016-06-06 02:02:27 +02:00
else
2016-06-08 22:29:27 +02:00
table.insert ( formspec , " label[1,3;Open 24/24: No]button[3.5,2.8;1.5,1;always_open;Yes] " )
2016-06-06 02:02:27 +02:00
end
2016-06-09 01:15:09 +02:00
table.insert ( formspec , " label[1,4;Shop money: " .. minercantile.shop . get_money ( ) .. " $] " )
2016-06-06 02:02:27 +02:00
table.insert ( formspec , " button_exit[2.4,5.3;1.5,1;close;Close] " )
return table.concat ( formspec )
end
minetest.register_on_player_receive_fields ( function ( player , formname , fields )
local name = player : get_player_name ( )
if not name or name == " " then return end
if formname == " minercantile:shop_welcome " then
if fields [ " choice " ] then
if fields [ " choice " ] == " Buy " then
show_formspec_to_buy ( name )
elseif fields [ " choice " ] == " Sell " then
show_formspec_to_sell ( name )
end
return
end
elseif formname == " minercantile:shop_buy " then
for b , n in pairs ( fields ) do
if string.find ( b , " buttonchoice_ " ) then
2016-06-08 22:29:27 +02:00
if not shop_buy [ name ] then return end
2016-06-06 02:02:27 +02:00
local item = string.sub ( b , 14 )
shop_buy [ name ] . item = item
2016-06-09 21:50:54 +02:00
shop_buy [ name ] . max = tonumber ( n ) / 4
2016-06-06 02:02:27 +02:00
shop_buy [ name ] . nb = 1
2016-06-08 12:40:27 +02:00
shop_buy [ name ] . price = minercantile.shop . get_buy_price ( item )
2016-06-06 02:02:27 +02:00
minetest.show_formspec ( name , " minercantile:shop_buy_items " , get_formspec_buy_items ( name ) )
return
end
end
if fields [ " quit " ] then
return
elseif fields [ " searchbutton " ] then
local search = string.sub ( string.lower ( fields [ " searchbox " ] ) , 1 , 14 )
set_pages_by_search ( name , search )
elseif fields [ " page_inc " ] then
if shop_buy [ name ] . page < shop_buy [ name ] . nb_pages then
shop_buy [ name ] . page = shop_buy [ name ] . page + 1
end
elseif fields [ " page_dec " ] then
if shop_buy [ name ] . page > 1 then
shop_buy [ name ] . page = shop_buy [ name ] . page - 1
end
end
show_formspec_to_buy ( name )
elseif formname == " minercantile:shop_buy_items " then
if fields [ " amount " ] then
local inc = tonumber ( fields [ " amount " ] )
if inc ~= nil then
shop_buy [ name ] . nb = shop_buy [ name ] . nb + inc
end
if shop_buy [ name ] . nb > 99 then
shop_buy [ name ] . nb = 99
2016-06-09 21:50:54 +02:00
end
if shop_buy [ name ] . nb > shop_buy [ name ] . max then
shop_buy [ name ] . nb = shop_buy [ name ] . max
2016-06-06 02:02:27 +02:00
end
if shop_buy [ name ] . nb < 1 then
shop_buy [ name ] . nb = 1
end
elseif fields [ " abort " ] then
show_formspec_to_buy ( name )
return
elseif fields [ " confirm " ] then
2016-06-09 21:50:54 +02:00
minercantile.shop . buy ( name , shop_buy [ name ] . item , shop_buy [ name ] . nb , shop_buy [ name ] . price )
2016-06-06 02:02:27 +02:00
return
elseif fields [ " quit " ] then
shop_buy [ name ] = nil
return
end
minetest.show_formspec ( name , " minercantile:shop_buy_items " , get_formspec_buy_items ( name ) )
elseif formname == " minercantile:shop_sell " then
for b , n in pairs ( fields ) do
if string.find ( b , " buttonchoice_ " ) then
2016-06-08 22:29:27 +02:00
if not shop_sell [ name ] then
shop_sell [ name ] = { }
2016-06-06 02:02:27 +02:00
end
2016-06-08 12:40:27 +02:00
local index = tonumber ( string.sub ( b , 14 ) )
2016-06-08 22:29:27 +02:00
shop_sell [ name ] . index = index
local item = shop_sell [ name ] . items [ index ]
shop_sell [ name ] . item = item
shop_sell [ name ] . itname = item.name
shop_sell [ name ] . max = item.nb
shop_sell [ name ] . wear = item.wear
shop_sell [ name ] . nb = 1
shop_sell [ name ] . price = minercantile.shop . get_sell_price ( item.name , item.wear )
2016-06-06 02:02:27 +02:00
minetest.show_formspec ( name , " minercantile:shop_sell_items " , get_formspec_sell_items ( name ) )
break
end
end
return
elseif formname == " minercantile:shop_sell_items " then
if fields [ " amount " ] then
local inc = tonumber ( fields [ " amount " ] )
if inc ~= nil then
2016-06-08 22:29:27 +02:00
shop_sell [ name ] . nb = shop_sell [ name ] . nb + inc
2016-06-06 02:02:27 +02:00
end
2016-06-08 22:29:27 +02:00
if shop_sell [ name ] . nb > shop_sell [ name ] . max then
shop_sell [ name ] . nb = shop_sell [ name ] . max
2016-06-06 02:02:27 +02:00
end
2016-06-08 22:29:27 +02:00
if shop_sell [ name ] . nb > 99 then
shop_sell [ name ] . nb = 99
2016-06-06 02:02:27 +02:00
end
2016-06-08 22:29:27 +02:00
if shop_sell [ name ] . nb < 1 then
shop_sell [ name ] . nb = 1
2016-06-06 02:02:27 +02:00
end
elseif fields [ " abort " ] then
show_formspec_to_sell ( name )
return
elseif fields [ " confirm " ] then
2016-06-08 12:40:27 +02:00
minercantile.shop . player_sell ( name )
2016-06-06 02:02:27 +02:00
return
elseif fields [ " quit " ] then
2016-06-08 22:29:27 +02:00
shop_sell [ name ] = nil
2016-06-06 02:02:27 +02:00
return
end
minetest.show_formspec ( name , " minercantile:shop_sell_items " , get_formspec_sell_items ( name ) )
elseif formname == " minercantile:confirmed " then
if fields [ " return_sell " ] then
show_formspec_to_sell ( name )
elseif fields [ " return_buy " ] then
show_formspec_to_buy ( name )
end
2016-06-08 22:29:27 +02:00
-- admin conf
2016-06-06 02:02:27 +02:00
elseif formname == " minercantile:shop_admin_shop " then
if fields [ " quit " ] then
2016-06-09 21:50:54 +02:00
shop_admin [ name ] = nil
2016-06-06 02:02:27 +02:00
return
elseif fields [ " shop " ] then
minetest.show_formspec ( name , " minercantile:shop_welcome " , get_formspec_welcome ( name ) )
return
end
2016-06-09 21:50:54 +02:00
local pos = shop_admin [ name ] . pos
local node_name = shop_admin [ name ] . node_name
2016-06-06 02:02:27 +02:00
local isnode = minetest.get_node_or_nil ( pos )
if not isnode or isnode.name ~= node_name then return end --FIXME
local meta = minetest.get_meta ( pos )
if fields [ " open_close " ] then
local open = 0
if fields [ " open_close " ] == " Yes " then
open = 1
end
meta : set_int ( " open " , open )
elseif fields [ " always_open " ] then
local always_open = 0
if fields [ " always_open " ] == " Yes " then
always_open = 1
end
meta : set_int ( " always_open " , always_open )
2016-06-08 22:29:27 +02:00
elseif fields [ " select_type " ] then
for i , n in pairs ( minercantile.shop . shop_type ) do
if n == fields [ " select_type " ] then
meta : set_int ( " shop_type " , i )
break
end
end
2016-06-06 02:02:27 +02:00
end
minetest.show_formspec ( name , " minercantile:shop_admin_shop " , minercantile.get_formspec_shop_admin_shop ( pos , node_name , name ) )
end
end )
--Barter shop.
minetest.register_node ( " minercantile:shop " , {
description = " Barter Shop " ,
tiles = { " minercantile_shop.png " } ,
groups = { snappy = 2 , choppy = 2 , oddly_breakable_by_hand = 2 } ,
sounds = default.node_sound_wood_defaults ( ) ,
paramtype2 = " facedir " ,
drawtype = " mesh " ,
mesh = " minercantile_shop.obj " ,
paramtype = " light " ,
on_construct = function ( pos )
local meta = minetest.get_meta ( pos )
meta : set_string ( " infotext " , " Barter Shop " )
meta : set_int ( " open " , 0 )
meta : set_int ( " always_open " , 0 )
2016-06-08 22:29:27 +02:00
meta : set_int ( " shop_type " , 1 )
2016-06-06 02:02:27 +02:00
end ,
can_dig = function ( pos , player )
local name = player : get_player_name ( )
return ( minetest.check_player_privs ( name , { protection_bypass = true } ) or minetest.check_player_privs ( name , { server = true } ) )
end ,
on_rightclick = function ( pos , node , player , itemstack , pointed_thing )
local name = player : get_player_name ( )
if not name or name == " " then return end
2016-06-08 22:29:27 +02:00
local meta = minetest.get_meta ( pos )
local shop_type = minercantile.shop . shop_type [ meta : get_int ( " shop_type " ) or 1 ]
minercantile.shop . set_items_buy_list ( name , shop_type )
2016-06-06 02:02:27 +02:00
if minetest.check_player_privs ( name , { protection_bypass = true } ) or minetest.check_player_privs ( name , { server = true } ) then
minetest.show_formspec ( name , " minercantile:shop_admin_shop " , minercantile.get_formspec_shop_admin_shop ( pos , node.name , name ) )
else
local isopen = meta : get_int ( " open " )
if ( isopen and isopen == 1 ) then
local always_open = meta : get_int ( " always_open " )
local tod = ( minetest.get_timeofday ( ) or 0 ) * 24000
if always_open == 1 or ( tod > 4500 and tod < 19500 ) then --FIXME check tod 8h-21h
minetest.show_formspec ( name , " minercantile:shop_welcome " , get_formspec_welcome ( name ) )
else
minetest.show_formspec ( name , " minercantile:closed " , " size[6,3]bgcolor[#2A2A2A;]label[2.6,0;Shop]label[1.2,1;Sorry shop is only open 7h-21h]button_exit[2.3,2.1;1.5,1;close;Close] " )
end
else
minetest.show_formspec ( name , " minercantile:closed " , " size[6,3]bgcolor[#2A2A2A;]label[2.6,0;Shop]label[1.7,1;Sorry shop is closed]button_exit[2.3,2.1;1.5,1;close;Close] " )
end
end
end ,
} )
minetest.register_chatcommand ( " shop_addmoney " , {
params = " money " ,
description = " give money to the shop " ,
privs = { server = true } ,
func = function ( name , param )
2016-06-08 22:29:27 +02:00
param = string.gsub ( param , " " , " " )
2016-06-06 02:02:27 +02:00
local amount = tonumber ( param )
if amount == nil then
minetest.chat_send_player ( name , " invalid, you must add amount at param " )
return
end
minercantile.shop . give_money ( amount , true )
minetest.chat_send_player ( name , " you add " .. amount .. " , new total: " .. minercantile.shop . get_money ( ) )
end ,
} )
minetest.register_chatcommand ( " shop_delmoney " , {
params = " money " ,
description = " del money to the shop " ,
privs = { server = true } ,
func = function ( name , param )
2016-06-08 22:29:27 +02:00
param = string.gsub ( param , " " , " " )
2016-06-06 02:02:27 +02:00
local amount = tonumber ( param )
if ( amount == nil ) then
minetest.chat_send_player ( name , " invalid, you must add amount at param " )
return
end
minercantile.shop . take_money ( amount , true )
minetest.chat_send_player ( name , " you delete " .. amount .. " , new total: " .. minercantile.shop . get_money ( ) )
end ,
} )