Пример #1
0
        public void RegisterModuleCommands(TamaChanModule module, HelpFileGenerator helpFileGenerator)
        {
            MethodInfo[] methods = module.GetType().GetMethods();

            foreach (MethodInfo m in methods)
            {
                CommandAttribute attribute = m.GetCustomAttribute <CommandAttribute>();
                if (attribute != null)
                {
                    Command command = new Command(attribute.commandName, m, attribute.PermissionFlag, attribute.BotOwnerOnly, attribute.IsNSFW, attribute.ParameterExample, module);
                    RegisterCommand(module, attribute.commandName, command);

                    if (registry.ContainsKey(attribute.commandName.ToLower()))
                    {
                        IEnumerable <AltCommandAttribute> altCommandAttributes = m.GetCustomAttributes <AltCommandAttribute>();
                        foreach (AltCommandAttribute alt in altCommandAttributes)
                        {
                            if (!alt.commandName.IsRegistryValid())
                            {
                                TamaChan.Instance.Logger.LogWarning($"Alt command \"{alt.commandName}\" for \"{attribute.commandName}\" is not valid. Ignored.");
                            }
                            else
                            {
                                altCommandRegistry.Add(alt.commandName.ToLower(), attribute.commandName.ToLower());
                            }
                        }
                        command.Description = attribute.Description;
                        helpFileGenerator.commands.Add(command);
                    }
                }
            }
        }
Пример #2
0
 private void RegisterCommand(TamaChanModule module, string commandName, Command command)
 {
     try
     {
         ModuleAttribute attribute = module.GetType().GetCustomAttribute <ModuleAttribute>();
         if (!commandName.IsRegistryValid())
         {
             throw new ArgumentException($"Command from module {attribute.moduleName} was given an invalid name: \"{commandName}\". Command names may only contain alphabetic characters and periods.");
         }
         TamaChan.Instance.Logger.LogDebug($"Registering \"{attribute.moduleName} command \"{commandName.ToLower()}\"...");
         registry.Add(commandName.ToLower(), command);
         TamaChan.Instance.Logger.LogDebug($"Command \"{commandName.ToLower()}\" registered.");
     }
     catch (Exception ex)
     {
         TamaChan.Instance.Logger.LogError("An error occured while registering a command: " + ex.ToString());
     }
 }