-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.lua
89 lines (79 loc) · 2.38 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
-- Backwards compatibility for 0.4.x
if not core.register_on_receiving_chat_message then
core.register_on_receiving_chat_message = core.register_on_receiving_chat_messages
end
local color_reset = "\x1b(c@#FFF)"
local c_pattern = "\x1b%(c@#?[0-9a-fA-F]+%)"
local c_namepat = "[A-z0-9-_]+"
core.register_on_receiving_chat_message(function(line)
local myname_l = "~[CAPS£"
if core.localplayer then
myname_l = core.localplayer:get_name():lower()
end
-- Detect color to still do the name mentioning effect
local color, line_nc = line:match("^(" .. c_pattern .. ")(.*)")
line = line_nc or line
local prefix
local chat_line = false
local message_separator = " "
local name, color_end, message = line:match("^%<(" .. c_namepat .. ")%>%s*(" .. c_pattern .. ")%s*(.*)")
if not message then
name, message = line:match("^%<(" .. c_namepat .. ")%> (.*)")
if name then
name = name:gsub(c_pattern, "")
end
end
if message then
-- To keep the <Name> notation
chat_line = true
else
-- Translated server messages, actions
prefix, name, message = line:match("^(.*\x1bF)(".. c_namepat .. ")(\x1bE.*)")
if message then
message_separator = ""
end
end
if not message then
-- Server messages, actions
prefix, name, message = line:match("^(%*+ )(" .. c_namepat .. ") (.*)")
end
if not message then
-- Colored prefix
prefix, name, message = line:match("^(.* )%<(" .. c_namepat .. ")%> (.*)")
if color and message and prefix:len() > 0 then
prefix = color .. prefix .. color_reset
color = nil
end
chat_line = true
end
if not message then
-- Skip unknown chat line
return
end
prefix = prefix or ""
local name_wrap = name
-- No color yet? We need color.
if not color then
local color = core.sha1(name, true)
local R = color:byte( 1) % 0x10
local G = color:byte(10) % 0x10
local B = color:byte(20) % 0x10
if R + G + B < 24 then
R = 15 - R
G = 15 - G
B = 15 - B
end
if chat_line then
name_wrap = "<" .. name .. ">"
end
name_wrap = minetest.colorize(string.format("#%X%X%X", R, G, B), name_wrap)
elseif chat_line then
name_wrap = "<" .. name .. ">"
end
if (chat_line or prefix == "* ") and name:lower() ~= myname_l
and message:lower():find(myname_l) then
prefix = minetest.colorize("#F33", "[!] ") .. prefix
end
return minetest.display_chat_message(prefix .. (color or "")
.. name_wrap .. (color_end or "") .. message_separator .. message)
end)