|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484 |
- using Common.system;
-
- using RobotpenGateway;
-
- using System;
- using System.Threading;
-
- using XHWK.WKTool.Utils.pen;
-
- namespace XHWK.WKTool.Utils.luobo
- {
- internal class LuoBoPenUtil
- {
- #region 罗博智慧笔
-
- #region 值初始化
-
- private PenEventI penEvent = null;
-
- [System.Runtime.InteropServices.DllImport("kernel32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)]
- public static extern void OutputDebugString(string message);
-
- public robotpenController.returnPointData Date { get => date; set => date = value; }
-
- public bool usbIsConnected = false;
- private eDeviceType deviceType = eDeviceType.Unknow;
-
- private int m_nDeviceW = 22600;
-
- private int m_nDeviceH = 16650;
- private robotpenController.returnPointData date = null;
-
- public bool isOpen = true;
-
- /// <summary>
- /// 是否为笔模式
- /// </summary>
- private bool IsPen = false;
-
- #endregion 值初始化
-
- public LuoBoPenUtil(PenEventI penEvent)
- {
- this.penEvent = penEvent;
- }
-
- /// <summary>
- /// 笔模式
- /// </summary>
- public void lb_device_hand()
- {
- IsPen = true;
- if (deviceType == eDeviceType.T8B_D2 || deviceType == eDeviceType.T8Y || deviceType == eDeviceType.T8S_LQ || deviceType == eDeviceType.T8C)
- {
- robotpenController.GetInstance().setDeviceMode(eDeviceMode.DEVICE_HAND);
- }
- else
- {
- //获取当前设备模式,根据模式切换鼠标和笔
- robotpenController.GetInstance()._Send(cmdId.SearchMode);
- }
- }
-
- /// <summary>
- /// 鼠标模式
- /// </summary>
- public void lb_device_mouse()
- {
- IsPen = false;
- if (deviceType == eDeviceType.T8B_D2 || deviceType == eDeviceType.T8Y || deviceType == eDeviceType.T8S_LQ || deviceType == eDeviceType.T8C)
- {
- robotpenController.GetInstance().setDeviceMode(eDeviceMode.DEVICE_MOUSE);
- }
- else
- {
- //获取当前设备模式,根据模式切换鼠标和笔
- robotpenController.GetInstance()._Send(cmdId.SearchMode);
- }
- }
-
- private void luobo_searchModeEvt(int modeType)
- {
- if (App.IsOutputInfoLog)
- {
- if (modeType == 1)
- {
- LogHelper.Loginfo.Info("当前为笔模式");
- }
- else
- {
- LogHelper.Loginfo.Info("当前为鼠标模式");
- }
- }
- }
-
- // 子节点设备状态改变事件
- private void luobo_nodeStatusEvt(NODE_STATUS ns)
- {
- string strStatus = string.Empty;
- switch (ns)
- {
- case NODE_STATUS.DEVICE_POWER_OFF:
- {
- strStatus = "DEVICE_POWER_OFF";
- }
- break;
-
- case NODE_STATUS.DEVICE_STANDBY:
- {
- strStatus = "DEVICE_STANDBY";
- }
- break;
-
- case NODE_STATUS.DEVICE_INIT_BTN:
- {
- strStatus = "DEVICE_INIT_BTN";
- }
- break;
-
- case NODE_STATUS.DEVICE_OFFLINE:
- {
- strStatus = "DEVICE_OFFLINE";
- }
- break;
-
- case NODE_STATUS.DEVICE_ACTIVE:
- {
- strStatus = "DEVICE_ACTIVE";
- //deviceHand();
- }
- break;
-
- case NODE_STATUS.DEVICE_LOW_POWER_ACTIVE:
- {
- strStatus = "DEVICE_LOW_POWER_ACTIVE";
- }
- break;
-
- case NODE_STATUS.DEVICE_OTA_MODE:
- {
- strStatus = "DEVICE_OTA_MODE";
- }
- break;
-
- case NODE_STATUS.DEVICE_OTA_WAIT_SWITCH:
- {
- strStatus = "DEVICE_OTA_WAIT_SWITCH";
- }
- break;
-
- case NODE_STATUS.DEVICE_DFU_MODE:
- {
- strStatus = "DEVICE_DFU_MODE";
- }
- break;
-
- case NODE_STATUS.DEVICE_TRYING_POWER_OFF:
- {
- strStatus = "DEVICE_TRYING_POWER_OFF";
- }
- break;
-
- case NODE_STATUS.DEVICE_FINISHED_PRODUCT_TEST:
- {
- strStatus = "DEVICE_FINISHED_PRODUCT_TEST";
- }
- break;
-
- case NODE_STATUS.DEVICE_SYNC_MODE:
- {
- strStatus = "DEVICE_SYNC_MODE";
- }
- break;
-
- default:
- {
- strStatus = "UNKNOW";
- }
- break;
- }
- }
-
- private void luobo_switchModeEvt(int modeType)
- {
- if (modeType == 1)
- {
- if (App.IsOutputInfoLog)
- {
- LogHelper.Loginfo.Info("当前为笔模式");
- }
- if (!IsPen)
- {
- lb_device_mouse();
- }
- }
- else
- {
- if (App.IsOutputInfoLog)
- {
- LogHelper.Loginfo.Info("当前为鼠标模式");
- }
- if (IsPen)
- {
- lb_device_hand();
- }
- }
- }
-
- //初始化笔服务
- public void InitlbPen()
- {
- try
- {
- robotpenController.GetInstance()._ConnectInitialize(eDeviceType.Gateway, IntPtr.Zero);
- robotpenController.GetInstance().deviceChangeEvt += new robotpenController.DeviceChange(luobo_deviceChangeEvt);
- robotpenController.GetInstance().searchModeEvt += luobo_searchModeEvt;
- robotpenController.GetInstance().nodeStatusEvt += luobo_nodeStatusEvt;
- robotpenController.GetInstance().switchModeEvt += luobo_switchModeEvt;
- robotpenController.GetInstance().keyPressEvt += new robotpenController.KeyPress(luobo_keyPressEvt);
-
- robotpenController.returnPointData datad = new robotpenController.returnPointData(luobo_bigDataReportEvt1);
- robotpenController.GetInstance().initDeletgate(ref datad);
-
- CheckUsbConnect();
- }
- catch (Exception ex)
- {
- LogHelper.Logerror.Error("设备初始化失败:" + ex.Message, ex);
- }
- }
-
- /// <summary>
- /// 设备插拔消息,更新listview
- /// </summary>
- /// <param name="bStatus">
- /// </param>
- /// <param name="uPid">
- /// </param>
- private void luobo_deviceChangeEvt(bool bStatus, ushort uPid)
- {
- //throw new NotImplementedException();
- Console.WriteLine(@"luobo_deviceChangeEvt");
- try
- {
- if (App.IsOutputInfoLog)
- {
- LogHelper.Loginfo.Info
- (
- string.Format
- (
- "设备状态{0} PID = {1}",
- bStatus,
- uPid
- )
- );
- }
- }
- catch (Exception)
- {
- }
- CheckUsbConnect();
- }
-
- /// <summary>
- /// 书写
- /// </summary>
- /// ///
- /// <param name="bIndex">
- /// </param>
- /// <param name="bPenStatus">
- /// </param>
- /// <param name="bx">
- /// </param>
- /// <param name="by">
- /// </param>
- /// <param name="bPress">
- /// </param>
- private void luobo_bigDataReportEvt1(byte bIndex, byte bPenStatus, short bx, short by, short bPress)
- {
- if (bx == 0 && by == 0 && bPenStatus == 0 && bPress == 0)
- {
- return;
- }
- if (penEvent != null)
- {
- penEvent.penPointEvent(bIndex, bPenStatus, bx, by, bPress, m_nDeviceW, m_nDeviceH);
- }
- }
-
- /// <summary>
- /// 判断是否有设备连接
- /// </summary>
- public void CheckUsbConnect()
- {
- usbIsConnected = false;
- Thread.Sleep(200);
- int nDeviceCount = robotpenController.GetInstance()._GetDeviceCount();
- if (App.IsOutputInfoLog)
- {
- LogHelper.Loginfo.Info(string.Format("当前有 {0} 个设备", nDeviceCount));
- }
- if (nDeviceCount > 0)
- {
- for (int i = 0; i < nDeviceCount; ++i)
- {
- ushort npid = 0;
- ushort nvid = 0;
- string strDeviceName = string.Empty;
- eDeviceType dtype = eDeviceType.Unknow;
- if (robotpenController.GetInstance()._GetAvailableDevice(i, ref npid, ref nvid, ref strDeviceName, ref dtype))
- {
- if (!usbIsConnected)
- {
- usbIsConnected = true;
- deviceType = dtype;
- robotpenController.GetInstance()._ConnectInitialize(deviceType, IntPtr.Zero);
- int nRes = robotpenController.GetInstance()._ConnectOpen();
- if (nRes != 0)
- {
- //LogHelper.Loginfo.Info(string.Format(@"x={0},y={1},s={2},p={3}", bx, by, bPenStatus, bPress));
- LogHelper.Logerror.Error("设备自动连接失败,请重新插拔设备或尝试手动连接!", null);
- usbIsConnected = false;
- break;
- }
-
- robotpenController.GetInstance()._Send(cmdId.GetConfig);
- App.BoardStatus = true;
- try
- {
- int banWidth = robotpenController.GetInstance().getWidth();
- int banHeight = robotpenController.GetInstance().getHeight();
- if (banWidth > 0 && banHeight > 0)
- {
- if (banWidth > banHeight)
- {
- m_nDeviceW = banWidth;
- m_nDeviceH = banHeight;
- }
- else
- {
- m_nDeviceW = banHeight;
- m_nDeviceH = banWidth;
- }
- }
- if (App.IsOutputInfoLog)
- {
- LogHelper.Loginfo.Info
- (
- string.Format
- (
- "手写板宽度为:{0} 高度为:{1}",
- m_nDeviceW,
- m_nDeviceH
- )
- );
- }
- }
- catch (Exception ex)
- {
- LogHelper.Logerror.Error("手写板大小获取失败:" + ex.Message, ex);
- }
- UpdateDevStatus();
- if (App.IsOutputInfoLog)
- {
- LogHelper.Loginfo.Info(string.Format("设备类型:{0}", deviceType.ToString()));
- }
-
- new Thread(new ThreadStart(new Action(() =>
- {
- Thread.Sleep(500);
-
- robotpenController.GetInstance()._Send(cmdId.SearchMode);
- }))).Start();
- }
- }
- }
- }
- else
- {
- App.BoardStatus = false;
- UpdateDevStatus();
- }
- }
-
- /// <summary>
- /// 按键回调函数
- /// </summary>
- /// <param name="Value">
- /// </param>
- private void luobo_keyPressEvt(eKeyPress Value)
- {
- switch (Value)
- {
- case eKeyPress.CLICK:
- break;
-
- case eKeyPress.DBCLICK:
- break;
-
- case eKeyPress.PAGEUP:
- //last_button_Click(null, null);
- break;
-
- case eKeyPress.PAGEDOWN:
- //next_btn_Click(null, null);
- break;
-
- case eKeyPress.CREATEPAGE://关机键
- break;
-
- case eKeyPress.KEY_A:
- break;
-
- case eKeyPress.KEY_B:
- break;
-
- case eKeyPress.KEY_C:
- break;
-
- case eKeyPress.KEY_D:
- break;
-
- case eKeyPress.KEY_E:
- break;
-
- case eKeyPress.KEY_F:
- break;
-
- case eKeyPress.KEY_UP:
- //last_button_Click(null, null);
- break;
-
- case eKeyPress.KEY_DOWN:
- //next_btn_Click(null, null);
- break;
-
- case eKeyPress.KEY_YES:
- break;
-
- case eKeyPress.KEY_NO:
- break;
-
- case eKeyPress.KEY_CANCEL:
- break;
-
- case eKeyPress.KEY_OK:
- break;
-
- case eKeyPress.PAGEUPCLICK://上一页
- //last_button_Click(null, null);
- break;
-
- case eKeyPress.PAGEUPDBCLICK://双击上一页
- break;
-
- case eKeyPress.PAGEUPPRESS://长按上一页
- break;
-
- case eKeyPress.PAGEDOWNCLICK://下一页
- //next_btn_Click(null, null);
- break;
-
- case eKeyPress.PAGEDOWNDBCLICK://双击下一页
- break;
-
- case eKeyPress.PAGEDOWNPRESS://长按下一页
- break;
- }
- }
-
- /// <summary>
- /// 更新设备状态显示
- /// </summary>
- public void UpdateDevStatus()
- {
- if (penEvent != null)
- {
- penEvent.penStatusEvent();
- }
- }
-
- #endregion 罗博智慧笔
- }
- }
|