This repository has been archived by the owner on Jul 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
init.lua
112 lines (100 loc) · 2.97 KB
/
init.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
--
-- /notify <player> <message>
-- /notify_all <message>
--
-- Sends a message to online player(s) using HUD elements.
-- Restricted to moderators, due to the potential for abuse.
--
local players = {}
local duration = tonumber(minetest.settings:get("hud_notify.duration")) or 10
local hide_sender = minetest.settings:get_bool("hud_notify.hide_sender") or false
local function notify(name, msg)
local player = minetest.get_player_by_name(name)
-- If notification is already being shown modify
-- msg (and header if it exists) and time
if players[name] then
players[name].time = os.time() + duration
player:hud_change(players[name].msg, "text", msg)
if not hide_sender then
player:hud_change(players[name].header, "text",
"Notification from " .. name .. ": ")
end
return
end
-- Else, add new elements
players[name] = {time = os.time() + duration}
players[name].bg = player:hud_add({
hud_elem_type = "image",
position = {x = 0, y = 0},
offset = {x = 50, y = 300},
scale = {x = -30, y = -30},
alignment = {x = 1, y = 0},
text = "hud_notify_bg.png"
})
players[name].msg = player:hud_add({
hud_elem_type = "text",
position = {x = 0, y = 0},
offset = {x = 70, y = 230},
alignment = {x = 1, y = 0},
number = 0xFFFFFF,
text = msg
})
if not hide_sender then
local msg_header = "Notification from " .. name .. ": "
players[name].header = player:hud_add({
hud_elem_type = "text",
position = {x = 0, y = 0},
offset = {x = 70, y = 200},
alignment = {x = 1, y = 0},
number = 0x3399FF,
text = msg_header
})
end
end
local function update()
for name, hud in pairs(players) do
if hud and os.time() > hud.time then
local player = minetest.get_player_by_name(name)
if player then
player:hud_remove(hud.bg)
player:hud_remove(hud.msg)
if not hide_sender then
player:hud_remove(hud.header)
end
end
players[name] = nil
end
end
end
minetest.register_chatcommand("notify", {
params = "<pname> <message>",
description = "Shows a message to player using HUD elements.",
privs = {kick = true, ban = true},
func = function(name, param)
local pname, msg = param:trim():match("^(%S+)%s(.+)$")
if not pname or not msg then
return false, "Invalid usage, see /help notify."
end
if not core.get_player_by_name(pname) then
return false, "The player " .. pname .. " is not online."
end
notify(pname, msg)
return true, "Notification sent to " .. pname .. ": \"" .. msg .. "\""
end
})
minetest.register_chatcommand("notify_all", {
params = "<message>",
description = "Shows a message to all online players using HUD elements.",
privs = {kick = true, ban = true},
func = function(name, param)
local msg = param:trim()
if not msg then
return false, "Invalid usage, see /help notify_all."
end
for _, player in pairs(minetest.get_connected_players()) do
notify(player:get_player_name(), msg)
end
return true, "Global notification sent: \"" .. msg .. "\""
end
})
minetest.register_globalstep(update)