65 lines
1.7 KiB
GDScript
65 lines
1.7 KiB
GDScript
extends RefCounted
|
|
|
|
|
|
#func on_ready(main, bot: DiscordBot) -> void:
|
|
#pass
|
|
#
|
|
func on_autocomplete(main, bot: DiscordBot, interaction: DiscordInteraction, options: Array) -> void:
|
|
#print(options)
|
|
#interaction.respond_autocomplete(Library.printer_choies())
|
|
|
|
# The part of string which the user is typing
|
|
var part = options[0].value
|
|
AutocompleteTools.printer_autocomplete(part, interaction)
|
|
pass
|
|
|
|
func execute(main, bot: DiscordBot, interaction: DiscordInteraction, options: Array) -> void:
|
|
if not Tools.check_perms(interaction): #limit access to technicians only
|
|
return
|
|
|
|
print(options)
|
|
var printer_name = options[0].value
|
|
var new_slots : int = options[1].value
|
|
var printer_exists : bool = false
|
|
|
|
for printer in Library.save.printers:
|
|
if printer.name == printer_name:
|
|
printer_exists = true
|
|
printer.spool_slots = new_slots
|
|
#Library.save.printers.erase(printer)
|
|
|
|
Library.save_data()
|
|
|
|
if not printer_exists:
|
|
interaction.reply({
|
|
"content" : "unable to find " + printer_name
|
|
})
|
|
return
|
|
|
|
var response : String = printer_name + " now has `" + str(new_slots) + "` spool slots\n"
|
|
var embed = Embed.new().set_description(Library.list_printers())
|
|
|
|
|
|
interaction.reply({
|
|
"content": response,
|
|
"embeds":[embed],
|
|
})
|
|
pass
|
|
|
|
|
|
var data = ApplicationCommand.new()\
|
|
.set_name("printer-slots")\
|
|
.set_description("change the amount of spool slots the printer has")\
|
|
.add_option(ApplicationCommand.string_option("name", "the printers name",
|
|
{
|
|
"required":true,
|
|
"autocomplete":true,
|
|
#"choices" : Library.printer_choies()
|
|
}))\
|
|
.add_option(ApplicationCommand.integer_option("slots","number of spool slots the printer should have",
|
|
{
|
|
"required" : true,
|
|
}))\
|
|
|
|
|
|
## lesson learnt: option name must not have spaces
|