Fix crafting recipes and some code style.

This commit is contained in:
RealBadAngel 2013-07-14 11:30:03 +02:00
parent 2f23f71652
commit f4302fcbfa

View File

@ -1,8 +1,8 @@
--Minetest 0.4.6 mod: concrete --Minetest 0.4.7 mod: concrete
--(c) 2013 by RealBadAngel <mk@realbadangel.pl> --(c) 2013 by RealBadAngel <mk@realbadangel.pl>
minetest.register_craft({ minetest.register_craft({
output = ':technic:rebar 6', output = 'technic:rebar 6',
recipe = { recipe = {
{'','', 'default:steel_ingot'}, {'','', 'default:steel_ingot'},
{'','default:steel_ingot',''}, {'','default:steel_ingot',''},
@ -11,7 +11,7 @@ minetest.register_craft({
}) })
minetest.register_craft({ minetest.register_craft({
output = ':technic:concrete 5', output = 'technic:concrete 5',
recipe = { recipe = {
{'default:stone','technic:rebar','default:stone'}, {'default:stone','technic:rebar','default:stone'},
{'technic:rebar','default:stone','technic:rebar'}, {'technic:rebar','default:stone','technic:rebar'},
@ -20,14 +20,14 @@ minetest.register_craft({
}) })
minetest.register_craft({ minetest.register_craft({
output = ':technic:concrete_post_platform 6', output = 'technic:concrete_post_platform 6',
recipe = { recipe = {
{'technic:concrete','technic:concrete_post','technic:concrete'}, {'technic:concrete','technic:concrete_post','technic:concrete'},
} }
}) })
minetest.register_craft({ minetest.register_craft({
output = ':technic:concrete_post 12', output = 'technic:concrete_post 12',
recipe = { recipe = {
{'default:stone','technic:rebar','default:stone'}, {'default:stone','technic:rebar','default:stone'},
{'default:stone','technic:rebar','default:stone'}, {'default:stone','technic:rebar','default:stone'},
@ -165,16 +165,16 @@ local x1,x2,y1,z1,z2
local count=0 local count=0
for x1 = 0, 1, 1 do --x- for x1 = 0, 1, 1 do --x-
for x2 = 0, 1, 1 do --x+ for x2 = 0, 1, 1 do --x+
for z1 = 0, 1, 1 do --z- for z1 = 0, 1, 1 do --z-
for z2 = 0, 1, 1 do --z+ for z2 = 0, 1, 1 do --z+
temp_x1={} temp_x2={} temp_z1={} temp_z2={} temp_x1={} temp_x2={} temp_z1={} temp_z2={}
if x1==1 then temp_x1=post_str_x1 end if x1==1 then temp_x1=post_str_x1 end
if x2==1 then temp_x2=post_str_x2 end if x2==1 then temp_x2=post_str_x2 end
if z1==1 then temp_z1=post_str_z1 end if z1==1 then temp_z1=post_str_z1 end
if z2==1 then temp_z2=post_str_z2 end if z2==1 then temp_z2=post_str_z2 end
minetest.register_node(":technic:concrete_post"..count, { minetest.register_node(":technic:concrete_post"..count, {
@ -344,7 +344,7 @@ dig_post_with_platform = function (pos,oldnode,oldmetadata)
print(dump(x1)) print(dump(x1))
oldmetadata.fields["platform"]="0" oldmetadata.fields["platform"]="0"
local rule=make_post_rule_number(x1,x2,y1,y2,z1,z2,0) local rule=make_post_rule_number(x1,x2,y1,y2,z1,z2,0)
print(dump(rule)) --print(dump(rule))
oldnode.name="technic:concrete_post"..rule oldnode.name="technic:concrete_post"..rule
minetest.env:set_node(pos,oldnode) minetest.env:set_node(pos,oldnode)
meta = minetest.env:get_meta(pos) meta = minetest.env:get_meta(pos)
@ -462,6 +462,7 @@ check_post_connections = function(pos,mode)
tempz2=mode tempz2=mode
end end
pos1.z=pos1.z+1 pos1.z=pos1.z+1
if mode==1 then if mode==1 then
meta=minetest.env:get_meta(pos) meta=minetest.env:get_meta(pos)
meta:set_int("x1",tempx1) meta:set_int("x1",tempx1)
@ -476,20 +477,20 @@ check_post_connections = function(pos,mode)
end end
function make_post_rule_number (x1,x2,y1,y2,z1,z2,platform) function make_post_rule_number (x1,x2,y1,y2,z1,z2,platform)
local tempy=y1+y2 local tempy=y1+y2
local tempx=x1+x2 local tempx=x1+x2
local tempz=z1+z2 local tempz=z1+z2
if platform==0 then if platform==0 then
if tempy==0 and tempx==0 and tempz==0 then return 0 end if tempy==0 and tempx==0 and tempz==0 then return 0 end
if x1==1 and x2==1 and tempz==0 and tempy==0 then return 32 end if x1==1 and x2==1 and tempz==0 and tempy==0 then return 32 end
if z1==1 and z2==1 and tempx==0 and tempy==0 then return 33 end if z1==1 and z2==1 and tempx==0 and tempy==0 then return 33 end
return z2+z1*2+x2*4+x1*8 return z2+z1*2+x2*4+x1*8
else else
if tempy==0 and tempx==0 and tempz==0 then return 16 end if tempy==0 and tempx==0 and tempz==0 then return 16 end
if x1==1 and x2==1 and tempz==0 and tempy==0 then return 34 end if x1==1 and x2==1 and tempz==0 and tempy==0 then return 34 end
if z1==1 and z2==1 and tempx==0 and tempy==0 then return 35 end if z1==1 and z2==1 and tempx==0 and tempy==0 then return 35 end
return z2+z1*2+x2*4+x1*8+16 return z2+z1*2+x2*4+x1*8+16
end end
end end
function hacky_swap_posts(pos,name) function hacky_swap_posts(pos,name)