]> git.lizzy.rs Git - furrybot.git/blob - bot.lua
Add smellfeet command
[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.smellfeet = furrybot.request_command(function(name, target)
246         furrybot.ping_message(target, name .. " wants to smell your feet. Type !accept to accept or !deny to deny.", furrybot.colors.system)
247 end, function(name, target)
248         furrybot.ping_message(name, " you are smelling " .. target .. "'s feet. They are kinda stinky!", furrybot.colors.rpg)
249 end)
250
251 furrybot.commands.sex = furrybot.request_command(function(name, target)
252         furrybot.ping_message(target, name .. " wants to have sex with you. Type !accept to accept or !deny to deny.", furrybot.colors.system)
253 end, function(name, target)
254         furrybot.send(name .. " and " .. target .. " are having sex! OwO", furrybot.colors.rpg)
255 end)
256 furrybot.commands.bang = furrybot.commands.sex
257 furrybot.commands.fuck = furrybot.commands.sex
258
259 furrybot.commands.marry = furrybot.request_command(function(name, target)
260         if storage:contains(name .. ".partner", target) then
261                 furrybot.error_message(name, "You are already married to", storage:get_string(name .. ".partner"))
262                 return false
263         elseif storage:contains(target .. ".partner", name) then
264                 furrybot.error_message(name, target .. " is already married to", storage:get_string(name .. ".partner"))
265                 return false
266         else
267                 furrybot.ping_message(target, name .. " proposes to you. Type !accept to accept or !deny to deny.", furrybot.colors.system)
268         end
269 end, function(name, target)
270         storage:set_string(name .. ".partner", target)
271         storage:set_string(target .. ".partner", name)
272         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)
273 end)
274 furrybot.commands.propose = furrybot.commands.marry
275 furrybot.unsafe_commands.marry = true
276 furrybot.unsafe_commands.propose = true
277
278 function furrybot.commands.divorce(name)
279         if storage:contains(name .. ".partner") then
280                 local partner = storage:get_string(name .. ".partner")
281                 storage:set_string(name .. ".partner", "")
282                 storage:set_string(partner .. ".partner", "")
283                 furrybot.ping_message(name, "divorces from " .. partner .. " :(", furrybot.colors.rpg)
284         else
285                 furrybot.error_message(name, "You are not married")
286         end
287 end
288 furrybot.unsafe_commands.divorce = true
289
290 function furrybot.commands.partner(name, target)
291         target = target or name
292         if storage:contains(target .. ".partner") then
293                 furrybot.ping_message(name, (target == name and "You are" or target .. " is") .. " married to " .. storage:get_string(target .. ".partner"), furrybot.colors.system)
294         else
295                 furrybot.error_message(name, (target == name and "You are" or target .. " is") .. " not married")
296         end
297 end
298 furrybot.commands.married = furrybot.commands.partner
299
300 -- misc
301 function furrybot.commands.rolldice(name)
302         furrybot.ping_message(name, "rolled a dice and got a " .. furrybot.random(1, 6, furrybot.colors.system) .. ".", furrybot.colors.system)
303 end
304
305 function furrybot.commands.coinflip(name)
306         furrybot.ping_message(name, "flipped a coin and got " .. furrybot.choose({"Heads", "Tails"}, furrybot.colors.system) .. ".", furrybot.colors.system)
307 end
308
309 function furrybot.commands.choose(name, ...)
310         local options = {...}
311         if #options > 1 then
312                 furrybot.ping_message(name, "I choose " .. furrybot.choose(options, "", furrybot.colors.system) .. ".", furrybot.colors.system)
313         else
314                 furrybot.error_message(name, "Not enough options")
315         end
316 end
317
318 function furrybot.commands.dicksize(name, target)
319         target = target or name
320         local size = furrybot.strrandom(target, 31242, 2, 10)
321         local dick = furrybot.repeat_string("=", size) .. "D"
322         furrybot.send(minetest.rainbow(dick) .. furrybot.colors.system .. "   ← " .. furrybot.ping(target, furrybot.colors.system) .. "'s Dick", C("#FF4DE1"))
323 end
324 furrybot.commands.cocksize = furrybot.commands.dicksize
325
326 -- fun
327 function furrybot.commands.amogus(name)
328         furrybot.ping_message(name, "YOU KINDA SUS MAN", furrybot.colors.fun)
329 end
330
331 function furrybot.commands.verse(name)
332         furrybot.json_http_request("https://labs.bible.org/api/?type=json&passage=random", name, function(data)
333                 furrybot.send(data.text .. furrybot.colors.info .. "[" .. data.bookname .. " " .. data.chapter .. "," .. data.verse .. "]", furrybot.colors.fun)
334         end)
335 end
336
337 function furrybot.commands.define(name, word)
338         if word then
339                 furrybot.json_http_request("https://api.dictionaryapi.dev/api/v1/entries/en_US/" .. word:gsub("computer", "person"), name, function(data)
340                         local meaning = data.meaning
341                         local selected = meaning.abbreviation or meaning["cardinal number"] or meaning.exclamation or meaning.noun or meaning.verb or meaning.adjective or meaning["transitive verb"] or meaning.adverb or meaning["relative adverb"]
342                         if not selected then
343                                 print(dump(meaning))
344                                 furrybot.error_message(name, "Error in parsing response")
345                         else
346                                 furrybot.send(word:sub(1, 1):upper() .. word:sub(2, #word):lower() .. ": " .. furrybot.colors.fun .. selected[1].definition, furrybot.colors.info)
347                         end
348                 end)
349         else
350                 furrybot.error_message(name, "You need to specify a word")
351         end
352 end
353
354 function furrybot.commands.insult(name, target)
355         if furrybot.online_or_error(name, target, true) then
356                 furrybot.http_request("https://insult.mattbas.org/api/insult", name, function(data)
357                         furrybot.ping_message(target, data, furrybot.colors.fun)
358                 end)
359         end
360 end
361
362 function furrybot.commands.joke(name, first, last)
363         if not first then
364                 first = "Chuck"
365                 last = "Norris"
366         elseif not last then
367                 last = ""
368         end
369         furrybot.json_http_request("http://api.icndb.com/jokes/random?firstName=" .. first .. "&lastName=" .. last, name, function(data)
370                 local joke = data.value.joke:gsub("&quot;", "\""):gsub("  ", " ")
371                 furrybot.send(joke, furrybot.colors.fun)
372         end)
373 end
374
375 function furrybot.commands.question(name)
376         furrybot.json_http_request("https://8ball.delegator.com/magic/JSON/anything", name, function(data)
377                 furrybot.ping_message(name, data.magic.answer, furrybot.colors.fun)
378         end)
379 end
380 furrybot.commands["8ball"] = furrybot.commands.question
381
382 -- economy
383 function furrybot.commands.money(name, target)
384         target = target or name
385         furrybot.ping_message(name, (target == name and "You have " or target .. " has ") .. furrybot.money(furrybot.get_money(target), furrybot.colors.system) .. ".", furrybot.colors.system)
386 end
387 furrybot.commands.balance = furrybot.commands.money
388
389 function furrybot.commands.pay(name, target, number)
390         if furrybot.online_or_error(name, target) then
391                 local money = tonumber(number or "")
392                 if not money or money <= 0 or math.floor(money) ~= money then
393                         furrybot.error_message(name, "Invalid amount of money")
394                 else
395                         if furrybot.take_money(name, money) then
396                                 furrybot.add_money(target, money)
397                                 furrybot.ping_message(target, name .. " has payed you " .. furrybot.money(money, furrybot.colors.system) .. ".", furrybot.colors.system)
398                         else
399                                 furrybot.error_message(name, "You don't have enough money")
400                         end
401                 end
402         end
403 end
404 furrybot.unsafe_commands.pay = true
405
406 -- send load message
407 furrybot.send("FurryBot - " .. C("#170089") .. "https://github.com/EliasFleckenstein03/furrybot", furrybot.colors.system)
408
409 if furrybot.loaded then
410         furrybot.send("Reloaded", furrybot.colors.system)
411 else
412         furrybot.loaded = true
413 end
414
415 return function(_http, _env, _storage)
416         http, env, storage = _http, _env, _storage
417 end