2012-12-22 01:16:28 -02:00
|
|
|
|
2013-01-08 13:50:47 -02:00
|
|
|
-- IRC Mod for Minetest
|
|
|
|
-- By Diego Martínez <kaeza@users.sf.net>
|
|
|
|
--
|
|
|
|
-- This mod allows to tie a Minetest server to an IRC channel.
|
|
|
|
--
|
|
|
|
-- This program is free software. It comes without any warranty, to
|
|
|
|
-- the extent permitted by applicable law. You can redistribute it
|
|
|
|
-- and/or modify it under the terms of the Do What The Fuck You Want
|
|
|
|
-- To Public License, Version 2, as published by Sam Hocevar. See
|
|
|
|
-- http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
--
|
|
|
|
|
|
|
|
local irc = require("irc");
|
|
|
|
|
2013-01-11 14:20:30 -02:00
|
|
|
mt_irc.callbacks = { };
|
|
|
|
|
|
|
|
mt_irc._callback = function ( name, ... )
|
|
|
|
local list = mt_irc.callbacks[name];
|
|
|
|
if (not list) then return; end
|
|
|
|
for n = 1, #list do
|
|
|
|
local r = list[n](...);
|
|
|
|
if (r) then return r; end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
mt_irc.register_callback = function ( name, func )
|
|
|
|
local list = mt_irc.callbacks[name];
|
|
|
|
if (not list) then
|
|
|
|
list = { };
|
|
|
|
mt_irc.callbacks[name] = list;
|
|
|
|
end
|
|
|
|
list[#list + 1] = func;
|
|
|
|
end
|
|
|
|
|
2012-12-22 01:16:28 -02:00
|
|
|
minetest.register_on_joinplayer(function ( player )
|
|
|
|
|
2013-01-08 13:50:47 -02:00
|
|
|
mt_irc.say(mt_irc.channel, "*** "..player:get_player_name().." joined the game");
|
2012-12-29 07:10:26 -02:00
|
|
|
mt_irc.connected_players[player:get_player_name()] = mt_irc.auto_join;
|
2012-12-22 01:16:28 -02:00
|
|
|
|
|
|
|
end);
|
|
|
|
|
|
|
|
irc.register_callback("connect", function ( )
|
2013-01-05 12:48:35 -02:00
|
|
|
mt_irc.got_motd = true;
|
2012-12-22 01:16:28 -02:00
|
|
|
irc.join(mt_irc.channel);
|
|
|
|
end);
|
|
|
|
|
|
|
|
irc.register_callback("channel_msg", function ( channel, from, message )
|
|
|
|
if (not mt_irc.connect_ok) then return; end
|
|
|
|
local t = {
|
|
|
|
name=(from or "<BUG:no one is saying this>");
|
|
|
|
message=(message or "<BUG:there is no message>");
|
|
|
|
server=mt_irc.server;
|
|
|
|
port=mt_irc.port;
|
|
|
|
channel=mt_irc.channel;
|
|
|
|
};
|
|
|
|
local text = mt_irc.message_format_in:gsub("%$%(([^)]+)%)", t)
|
2013-01-11 14:20:30 -02:00
|
|
|
if (mt_irc._callback("channel_msg", from, message, text)) then return; end
|
2012-12-22 01:16:28 -02:00
|
|
|
for k, v in pairs(mt_irc.connected_players) do
|
|
|
|
if (v) then minetest.chat_send_player(k, text); end
|
|
|
|
end
|
|
|
|
end);
|
|
|
|
|
2012-12-23 03:31:52 -02:00
|
|
|
local function bot_command ( from, message )
|
|
|
|
|
|
|
|
local pos = message:find(" ", 1, true);
|
|
|
|
local cmd, args;
|
|
|
|
if (pos) then
|
|
|
|
cmd = message:sub(1, pos - 1);
|
|
|
|
args = message:sub(pos + 1);
|
|
|
|
else
|
|
|
|
cmd = message;
|
|
|
|
args = "";
|
|
|
|
end
|
|
|
|
|
|
|
|
if (not mt_irc.bot_commands[cmd]) then
|
2013-01-08 13:50:47 -02:00
|
|
|
mt_irc.say(from, "Unknown command `"..cmd.."'. Try `!help'.");
|
2012-12-26 17:56:21 -02:00
|
|
|
return;
|
2012-12-23 03:31:52 -02:00
|
|
|
end
|
|
|
|
|
|
|
|
mt_irc.bot_commands[cmd].func(from, args);
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2012-12-22 01:16:28 -02:00
|
|
|
irc.register_callback("private_msg", function ( from, message )
|
|
|
|
if (not mt_irc.connect_ok) then return; end
|
|
|
|
local player_to;
|
|
|
|
local msg;
|
|
|
|
if (message:sub(1, 1) == ">") then
|
|
|
|
local pos = message:find(" ", 1, true);
|
|
|
|
if (not pos) then return; end
|
|
|
|
player_to = message:sub(2, pos - 1);
|
|
|
|
msg = message:sub(pos + 1);
|
2012-12-23 03:31:52 -02:00
|
|
|
elseif (message:sub(1, 1) == "!") then
|
|
|
|
bot_command(from, message:sub(2));
|
|
|
|
return;
|
2012-12-22 01:16:28 -02:00
|
|
|
else
|
2012-12-23 03:31:52 -02:00
|
|
|
irc.say(from, 'Message not sent! Please use "!help" to see possible commands.');
|
2012-12-26 19:13:00 -02:00
|
|
|
irc.say(from, ' Or use the ">playername Message" syntax to send a private message.');
|
2012-12-22 01:16:28 -02:00
|
|
|
return;
|
|
|
|
end
|
|
|
|
if (not mt_irc.connected_players[player_to]) then
|
|
|
|
irc.say(from, "User `"..player_to.."' is not connected to IRC.");
|
|
|
|
return;
|
|
|
|
end
|
|
|
|
local t = {
|
|
|
|
name=(from or "<BUG:no one is saying this>");
|
|
|
|
message=(msg or "<BUG:there is no message>");
|
|
|
|
server=mt_irc.server;
|
|
|
|
port=mt_irc.port;
|
|
|
|
channel=mt_irc.channel;
|
|
|
|
};
|
2013-01-11 14:20:30 -02:00
|
|
|
local text = mt_irc.message_format_in:expandvars(t);
|
|
|
|
if (mt_irc._callback("private_msg", from, player_to, message, text)) then return; end
|
2012-12-22 01:16:28 -02:00
|
|
|
minetest.chat_send_player(player_to, "PRIVATE: "..text);
|
|
|
|
end);
|
|
|
|
|
2013-01-06 07:15:16 -02:00
|
|
|
irc.register_callback("kick", function ( chaninfo, to, from )
|
2013-01-08 13:50:47 -02:00
|
|
|
minetest.chat_send_all("IRC: Bot was kicked by "..from..". Reconnecting bot in 5 seconds...");
|
|
|
|
mt_irc.got_motd = false;
|
|
|
|
mt_irc.connect_ok = false;
|
|
|
|
irc.quit("Kicked");
|
|
|
|
minetest.after(5, mt_irc.connect);
|
2013-01-06 07:15:16 -02:00
|
|
|
end);
|
|
|
|
|
2012-12-22 01:16:28 -02:00
|
|
|
irc.register_callback("nick_change", function ( from, old_nick )
|
|
|
|
if (not mt_irc.connect_ok) then return; end
|
2013-01-08 22:45:55 -02:00
|
|
|
local text = "["..old_nick.." changed his nick to "..from.."]";
|
|
|
|
for k, v in pairs(mt_irc.connected_players) do
|
|
|
|
if (v) then minetest.chat_send_player(k, text); end
|
|
|
|
end
|
2012-12-22 01:16:28 -02:00
|
|
|
end);
|
|
|
|
|
2013-01-08 22:50:56 -02:00
|
|
|
irc.register_callback("join", function ( servinfo, from )
|
|
|
|
local text = "*** "..from.." joined "..mt_irc.channel;
|
|
|
|
for k, v in pairs(mt_irc.connected_players) do
|
|
|
|
if (v) then minetest.chat_send_player(k, text); end
|
|
|
|
end
|
|
|
|
end);
|
|
|
|
|
|
|
|
irc.register_callback("part", function ( servinfo, from, part_msg )
|
|
|
|
local text = "*** "..from.." left "..mt_irc.channel.." ("..part_msg..")";
|
|
|
|
for k, v in pairs(mt_irc.connected_players) do
|
|
|
|
if (v) then minetest.chat_send_player(k, text); end
|
|
|
|
end
|
|
|
|
end);
|
|
|
|
|
2013-01-08 22:22:45 -02:00
|
|
|
irc.register_callback("channel_act", function ( servinfo, from, message)
|
2013-01-08 22:45:55 -02:00
|
|
|
if (not mt_irc.connect_ok) then return; end
|
2013-01-08 22:22:45 -02:00
|
|
|
local text = "*** "..from.." "..message;
|
|
|
|
for k, v in pairs(mt_irc.connected_players) do
|
|
|
|
if (v) then minetest.chat_send_player(k, text); end
|
|
|
|
end
|
|
|
|
end);
|
|
|
|
|
2012-12-22 01:16:28 -02:00
|
|
|
minetest.register_on_leaveplayer(function ( player )
|
|
|
|
local name = player:get_player_name();
|
|
|
|
mt_irc.connected_players[name] = false;
|
|
|
|
if (not mt_irc.connect_ok) then return; end
|
|
|
|
irc.say(mt_irc.channel, "*** "..name.." left the game");
|
|
|
|
end);
|
|
|
|
|
|
|
|
minetest.register_on_chat_message(function ( name, message )
|
2013-01-08 14:13:41 -02:00
|
|
|
if (not mt_irc.connect_ok) then return; end
|
2013-01-01 21:15:45 -02:00
|
|
|
if (message:sub(1, 1) == "/") then return; end
|
2013-01-08 22:22:45 -02:00
|
|
|
if (not mt_irc.connected_players[name]) then return; end
|
|
|
|
if (not minetest.check_player_privs(name, {shout=true})) then
|
2013-01-08 14:13:41 -02:00
|
|
|
return;
|
|
|
|
end
|
2012-12-22 01:16:28 -02:00
|
|
|
if (not mt_irc.buffered_messages) then
|
|
|
|
mt_irc.buffered_messages = { };
|
|
|
|
end
|
|
|
|
mt_irc.buffered_messages[#mt_irc.buffered_messages + 1] = {
|
|
|
|
name = name;
|
|
|
|
message = message;
|
|
|
|
};
|
|
|
|
end);
|
2013-01-01 21:15:45 -02:00
|
|
|
|
|
|
|
minetest.register_on_shutdown(function ( )
|
|
|
|
irc.quit("Game shutting down.");
|
2013-01-06 07:15:16 -02:00
|
|
|
for n = 1, 5 do
|
|
|
|
irc.poll();
|
|
|
|
end
|
2013-01-01 21:15:45 -02:00
|
|
|
end);
|
2013-01-08 13:50:47 -02:00
|
|
|
|
|
|
|
irc.handlers.on_error = function (from, respond_to)
|
2013-01-08 22:22:45 -02:00
|
|
|
for k, v in pairs(mt_irc.connected_players) do
|
|
|
|
if (v) then minetest.chat_send_player(k, text); end
|
|
|
|
end
|
2013-01-08 13:50:47 -02:00
|
|
|
mt_irc.got_motd = false;
|
|
|
|
mt_irc.connect_ok = false;
|
|
|
|
irc.quit("Ping timeout");
|
|
|
|
minetest.after(5, mt_irc.connect);
|
|
|
|
end
|