fixes to nodebreaker, change textures
authorMaciej Kasatkin <mk@realbadangel.pl>
Sun, 23 Sep 2012 23:42:49 +0000 (01:42 +0200)
committerMaciej Kasatkin <mk@realbadangel.pl>
Sun, 23 Sep 2012 23:42:49 +0000 (01:42 +0200)
22 files changed:
deployer.lua [new file with mode: 0644]
init.lua
node_breaker.lua
textures/technic_deployer_back.png [new file with mode: 0644]
textures/technic_deployer_bottom.png [new file with mode: 0644]
textures/technic_deployer_front_off.png [new file with mode: 0644]
textures/technic_deployer_front_on.png [new file with mode: 0644]
textures/technic_deployer_side.png [new file with mode: 0644]
textures/technic_deployer_side1.png [new file with mode: 0644]
textures/technic_deployer_side2.png [new file with mode: 0644]
textures/technic_deployer_top.png [new file with mode: 0644]
textures/technic_nodebreaker_back.png
textures/technic_nodebreaker_bottom_off.png [new file with mode: 0644]
textures/technic_nodebreaker_bottom_on.png [new file with mode: 0644]
textures/technic_nodebreaker_front_off.png
textures/technic_nodebreaker_front_on.png
textures/technic_nodebreaker_side1_off.png [new file with mode: 0644]
textures/technic_nodebreaker_side1_on.png [new file with mode: 0644]
textures/technic_nodebreaker_side2_off.png [new file with mode: 0644]
textures/technic_nodebreaker_side2_on.png [new file with mode: 0644]
textures/technic_nodebreaker_top_off.png [new file with mode: 0644]
textures/technic_nodebreaker_top_on.png [new file with mode: 0644]

diff --git a/deployer.lua b/deployer.lua
new file mode 100644 (file)
index 0000000..a591010
--- /dev/null
@@ -0,0 +1,52 @@
+minetest.register_craft({
+       output = 'technic:deployer_off 1',
+       recipe = {
+               {'default:wood', 'default:pick_mese','default:wood'},
+               {'default:stone', 'mesecons:piston','default:stone'},
+               {'default:stone', 'mesecons:mesecon','default:stone'},
+
+       }
+})
+
+minetest.register_node("technic:deployer_off", {
+       description = "Deployer",
+       tile_images = {"technic_deployer_top.png","technic_deployer_bottom.png","technic_deployer_side2.png","technic_deployer_side1.png",
+                       "technic_deployer_back.png","technic_deployer_front_off.png"},
+       is_ground_content = true,
+       paramtype2 = "facedir",
+       groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2, mesecon_receptor_off = 1, mesecon_effector_off = 1, mesecon = 2,tubedevice=1},
+       sounds = default.node_sound_stone_defaults(),
+       on_construct = function(pos)
+       local meta = minetest.env:get_meta(pos)
+       end,
+       
+})
+
+minetest.register_node("technic:deployer_on", {
+       description = "Deployer",
+       tile_images = {"technic_deployer_top.png","technic_deployer_bottom.png","technic_deployer_side2.png","technic_deployer_side1.png",
+                       "technic_deployer_back.png","technic_deployer_front_on.png"},
+       is_ground_content = true,
+       paramtype2 = "facedir",
+       tubelike=1,
+       groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2, mesecon_receptor_off = 1, mesecon_effector_off = 1, mesecon = 2,tubedevice=1,not_in_creative_inventory=1},
+       sounds = default.node_sound_stone_defaults(),
+})
+
+mesecon:register_on_signal_on(function(pos, node)
+       if node.name == "technic:deployer_off" then
+               minetest.env:add_node(pos, {name="technic:deployer_on", param2 = node.param2})
+               nodeupdate(pos)
+       end
+end)
+
+mesecon:register_on_signal_off(function(pos, node)
+       if node.name == "technic:deployer_on" then
+               minetest.env:add_node(pos, {name="technic:deployer_off", param2 = node.param2})
+               nodeupdate(pos)
+       end
+end)
+
+mesecon:register_effector("technic:deployer_on", "technic:deployer_off")
+
+
index 86b695e4027768372930e18725c27aa15d2bd03c..875f0643c06e87a7d5822445a7fd22c13d0fb354 100644 (file)
--- a/init.lua
+++ b/init.lua
@@ -42,6 +42,7 @@ dofile(minetest.get_modpath("technic").."/mining_drill.lua")
 dofile(minetest.get_modpath("technic").."/screwdriver.lua")
 dofile(minetest.get_modpath("technic").."/sonic_screwdriver.lua")
 dofile(minetest.get_modpath("technic").."/node_breaker.lua")
