[mod] radio control [v.1][rc]
Radio Control for devices and Mesecons

This mod adds the ability to make devices, like this which the digilines-mod uses,
interact over radio control.
At Moment there are these new nodes:
- Radio Controller: like the lua controller, but with radio controll ability
- Radio Controlled Display: To display a text like the digilines lcd
- RC Keyboard: to interact with an RC-controller
- Copier (Printer-Scanner combo)
- lightblock
Comming soon:
- RC tube (like digilines-tube for pipeworks)
- same with chest and injector maybe also the sensors
- drone: an block which you can navigate/fly, with the ability to dig the nodes under it and drop them at an other place (in work already) (hopefully like this: https://ixquick-proxy.com/do/spg/show_picture.pl?l=deutsch&rais=1&oiu=http%3A%2F%2Fd6rp6nm957ee1.cloudfront.net%2Fwp-content%2Fuploads%2F2015%2F11%2Fyay-16002316.jpg&sp=2e8f82525d8362b09e8a43dacdf427a2)
- and router
- option to disable unrealistic protection for signals (add admin controller too)
RC Controller:
The RC Controller has now this new command:
rc_send(pos, msg)
-> sends a message from controller to pos (only if the pos has the ability to receive)
example: rc_send({x=1, y=2, z=3}, 'hello')
-> if u send to an other Radio Controller you receive an event:
{msg=msg, sender=the_owner_of_the_first_controller, type='rc_msg'}
example:
1.The first controller is owned by juli and sends a message to 1 2 3:
rc_send({x=1, y=2, z=3}, 'hello')
2.Then there is a second controller at 1 2 3 which receives the message.
now it handles the event: {msg='hello', sender='juli'}
3. and sends a message to a rcd at 4 5 6:
rc_send({x=4, y=5, z=6}, event.sender..';'..event.msg)
4. On the Screen is now written: 'juli;hello'
Depends: mesecons, memorandum (for copier -> optional)
Credits:
Mesecons-mod by Jeija and contributors
-> textures+most code of the rc_controller
Digiline Keyboard (digiboard) by jogag
-> textures+parts of the code used for the rc_keyboard
Digiline Mod Display (digiline_lcd) by Jeija
-> code used for rc_rcd
License:
All textures in this project are licensed under the CC-BY-SA 3.0 (Creative Commons Attribution-ShareAlike 3.0 Generic).
All code in this project is licensed under the LGPL version 3 or later.
See: https://github.com/cpdef/minetest-rc/blob/master/README.md
Download: https://github.com/cpdef/minetest-rc/archive/master.zip
Source: https://github.com/cpdef/minetest-rc
If someone has tested the mod please reply, especially if there is a bug or something!!

This mod adds the ability to make devices, like this which the digilines-mod uses,
interact over radio control.
At Moment there are these new nodes:
- Radio Controller: like the lua controller, but with radio controll ability
- Radio Controlled Display: To display a text like the digilines lcd
- RC Keyboard: to interact with an RC-controller
- Copier (Printer-Scanner combo)
- lightblock
Comming soon:
- RC tube (like digilines-tube for pipeworks)
- same with chest and injector maybe also the sensors
- drone: an block which you can navigate/fly, with the ability to dig the nodes under it and drop them at an other place (in work already) (hopefully like this: https://ixquick-proxy.com/do/spg/show_picture.pl?l=deutsch&rais=1&oiu=http%3A%2F%2Fd6rp6nm957ee1.cloudfront.net%2Fwp-content%2Fuploads%2F2015%2F11%2Fyay-16002316.jpg&sp=2e8f82525d8362b09e8a43dacdf427a2)
- and router
- option to disable unrealistic protection for signals (add admin controller too)
RC Controller:
The RC Controller has now this new command:
rc_send(pos, msg)
-> sends a message from controller to pos (only if the pos has the ability to receive)
example: rc_send({x=1, y=2, z=3}, 'hello')
-> if u send to an other Radio Controller you receive an event:
{msg=msg, sender=the_owner_of_the_first_controller, type='rc_msg'}
example:
1.The first controller is owned by juli and sends a message to 1 2 3:
rc_send({x=1, y=2, z=3}, 'hello')
2.Then there is a second controller at 1 2 3 which receives the message.
now it handles the event: {msg='hello', sender='juli'}
3. and sends a message to a rcd at 4 5 6:
rc_send({x=4, y=5, z=6}, event.sender..';'..event.msg)
4. On the Screen is now written: 'juli;hello'
Depends: mesecons, memorandum (for copier -> optional)
Credits:
Mesecons-mod by Jeija and contributors
-> textures+most code of the rc_controller
Digiline Keyboard (digiboard) by jogag
-> textures+parts of the code used for the rc_keyboard
Digiline Mod Display (digiline_lcd) by Jeija
-> code used for rc_rcd
License:
All textures in this project are licensed under the CC-BY-SA 3.0 (Creative Commons Attribution-ShareAlike 3.0 Generic).
All code in this project is licensed under the LGPL version 3 or later.
See: https://github.com/cpdef/minetest-rc/blob/master/README.md
Download: https://github.com/cpdef/minetest-rc/archive/master.zip
Source: https://github.com/cpdef/minetest-rc
If someone has tested the mod please reply, especially if there is a bug or something!!

