summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeija <norrepli@gmail.com>2012-08-17 11:59:06 +0200
committerJeija <norrepli@gmail.com>2012-08-17 11:59:06 +0200
commit863ef26b633470fc25c0dc365387fefc620e876c (patch)
treee1edf038b92abb81f96ff2b5e5f9ed7d79f588ff
parentd0c4fc012fb6aa8f98b177c9fe974fa5729beaf1 (diff)
downloadmesecons-863ef26b633470fc25c0dc365387fefc620e876c.tar
mesecons-863ef26b633470fc25c0dc365387fefc620e876c.tar.gz
mesecons-863ef26b633470fc25c0dc365387fefc620e876c.tar.bz2
mesecons-863ef26b633470fc25c0dc365387fefc620e876c.tar.xz
mesecons-863ef26b633470fc25c0dc365387fefc620e876c.zip
Make isolated wires depend on facedir, rename them to 'insulated'
-rw-r--r--mesecons/internal.lua4
-rw-r--r--mesecons_insulated/depends.txt (renamed from mesecons_isolated/depends.txt)0
-rw-r--r--mesecons_insulated/init.lua72
-rw-r--r--mesecons_isolated/init.lua57
-rw-r--r--mesecons_textures/textures/jeija_insulated_wire_ends_off.png (renamed from mesecons_textures/textures/jeija_isolated_wire_ends_off.png)bin213 -> 213 bytes
-rw-r--r--mesecons_textures/textures/jeija_insulated_wire_ends_on.png (renamed from mesecons_textures/textures/jeija_isolated_wire_ends_on.png)bin211 -> 211 bytes
-rw-r--r--mesecons_textures/textures/jeija_insulated_wire_sides.png (renamed from mesecons_textures/textures/jeija_isolated_wire_sides.png)bin200 -> 200 bytes
7 files changed, 74 insertions, 59 deletions
diff --git a/mesecons/internal.lua b/mesecons/internal.lua
index ebd9511..08750a8 100644
--- a/mesecons/internal.lua
+++ b/mesecons/internal.lua
@@ -243,7 +243,7 @@ function mesecon:turnon(pos)
if mesecon:is_conductor_off(node.name) then
local rules = mesecon:conductor_get_rules(node)
- minetest.env:add_node(pos, {name=mesecon:get_conductor_on(node.name)})
+ minetest.env:add_node(pos, {name=mesecon:get_conductor_on(node.name), param2 = node.param2})
while rules[i]~=nil do
local np = {}
@@ -272,7 +272,7 @@ function mesecon:turnoff(pos) --receptor rules used because output could have be
if mesecon:is_conductor_on(node.name) then
rules = mesecon:conductor_get_rules(node)
- minetest.env:add_node(pos, {name=mesecon:get_conductor_off(node.name)})
+ minetest.env:add_node(pos, {name=mesecon:get_conductor_off(node.name), param2 = node.param2})
while rules[i]~=nil do
local np = {
diff --git a/mesecons_isolated/depends.txt b/mesecons_insulated/depends.txt
index acaa924..acaa924 100644
--- a/mesecons_isolated/depends.txt
+++ b/mesecons_insulated/depends.txt
diff --git a/mesecons_insulated/init.lua b/mesecons_insulated/init.lua
new file mode 100644
index 0000000..bfe16f4
--- /dev/null
+++ b/mesecons_insulated/init.lua
@@ -0,0 +1,72 @@
+minetest.register_node("mesecons_insulated:insulated_on", {
+ drawtype = "nodebox",
+ description = "insulated mesecons",
+ tiles = {
+ "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_ends_on.png",
+ "jeija_insulated_wire_ends_on.png",
+ "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_sides.png"
+ },
+ paramtype = "light",
+ paramtype2 = "facedir",
+ walkable = false,
+ stack_max = 99,
+ selection_box = {
+ type = "fixed",
+ fixed = { -16/32-0.001, -18/32, -7/32, 16/32+0.001, -12/32, 7/32 }
+ },
+ node_box = {
+ type = "fixed",
+ fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
+ },
+ groups = {dig_immediate = 3, mesecon = 3, mesecon_conductor_craftable=1, not_in_creative_inventory = 1},
+ drop = "mesecons_insulated:insulated_off",
+
+})
+
+minetest.register_node("mesecons_insulated:insulated_off", {
+ drawtype = "nodebox",
+ description = "insulated mesecons",
+ tiles = {
+ "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_ends_off.png",
+ "jeija_insulated_wire_ends_off.png",
+ "jeija_insulated_wire_sides.png",
+ "jeija_insulated_wire_sides.png"
+ },
+ paramtype = "light",
+ paramtype2 = "facedir",
+ walkable = false,
+ stack_max = 99,
+ selection_box = {
+ type = "fixed",
+ fixed = { -16/32-0.001, -18/32, -7/32, 16/32+0.001, -12/32, 7/32 }
+ },
+ node_box = {
+ type = "fixed",
+ fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
+ },
+ groups = {dig_immediate = 3, mesecon = 3, mesecon_conductor_craftable=1},
+})
+
+mesecon:add_rules("insulated_all", { --all possible rules
+{x = 1, y = 0, z = 0},
+{x =-1, y = 0, z = 0},
+{x = 0, y = 0, z = 1},
+{x = 0, y = 0, z =-1},})
+
+mesecon:add_rules("insulated", {
+{x = 1, y = 0, z = 0},
+{x =-1, y = 0, z = 0},})
+
+function insulated_wire_get_rules(param2)
+ if param2 == 1 or param2 == 3 then
+ return mesecon:rotate_rules_right(mesecon:get_rules("insulated"))
+ end
+ return mesecon:get_rules("insulated")
+end
+
+mesecon:register_conductor("mesecons_insulated:insulated_on", "mesecons_insulated:insulated_off", mesecon:get_rules("insulated_all"), insulated_wire_get_rules)
diff --git a/mesecons_isolated/init.lua b/mesecons_isolated/init.lua
deleted file mode 100644
index cfddc8e..0000000
--- a/mesecons_isolated/init.lua
+++ /dev/null
@@ -1,57 +0,0 @@
-minetest.register_node("mesecons_isolated:isolated_on", {
- drawtype = "nodebox",
- description = "isolated mesecons",
- tiles = {
- "jeija_isolated_wire_sides.png",
- "jeija_isolated_wire_sides.png",
- "jeija_isolated_wire_ends_on.png",
- "jeija_isolated_wire_ends_on.png",
- "jeija_isolated_wire_sides.png",
- "jeija_isolated_wire_sides.png"
- },
- paramtype = "light",
- walkable = false,
- stack_max = 99,
- selection_box = {
- type = "fixed",
- fixed = { -16/32-0.001, -18/32, -7/32, 16/32+0.001, -12/32, 7/32 }
- },
- node_box = {
- type = "fixed",
- fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
- },
- groups = {dig_immediate = 3, mesecon = 3, mesecon_conductor_craftable=1},
- drop = "mesecons_isolated:isolated_off",
-
-})
-
-minetest.register_node("mesecons_isolated:isolated_off", {
- drawtype = "nodebox",
- description = "isolated mesecons",
- tiles = {
- "jeija_isolated_wire_sides.png",
- "jeija_isolated_wire_sides.png",
- "jeija_isolated_wire_ends_off.png",
- "jeija_isolated_wire_ends_off.png",
- "jeija_isolated_wire_sides.png",
- "jeija_isolated_wire_sides.png"
- },
- paramtype = "light",
- walkable = false,
- stack_max = 99,
- selection_box = {
- type = "fixed",
- fixed = { -16/32-0.001, -18/32, -7/32, 16/32+0.001, -12/32, 7/32 }
- },
- node_box = {
- type = "fixed",
- fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
- },
- groups = {dig_immediate = 3, mesecon = 3, mesecon_conductor_craftable=1, not_in_creative_inventory = 1},
-})
-
-mesecon:add_rules("isolated", {
-{x = 1, y = 0, z = 0},
-{x =-1, y = 0, z = 0},})
-
-mesecon:register_conductor("mesecons_isolated:isolated_on", "mesecons_isolated:isolated_off", mesecon:get_rules("isolated"))
diff --git a/mesecons_textures/textures/jeija_isolated_wire_ends_off.png b/mesecons_textures/textures/jeija_insulated_wire_ends_off.png
index 2196fdf..2196fdf 100644
--- a/mesecons_textures/textures/jeija_isolated_wire_ends_off.png
+++ b/mesecons_textures/textures/jeija_insulated_wire_ends_off.png
Binary files differ
diff --git a/mesecons_textures/textures/jeija_isolated_wire_ends_on.png b/mesecons_textures/textures/jeija_insulated_wire_ends_on.png
index 1f127f1..1f127f1 100644
--- a/mesecons_textures/textures/jeija_isolated_wire_ends_on.png
+++ b/mesecons_textures/textures/jeija_insulated_wire_ends_on.png
Binary files differ
diff --git a/mesecons_textures/textures/jeija_isolated_wire_sides.png b/mesecons_textures/textures/jeija_insulated_wire_sides.png
index db33f14..db33f14 100644
--- a/mesecons_textures/textures/jeija_isolated_wire_sides.png
+++ b/mesecons_textures/textures/jeija_insulated_wire_sides.png
Binary files differ