From 8f7101f92c4412159bf93b529dd449bfe9552e11 Mon Sep 17 00:00:00 2001 From: Christian Danscheid Date: Mon, 12 Aug 2013 10:01:46 +0200 Subject: Started development of a trafficlight --- trafficlight/depends.txt | 3 ++ trafficlight/init.lua | 67 ++++++++++++++++++++++++++++++++++++++ trafficlight/textures/textures.txt | 1 + 3 files changed, 71 insertions(+) create mode 100644 trafficlight/depends.txt create mode 100644 trafficlight/init.lua create mode 100644 trafficlight/textures/textures.txt (limited to 'trafficlight') diff --git a/trafficlight/depends.txt b/trafficlight/depends.txt new file mode 100644 index 0000000..e0e13a6 --- /dev/null +++ b/trafficlight/depends.txt @@ -0,0 +1,3 @@ +default +streetsmod +digilines? \ No newline at end of file diff --git a/trafficlight/init.lua b/trafficlight/init.lua new file mode 100644 index 0000000..d7b093b --- /dev/null +++ b/trafficlight/init.lua @@ -0,0 +1,67 @@ +--[[ + StreetsMod: inDev Trafficlights +]] +minetest.register_node(":streets:trafficlight_bottom",{ + description = "Trafficlight", + groups = {cracky = 1}, + paramtype = "light", + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { + {-0.25,-0.5,-0.25,0.25,0.25,0.25}, + {-0.2,0.25,-0.2,0.2,0.5,0.2} + } + }, + selection_box = { + type = "fixed", + fixed = { + {-0.25,-0.5,-0.25,0.25,2.5,0.25} + } + }, + after_place_node = function(pos,placer,itemstack) + if minetest.get_node({x = pos.x, y = pos.y + 1, z = pos.z}).name == "air" and minetest.get_node({x = pos.x, y = pos.y + 2, z = pos.z}).name == "air" then + pos.y = pos.y + 1 + minetest.set_node(pos,{name="streets:trafficlight_middle"}) + pos.y = pos.y + 1 + minetest.set_node(pos,{name="streets:trafficlight_top"}) + else + minetest.chat_send_player(placer:get_player_name(),"Not enough vertical space! The traffic light has a height of 3 blocks.") + minetest.remove_node(pos) + end + end, + after_dig_node = function(pos, oldnode, oldmetadata, digger) + pos.y = pos.y + 1 + minetest.remove_node(pos) + pos.y = pos.y + 1 + minetest.remove_node(pos) + end +}) + +minetest.register_node(":streets:trafficlight_middle",{ + description = "U cheater U", + groups = {cracky = 1, not_in_creative_inventory = 1}, + paramtype = "light", + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { + {-0.2,-0.5,-0.2,0.2,0.5,0.2} + } + }, + pointable = false, +}) + +minetest.register_node(":streets:trafficlight_top",{ + description = "U cheater U", + groups = {cracky = 1, not_in_creative_inventory = 1}, + paramtype = "light", + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { + {-0.25,-0.5,-0.25,0.25,0.5,0.25} + } + }, + pointable = false, +}) \ No newline at end of file diff --git a/trafficlight/textures/textures.txt b/trafficlight/textures/textures.txt new file mode 100644 index 0000000..cbf90fa --- /dev/null +++ b/trafficlight/textures/textures.txt @@ -0,0 +1 @@ +no textures yet \ No newline at end of file -- cgit v1.2.3