2019-03-07 20:43:39 +01:00
local S = minetest.get_translator ( " mcl_minecarts " )
2017-08-28 23:40:47 +02:00
-- Template rail function
local register_rail = function ( itemstring , tiles , def_extras , creative )
2019-04-11 17:03:41 +02:00
local groups = { handy = 1 , pickaxey = 1 , attached_node = 1 , rail = 1 , connect_to_raillike = minetest.raillike_group ( " rail " ) , dig_by_water = 1 , destroy_by_lava_flow = 1 , transport = 1 }
2017-08-28 23:40:47 +02:00
if creative == false then
groups.not_in_creative_inventory = 1
end
local ndef = {
drawtype = " raillike " ,
tiles = tiles ,
is_ground_content = false ,
inventory_image = tiles [ 1 ] ,
wield_image = tiles [ 1 ] ,
paramtype = " light " ,
walkable = false ,
selection_box = {
type = " fixed " ,
fixed = { - 1 / 2 , - 1 / 2 , - 1 / 2 , 1 / 2 , - 1 / 2 + 1 / 16 , 1 / 2 } ,
} ,
stack_max = 64 ,
groups = groups ,
sounds = mcl_sounds.node_sound_metal_defaults ( ) ,
_mcl_blast_resistance = 3.5 ,
_mcl_hardness = 0.7 ,
2019-01-30 03:37:47 +01:00
after_destruct = function ( pos )
-- Scan for minecarts in this pos and force them to execute their "floating" check.
-- Normally, this will make them drop.
local objs = minetest.get_objects_inside_radius ( pos , 1 )
for o = 1 , # objs do
local le = objs [ o ] : get_luaentity ( )
if le then
-- All entities in this mod are minecarts, so this works
if string.sub ( le.name , 1 , 14 ) == " mcl_minecarts: " then
le._last_float_check = mcl_minecarts.check_float_time
end
end
end
end ,
2017-08-28 23:40:47 +02:00
}
if def_extras then
for k , v in pairs ( def_extras ) do
ndef [ k ] = v
end
end
minetest.register_node ( itemstring , ndef )
end
2018-01-22 17:33:06 +01:00
-- Redstone rules
local rail_rules_long =
{ { x =- 1 , y = 0 , z = 0 , spread = true } ,
{ x = 1 , y = 0 , z = 0 , spread = true } ,
{ x = 0 , y =- 1 , z = 0 , spread = true } ,
{ x = 0 , y = 1 , z = 0 , spread = true } ,
{ x = 0 , y = 0 , z =- 1 , spread = true } ,
{ x = 0 , y = 0 , z = 1 , spread = true } ,
{ x = 1 , y = 1 , z = 0 } ,
{ x = 1 , y =- 1 , z = 0 } ,
{ x =- 1 , y = 1 , z = 0 } ,
{ x =- 1 , y =- 1 , z = 0 } ,
{ x = 0 , y = 1 , z = 1 } ,
{ x = 0 , y =- 1 , z = 1 } ,
{ x = 0 , y = 1 , z =- 1 } ,
{ x = 0 , y =- 1 , z =- 1 } }
local rail_rules_short = mesecon.rules . pplate
2019-03-07 20:43:39 +01:00
local railuse = S ( " Place them on the ground to build your railway, the rails will automatically connect to each other and will turn into curves, T-junctions, crossings and slopes as needed. " )
2017-03-11 21:12:31 +01:00
2017-02-16 20:15:43 +01:00
-- Normal rail
2017-08-28 23:40:47 +02:00
register_rail ( " mcl_minecarts:rail " ,
{ " default_rail.png " , " default_rail_curved.png " , " default_rail_t_junction.png " , " default_rail_crossing.png " } ,
{
2019-03-07 20:43:39 +01:00
description = S ( " Rail " ) ,
2020-02-19 04:54:17 +01:00
_tt_help = S ( " Track for minecarts " ) ,
2019-03-07 20:43:39 +01:00
_doc_items_longdesc = S ( " Rails can be used to build transport tracks for minecarts. Normal rails slightly slow down minecarts due to friction. " ) ,
2017-08-28 23:40:47 +02:00
_doc_items_usagehelp = railuse ,
}
)
-- Powered rail (off = brake mode)
register_rail ( " mcl_minecarts:golden_rail " ,
2019-02-04 12:38:36 +01:00
{ " mcl_minecarts_rail_golden.png " , " mcl_minecarts_rail_golden_curved.png " , " mcl_minecarts_rail_golden_t_junction.png " , " mcl_minecarts_rail_golden_crossing.png " } ,
2017-08-28 23:40:47 +02:00
{
2019-03-07 20:43:39 +01:00
description = S ( " Powered Rail " ) ,
2020-02-19 04:54:17 +01:00
_tt_help = S ( " Track for minecarts " ) .. " \n " .. S ( " Speed up when powered, slow down when not powered " ) ,
2019-03-07 20:43:39 +01:00
_doc_items_longdesc = S ( " Rails can be used to build transport tracks for minecarts. Powered rails are able to accelerate and brake minecarts. " ) ,
_doc_items_usagehelp = railuse .. " \n " .. S ( " Without redstone power, the rail will brake minecarts. To make this rail accelerate minecarts, power it with redstone power. " ) ,
2017-08-28 23:40:47 +02:00
_rail_acceleration = - 3 ,
mesecons = {
conductor = {
state = mesecon.state . off ,
2018-01-13 03:37:41 +01:00
offstate = " mcl_minecarts:golden_rail " ,
2017-08-28 23:40:47 +02:00
onstate = " mcl_minecarts:golden_rail_on " ,
2018-01-22 17:33:06 +01:00
rules = rail_rules_long ,
2017-08-28 23:40:47 +02:00
} ,
} ,
}
)
-- Powered rail (on = acceleration mode)
register_rail ( " mcl_minecarts:golden_rail_on " ,
{ " mcl_minecarts_rail_golden_powered.png " , " mcl_minecarts_rail_golden_curved_powered.png " , " mcl_minecarts_rail_golden_t_junction_powered.png " , " mcl_minecarts_rail_golden_crossing_powered.png " } ,
{
_doc_items_create_entry = false ,
_rail_acceleration = 4 ,
mesecons = {
conductor = {
state = mesecon.state . on ,
offstate = " mcl_minecarts:golden_rail " ,
2018-01-13 03:37:41 +01:00
onstate = " mcl_minecarts:golden_rail_on " ,
2018-01-22 17:33:06 +01:00
rules = rail_rules_long ,
2017-08-28 23:40:47 +02:00
} ,
} ,
2018-01-13 01:39:18 +01:00
drop = " mcl_minecarts:golden_rail " ,
2017-02-16 20:15:43 +01:00
} ,
2017-08-28 23:40:47 +02:00
false
)
2017-08-29 00:13:18 +02:00
-- Activator rail (off)
register_rail ( " mcl_minecarts:activator_rail " ,
2018-01-25 05:18:35 +01:00
{ " mcl_minecarts_rail_activator.png " , " mcl_minecarts_rail_activator_curved.png " , " mcl_minecarts_rail_activator_t_junction.png " , " mcl_minecarts_rail_activator_crossing.png " } ,
2017-08-29 00:13:18 +02:00
{
2019-03-07 20:43:39 +01:00
description = S ( " Activator Rail " ) ,
2020-02-19 04:54:17 +01:00
_tt_help = S ( " Track for minecarts " ) .. " \n " .. S ( " Activates minecarts when powered " ) ,
2019-03-07 20:43:39 +01:00
_doc_items_longdesc = S ( " Rails can be used to build transport tracks for minecarts. Activator rails are used to activate special minecarts. " ) ,
_doc_items_usagehelp = railuse .. " \n " .. S ( " To make this rail activate minecarts, power it with redstone power and send a minecart over this piece of rail. " ) ,
2017-08-29 00:13:18 +02:00
mesecons = {
conductor = {
state = mesecon.state . off ,
2018-01-13 03:37:41 +01:00
offstate = " mcl_minecarts:activator_rail " ,
2017-08-29 00:13:18 +02:00
onstate = " mcl_minecarts:activator_rail_on " ,
2018-01-22 17:33:06 +01:00
rules = rail_rules_long ,
2020-01-30 22:05:18 +01:00
2017-08-29 00:13:18 +02:00
} ,
} ,
2020-01-30 22:31:44 +01:00
}
2017-08-29 00:13:18 +02:00
)
-- Activator rail (on)
register_rail ( " mcl_minecarts:activator_rail_on " ,
2018-01-25 05:18:35 +01:00
{ " mcl_minecarts_rail_activator_powered.png " , " mcl_minecarts_rail_activator_curved_powered.png " , " mcl_minecarts_rail_activator_t_junction_powered.png " , " mcl_minecarts_rail_activator_crossing_powered.png " } ,
2017-08-29 00:13:18 +02:00
{
_doc_items_create_entry = false ,
mesecons = {
conductor = {
state = mesecon.state . on ,
offstate = " mcl_minecarts:activator_rail " ,
2018-01-13 03:37:41 +01:00
onstate = " mcl_minecarts:activator_rail_on " ,
2018-01-22 17:33:06 +01:00
rules = rail_rules_long ,
2017-08-29 00:13:18 +02:00
} ,
2020-01-30 22:05:18 +01:00
effector = {
-- Activate minecarts
action_on = function ( pos , node )
local pos2 = { x = pos.x , y = pos.y + 1 , z = pos.z }
local objs = minetest.get_objects_inside_radius ( pos2 , 1 )
for _ , o in pairs ( objs ) do
local l = o : get_luaentity ( )
if l and string.sub ( l.name , 1 , 14 ) == " mcl_minecarts: " and l.on_activate_by_rail then
l : on_activate_by_rail ( )
end
end
end ,
} ,
2017-08-29 00:13:18 +02:00
} ,
2018-01-13 01:39:18 +01:00
drop = " mcl_minecarts:activator_rail " ,
2017-08-29 00:13:18 +02:00
} ,
false
)
-- Detector rail (off)
register_rail ( " mcl_minecarts:detector_rail " ,
2017-09-02 17:18:48 +02:00
{ " mcl_minecarts_rail_detector.png " , " mcl_minecarts_rail_detector_curved.png " , " mcl_minecarts_rail_detector_t_junction.png " , " mcl_minecarts_rail_detector_crossing.png " } ,
2017-08-29 00:13:18 +02:00
{
2019-03-07 20:43:39 +01:00
description = S ( " Detector Rail " ) ,
2020-02-19 04:54:17 +01:00
_tt_help = S ( " Track for minecarts " ) .. " \n " .. S ( " Emits redstone power when a minecart is detected " ) ,
2019-03-07 20:43:39 +01:00
_doc_items_longdesc = S ( " Rails can be used to build transport tracks for minecarts. A detector rail is able to detect a minecart above it and powers redstone mechanisms. " ) ,
_doc_items_usagehelp = railuse .. " \n " .. S ( " To detect a minecart and provide redstone power, connect it to redstone trails or redstone mechanisms and send any minecart over the rail. " ) ,
2017-08-29 00:13:18 +02:00
mesecons = {
receptor = {
state = mesecon.state . off ,
2018-01-22 17:33:06 +01:00
rules = rail_rules_short ,
2017-08-29 00:13:18 +02:00
} ,
} ,
}
)
-- Detector rail (on)
register_rail ( " mcl_minecarts:detector_rail_on " ,
2017-09-02 17:18:48 +02:00
{ " mcl_minecarts_rail_detector_powered.png " , " mcl_minecarts_rail_detector_curved_powered.png " , " mcl_minecarts_rail_detector_t_junction_powered.png " , " mcl_minecarts_rail_detector_crossing_powered.png " } ,
2017-08-29 00:13:18 +02:00
{
_doc_items_create_entry = false ,
mesecons = {
receptor = {
state = mesecon.state . on ,
2018-01-22 17:33:06 +01:00
rules = rail_rules_short ,
2017-08-29 00:13:18 +02:00
} ,
} ,
2018-01-13 01:39:18 +01:00
drop = " mcl_minecarts:detector_rail " ,
2017-08-29 00:13:18 +02:00
} ,
false
)
2017-08-28 23:40:47 +02:00
-- Crafting
2017-02-16 20:15:43 +01:00
minetest.register_craft ( {
output = ' mcl_minecarts:rail 16 ' ,
recipe = {
{ ' mcl_core:iron_ingot ' , ' ' , ' mcl_core:iron_ingot ' } ,
{ ' mcl_core:iron_ingot ' , ' mcl_core:stick ' , ' mcl_core:iron_ingot ' } ,
{ ' mcl_core:iron_ingot ' , ' ' , ' mcl_core:iron_ingot ' } ,
}
} )
2017-01-05 15:23:14 +01:00
minetest.register_craft ( {
output = " mcl_minecarts:golden_rail 6 " ,
recipe = {
2017-01-31 23:32:56 +01:00
{ " mcl_core:gold_ingot " , " " , " mcl_core:gold_ingot " } ,
{ " mcl_core:gold_ingot " , " mcl_core:stick " , " mcl_core:gold_ingot " } ,
{ " mcl_core:gold_ingot " , " mesecons:redstone " , " mcl_core:gold_ingot " } ,
2017-01-05 15:23:14 +01:00
}
} )
2017-08-29 00:13:18 +02:00
minetest.register_craft ( {
output = " mcl_minecarts:activator_rail 6 " ,
recipe = {
{ " mcl_core:iron_ingot " , " mcl_core:stick " , " mcl_core:iron_ingot " } ,
{ " mcl_core:iron_ingot " , " mesecons_torch:mesecon_torch_on " , " mcl_core:iron_ingot " } ,
{ " mcl_core:iron_ingot " , " mcl_core:stick " , " mcl_core:iron_ingot " } ,
}
} )
minetest.register_craft ( {
output = " mcl_minecarts:detector_rail 6 " ,
recipe = {
{ " mcl_core:iron_ingot " , " " , " mcl_core:iron_ingot " } ,
{ " mcl_core:iron_ingot " , " mesecons_pressureplates:pressure_plate_stone_off " , " mcl_core:iron_ingot " } ,
{ " mcl_core:iron_ingot " , " mesecons:redstone " , " mcl_core:iron_ingot " } ,
}
} )
2017-08-28 23:40:47 +02:00
-- Aliases
if minetest.get_modpath ( " doc " ) then
doc.add_entry_alias ( " nodes " , " mcl_minecarts:golden_rail " , " nodes " , " mcl_minecarts:golden_rail_on " )
end