minetest-mod-xdecor/src/hive.lua

109 lines
2.7 KiB
Lua
Raw Normal View History

2015-08-06 12:19:42 -07:00
local hive = {}
local S = xdecor.S
local FS = function(...) return minetest.formspec_escape(S(...)) end
local honey_max = 16
2015-08-06 12:19:42 -07:00
function hive.construct(pos)
2015-07-04 16:38:12 -07:00
local meta = minetest.get_meta(pos)
2015-08-24 13:50:29 -07:00
local inv = meta:get_inventory()
2015-08-16 12:57:17 -07:00
local formspec = "size[8,6;]"
.."label[0.5,0;"..FS("Bees are busy making honey…").."]"
..[[ image[6,1;1,1;hive_bee.png]
image[5,1;1,1;hive_layout.png]
list[context;honey;5,1;1,1;]
list[current_player;main;0,2.35;8,4;]
listring[current_player;main]
2019-07-23 05:03:20 -07:00
listring[context;honey] ]] ..
xbg .. default.get_hotbar_bg(0,2.35)
2015-12-30 11:08:39 -08:00
2016-01-03 04:58:29 -08:00
meta:set_string("formspec", formspec)
meta:set_string("infotext", S("Artificial Hive"))
2015-07-04 16:38:12 -07:00
inv:set_size("honey", 1)
2016-03-08 05:35:51 -08:00
local timer = minetest.get_node_timer(pos)
timer:start(math.random(64, 128))
end
function hive.timer(pos)
local time = (minetest.get_timeofday() or 0) * 24000
2019-07-23 05:03:20 -07:00
if time < 5500 or time > 18500 then
return true
end
2016-03-08 05:35:51 -08:00
local inv = minetest.get_meta(pos):get_inventory()
2016-03-08 05:35:51 -08:00
local honeystack = inv:get_stack("honey", 1)
local honey = honeystack:get_count()
local radius = 4
local minp = vector.add(pos, -radius)
local maxp = vector.add(pos, radius)
local flowers = minetest.find_nodes_in_area_under_air(minp, maxp, "group:flower")
if #flowers > 2 and honey < honey_max then
2016-03-08 05:35:51 -08:00
inv:add_item("honey", "xdecor:honey")
elseif honey == honey_max then
local timer = minetest.get_node_timer(pos)
2019-07-23 05:03:20 -07:00
timer:stop()
return true
2016-03-08 05:35:51 -08:00
end
2019-07-23 05:03:20 -07:00
2016-03-08 05:35:51 -08:00
return true
2015-07-04 16:38:12 -07:00
end
xdecor.register("hive", {
description = S("Artificial Hive"),
2016-02-20 03:32:53 -08:00
tiles = {"xdecor_hive_top.png", "xdecor_hive_top.png",
"xdecor_hive_side.png", "xdecor_hive_side.png",
"xdecor_hive_side.png", "xdecor_hive_front.png"},
2015-11-15 13:55:12 -08:00
groups = {choppy=3, oddly_breakable_by_hand=2, flammable=1},
2015-08-06 12:19:42 -07:00
on_construct = hive.construct,
2016-03-08 05:35:51 -08:00
on_timer = hive.timer,
2019-07-23 05:03:20 -07:00
2016-01-07 13:33:54 -08:00
can_dig = function(pos)
2016-03-08 05:35:51 -08:00
local inv = minetest.get_meta(pos):get_inventory()
return inv:is_empty("honey")
end,
2019-07-23 05:03:20 -07:00
2016-01-03 04:58:29 -08:00
on_punch = function(_, _, puncher)
puncher:set_hp(puncher:get_hp() - 2)
end,
2019-07-23 05:03:20 -07:00
allow_metadata_inventory_put = function()
return 0
end,
on_metadata_inventory_take = function(pos, _, _, stack)
if stack:get_count() == honey_max then
local timer = minetest.get_node_timer(pos)
timer:start(math.random(64, 128))
end
end
2015-07-04 16:38:12 -07:00
})
-- Craft items
minetest.register_craftitem("xdecor:honey", {
description = S("Honey"),
inventory_image = "xdecor_honey.png",
wield_image = "xdecor_honey.png",
2019-07-23 05:03:20 -07:00
on_use = minetest.item_eat(2),
groups = {
food_honey = 1,
food_sugar = 1,
flammable = 2,
not_in_creative_inventory = 1,
},
})
-- Recipes
minetest.register_craft({
output = "xdecor:hive",
recipe = {
{"group:stick", "group:stick", "group:stick"},
{"default:paper", "default:paper", "default:paper"},
{"group:stick", "group:stick", "group:stick"}
}
})