public void Enabled(PluginEnabledContext context)
 {
     System.Timers.Timer timer = new System.Timers.Timer();
     timer.Enabled  = true;
     timer.Interval = 1000;// 执行间隔时间, 单位为毫秒
     timer.Elapsed += new System.Timers.ElapsedEventHandler(Timer1_Elapsed);
     timer.Start();
 }
Example #2
0
 public void Enabled(PluginEnabledContext context)
 {
     Cleanup();
 }
Example #3
0
 public void Enabled(PluginEnabledContext context)
 {
     Conf.Load();
     Helper.Common.LogonQQ = MahuaApis.Api.api.GetLoginQq();
     // 不要忘记在MahuaModule中注册
 }
 public void Enabled(PluginEnabledContext context)
 {
     Admin.LoadAdmins();
     GomokuCredit.LoadCreditFile();
 }
Example #5
0
        public void Enabled(PluginEnabledContext context)
        {
            //基础配置
            //机器人任务计划
            Log.addLog("INIT", String.Format("插件启用,当前登录账号:{0}({1})", api.GetLoginNick(), api.GetLoginQq()));
            //初始化百度AI
            Conf.baiduAiInit();
            //酷Q模拟重启初始化获取句柄
            Log.info("开始尝试获取酷Q窗口句柄");
            try {
                CQRestart.__init();
                Log.info("获取酷Q窗口句柄成功,可以执行模拟重启功能");
            } catch (Exception e) {
                Log.warning("获取酷Q窗口句柄失败:" + e.Message);
            }
            string qq    = Conf.getStringConfig("global.restart", "qq", "0");
            string group = Conf.getStringConfig("global.restart", "group", "0");
            long   time  = Conf.getLongConfig("global.restart", "time", 0);

            if (qq != "0" || group != "0")
            {
                string s = "";
                if (time != 0)
                {
                    s = ",本次重启耗时:" + (Util.getTime() - time) + "秒";
                }



                if (group == "0" && qq != "0")
                {
                    //私聊
                    this.api.SendPrivateMessage(qq, CQ.shake());
                    this.api.SendPrivateMessage(qq, "酷Q已重启完成!" + s);
                }
                else if (group != "0")
                {
                    if (qq == "0")
                    {
                        this.api.SendGroupMessage(group, "酷Q已重启完成!" + s);
                    }
                    else
                    {
                        this.api.SendGroupMessage(group, CQ.at(qq) + "酷Q已重启完成!" + s);
                    }
                }
                else
                {
                    Log.addLog("未知的请求人重启");
                }


                Conf.setConfig("global.restart", "none");
            }



            Task.Factory.StartNew(() => {
                using (var robotSession = MahuaRobotManager.Instance.CreateSession()) {
                    var api          = robotSession.MahuaApi;
                    UdpServer server = new UdpServer();
                    server.run(api);
                }
            });
            Task.Factory.StartNew(() => {
                string taskDir = Path.Combine(Directory.GetCurrentDirectory(), "bottask");
                if (!Directory.Exists(taskDir))
                {
                    Directory.CreateDirectory(taskDir);
                }
                DirectoryInfo root = new DirectoryInfo(taskDir);
                foreach (FileInfo file in root.GetFiles())
                {
                    if (file.Name.Substring(file.Name.Length - 3) == ".xt")
                    {
                        Log.addLog("DEBUG", "---------------------" + file.Name + "------------------------------------");
                        Log.addLog("DEBUG", "载入【" + file.Name + "】脚本文件进行处理");
                        new BotTaskManager(file.FullName);
                    }
                }
            });
        }
 public void Enabled(PluginEnabledContext context)
 {
     DouyuCheck.getInstance().startCheck();
 }
Example #7
0
 public void Enabled(PluginEnabledContext context)
 {
     throw new NotImplementedException();
 }
 public void Enabled(PluginEnabledContext context)
 {
     Config.ConfigModel = DALConfig.GetConfig();
     // 不要忘记在MahuaModule中注册
 }