| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 | 
							- using System;
 
- using System.Collections;
 
- using System.Collections.Generic;
 
- using System.Text;
 
- using UnityEngine;
 
- using System.Runtime.InteropServices;
 
- using SmartBowSDK;
 
- namespace SmartBowSDK_BleWinHelper
 
- {
 
-     /// <summary>
 
-     /// Windows连接BluetoothLE
 
-     /// 我的扫描逻辑默认了读写特征都在同一服务下
 
-     /// </summary>
 
-     public class BleWinHelper : MonoBehaviour
 
-     {
 
-         public string LogTag = "BleWinHelper-Log: ";
 
-         public bool bDebug = false;
 
-         private  void Log(string text)
 
-         {
 
-             if (bDebug)Debug.Log(LogTag + text);
 
-         }
 
-         private void Warn(string text)
 
-         {
 
-             if (bDebug)Debug.LogWarning(LogTag + text);
 
-         }
 
-         private  void Error(string text)
 
-         {
 
-             if (bDebug)Debug.Log(LogTag + text);
 
-         }
 
-         private string targetDeviceNameAxis = "Bbow_20210501 | ARTEMIS | HOUYI | HOUYI Pro | ARTEMIS Pro";
 
-         private string targetDeviceName = "Bbow_20210501 | ARTEMIS Pro";
 
-         private string targetDeviceNameHOUYIPro = "HOUYI Pro | Bbow_20210501";
 
-         private string targetDeviceNameGun = "Pistol | Pistol M9 | Bbow_20210501";
 
-         private string targetDeviceNameGun_M17 = "Pistol M17";
 
-         private string targetDeviceNameGun_M416 = "Rifle M416";
 
-         private string targetService = "{0000fff0-0000-1000-8000-00805f9b34fb}";
 
-         private string targetCharacteristicsNotify = "{0000fff1-0000-1000-8000-00805f9b34fb}";
 
-         private string targetCharacteristicsWrite = "{0000fff2-0000-1000-8000-00805f9b34fb}";
 
-         private bool isConnectLocking = false;
 
-         private bool isScanningDevices = false;
 
-         private bool isScanningServices = false;
 
-         private bool isScanningCharacteristics = false;
 
-         private bool isSubscribed = false;
 
-         private bool isSubscribing = false;
 
-         private string lastError = null;
 
-         [SerializeField]
 
-         private string selectedDeviceId = null;
 
-         private Dictionary<string, Dictionary<string, string>> deviceList = new Dictionary<string, Dictionary<string, string>>();
 
-         private List<string> serviceList = new List<string>();
 
-         private List<string> characteristicsList = new List<string>();
 
-         private float _connectedTime = 0;
 
-         private float _receiveDataTime = 0;
 
-         private float _heartBeatInterval = 0;
 
-         private Action OnConnected;
 
-         /// <summary>
 
-         /// 主动调用Disconnect()不会触发该委托
 
-         /// </summary>
 
-         private Action OnConnectionFailed;
 
-         private static Action<string, byte[]> OnCharacteristicChanged;
 
-         /// <summary>
 
-         /// 注册window对象
 
-         /// </summary>
 
-         /// <param name="o">挂载对象</param>
 
-         /// <param name="bluetoothWindows">关联的BluetoothWindows</param>
 
-         /// <param name="logTip">提示的log标签</param>
 
-         /// <returns></returns>
 
-         public static BleWinHelper RegisterTo(GameObject o,BluetoothWindows bluetoothWindows,string logTip = "first")
 
-         {
 
-             //if (_Instance)
 
-             //{
 
-             //    Error("Register fail, because only one can be registered.");
 
-             //    return null;
 
-             //}
 
-        
 
-             GameObject obj = new GameObject("BleWinHelper"+ logTip);
 
-             obj.transform.SetParent(o.transform);
 
-          
 
-             BleWinHelper bleWinHelper = obj.AddComponent<BleWinHelper>();
 
-             //日志名字
 
-             bleWinHelper.LogTag = "BleWinHelper-" + logTip + ": ";
 
-             bluetoothWindows.Connect = bleWinHelper.Connect;
 
-             bluetoothWindows.Disconnect = bleWinHelper.Disconnect;
 
-             bluetoothWindows.Write = bleWinHelper.Write;
 
-             bluetoothWindows.WriteByte = bleWinHelper.WriteByte;
 
-             bleWinHelper.OnConnected = () => bluetoothWindows.OnConnected?.Invoke();
 
-             bleWinHelper.OnConnectionFailed = () => bluetoothWindows.OnConnectionFailed?.Invoke();
 
-             //多个定义共用一个OnCharacteristicChanged
 
-             OnCharacteristicChanged += (deviceID,bytes) => {
 
-                 if (deviceID == bleWinHelper.selectedDeviceId) { 
 
-                 
 
-                     bluetoothWindows.OnCharacteristicChanged?.Invoke(deviceID, bytes);
 
-                 }
 
-             };
 
-             //bleWinHelper.bDebug = true;
 
-             return bleWinHelper;
 
-         }
 
-         /// <summary>
 
-         /// 设置心跳检测
 
-         /// 1.每次收到的蓝牙数据都视为心跳
 
-         /// 2.帮助触发蓝牙断开监听
 
-         /// </summary>
 
-         /// <param name="interval">心跳检测间隔</param>
 
-         public void SetHeartBeat(float interval)
 
-         {
 
-             _heartBeatInterval = interval;
 
-         }
 
-         //private static BleWinHelper _Instance;
 
-         void Awake()
 
-         {
 
-            // _Instance = this;
 
-         }
 
-         void OnDestroy()
 
-         {
 
-           //  if (_Instance == this) _Instance = null;
 
-             BleApi.Quit();
 
-         }
 
-         void Update()
 
-         {
 
-             BleApi.ScanStatus status;
 
-             if (isScanningDevices)
 
-             {
 
-                 BleApi.DeviceUpdate res = new BleApi.DeviceUpdate();
 
-                 do
 
-                 {
 
-                     status = BleApi.PollDevice(ref res, false);
 
-                     if (status == BleApi.ScanStatus.AVAILABLE)
 
-                     {
 
-                         if (!deviceList.ContainsKey(res.id))
 
-                             deviceList[res.id] = new Dictionary<string, string>() {
 
-                             { "name", "" },
 
-                             { "isConnectable", "False" }
 
-                         };
 
-                         if (res.nameUpdated)
 
-                             deviceList[res.id]["name"] = res.name;
 
-                         if (res.isConnectableUpdated)
 
-                             deviceList[res.id]["isConnectable"] = res.isConnectable.ToString();
 
-                         // 获取当前设备信息
 
-                         string deviceName = deviceList[res.id]["name"];
 
-                         bool isConnectable = res.isConnectable || deviceList[res.id]["isConnectable"] == "True";
 
-                         var type = (AimDeviceType)AimHandler.ins.aimDeviceInfo.type;
 
-                         //Debug.Log("type:" + type);
 
-                         if (type == AimDeviceType.HOUYIPRO)
 
-                         {
 
-                             TrySelectDevice(targetDeviceNameHOUYIPro, deviceName, isConnectable, "HOUYIPro", res.id);
 
-                         }
 
-                         else if (type == AimDeviceType.ARTEMISPRO)
 
-                         {
 
-                             TrySelectDevice(targetDeviceName, deviceName, isConnectable, "ARTEMISPRO", res.id);
 
-                         }
 
-                         else if (type == AimDeviceType.Gun)
 
-                         {
 
-                             //Debug.Log(targetDeviceNameGun + "-----:" + deviceName);
 
-                             TrySelectDevice(targetDeviceNameGun, deviceName, isConnectable, "Pistol", res.id);
 
-                         }
 
-                         else if (type == AimDeviceType.PistolM17)
 
-                         {
 
-                             TrySelectDevice(targetDeviceNameGun_M17, deviceName, isConnectable, "PistolM17", res.id);
 
-                         }
 
-                         else if (type == AimDeviceType.RifleM416)
 
-                         {
 
-                             TrySelectDevice(targetDeviceNameGun_M416, deviceName, isConnectable, "RifleM416", res.id);
 
-                         }
 
-                         else
 
-                         {
 
-                             //其余的九轴连接
 
-                             TrySelectDevice(targetDeviceNameAxis, deviceName, isConnectable, deviceName, res.id);
 
-                         }
 
-                         //if (AimHandler.ins.aimDeviceInfo.type == (int)AimDeviceType.HOUYIPRO)
 
-                         //{   //需要判断是否是红外弓箭
 
-                         //    if (targetDeviceNameHOUYIPro.Contains(deviceList[res.id]["name"]) && deviceList[res.id]["isConnectable"] == "True")
 
-                         //    {
 
-                         //        selectedDeviceId = res.id;
 
-                         //        StopDeviceScan();
 
-                         //    }
 
-                         //}
 
-                         //else if (AimHandler.ins.aimDeviceInfo.type == (int)AimDeviceType.ARTEMISPRO)
 
-                         //{   //需要判断是否是ARTEMISPRO弓箭
 
-                         //    if (targetDeviceName.Contains(deviceList[res.id]["name"]) && deviceList[res.id]["isConnectable"] == "True")
 
-                         //    {
 
-                         //        selectedDeviceId = res.id;
 
-                         //        StopDeviceScan();
 
-                         //    }
 
-                         //}
 
-                         //else if (AimHandler.ins.aimDeviceInfo.type == (int)AimDeviceType.Gun|| AimHandler.ins.aimDeviceInfo.type == (int)AimDeviceType.PistolM17|| AimHandler.ins.aimDeviceInfo.type == (int)AimDeviceType.RifleM416) 
 
-                         //{
 
-                         //    //需要判断是否是枪
 
-                         //    if (targetDeviceNameGun.Contains(deviceList[res.id]["name"]) && deviceList[res.id]["isConnectable"] == "True")
 
-                         //    {
 
-                         //        selectedDeviceId = res.id;
 
-                         //        StopDeviceScan();
 
-                         //    }
 
-                         //}
 
-                         //else
 
-                         //{   //其余的九轴连接
 
-                         //    if (targetDeviceName.Contains(deviceList[res.id]["name"]) && deviceList[res.id]["isConnectable"] == "True")
 
-                         //    {
 
-                         //        selectedDeviceId = res.id;
 
-                         //        StopDeviceScan();
 
-                         //    }
 
-                         //}
 
-                     }
 
-                     else if (status == BleApi.ScanStatus.FINISHED)
 
-                     {
 
-                         StartCoroutine(ScanServiceAndCharacteristicsToSubscribe());
 
-                     }
 
-                 } while (status == BleApi.ScanStatus.AVAILABLE);
 
-             }
 
-             if (isScanningServices)
 
-             {
 
-                 BleApi.Service res;
 
-                 do
 
-                 {
 
-                     status = BleApi.PollService(out res, false);
 
-                     if (status == BleApi.ScanStatus.AVAILABLE)
 
-                     {
 
-                         serviceList.Add(res.uuid);
 
-                     }
 
-                     else if (status == BleApi.ScanStatus.FINISHED)
 
-                     {
 
-                         isScanningServices = false;
 
-                     }
 
-                 } while (status == BleApi.ScanStatus.AVAILABLE);
 
-             }
 
-             if (isScanningCharacteristics)
 
-             {
 
-                 BleApi.Characteristic res;
 
-                 do
 
-                 {
 
-                     status = BleApi.PollCharacteristic(out res, false);
 
-                     if (status == BleApi.ScanStatus.AVAILABLE)
 
-                     {
 
-                         Log("res.userDescription:"+ res.userDescription+ ",res.uuid:" + res.uuid);
 
-                         if (res.userDescription == "no description available" ||  //旧设备
 
-                             res.userDescription == "SPP Write Channel" ||   //新设备
 
-                             res.userDescription == "SPP Read Channel")
 
-                         {
 
-                            
 
-                             characteristicsList.Add(res.uuid);
 
-                         }
 
-                         else {
 
-                             //跟着之前代码
 
-                             characteristicsList.Add(res.userDescription);
 
-                         }
 
-                         //string name = res.userDescription != "no description available" ? res.userDescription : res.uuid;
 
-                         //characteristicsList.Add(name);
 
-                     }
 
-                     else if (status == BleApi.ScanStatus.FINISHED)
 
-                     {
 
-                         isScanningCharacteristics = false;
 
-                     }
 
-                 } while (status == BleApi.ScanStatus.AVAILABLE);
 
-             }
 
-             if (isSubscribed)
 
-             {
 
-                 BleApi.BLEData res;
 
-                 while (BleApi.PollData(out res, false))
 
-                 {
 
-                     //string text = BitConverter.ToString(res.buf, 0, res.size);
 
-                     // string text = Encoding.ASCII.GetString(res.buf, 0, res.size);
 
-                     byte[] bytes = new byte[res.size];
 
-                     Array.Copy(res.buf, bytes, res.size);
 
-                     _receiveDataTime = Time.realtimeSinceStartup;
 
-                     OnCharacteristicChanged?.Invoke(res.deviceId, bytes);
 
-                 }
 
-             }
 
-             {
 
-                 BleApi.ErrorMessage res;
 
-                 BleApi.GetError(out res);
 
-                 if (lastError != res.msg)
 
-                 {
 
-                     Error(res.msg);
 
-                     lastError = res.msg;
 
-                     //对应设备才断开
 
-                     if (lastError.Contains("SendDataAsync") && lastError.Contains(selectedDeviceId) && isSubscribed)
 
-                     {
 
-                         HandleConnectFail();
 
-                     }
 
-                 }
 
-             }
 
-         }
 
-         private bool TrySelectDevice(string filterNames, string deviceName, bool isConnectable, string typeName, string deviceId)
 
-         {
 
-             //Log($"匹配设备 [{isConnectable}] :{string.IsNullOrWhiteSpace(filterNames)}");
 
-             if (!isConnectable || string.IsNullOrWhiteSpace(filterNames)) return false;
 
-             string[] filterArray = filterNames.Split('|'); // 支持多个名字
 
-             foreach (var f in filterArray)
 
-             {
 
-                 if (string.Equals(f.Trim(), deviceName.Trim(), StringComparison.OrdinalIgnoreCase))
 
-                 {
 
-                     selectedDeviceId = deviceId;
 
-                     StopDeviceScan();
 
-                     Log($"匹配设备 [{typeName}] :{deviceName}");
 
-                     return true;
 
-                 }
 
-             }
 
-             return false;
 
-         }
 
-         void LateUpdate()
 
-         {
 
-             if (
 
-                 _heartBeatInterval > 0 &&
 
-                 isSubscribed &&
 
-                 Time.realtimeSinceStartup - _connectedTime >= _heartBeatInterval &&
 
-                 Time.realtimeSinceStartup - _receiveDataTime >= _heartBeatInterval
 
-             )
 
-             {
 
-                 HandleConnectFail();
 
-             }
 
-               
 
-         }
 
-         private bool Connect()
 
-         {
 
-             if (isConnectLocking || isScanningDevices)
 
-             {
 
-                 Warn("Connect Invalid, because is in connect.");
 
-                 return false;
 
-             }
 
-             BleApi.StartDeviceScan();
 
-             isConnectLocking = true;
 
-             isScanningDevices = true;
 
-             Log("Start Connect");
 
-             return true;
 
-         }
 
-         private void StopDeviceScan()
 
-         {
 
-             if (!isScanningDevices) return;
 
-             BleApi.StopDeviceScan();
 
-             isScanningDevices = false;
 
-         }
 
-         private IEnumerator ScanServiceAndCharacteristicsToSubscribe()
 
-         {
 
-             isSubscribing = true;
 
-             if (selectedDeviceId == null)
 
-             {
 
-                 HandleConnectFail();
 
-                 yield break;
 
-             }
 
-             Log("SelectedDeviceId OK");
 
-             BleApi.ScanServices(selectedDeviceId);
 
-             isScanningServices = true;
 
-             serviceList.Clear();
 
-             while (isScanningServices) yield return null;
 
-             bool findTargetService = false;
 
-             foreach (string service in serviceList)
 
-             {
 
-                 if (service == targetService)
 
-                 {
 
-                     findTargetService = true;
 
-                     Log("FindTargetService OK");
 
-                     break;
 
-                 }
 
-             }
 
-             if (!findTargetService)
 
-             {
 
-                 HandleConnectFail();
 
-                 yield break;
 
-             }
 
-             BleApi.ScanCharacteristics(selectedDeviceId, targetService);
 
-             isScanningCharacteristics = true;
 
-             characteristicsList.Clear();
 
-             while (isScanningCharacteristics) yield return null;
 
-             bool findTargetCharacteristicsNotify = false;
 
-             bool findTargetCharacteristicsWrite = false;
 
-             foreach (string characteristics in characteristicsList)
 
-             {
 
-                 if (characteristics == targetCharacteristicsNotify)
 
-                 {
 
-                     findTargetCharacteristicsNotify = true;
 
-                     Log("FindTargetCharacteristicsNotify OK");
 
-                 }
 
-                 else if (characteristics == targetCharacteristicsWrite)
 
-                 {
 
-                     findTargetCharacteristicsWrite = true;
 
-                     Log("FindTargetCharacteristicsWrite OK");
 
-                 }
 
-             }
 
-             if (!findTargetCharacteristicsNotify || !findTargetCharacteristicsWrite)
 
-             {
 
-                 HandleConnectFail();
 
-                 yield break;
 
-             }
 
-             BleApi.SubscribeCharacteristic(selectedDeviceId, targetService, targetCharacteristicsNotify, false);
 
-             isSubscribed = true;
 
-             isSubscribing = false;
 
-             Log("SubscribeCharacteristicNotify OK");
 
-             _connectedTime = Time.realtimeSinceStartup;
 
-             OnConnected?.Invoke();
 
-         }
 
-         private void HandleConnectFail()
 
-         {
 
-             if (selectedDeviceId != null) BleApi.Disconnect(selectedDeviceId);
 
-             bool isLockBefore = isConnectLocking;
 
-             ReinitAfterConnectFail();
 
-             if (isLockBefore) OnConnectionFailed?.Invoke();
 
-         }
 
-         private void ReinitAfterConnectFail()
 
-         {
 
-             isConnectLocking = false;
 
-             isScanningDevices = false;
 
-             isScanningServices = false;
 
-             isScanningCharacteristics = false;
 
-             isSubscribed = false;
 
-             isSubscribing = false;
 
-             selectedDeviceId = null;
 
-             deviceList.Clear();
 
-             serviceList.Clear();
 
-             characteristicsList.Clear();
 
-         }
 
-         private bool Write(string text)
 
-         {
 
-             if (!isSubscribed) return false;
 
-             byte[] payload = Encoding.ASCII.GetBytes(text);
 
-             BleApi.BLEData data = new BleApi.BLEData();
 
-             data.buf = new byte[512];
 
-             data.size = (short)payload.Length;
 
-             data.deviceId = selectedDeviceId;
 
-             data.serviceUuid = targetService;
 
-             data.characteristicUuid = targetCharacteristicsWrite;
 
-             for (int i = 0; i < payload.Length; i++)
 
-                 data.buf[i] = payload[i];
 
-             // no error code available in non-blocking mode
 
-             BleApi.SendData(in data, false);
 
-             Log("Write(" + text + ")");
 
-             return true;
 
-         }
 
-         private bool WriteByte(byte[] payload)
 
-         {
 
-             if (!isSubscribed) return false;
 
-             BleApi.BLEData data = new BleApi.BLEData();
 
-             data.buf = new byte[512];
 
-             data.size = (short)payload.Length;
 
-             data.deviceId = selectedDeviceId;
 
-             data.serviceUuid = targetService;
 
-             data.characteristicUuid = targetCharacteristicsWrite;
 
-             for (int i = 0; i < payload.Length; i++)
 
-                 data.buf[i] = payload[i];
 
-             // no error code available in non-blocking mode
 
-             BleApi.SendData(in data, false);
 
-             Log("Write(byte[])");
 
-             return true;
 
-         }
 
-         private bool Disconnect()
 
-         {
 
-             if (!isConnectLocking)
 
-             {
 
-                 Warn("Disconnect Invalid, because not in connect.");
 
-                 return false;
 
-             }
 
-             if (isSubscribing)
 
-             {
 
-                 Warn("Disconnect Invalid, because is subscribing.");
 
-                 return false;
 
-             }
 
-             if (isScanningDevices) StopDeviceScan();
 
-             if (selectedDeviceId != null) BleApi.Disconnect(selectedDeviceId);
 
-             ReinitAfterConnectFail();
 
-             Log("Disconnect OK");
 
-             return true;
 
-         }
 
-     }
 
-    
 
- }
 
 
  |