+dofile(minetest.get_modpath("technic").."/deployer.lua")
 dofile(minetest.get_modpath("technic").."/tree_tap.lua")
 
 
index fc4d49f222de19991c9ea2d4e5034f6a27177a68..3a7f53b7f203330c52eae31a016d6abde5685e00 100644 (file)
@@ -1,6 +1,16 @@
+minetest.register_craft({
+       output = 'technic:nodebreaker_off 1',
+       recipe = {
+               {'default:wood', 'default:pick_mese','default:wood'},
+               {'default:stone', 'mesecons:piston','default:stone'},
+               {'default:stone', 'mesecons:mesecon','default:stone'},
+
+       }
+})
+
 minetest.register_node("technic:nodebreaker_off", {
        description = "Node Breaker",
-       tile_images = {"technic_nodebreaker_top.png","technic_nodebreaker_bottom.png","technic_nodebreaker_side2.png","technic_nodebreaker_side1.png",
+       tile_images = {"technic_nodebreaker_top_off.png","technic_nodebreaker_bottom_off.png","technic_nodebreaker_side2_off.png","technic_nodebreaker_side1_off.png",
                        "technic_nodebreaker_back.png","technic_nodebreaker_front_off.png"},
        is_ground_content = true,
        paramtype2 = "facedir",
@@ -14,12 +24,12 @@ minetest.register_node("technic:nodebreaker_off", {
 
 minetest.register_node("technic:nodebreaker_on", {
        description = "Node Breaker",
-       tile_images = {"technic_nodebreaker_top.png","technic_nodebreaker_bottom.png","technic_nodebreaker_side2.png","technic_nodebreaker_side1.png",
+       tile_images = {"technic_nodebreaker_top_on.png","technic_nodebreaker_bottom_on.png","technic_nodebreaker_side2_on.png","technic_nodebreaker_side1_on.png",
                        "technic_nodebreaker_back.png","technic_nodebreaker_front_on.png"},
        is_ground_content = true,
        paramtype2 = "facedir",
        tubelike=1,
-       groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2, mesecon_receptor_off = 1, mesecon_effector_off = 1, mesecon = 2,tubedevice=1},
+       groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2, mesecon_receptor_off = 1, mesecon_effector_off = 1, mesecon = 2,tubedevice=1,not_in_creative_inventory=1},
        sounds = default.node_sound_stone_defaults(),
 })
 
diff --git a/textures/technic_deployer_back.png b/textures/technic_deployer_back.png
new file mode 100644 (file)
index 0000000..0bc8df9
Binary files /dev/null and b/textures/technic_deployer_back.png differ
diff --git a/textures/technic_deployer_bottom.png b/textures/technic_deployer_bottom.png
new file mode 100644 (file)
index 0000000..ff1a2c6
Binary files /dev/null and b/textures/technic_deployer_bottom.png differ
diff --git a/textures/technic_deployer_front_off.png b/textures/technic_deployer_front_off.png
new file mode 100644 (file)
index 0000000..d0f6f55
Binary files /dev/null and b/textures/technic_deployer_front_off.png differ
diff --git a/textures/technic_deployer_front_on.png b/textures/technic_deployer_front_on.png
new file mode 100644 (file)
index 0000000..368ce32
Binary files /dev/null and b/textures/technic_deployer_front_on.png differ
diff --git a/textures/technic_deployer_side.png b/textures/technic_deployer_side.png
new file mode 100644 (file)
index 0000000..aefd7c8
Binary files /dev/null and b/textures/technic_deployer_side.png differ
diff --git a/textures/technic_deployer_side1.png b/textures/technic_deployer_side1.png
new file mode 100644 (file)
index 0000000..8cb8634
Binary files /dev/null and b/textures/technic_deployer_side1.png differ
diff --git a/textures/technic_deployer_side2.png b/textures/technic_deployer_side2.png
new file mode 100644 (file)
index 0000000..c2855d0
Binary files /dev/null and b/textures/technic_deployer_side2.png differ
diff --git a/textures/technic_deployer_top.png b/textures/technic_deployer_top.png
new file mode 100644 (file)
index 0000000..941d333
Binary files /dev/null and b/textures/technic_deployer_top.png differ
index 0bc8df973816a3fff568e404c568b4f983f45129..b669ef63d1d84e9d7e8372a65f97f4cfc5b75fc1 100644 (file)
Binary files a/textures/technic_nodebreaker_back.png and b/textures/technic_nodebreaker_back.png differ
diff --git a/textures/technic_nodebreaker_bottom_off.png b/textures/technic_nodebreaker_bottom_off.png
new file mode 100644 (file)
index 0000000..410617a
Binary files /dev/null and b/textures/technic_nodebreaker_bottom_off.png differ
diff --git a/textures/technic_nodebreaker_bottom_on.png b/textures/technic_nodebreaker_bottom_on.png
new file mode 100644 (file)
index 0000000..d6da4d8
Binary files /dev/null and b/textures/technic_nodebreaker_bottom_on.png differ
index d0f6f552f994ba5be088549fd8a62c413417e5d7..5a25b4cc8504ac70c03554d9e12de3f37c5adcda 100644 (file)
Binary files a/textures/technic_nodebreaker_front_off.png and b/textures/technic_nodebreaker_front_off.png differ
index 368ce3274147b49afb5738618818751776a3685e..97d22c3dacc08dfed8c872e087bd9d2c1cc33a92 100644 (file)
Binary files a/textures/technic_nodebreaker_front_on.png and b/textures/technic_nodebreaker_front_on.png differ
diff --git a/textures/technic_nodebreaker_side1_off.png b/textures/technic_nodebreaker_side1_off.png
new file mode 100644 (file)
index 0000000..5e36d3a
Binary files /dev/null and b/textures/technic_nodebreaker_side1_off.png differ
diff --git a/textures/technic_nodebreaker_side1_on.png b/textures/technic_nodebreaker_side1_on.png
new file mode 100644 (file)
index 0000000..c76ccff
Binary files /dev/null and b/textures/technic_nodebreaker_side1_on.png differ
diff --git a/textures/technic_nodebreaker_side2_off.png b/textures/technic_nodebreaker_side2_off.png
new file mode 100644 (file)
index 0000000..622ff7c
Binary files /dev/null and b/textures/technic_nodebreaker_side2_off.png differ
diff --git a/textures/technic_nodebreaker_side2_on.png b/textures/technic_nodebreaker_side2_on.png
new file mode 100644 (file)
index 0000000..c54e467
Binary files /dev/null and b/textures/technic_nodebreaker_side2_on.png differ
diff --git a/textures/technic_nodebreaker_top_off.png b/textures/technic_nodebreaker_top_off.png
new file mode 100644 (file)
index 0000000..1f9b361
Binary files /dev/null and b/textures/technic_nodebreaker_top_off.png differ
diff --git a/textures/technic_nodebreaker_top_on.png b/textures/technic_nodebreaker_top_on.png
new file mode 100644 (file)
index 0000000..d02ed10
Binary files /dev/null and b/textures/technic_nodebreaker_top_on.png differ