- Added BotResources.py - Updates to saving and loading of config file - Updated how you call the save config function - Allowed saving of one variable
73 lines
2.7 KiB
Python
73 lines
2.7 KiB
Python
import os
|
|
import discord
|
|
import sound
|
|
from discord.ext import commands
|
|
from main import write_config_file
|
|
|
|
|
|
class Bot(commands.Bot):
|
|
def __init__(self, **kwargs): # bot_token, device_id, device_name, command_prefix='>!'):
|
|
if not kwargs['command_prefix']:
|
|
kwargs['command_prefix'] = '>!'
|
|
commands.Bot.__init__(self, command_prefix=commands.when_mentioned_or(kwargs['command_prefix']))
|
|
self.DEVICE_ID = int(kwargs['Device_ID'])
|
|
self.DEVICE_NAME = str(kwargs['Device_Name'])
|
|
self.BOT_TOKEN = str(kwargs['Token'])
|
|
self.Default_Channel_ID = int(kwargs['Channel_ID'])
|
|
self.Default_Mention_Group = str(kwargs['Mention_Group'])
|
|
self.Devices_List = sound.query_devices().items()
|
|
|
|
self.add_commands()
|
|
|
|
self.check_for_modules()
|
|
|
|
def start_bot(self):
|
|
self.run(self.BOT_TOKEN)
|
|
|
|
def add_commands(self):
|
|
@self.command(help="Use this to test if the bot is alive", brief="Sends a 'pong' in response")
|
|
async def ping(ctx):
|
|
await ctx.send('pong')
|
|
|
|
@self.command(help="Use this command to join the bot to your channel", brief="Joins the voice channel that the caller is in")
|
|
async def join(ctx, *, member: discord.Member = None):
|
|
member = member or ctx.author.display_name
|
|
await self.wait_until_ready()
|
|
discord.opus.load_opus('./opus/libopus.dll')
|
|
|
|
if discord.opus.is_loaded():
|
|
stream = sound.PCMStream()
|
|
channel = ctx.author.voice.channel
|
|
await ctx.send(f"Ok {member}, I'm joining {channel}")
|
|
|
|
stream.change_device(self.DEVICE_ID)
|
|
|
|
voice_connection = await channel.connect()
|
|
voice_connection.play(discord.PCMAudio(stream))
|
|
|
|
else:
|
|
await ctx.send("Opus won't load")
|
|
|
|
@self.command(help="Use this command to have the bot leave your channel", brief="Leaves the current voice channel")
|
|
async def leave(ctx):
|
|
await ctx.voice_client.disconnect()
|
|
|
|
def check_device(self):
|
|
for device, index in self.Devices_List:
|
|
if int(index) == self.DEVICE_ID and str(device) == self.DEVICE_NAME:
|
|
return True
|
|
|
|
for device, index in self.Devices_List:
|
|
if str(device) == self.DEVICE_NAME:
|
|
self.DEVICE_ID = int(index)
|
|
return True
|
|
|
|
else:
|
|
return False
|
|
|
|
def check_for_modules(self):
|
|
for folder_name in os.listdir("modules"):
|
|
if os.path.exists(os.path.join("modules", folder_name, "cog.py")):
|
|
print(f"Loaded extension: {folder_name}")
|
|
self.load_extension(f"modules.{folder_name}.cog")
|