forked from Reload/techage_modpack
110 lines
2.7 KiB
Lua
110 lines
2.7 KiB
Lua
--[[
|
|
|
|
Minecart
|
|
========
|
|
|
|
Copyright (C) 2019-2021 Joachim Stolberg
|
|
|
|
MIT
|
|
See license.txt for more information
|
|
|
|
]]--
|
|
|
|
local S = minecart.S
|
|
local M = minetest.get_meta
|
|
|
|
minetest.register_node("minecart:cart", {
|
|
description = S("Minecart (Sneak+Click to pick up)"),
|
|
tiles = {
|
|
-- up, down, right, left, back, front
|
|
"carts_cart_top.png^minecart_appl_cart_top.png",
|
|
"carts_cart_top.png",
|
|
"carts_cart_side.png^minecart_logo.png",
|
|
"carts_cart_side.png^minecart_logo.png",
|
|
"carts_cart_side.png^minecart_logo.png",
|
|
"carts_cart_side.png^minecart_logo.png",
|
|
},
|
|
drawtype = "nodebox",
|
|
node_box = {
|
|
type = "fixed",
|
|
fixed = {
|
|
{-8/16,-8/16,-8/16, 8/16, 8/16,-7/16},
|
|
{-8/16,-8/16, 7/16, 8/16, 8/16, 8/16},
|
|
{-8/16,-8/16,-8/16, -7/16, 8/16, 8/16},
|
|
{ 7/16,-8/16,-8/16, 8/16, 8/16, 8/16},
|
|
{-8/16,-8/16,-8/16, 8/16,-6/16, 8/16},
|
|
},
|
|
},
|
|
-- collision_box = {
|
|
-- type = "fixed",
|
|
-- fixed = {
|
|
-- {-8/16,-8/16,-8/16, 8/16,-4/16, 8/16},
|
|
-- },
|
|
-- },
|
|
paramtype2 = "facedir",
|
|
paramtype = "light",
|
|
use_texture_alpha = minecart.CLIP,
|
|
sunlight_propagates = true,
|
|
is_ground_content = false,
|
|
groups = {cracky = 2, crumbly = 2, choppy = 2},
|
|
node_placement_prediction = "",
|
|
diggable = false,
|
|
|
|
on_place = minecart.on_nodecart_place,
|
|
on_punch = minecart.on_nodecart_punch,
|
|
|
|
on_rightclick = function(pos, node, clicker)
|
|
if clicker and clicker:is_player() then
|
|
if M(pos):get_int("userID") ~= 0 then
|
|
-- enter the cart
|
|
if minecart.is_usable_cart(pos, node) then
|
|
local object = minecart.node_to_entity(pos, "minecart:cart", "minecart:cart_entity")
|
|
minecart.manage_attachment(clicker, object:get_luaentity(), true)
|
|
end
|
|
else
|
|
minecart.show_formspec(pos, clicker)
|
|
end
|
|
end
|
|
end,
|
|
|
|
set_cargo = function(pos, data)
|
|
for _,item in ipairs(data or {}) do
|
|
minetest.add_item(pos, ItemStack(item))
|
|
end
|
|
end,
|
|
|
|
get_cargo = function(pos)
|
|
local data = {}
|
|
for _, obj in pairs(minetest.get_objects_inside_radius(pos, 1)) do
|
|
local entity = obj:get_luaentity()
|
|
if not obj:is_player() and entity and entity.name == "__builtin:item" then
|
|
obj:remove()
|
|
data[#data + 1] = entity.itemstring
|
|
end
|
|
end
|
|
return data
|
|
end,
|
|
})
|
|
|
|
minecart.register_cart_entity("minecart:cart_entity", "minecart:cart", "default", {
|
|
initial_properties = {
|
|
physical = false,
|
|
collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
visual = "wielditem",
|
|
textures = {"minecart:cart"},
|
|
visual_size = {x=0.66, y=0.66, z=0.66},
|
|
static_save = false,
|
|
},
|
|
driver_allowed = true,
|
|
})
|
|
|
|
|
|
minetest.register_craft({
|
|
output = "minecart:cart",
|
|
recipe = {
|
|
{"default:steel_ingot", "default:cobble", "default:steel_ingot"},
|
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
|
},
|
|
})
|
|
|