2016-09-14 02:35:28 +02:00
|
|
|
------------------------------------------------------------
|
|
|
|
-- Copyright (c) 2016 tacigar. All rights reserved.
|
|
|
|
-- https://github.com/tacigar/maidroid
|
|
|
|
------------------------------------------------------------
|
|
|
|
|
2016-09-14 17:24:48 +02:00
|
|
|
local dye_core_map = {
|
|
|
|
["dye:red"] = "maidroid_core:basic",
|
|
|
|
}
|
|
|
|
|
2016-09-14 02:35:28 +02:00
|
|
|
-- register a definition of a core writer.
|
2016-09-14 04:23:27 +02:00
|
|
|
(function()
|
|
|
|
local node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.4375, -0.25, -0.4375, 0.4375, 0.1875, 0.4375},
|
|
|
|
{ 0.1875, 0.3125, 0.0625, 0.4375, 0.375, 0.125},
|
|
|
|
{ -0.375, 0.1875, -0.375, 0.375, 0.25, 0.375},
|
|
|
|
{-0.0625, -0.5, -0.0625, 0.0625, 0.375, 0.0625},
|
|
|
|
{ 0.375, 0.1875, 0.0625, 0.4375, 0.375, 0.125},
|
|
|
|
{ -0.375, -0.5, -0.375, 0.375, -0.25, 0.375},
|
|
|
|
},
|
2016-09-14 13:04:21 +02:00
|
|
|
}
|
|
|
|
|
2016-09-14 16:07:35 +02:00
|
|
|
local selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.4375, -0.5, -0.4375, 0.4375, 0.25, 0.4375},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-09-14 15:10:40 +02:00
|
|
|
-- can_dig is a common callback for the core writer.
|
2016-09-14 13:25:33 +02:00
|
|
|
local function can_dig(pos, player)
|
2016-09-14 13:04:21 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inventory = meta:get_inventory()
|
|
|
|
return (
|
|
|
|
inventory:is_empty("core") and
|
|
|
|
inventory:is_empty("fuel") and
|
|
|
|
inventory:is_empty("dye")
|
|
|
|
)
|
2016-09-14 13:20:14 +02:00
|
|
|
end
|
2016-09-14 13:04:21 +02:00
|
|
|
|
2016-09-14 15:10:40 +02:00
|
|
|
-- on_timer is a common callback for the core writer.
|
|
|
|
local function on_timer(pos, elapsed)
|
2016-09-14 17:24:48 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inventory = meta:get_inventory()
|
|
|
|
|
|
|
|
local core_list = inventory:get_list("core")
|
|
|
|
local fuel_list = inventory:get_list("fuel")
|
|
|
|
local dye_list = inventory:get_list("dye")
|
2016-09-14 15:10:40 +02:00
|
|
|
|
2016-09-14 17:24:48 +02:00
|
|
|
local writing_time = meta:get_float("writing_time")
|
|
|
|
local writing_total_time = 100
|
|
|
|
|
2016-09-14 17:51:34 +02:00
|
|
|
local output_core = meta:get_string("output_core")
|
2016-09-14 17:24:48 +02:00
|
|
|
|
2016-09-14 17:51:34 +02:00
|
|
|
-- if writing time is positive, the core writer is active.
|
|
|
|
if writing_time >= 0 then
|
|
|
|
if writing_time <= writing_total_time then
|
|
|
|
meta:set_float("writing_time", writing_time + 1)
|
|
|
|
else -- else place output core to core list.
|
|
|
|
meta:set_float("writing_time", 0)
|
|
|
|
meta:set_string("output_core", "")
|
|
|
|
inventory:add_item("core", ItemStack(output_core))
|
|
|
|
minetest.swap_node(pos, {name = "maidroid_tool:core_writer"})
|
|
|
|
end
|
|
|
|
else -- else the core writer is inactive.
|
|
|
|
local core_name = core_list[1]:get_name()
|
|
|
|
if core_name == "maidroid_core:empty" and (not fuel_list[1]:is_empty()) and (not dye_list[1]:is_empty()) then
|
|
|
|
meta:set_float("writing_time", 0)
|
|
|
|
meta:set_string("output_core", dye_core_map[dye_list[1]:get_name()])
|
|
|
|
minetest.swap_node(pos, {name = "maidroid_tool:core_writer_active"})
|
|
|
|
end
|
2016-09-14 17:24:48 +02:00
|
|
|
end
|
2016-09-14 15:10:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- allow_metadata_inventory_put is a common callback for the core writer.
|
2016-09-14 13:25:33 +02:00
|
|
|
local function allow_metadata_inventory_put(pos, listname, index, stack, player)
|
2016-09-14 13:04:21 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inventory = meta:get_inventory()
|
|
|
|
local itemname = stack:get_name()
|
|
|
|
|
|
|
|
if (listname == "fuel" and itemname == "default:coal_lump") then
|
|
|
|
return stack:get_count()
|
|
|
|
elseif listname == "dye" and minetest.get_item_group(itemname, "dye") > 0 then
|
|
|
|
return stack:get_count()
|
2016-09-14 13:20:14 +02:00
|
|
|
elseif listname == "core" and maidroid.is_core(itemname) then
|
2016-09-14 13:04:21 +02:00
|
|
|
return stack:get_count()
|
|
|
|
end
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
2016-09-14 15:10:40 +02:00
|
|
|
-- allow_metadata_inventory_move is a common callback for the core writer.
|
2016-09-14 13:25:33 +02:00
|
|
|
local function allow_metadata_inventory_move(pos, from_list, from_index, to_list, to_index, count, player)
|
2016-09-14 13:04:21 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inventory = meta:get_inventory()
|
|
|
|
local stack = inventory:get_stack(from_list, from_index)
|
|
|
|
|
|
|
|
return allow_metadata_inventory_put(pos, listname, to_index, stack, player)
|
|
|
|
end
|
|
|
|
|
|
|
|
--------------------------------------------------------------------
|
2016-09-14 02:35:28 +02:00
|
|
|
|
2016-09-14 13:20:14 +02:00
|
|
|
;(function() -- register a definition of an inactive core writer.
|
2016-09-14 11:52:56 +02:00
|
|
|
local tiles = {
|
|
|
|
"maidroid_tool_core_writer_top.png",
|
|
|
|
"maidroid_tool_core_writer_bottom.png",
|
|
|
|
"maidroid_tool_core_writer_right.png",
|
|
|
|
"maidroid_tool_core_writer_right.png^[transformFX",
|
|
|
|
"maidroid_tool_core_writer_front.png^[transformFX",
|
|
|
|
"maidroid_tool_core_writer_front.png",
|
|
|
|
}
|
|
|
|
|
|
|
|
local formspec_string = "size[8,9]"
|
|
|
|
.. "list[current_player;main;0,5;8,1;]"
|
|
|
|
.. "list[current_player;main;0,6.2;8,3;8]"
|
|
|
|
|
2016-09-14 13:25:33 +02:00
|
|
|
local function on_construct(pos)
|
2016-09-14 11:52:56 +02:00
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("formspec", formspec_string)
|
|
|
|
|
|
|
|
local inventory = meta:get_inventory()
|
|
|
|
inventory:set_size("core", 1)
|
|
|
|
inventory:set_size("fuel", 1)
|
|
|
|
inventory:set_size("dye", 1)
|
|
|
|
end
|
|
|
|
|
2016-09-14 13:25:33 +02:00
|
|
|
local function on_metadata_inventory_move(pos)
|
2016-09-14 11:52:56 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-09-14 13:25:33 +02:00
|
|
|
local function allow_metadata_inventory_take(pos, listname, index, stack, player)
|
2016-09-14 12:22:44 +02:00
|
|
|
return stack:get_count() -- maybe add more.
|
|
|
|
end
|
|
|
|
|
2016-09-14 11:52:56 +02:00
|
|
|
minetest.register_node("maidroid_tool:core_writer", {
|
|
|
|
description = "maidroid tool : core writer",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
groups = {cracky = 2},
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
node_box = node_box,
|
2016-09-14 16:07:35 +02:00
|
|
|
selection_box = selection_box,
|
2016-09-14 11:52:56 +02:00
|
|
|
tiles = tiles,
|
|
|
|
can_dig = can_dig,
|
2016-09-14 17:24:48 +02:00
|
|
|
on_timer = on_timer,
|
2016-09-14 11:52:56 +02:00
|
|
|
on_construct = on_construct,
|
|
|
|
on_metadata_inventory_move = on_metadata_inventory_move,
|
|
|
|
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
|
|
|
allow_metadata_inventory_move = allow_metadata_inventory_move,
|
|
|
|
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
|
|
|
})
|
2016-09-14 13:20:14 +02:00
|
|
|
end) ()
|
2016-09-14 11:52:56 +02:00
|
|
|
|
2016-09-14 13:04:21 +02:00
|
|
|
--------------------------------------------------------------------
|
|
|
|
|
2016-09-14 13:20:14 +02:00
|
|
|
;(function () -- register a definition of an active core writer.
|
2016-09-14 13:04:21 +02:00
|
|
|
local tiles = {
|
|
|
|
"maidroid_tool_core_writer_top.png",
|
|
|
|
"maidroid_tool_core_writer_bottom.png",
|
|
|
|
"maidroid_tool_core_writer_right.png",
|
|
|
|
"maidroid_tool_core_writer_right.png^[transformFX",
|
2016-09-14 16:07:35 +02:00
|
|
|
{
|
|
|
|
backface_culling = false,
|
|
|
|
image = "maidroid_tool_core_writer_front_active.png^[transformFX",
|
|
|
|
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
length = 1.5,
|
|
|
|
},
|
|
|
|
},
|
2016-09-14 13:04:21 +02:00
|
|
|
{
|
|
|
|
backface_culling = false,
|
|
|
|
image = "maidroid_tool_core_writer_front_active.png",
|
|
|
|
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
length = 1.5,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-09-14 13:25:33 +02:00
|
|
|
local function allow_metadata_inventory_take(pos, listname, index, stack, player)
|
2016-09-14 15:10:40 +02:00
|
|
|
if listname == "core" then
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
return stack:get_count()
|
2016-09-14 13:04:21 +02:00
|
|
|
end
|
2016-09-14 11:52:56 +02:00
|
|
|
|
2016-09-14 13:04:21 +02:00
|
|
|
minetest.register_node("maidroid_tool:core_writer_active", {
|
2016-09-14 16:07:35 +02:00
|
|
|
description = "test",
|
2016-09-14 13:04:21 +02:00
|
|
|
drawtype = "nodebox",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
groups = {cracky = 2},
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
node_box = node_box,
|
2016-09-14 16:07:35 +02:00
|
|
|
selection_box = selection_box,
|
2016-09-14 13:04:21 +02:00
|
|
|
tiles = tiles,
|
|
|
|
can_dig = can_dig,
|
2016-09-14 17:24:48 +02:00
|
|
|
on_timer = on_timer,
|
2016-09-14 13:04:21 +02:00
|
|
|
allow_metadata_inventory_put = allow_metadata_inventory_put,
|
|
|
|
allow_metadata_inventory_move = allow_metadata_inventory_move,
|
|
|
|
allow_metadata_inventory_take = allow_metadata_inventory_take,
|
|
|
|
})
|
2016-09-14 13:20:14 +02:00
|
|
|
end) ()
|
|
|
|
end) ()
|
2016-09-14 04:23:27 +02:00
|
|
|
|
|
|
|
-- register a definition of a core entity.
|
2016-09-14 13:20:14 +02:00
|
|
|
;(function()
|
2016-09-14 10:34:16 +02:00
|
|
|
local node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, -0.125, 0.5, -0.4375, 0.125},
|
|
|
|
{ -0.125, -0.5, -0.5, 0.125, -0.4375, 0.5},
|
|
|
|
{ -0.25, -0.5, -0.4375, 0.25, -0.4375, 0.4375},
|
|
|
|
{ -0.375, -0.5, -0.375, 0.375, -0.4375, 0.375},
|
|
|
|
{-0.4375, -0.5, -0.25, 0.4375, -0.4375, 0.25},
|
|
|
|
},
|
|
|
|
}
|
2016-09-14 05:33:23 +02:00
|
|
|
|
2016-09-14 10:34:16 +02:00
|
|
|
local tiles = {
|
|
|
|
"maidroid_tool_core_top.png",
|
|
|
|
"maidroid_tool_core_top.png",
|
|
|
|
"maidroid_tool_core_right.png",
|
|
|
|
"maidroid_tool_core_right.png",
|
|
|
|
"maidroid_tool_core_right.png",
|
|
|
|
"maidroid_tool_core_right.png",
|
|
|
|
}
|
2016-09-14 05:33:23 +02:00
|
|
|
|
2016-09-14 10:34:16 +02:00
|
|
|
minetest.register_node("maidroid_tool:core_node", {
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = tiles,
|
|
|
|
node_box = node_box,
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
})
|
2016-09-14 05:33:23 +02:00
|
|
|
|
|
|
|
minetest.register_entity("maidroid_tool:core_entity", {
|
2016-09-14 10:34:16 +02:00
|
|
|
physical = false,
|
|
|
|
visual = "wielditem",
|
|
|
|
visual_size = {x = 0.5, y = 0.5},
|
2016-09-14 11:52:56 +02:00
|
|
|
collisionbox = {0, 0, 0, 0, 0, 0},
|
2016-09-14 05:33:23 +02:00
|
|
|
|
|
|
|
on_activate = function(self, staticdata)
|
|
|
|
self.object:set_properties{textures = {"maidroid_tool:core_node"}}
|
|
|
|
end,
|
2016-09-14 10:34:16 +02:00
|
|
|
|
|
|
|
on_step = function(self, dtime)
|
|
|
|
local yaw = self.object:getyaw()
|
|
|
|
self.object:setyaw(yaw + 0.1)
|
|
|
|
end,
|
2016-09-14 05:33:23 +02:00
|
|
|
})
|
2016-09-14 13:20:14 +02:00
|
|
|
end) ()
|