summaryrefslogtreecommitdiff
path: root/digilines_lightsensor
diff options
context:
space:
mode:
authorAuke Kok <sofar+github@foo-projects.org>2016-05-27 16:08:53 -0700
committerAuke Kok <sofar+github@foo-projects.org>2016-05-27 16:08:53 -0700
commit7ecb29e87f1f272f92d0fec871dd525a80a9537c (patch)
tree9c57001d333fc36a0561a3e8bfdac0df0108532b /digilines_lightsensor
parent4c743f9c4d1d263c5c36edb6a5dbaab7e2bdc6e4 (diff)
Convert digilines to a mod (not modpack). (#32)
Digilines is probably used by most people in its entirety. I've retained the ability to disable inventory, rtc, lightsensor and LCD by the minetest settings "diglines_enable_rtc" etc.. If set to "false", these components will not be loaded. It is assumed by default that these are enabled. In the conversion the digilines_lcd:lcd node was renamed to digilines:lcd (same for all the other nodes). To retain backwards compatibility I've provided aliases for each of these nodes.
Diffstat (limited to 'digilines_lightsensor')
-rw-r--r--digilines_lightsensor/depends.txt1
-rw-r--r--digilines_lightsensor/init.lua62
-rw-r--r--digilines_lightsensor/textures/digilines_lightsensor.pngbin218 -> 0 bytes
3 files changed, 0 insertions, 63 deletions
diff --git a/digilines_lightsensor/depends.txt b/digilines_lightsensor/depends.txt
deleted file mode 100644
index da1d119..0000000
--- a/digilines_lightsensor/depends.txt
+++ /dev/null
@@ -1 +0,0 @@
-digilines
diff --git a/digilines_lightsensor/init.lua b/digilines_lightsensor/init.lua
deleted file mode 100644
index 914899b..0000000
--- a/digilines_lightsensor/init.lua
+++ /dev/null
@@ -1,62 +0,0 @@
-local GET_COMMAND = "GET"
-
-local lsensor_nodebox =
-{
- type = "fixed",
- fixed = {
- { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 }, -- bottom slab
-
- { -7/16, -7/16, -7/16, -4/16, -5/16, 7/16 }, -- bonds
- { 4/16, -7/16, -7/16, 7/16, -5/16, 7/16 },
- { -7/16, -7/16, -7/16, 7/16, -5/16, -4/16 },
- { -7/16, -7/16, 4/16, 7/16, -5/16, 7/16 },
-
- { -1/16, -7/16, -1/16, 1/16, -5/16, 1/16 }, -- pin thing in the middle
- }
-}
-
-local lsensor_selbox =
-{
- type = "fixed",
- fixed = {{ -8/16, -8/16, -8/16, 8/16, -3/16, 8/16 }}
-}
-
-local on_digiline_receive = function (pos, node, channel, msg)
- local setchan = minetest.get_meta(pos):get_string("channel")
- if channel == setchan and msg == GET_COMMAND then
- local lightval = minetest.get_node_light(pos)
- digiline:receptor_send(pos, digiline.rules.default, channel, lightval)
- end
-end
-
-minetest.register_node("digilines_lightsensor:lightsensor", {
- description = "Digiline Lightsensor",
- drawtype = "nodebox",
- tiles = {"digilines_lightsensor.png"},
-
- paramtype = "light",
- groups = {dig_immediate=2},
- selection_box = lsensor_selbox,
- node_box = lsensor_nodebox,
- digiline =
- {
- receptor = {},
- effector = {
- action = on_digiline_receive
- },
- },
- on_construct = function(pos)
- local meta = minetest.get_meta(pos)
- meta:set_string("formspec", "field[channel;Channel;${channel}]")
- end,
- on_receive_fields = function(pos, formname, fields, sender)
- local name = sender:get_player_name()
- if minetest.is_protected(pos, name) and not minetest.check_player_privs(name, {protection_bypass=true}) then
- minetest.record_protection_violation(pos, name)
- return
- end
- if (fields.channel) then
- minetest.get_meta(pos):set_string("channel", fields.channel)
- end
- end,
-})
diff --git a/digilines_lightsensor/textures/digilines_lightsensor.png b/digilines_lightsensor/textures/digilines_lightsensor.png
deleted file mode 100644
index aa88495..0000000
--- a/digilines_lightsensor/textures/digilines_lightsensor.png
+++ /dev/null
Binary files differ