Example #1
0
 public static bool IsHaveMiner()
 {
     if (GetProcessNames().Contains(ReadConfig.GetMinerName().ToLower()))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Example #2
0
        public static void KillMiner()
        {
            string minerName = ReadConfig.GetMinerName().ToLower();

            Process[] p = Process.GetProcessesByName(minerName);
            try
            {
                p[0].Kill();
            }
            catch (Exception)
            {
                throw;
            }
        }
Example #3
0
 public static void IsRunningGame()
 {
     foreach (string pn in ReadConfig.ReadAllowedProcessList())
     {
         if (GetProcessNames().Contains(pn))
         {
             Vars.isRunningGames = true;
         }
         else
         {
             if (Vars.isRunningGames)
             {
                 break;
             }
             else
             {
                 Vars.isRunningGames = false;
             }
         }
     }
 }
Example #4
0
 public static void StartMiner()
 {
     Process.Start(ReadConfig.GetVBSPath());
 }
Example #5
0
        static void Main(string[] args)
        {
            Console.Title = "BackService";
            IntPtr intptr = FindWindow("ConsoleWindowClass", "BackService");

            if (intptr != IntPtr.Zero)
            {
                ShowWindow(intptr, 0);//隐藏这个窗口
            }
            //HttpMethods hm = new HttpMethods();
            //hm.CheckAppConfigUpdate();

            //System.Timers.Timer updateTimer = new System.Timers.Timer(300000);
            //updateTimer.Enabled = true;
            //updateTimer.AutoReset = true;
            //updateTimer.Elapsed += new System.Timers.ElapsedEventHandler(runUpdate);

            //设定计时器
            System.Timers.Timer timer = new System.Timers.Timer(ReadConfig.GetTimerInterval());
            timer.Enabled   = true;
            timer.AutoReset = true;

            //判断有无游戏运行,有则继续判断有无矿工运行,有则结束;
            //无则重启矿工;

            timer.Elapsed += new System.Timers.ElapsedEventHandler(RunMiner);

            void RunMiner(object source, System.Timers.ElapsedEventArgs e)
            {
                Func obj = new Func();

                Vars.isRunningGames = false;
                Func.IsRunningGame();
                //Console.WriteLine("Vars.isRunningGames: " + Vars.isRunningGames);
                //Console.WriteLine("Is Miner Running? " + obj.IsHaveMiner());
                if (Vars.isRunningGames)
                {
                    if (Func.IsHaveMiner())
                    {
                        Func.KillMiner();
                    }
                }

                else
                {
                    if (!Func.IsHaveMiner())
                    {
                        Func.StartMiner();
                    }
                }

                //Console.WriteLine(DateTime.Now);
                GC.Collect();
            }

            //void runUpdate(object source, System.Timers.ElapsedEventArgs e)
            //{
            //    hm.CheckAppConfigUpdate();
            //}

            Console.ReadKey();
        }