Пример #1
0
        /// <summary>
        /// OCR:鼠标点击的挂载事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        void Hook_OnMouseActivity(object sender, MouseEventArgs e)
        {
            if (Common.TransMode == 2)
            {
                //OCR方式下单击鼠标进行更新
                //先判断是单窗口还是全屏幕,如果是单窗口再判断是不是在游戏窗口中点的

                if ((Common.isAllWindowCap == true && Process.GetCurrentProcess().Id != FindWindowInfo.GetProcessIDByHWND(FindWindowInfo.GetWindowHWND(e.X, e.Y))) ||
                    Common.OCRWinHwnd == (IntPtr)FindWindowInfo.GetWindowHWND(e.X, e.Y))
                {
                    if (IsOCRingFlag == false)
                    {
                        IsOCRingFlag = true;
                        ThreadPool.QueueUserWorkItem(state =>
                        {
                            int j = 0;

                            for (; j < 3; j++)
                            {
                                Thread.Sleep(Common.OCRdelay);

                                Image img  = ScreenCapture.GetWindowRectCapture(Common.OCRWinHwnd, Common.OCRrec, Common.isAllWindowCap);
                                string ret = BaiduGeneralOCRBasic.BaiduGeneralBasicOCR(img, Common.OCRsrcLangCode);

                                string srcText           = "";
                                BaiduOCRresOutInfo oinfo = JsonConvert.DeserializeObject <BaiduOCRresOutInfo>(ret);
                                if (oinfo.words_result != null)
                                {
                                    for (int i = 0; i < oinfo.words_result_num; i++)
                                    {
                                        srcText = srcText + oinfo.words_result[i].words + "\n";
                                    }
                                }

                                if (srcText != "")
                                {
                                    GameTranslateAuto(srcText, Common.srcLang, Common.desLang);

                                    srcTextLabel.BeginInvoke(new Action(() =>
                                    {
                                        srcTextLabel.Text = srcText;
                                    }));

                                    firstTransTextLabel.BeginInvoke(new Action(() =>
                                    {
                                        firstTransTextLabel.Text = firstTransText;
                                    }));

                                    secondTransTextLabel.BeginInvoke(new Action(() =>
                                    {
                                        secondTransTextLabel.Text = secondTransText;
                                    }));

                                    Common.AddHistoryText(srcText, firstTransText, secondTransText);

                                    IsOCRingFlag = false;
                                    break;
                                }
                            }

                            if (j == 3)
                            {
                                srcTextLabel.BeginInvoke(new Action(() =>
                                {
                                    srcTextLabel.Text = "[OCR]识别三次均为空,请自行刷新!";
                                }));
                                IsOCRingFlag = false;
                            }
                        });
                    }
                }
            }
        }
        /// <summary>
        /// 刷新OCR识别,重置窗口结果,使用多线程解决卡顿
        /// </summary>
        public void ReNewOCR()
        {
            if (Common.TransMode == 2)
            {
                if (IsOCRingFlag == false)
                {
                    IsOCRingFlag = true;

                    ThreadPool.QueueUserWorkItem(state =>
                    {
                        Image img = ScreenCapture.GetWindowRectCapture(Common.OCRWinHwnd, Common.OCRrec, Common.isAllWindowCap);

                        if (TesseractOCR.thresh != -1)
                        {
                            img = TesseractOCR.Thresholding((Bitmap)img);
                        }

                        string srcText = "";
                        string ret;
                        if (Common.settings.OCRsource == "BaiduOCR")
                        {
                            ret = BaiduGeneralOCRBasic.BaiduGeneralBasicOCR(img, Common.OCRsrcLangCode);
                            BaiduOCRresOutInfo oinfo = JsonConvert.DeserializeObject <BaiduOCRresOutInfo>(ret);
                            if (oinfo.words_result != null)
                            {
                                for (int i = 0; i < oinfo.words_result_num; i++)
                                {
                                    srcText = srcText + oinfo.words_result[i].words + "\n";
                                }
                            }
                        }
                        else
                        {
                            ret     = TesseractOCR.OCRProcess((Bitmap)img);
                            srcText = ret.Replace(" ", "").Replace("\r\n\r\n", "\r\n");//去空格和空行
                        }

                        srcTextLabel.BeginInvoke(new Action(() =>
                        {
                            srcTextLabel.Text = srcText;
                        }));

                        GameTranslateAuto(srcText, Common.srcLang, Common.desLang);
                        firstTransTextLabel.BeginInvoke(new Action(() =>
                        {
                            firstTransTextLabel.Text = firstTransText;
                        }));

                        secondTransTextLabel.BeginInvoke(new Action(() =>
                        {
                            secondTransTextLabel.Text = secondTransText;
                        }));
                        Common.AddHistoryText(srcText, firstTransText, secondTransText);
                    });

                    IsOCRingFlag = false;
                }
            }
            else
            {
                MessageBox.Show("当前处于非OCR翻译模式,无法刷新!", "错误");
            }
        }