Merge branch 'master' of https://github.com/kpoppel/travelnet into kpoppel-master

added elevator written by kpoppel
This commit is contained in:
Sokomine 2013-06-13 03:23:09 +02:00
commit c1885c41a9
11 changed files with 151 additions and 5 deletions

156
init.lua

@ -356,9 +356,9 @@ travelnet.on_receive_fields = function(pos, formname, fields, player)
end
-- check if the box has at the other end has been removed
-- check if the box has at the other end has been removed.
local node2 = minetest.env:get_node( target_pos );
if( node2 ~= nil and node2.name ~= 'ignore' and node2.name ~= 'travelnet:travelnet' ) then
if( node2 ~= nil and node2.name ~= 'ignore' and node2.name ~= 'travelnet:travelnet' and node2.name ~= 'travelnet:elevator') then
-- provide information necessary to identify the removed box
local oldmetadata = { fields = { owner = owner_name,
@ -464,9 +464,8 @@ minetest.register_node("travelnet:travelnet", {
"default_clay.png", -- view from top
"default_clay.png", -- view from bottom
"travelnet_travelnet_side.png", -- side
"travelnet_travelnet_side.png", -- side
"travelnet_travelnet_side.png", -- left side
"travelnet_travelnet_side.png", -- right side
"travelnet_travelnet_back.png", -- front view
"travelnet_travelnet_front.png", -- backward view
},
@ -560,4 +559,151 @@ minetest.register_craft({
-- upon server start, read the savefile
travelnet.restore_data();
minetest.register_node("travelnet:elevator", {
description = "Travelnet Elevator Bottom",
drawtype = "nodebox",
sunlight_propagates = true,
paramtype = 'light',
paramtype2 = "facedir",
selection_box = {
type = "fixed",
fixed = { -0.5, -0.5, -0.5, 0.5, 1.5, 0.5 }
},
node_box = {
type = "fixed",
fixed = {
{ 0.48, -0.5,-0.5, 0.5, 0.5, 0.5},
{-0.5 , -0.5, 0.48, 0.48, 0.5, 0.5},
{-0.5, -0.5,-0.5 ,-0.48, 0.5, 0.5},
--groundplate to stand on
{ -0.5,-0.5,-0.5,0.5,-0.48, 0.5},
},
},
tiles = {
"travelnet_elevator_inside_floor.png", -- view from top
"default_stone.png", -- view from bottom
"travelnet_elevator_inside_bottom.png", -- left side
"travelnet_elevator_inside_bottom.png", -- right side
"travelnet_elevator_inside_bottom.png", -- front view
"travelnet_elevator_inside_bottom.png", -- backward view
},
inventory_image = "travelnet_inv.png",
groups = {choppy=2,dig_immediate=2,attached_node=1},
light_source = 10,
after_place_node = function(pos, placer, itemstack)
local meta = minetest.env:get_meta(pos);
meta:set_string("infotext", "Travelnet Elevator (unconfigured)");
meta:set_string("station_name", "");
meta:set_string("station_network","");
meta:set_string("owner", placer:get_player_name() );
-- request initinal data
meta:set_string("formspec",
"size[12,10]"..
"field[0.3,5.6;6,0.7;station_name;Name of this station:;]"..
"field[0.3,6.6;6,0.7;station_network;Assign to Network:;]"..
"field[0.3,7.6;6,0.7;owner_name;(optional) owned by:;]"..
"button_exit[6.3,6.2;1.7,0.7;station_set;Store]" );
end,
on_receive_fields = travelnet.on_receive_fields,
on_punch = function(pos, node, puncher)
travelnet.update_formspec(pos, puncher:get_player_name())
end,
after_dig_node = function(pos, oldnode, oldmetadata, digger)
travelnet.remove_box( pos, oldnode, oldmetadata, digger )
end,
-- taken from VanessaEs homedecor fridge
on_place = function(itemstack, placer, pointed_thing)
local pos = pointed_thing.above;
if( minetest.env:get_node({x=pos.x, y=pos.y+1, z=pos.z}).name ~= "air" ) then
minetest.chat_send_player( placer:get_player_name(), 'Not enough vertical space to place the travelnet box!' )
return;
end
local p = {x=pos.x, y=pos.y+1, z=pos.z}
local p2 = minetest.dir_to_facedir(placer:get_look_dir())
minetest.env:add_node(p, {name="travelnet:elevator_top", paramtype2="facedir", param2=p2})
return minetest.item_place(itemstack, placer, pointed_thing);
end,
on_destruct = function(pos)
local p = {x=pos.x, y=pos.y+1, z=pos.z}
minetest.env:remove_node(p)
end
})
minetest.register_node("travelnet:elevator_top", {
description = "Travelnet Elevator Top",
drawtype = "nodebox",
sunlight_propagates = true,
paramtype = 'light',
paramtype2 = "facedir",
selection_box = {
type = "fixed",
fixed = { 0, 0, 0, 0, 0, 0 }
-- fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
},
node_box = {
type = "fixed",
fixed = {
{ 0.48, -0.5,-0.5, 0.5, 0.5, 0.5},
{-0.5 , -0.5, 0.48, 0.48, 0.5, 0.5},
{-0.5, -0.5,-0.5 ,-0.48, 0.5, 0.5},
--top ceiling
{ -0.5, 0.48,-0.5,0.5, 0.5, 0.5},
},
},
tiles = {
"default_stone.png", -- view from top
"travelnet_elevator_inside_ceiling.png", -- view from bottom
"travelnet_elevator_inside_top_control.png", -- left side
"travelnet_elevator_inside_top.png", -- right side
"travelnet_elevator_inside_top.png", -- front view
"travelnet_elevator_inside_top.png", -- backward view
},
inventory_image = "travelnet_inv.png",
light_source = 10,
groups = {choppy=2,dig_immediate=2,attached_node=1},
})
if( minetest.get_modpath("technic") ~= nil ) then
minetest.register_craft({
output = "travelnet:elevator",
recipe = {
{"default:steel_ingot", "technic:motor", "default:steel_ingot", },
{"default:steel_ingot", "technic:control_logic_unit", "default:steel_ingot", },
{"default:steel_ingot", "moreores:copper_ingot", "default:steel_ingot", }
}
})
else
minetest.register_craft({
output = "travelnet:elevator",
recipe = {
{"default:steel_ingot", "default_sandstone", "default:steel_ingot", },
{"default:steel_ingot", "default_sandstone", "default:steel_ingot", },
{"default:mese_crystal_fragment", "default:mese_crystal_fragment", "default:mese_crystal_fragment", }
}
})
end

Binary file not shown.

After

Width:  |  Height:  |  Size: 642 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 626 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB