From ddfe350f3d1eb81f124443470764ff15a6e0bdbd Mon Sep 17 00:00:00 2001 From: Jeija Date: Sun, 24 Mar 2013 22:27:03 +0100 Subject: [PATCH] Add light sensor and RTC (Real Time Clock) --- digilines_lightsensor/depends.txt | 1 + digilines_lightsensor/init.lua | 57 ++++++++++++++++++ .../textures/digilines_lightsensor.png | Bin 0 -> 218 bytes digilines_rtc/depends.txt | 1 + digilines_rtc/init.lua | 53 ++++++++++++++++ digilines_rtc/textures/digilines_rtc.png | Bin 0 -> 248 bytes 6 files changed, 112 insertions(+) create mode 100644 digilines_lightsensor/depends.txt create mode 100644 digilines_lightsensor/init.lua create mode 100644 digilines_lightsensor/textures/digilines_lightsensor.png create mode 100644 digilines_rtc/depends.txt create mode 100644 digilines_rtc/init.lua create mode 100644 digilines_rtc/textures/digilines_rtc.png diff --git a/digilines_lightsensor/depends.txt b/digilines_lightsensor/depends.txt new file mode 100644 index 0000000..da1d119 --- /dev/null +++ b/digilines_lightsensor/depends.txt @@ -0,0 +1 @@ +digilines diff --git a/digilines_lightsensor/init.lua b/digilines_lightsensor/init.lua new file mode 100644 index 0000000..8db748e --- /dev/null +++ b/digilines_lightsensor/init.lua @@ -0,0 +1,57 @@ +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.env:get_meta(pos):get_string("channel") + if channel == setchan and msg == GET_COMMAND then + local lightval = minetest.env: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.env:get_meta(pos) + meta:set_string("formspec", "field[channel;Channel;${channel}]") + end, + on_receive_fields = function(pos, formname, fields, sender) + local meta = minetest.env:get_meta(pos) + fields.channel = fields.channel or "" + meta:set_string("channel", fields.channel) + end, +}) diff --git a/digilines_lightsensor/textures/digilines_lightsensor.png b/digilines_lightsensor/textures/digilines_lightsensor.png new file mode 100644 index 0000000000000000000000000000000000000000..aa88495f0e950b09c787c2260106d1a7f9dd5d1f GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|oCO|{#S9GG!XV7ZFl&wkP>{XE z)7O>#F0+J)zDlcS`9q+PY-UJAiF1B#Zfaf$kjuc}T$GwvlA5AWo>`Ki;O^-gkfN8$ z4ipdYba4#PIG=oHPo*)lW{XE z)7O>#F0+J)nf!Vu^SeMH+02lL66gHf+|;}hAeVu`xhOTUBsE2$JhLQ2!QIn0AVn{g z9VnjX>Ealoaeix1G+%=O$LnS751)P5Ys?b^=$X9Vun n?fmk;UHaeBS0|0$^CmE!-@4=L|9LAvfSly%>gTe~DWM4f0-RWG literal 0 HcmV?d00001