]> git.lizzy.rs Git - furrybot.git/blob - bot.lua
Use libclamity callback
[furrybot.git] / bot.lua
1 furrybot.commands = {}
2 furrybot.requests = {}
3 furrybot.unsafe_commands = {}
4
5 local http, env, storage
6 local C = minetest.get_color_escape_sequence
7
8 furrybot.colors = {
9         ping = C("#00DCFF"),
10         system = C("#FFFA00"),
11         error = C("#D70029"),
12         detail = C("#FF6683"),
13         rpg = C("#FFD94E"),
14         braces = C("#FFFAC0"),
15         info = C("#00FFC3"),
16         fun = C("#A0FF24"),
17         random = C("#A300BE"),
18         money = C("#A11600"),
19 }
20
21 -- helper functions
22
23 function furrybot.send(msg, color)
24         minetest.send_chat_message("/me " .. furrybot.colors.braces .. "[" .. color .. msg .. furrybot.colors.braces .. "]")
25 end
26
27 function furrybot.ping(player, color)
28         return furrybot.colors.ping .. "@" .. player .. color
29 end
30
31 function furrybot.ping_message(player, message, color)
32         furrybot.send(furrybot.ping(player, color) .. ": " .. message, "")
33 end
34
35 function furrybot.error_message(player, error, detail)
36         furrybot.ping_message(player, error .. (detail and furrybot.colors.detail .. " '" .. detail .. "'" .. furrybot.colors.error or "") .. ".", furrybot.colors.error)
37 end
38
39 function furrybot.parse_message(player, message, discord)
40         if message:find("!") == 1 then
41                 local args = message:sub(2, #message):split(" ")
42                 local cmd = table.remove(args, 1)
43                 local func = furrybot.commands[cmd]
44                 if func then
45                         if furrybot.unsafe_commands[cmd] and discord then
46                                 furrybot.error_message(player, "Sorry, you cannot run this command from discord", cmd)
47                         else
48                                 func(player, unpack(args))
49                         end
50                 else
51                         furrybot.error_message(player, "Invalid command", cmd)
52                 end
53         end
54 end
55
56 function furrybot.reload()
57         local func, err = env.loadfile("clientmods/furrybot/bot.lua")
58         if func then
59                 local old_fb = table.copy(furrybot)
60                 local status, init = pcall(func)
61                 if status then
62                         init(http, env, storage)
63                 else
64                         furrybot = old_fb
65                         return false, furrybot.colors.error .. "Error: " .. furrybot.colors.detail .. init
66                 end
67         else
68                 return false, furrybot.colors.error .. "Syntax error: " .. furrybot.colors.detail .. err
69         end
70 end
71
72 function furrybot.player_online(name)
73         for _, n in ipairs(minetest.get_player_names()) do
74                 if name == n then
75                         return true
76                 end
77         end
78 end
79
80 function furrybot.online_or_error(name, other, allow_self)
81         if not other then
82                 furrybot.error_message(name, "You need to specify a player")
83         elseif name == other and not allow_self then
84                 furrybot.error_message(name, "You need to specify a different player than yourself")
85         elseif furrybot.player_online(other) then
86                 return true
87         else
88                 furrybot.error_message(name, "Player not online", other)
89         end
90 end
91
92 function furrybot.choose(list, color)
93         return furrybot.colors.random .. list[math.random(#list)] .. color
94 end
95
96 function furrybot.random(min, max, color)
97         return furrybot.colors.random .. math.random(min, max) .. color
98 end
99
100 function furrybot.http_request(url, name, callback)
101         http.fetch({url = url}, function(res)
102                 if res.succeeded then
103                         callback(res.data)
104                 else
105                         furrybot.error_message(name, "Request failed with code", res.code)
106                 end
107         end)
108 end
109
110 function furrybot.json_http_request(url, name, callback)
111         furrybot.http_request(url, name, function(raw)
112                 local data = minetest.parse_json(raw)
113                 callback(data[1] or data)
114         end)
115 end
116
117 function furrybot.strrandom(str, seed, ...)
118         local v = 0
119         local pr = PseudoRandom(seed)
120         for i = 1, #str do
121                 v = v + str:byte(i) * pr:next()
122         end
123         return PseudoRandom(v):next(...)
124 end
125
126 function furrybot.repeat_string(str, times)
127         local msg = ""
128         for i = 1, times do
129                 msg = msg .. str
130         end
131         return msg
132 end
133
134 function furrybot.interactive_rpg_command(action)
135         return function(name, target)
136                 if furrybot.online_or_error(name, target) then
137                         furrybot.send(name .. " " .. action .. " " .. target .. ".", furrybot.colors.rpg)
138                 end
139         end
140 end
141
142 function furrybot.solo_rpg_command(action)
143         return function(name)
144                 furrybot.send(name .. " " .. action .. ".", furrybot.colors.rpg)
145         end
146 end
147
148 function furrybot.request_command(on_request, on_accept)
149         return function(name, target)
150                 if furrybot.online_or_error(name, target) and on_request(name, target) ~= false then
151                         furrybot.requests[target] = {
152                                 origin = name,
153                                 func = on_accept,
154                         }
155                 end
156         end
157 end
158
159 function furrybot.get_money(name)
160         local key = name .. ".money"
161         if storage:contains(key) then
162                 return storage:get_int(key)
163         else
164                 return 100
165         end
166 end
167
168 function furrybot.set_money(name, money)
169         storage:set_int(name .. ".money", money)
170 end
171
172 function furrybot.add_money(name, add)
173         local money = furrybot.get_money(name)
174         furrybot.set_money(name, money + add)
175 end
176
177 function furrybot.take_money(name, remove)
178         local money = furrybot.get_money(name)
179         local new = money - remove
180         if new < 0 then
181                 return false
182         else
183                 furrybot.set_money(name, new)
184                 return true
185         end
186 end
187
188 function furrybot.money(money, color)
189         return furrybot.colors.money .. "$" .. money .. color
190 end
191
192 -- Commands
193
194 -- system
195 function furrybot.commands.help()
196         local keys = {}
197         for k in pairs(furrybot.commands) do
198                 table.insert(keys, k)
199         end
200         furrybot.send("Available commands: " .. table.concat(keys, ", "), furrybot.colors.system)
201 end
202
203 function furrybot.commands.accept(name)
204         local tbl = furrybot.requests[name]
205         if tbl then
206                 furrybot.requests[name] = nil
207                 tbl.func(tbl.origin, name)
208         else
209                 furrybot.error_message(name, "Nothing to accept")
210         end
211 end
212 furrybot.unsafe_commands.accept = true
213
214 function furrybot.commands.deny(name)
215         local tbl = furrybot.requests[name]
216         if tbl then
217                 furrybot.requests[name] = nil
218                 furrybot.ping_message(name, "Denied request", furrybot.colors.system)
219         else
220                 furrybot.error_message(name, "Nothing to deny")
221         end
222 end
223 furrybot.unsafe_commands.deny = true
224
225 -- don't bug players that are running ClamityBot commands from discord
226 function furrybot.commands.status()
227 end
228
229 function furrybot.commands.cmd()
230 end
231
232 -- rpg
233 furrybot.commands.cry = furrybot.solo_rpg_command("cries")
234 furrybot.commands.laugh = furrybot.solo_rpg_command("laughs")
235 furrybot.commands.confused = furrybot.solo_rpg_command("is confused")
236 furrybot.commands.smile = furrybot.solo_rpg_command("smiles")
237 furrybot.commands.hug = furrybot.interactive_rpg_command("hugs")
238 furrybot.commands.cuddle = furrybot.interactive_rpg_command("cuddles")
239 furrybot.commands.kiss = furrybot.interactive_rpg_command("kisses")
240 furrybot.commands.hit = furrybot.interactive_rpg_command("hits")
241 furrybot.commands.slap = furrybot.interactive_rpg_command("slaps")
242 furrybot.commands.beat = furrybot.interactive_rpg_command("beats")
243 furrybot.commands.lick = furrybot.interactive_rpg_command("licks")
244
245 furrybot.commands.sex = furrybot.request_command(function(name, target)
246         furrybot.ping_message(target, name .. " wants to have sex with you. Type !accept to accept or !deny to deny.", furrybot.colors.system)
247 end, function(name, target)
248         furrybot.send(name .. " and " .. target .. " are having sex! OwO", furrybot.colors.rpg)
249 end)
250 furrybot.commands.bang = furrybot.commands.sex
251 furrybot.commands.fuck = furrybot.commands.sex
252
253 furrybot.commands.marry = furrybot.request_command(function(name, target)
254         if storage:contains(name .. ".partner", target) then
255                 furrybot.error_message(name, "You are already married to", storage:get_string(name .. ".partner"))
256                 return false
257         elseif storage:contains(target .. ".partner", name) then
258                 furrybot.error_message(name, target .. " is already married to", storage:get_string(name .. ".partner"))
259                 return false
260         else
261                 furrybot.ping_message(target, name .. " proposes to you. Type !accept to accept or !deny to deny.", furrybot.colors.system)
262         end
263 end, function(name, target)
264         storage:set_string(name .. ".partner", target)
265         storage:set_string(target .. ".partner", name)
266         furrybot.send("Congratulations, " .. furrybot.ping(name, furrybot.colors.rpg) .. "&" .. furrybot.ping(target, furrybot.colors.rpg) .. ", you are married. You may now kiss :).", furrybot.colors.rpg)
267 end)
268 furrybot.commands.propose = furrybot.commands.marry
269 furrybot.unsafe_commands.marry = true
270 furrybot.unsafe_commands.propose = true
271
272 function furrybot.commands.divorce(name)
273         if storage:contains(name .. ".partner") then
274                 local partner = storage:get_string(name .. ".partner")
275                 storage:set_string(name .. ".partner", "")
276                 storage:set_string(partner .. ".partner", "")
277                 furrybot.ping_message(name, "divorces from " .. partner .. " :(", furrybot.colors.rpg)
278         else
279                 furrybot.error_message(name, "You are not married")
280         end
281 end
282 furrybot.unsafe_commands.divorce = true
283
284 function furrybot.commands.partner(name, target)
285         target = target or name
286         if storage:contains(target .. ".partner") then
287                 furrybot.ping_message(name, (target == name and "You are" or target .. " is") .. " married to " .. storage:get_string(target .. ".partner"), furrybot.colors.system)
288         else
289                 furrybot.error_message(name, (target == name and "You are" or target .. " is") .. " not married")
290         end
291 end
292 furrybot.commands.married = furrybot.commands.partner
293
294 -- misc
295 function furrybot.commands.rolldice(name)
296         furrybot.ping_message(name, "rolled a dice and got a " .. furrybot.random(1, 6, furrybot.colors.system) .. ".", furrybot.colors.system)
297 end
298
299 function furrybot.commands.coinflip(name)
300         furrybot.ping_message(name, "flipped a coin and got " .. furrybot.choose({"Heads", "Tails"}, furrybot.colors.system) .. ".", furrybot.colors.system)
301 end
302
303 function furrybot.commands.choose(name, ...)
304         local options = {...}
305         if #options > 1 then
306                 furrybot.ping_message(name, "I choose " .. furrybot.choose(options, "", furrybot.colors.system) .. ".", furrybot.colors.system)
307         else
308                 furrybot.error_message(name, "Not enough options")
309         end
310 end
311
312 function furrybot.commands.dicksize(name, target)
313         target = target or name
314         local size = furrybot.strrandom(target, 31242, 2, 10)
315         local dick = furrybot.repeat_string("=", size) .. "D"
316         furrybot.send(dick .. furrybot.colors.system .. "   <= " .. furrybot.ping(target, furrybot.colors.system) .. "'s Dick", C("#FF4DE1"))
317 end
318 furrybot.commands.cocksize = furrybot.commands.dicksize
319
320 -- fun
321 function furrybot.commands.verse(name)
322         furrybot.json_http_request("https://labs.bible.org/api/?type=json&passage=random", name, function(data)
323                 furrybot.send(data.text .. furrybot.colors.info .. "[" .. data.bookname .. " " .. data.chapter .. "," .. data.verse .. "]", furrybot.colors.fun)
324         end)
325 end
326
327 function furrybot.commands.define(name, word)
328         if word then
329                 furrybot.json_http_request("https://api.dictionaryapi.dev/api/v1/entries/en_US/" .. word:gsub("computer", "person"), name, function(data)
330                         local meaning = data.meaning
331                         local selected = meaning.exclamation or meaning.noun or meaning.verb or meaning.adjective or meaning["transitive verb"] or meaning.adverb or meaning["relative adverb"]
332                         if not selected then
333                                 print(dump(meaning))
334                                 furrybot.error_message(name, "Error in parsing response")
335                         else
336                                 furrybot.send(word:sub(1, 1):upper() .. word:sub(2, #word):lower() .. ": " .. furrybot.colors.fun .. selected[1].definition, furrybot.colors.info)
337                         end
338                 end)
339         else
340                 furrybot.error_message(name, "You need to specify a word")
341         end
342 end
343
344 function furrybot.commands.insult(name, target)
345         if furrybot.online_or_error(name, target, true) then
346                 furrybot.http_request("https://insult.mattbas.org/api/insult", name, function(data)
347                         furrybot.ping_message(target, data, furrybot.colors.fun)
348                 end)
349         end
350 end
351
352 function furrybot.commands.joke(name, first, last)
353         if not first then
354                 first = "Chuck"
355                 last = "Norris"
356         elseif not last then
357                 last = ""
358         end
359         furrybot.json_http_request("http://api.icndb.com/jokes/random?firstName=" .. first .. "&lastName=" .. last, name, function(data)
360                 local joke = data.value.joke:gsub("&quot;", "\""):gsub("  ", " ")
361                 furrybot.send(joke, furrybot.colors.fun)
362         end)
363 end
364
365 function furrybot.commands.question(name)
366         furrybot.json_http_request("https://8ball.delegator.com/magic/JSON/anything", name, function(data)
367                 furrybot.ping_message(name, data.magic.answer, furrybot.colors.fun)
368         end)
369 end
370 furrybot.commands["8ball"] = furrybot.commands.question
371
372 -- economy
373 function furrybot.commands.money(name, target)
374         target = target or name
375         furrybot.ping_message(name, (target == name and "You have " or target .. " has ") .. furrybot.money(furrybot.get_money(target), furrybot.colors.system) .. ".", furrybot.colors.system)
376 end
377 furrybot.commands.balance = furrybot.commands.money
378
379 function furrybot.commands.pay(name, target, number)
380         if furrybot.online_or_error(name, target) then
381                 local money = tonumber(number or "")
382                 if not money or money <= 0 or math.floor(money) ~= money then
383                         furrybot.error_message(name, "Invalid amount of money")
384                 else
385                         if furrybot.take_money(name, money) then
386                                 furrybot.add_money(target, money)
387                                 furrybot.ping_message(target, name .. " has payed you " .. furrybot.money(money, furrybot.colors.system) .. ".", furrybot.colors.system)
388                         else
389                                 furrybot.error_message(name, "You don't have enough money")
390                         end
391                 end
392         end
393 end
394 furrybot.unsafe_commands.pay = true
395
396 -- send load message
397 furrybot.send("FurryBot - " .. C("#170089") .. "https://github.com/EliasFleckenstein03/furrybot", furrybot.colors.system)
398
399 if furrybot.loaded then
400         furrybot.send("Reloaded", furrybot.colors.system)
401 else
402         furrybot.loaded = true
403 end
404
405 return function(_http, _env, _storage)
406         http, env, storage = _http, _env, _storage
407 end