设备连接稳定性

This commit is contained in:
lishuo 2022-06-08 13:05:56 +08:00 committed by CaiYanPeng
parent c333086e30
commit 46b6c7fa01
9 changed files with 111 additions and 62 deletions

View File

@ -24,6 +24,7 @@ public class BluetoothDeviceScript : MonoBehaviour
public Action<string, byte[]> PeripheralReceivedWriteDataAction; public Action<string, byte[]> PeripheralReceivedWriteDataAction;
public Action<string> ConnectedPeripheralAction; public Action<string> ConnectedPeripheralAction;
public Action<string> ConnectedDisconnectPeripheralAction { get; set; } public Action<string> ConnectedDisconnectPeripheralAction { get; set; }
public Action<string,string> ConnectErrorAction { get; set; }
public Action<string> DisconnectedPeripheralAction; public Action<string> DisconnectedPeripheralAction;
public Action<string> DeviceBleStatusDisconnectedAction; public Action<string> DeviceBleStatusDisconnectedAction;
public Action<string, string> DiscoveredServiceAction; public Action<string, string> DiscoveredServiceAction;
@ -53,10 +54,11 @@ public class BluetoothDeviceScript : MonoBehaviour
void Update () void Update ()
{ {
} }
const string connectionError = "ConnectionError";
const string deviceInitializedString = "Initialized"; const string deviceInitializedString = "Initialized";
const string deviceDeInitializedString = "DeInitialized"; const string deviceDeInitializedString = "DeInitialized";
const string deviceErrorString = "Error"; const string deviceErrorString = "Error";
const string deviceConnectErrorString = "ConnectionError";
const string deviceServiceAdded = "ServiceAdded"; const string deviceServiceAdded = "ServiceAdded";
const string deviceStartedAdvertising = "StartedAdvertising"; const string deviceStartedAdvertising = "StartedAdvertising";
const string deviceStoppedAdvertising = "StoppedAdvertising"; const string deviceStoppedAdvertising = "StoppedAdvertising";
@ -77,6 +79,7 @@ public class BluetoothDeviceScript : MonoBehaviour
public void OnBluetoothMessage (string message) public void OnBluetoothMessage (string message)
{ {
Debug.Log(message);
if (message != null) if (message != null)
{ {
char[] delim = new char[] { '~' }; char[] delim = new char[] { '~' };
@ -242,6 +245,10 @@ public class BluetoothDeviceScript : MonoBehaviour
DisconnectedPeripheralAction(parts[1]); DisconnectedPeripheralAction(parts[1]);
} }
} }
else if (message.Length > connectionError.Length && message.Substring(0,connectionError.Length) == connectionError){
if (ConnectErrorAction != null)
ConnectErrorAction(parts[1], parts[2]);
}
else if (message.Length >= deviceDiscoveredService.Length && message.Substring (0, deviceDiscoveredService.Length) == deviceDiscoveredService) else if (message.Length >= deviceDiscoveredService.Length && message.Substring (0, deviceDiscoveredService.Length) == deviceDiscoveredService)
{ {
if (parts.Length >= 3 && DiscoveredServiceAction != null) if (parts.Length >= 3 && DiscoveredServiceAction != null)

View File

@ -604,7 +604,7 @@ public class BluetoothLEHardwareInterface
#endif #endif
} }
public static void ConnectToPeripheral (string name, Action<string> connectAction, Action<string, string> serviceAction, Action<string, string, string> characteristicAction, Action<string> disconnectAction = null) public static void ConnectToPeripheral (string name, Action<string> connectAction, Action<string, string> serviceAction, Action<string, string, string> characteristicAction, Action<string> disconnectAction = null, Action<string,string> errorAction = null)
{ {
#if !UNITY_EDITOR_OSX || !EXPERIMENTAL_MACOS_EDITOR #if !UNITY_EDITOR_OSX || !EXPERIMENTAL_MACOS_EDITOR
@ -618,6 +618,7 @@ public class BluetoothLEHardwareInterface
bluetoothDeviceScript.DiscoveredCharacteristicAction = characteristicAction; bluetoothDeviceScript.DiscoveredCharacteristicAction = characteristicAction;
bluetoothDeviceScript.ConnectedDisconnectPeripheralAction = disconnectAction; bluetoothDeviceScript.ConnectedDisconnectPeripheralAction = disconnectAction;
bluetoothDeviceScript.DeviceBleStatusDisconnectedAction = disconnectAction; bluetoothDeviceScript.DeviceBleStatusDisconnectedAction = disconnectAction;
bluetoothDeviceScript.ConnectErrorAction = errorAction;
} }
#if EXPERIMENTAL_MACOS_EDITOR && (UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX) #if EXPERIMENTAL_MACOS_EDITOR && (UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX)

View File

@ -711,7 +711,7 @@ GameObject:
m_Icon: {fileID: 0} m_Icon: {fileID: 0}
m_NavMeshLayer: 0 m_NavMeshLayer: 0
m_StaticEditorFlags: 0 m_StaticEditorFlags: 0
m_IsActive: 0 m_IsActive: 1
--- !u!224 &3643721405153075690 --- !u!224 &3643721405153075690
RectTransform: RectTransform:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -826,7 +826,7 @@ GameObject:
m_Icon: {fileID: 0} m_Icon: {fileID: 0}
m_NavMeshLayer: 0 m_NavMeshLayer: 0
m_StaticEditorFlags: 0 m_StaticEditorFlags: 0
m_IsActive: 0 m_IsActive: 1
--- !u!224 &3643721405012091660 --- !u!224 &3643721405012091660
RectTransform: RectTransform:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -1436,7 +1436,7 @@ GameObject:
m_Icon: {fileID: 0} m_Icon: {fileID: 0}
m_NavMeshLayer: 0 m_NavMeshLayer: 0
m_StaticEditorFlags: 0 m_StaticEditorFlags: 0
m_IsActive: 0 m_IsActive: 1
--- !u!224 &8230995990077916237 --- !u!224 &8230995990077916237
RectTransform: RectTransform:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -1739,7 +1739,7 @@ GameObject:
m_Icon: {fileID: 0} m_Icon: {fileID: 0}
m_NavMeshLayer: 0 m_NavMeshLayer: 0
m_StaticEditorFlags: 0 m_StaticEditorFlags: 0
m_IsActive: 0 m_IsActive: 1
--- !u!224 &2290133527418080840 --- !u!224 &2290133527418080840
RectTransform: RectTransform:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0

View File

@ -106,6 +106,7 @@ namespace Assets.Scripts.Devices.Ble
if (response.Error != null) if (response.Error != null)
{ {
this.State = DeviceState.Disconnected;
if (response.Error.Code == WclBleErrors.WCL_E_BLUETOOTH_LE_DEVICE_NOT_FOUND) if (response.Error.Code == WclBleErrors.WCL_E_BLUETOOTH_LE_DEVICE_NOT_FOUND)
{ {
Debug.Log("未找到设备"); Debug.Log("未找到设备");

View File

@ -9,6 +9,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Timers;
using UnityEngine; using UnityEngine;
namespace Assets.Scripts.Ble namespace Assets.Scripts.Ble
@ -210,30 +211,41 @@ namespace Assets.Scripts.Ble
List<BleServiceInfo> servicelist = new List<BleServiceInfo>(); List<BleServiceInfo> servicelist = new List<BleServiceInfo>();
List<BleCharacteristicInfo> characteristilist = new List<BleCharacteristicInfo>(); List<BleCharacteristicInfo> characteristilist = new List<BleCharacteristicInfo>();
public void ConnectPeripheral(BlePeripheralInfo info, Action<IBleWinHwInterface, BlePeripheralInfo, BleResponse> callback) public void ConnectPeripheral(BlePeripheralInfo info, Action<IBleWinHwInterface, BlePeripheralInfo, BleResponse> callback)
{ {
if (!this.callbacks.ContainsKey(info)) var exsit = this.callbacks.Where(c => c.Key.Address == info.Address).Any();
if (!exsit)
{ {
this.callbacks.Add(info, callback); this.callbacks.Add(info, callback);
} }
else
{
var obj = this.callbacks.Where(c => c.Key.Address == info.Address).FirstOrDefault();
this.callbacks.Remove(obj.Key);
this.callbacks.Add(info, callback);
}
Debug.Log("try connect device" + info.Name + this.callbacks.Count.ToString()); Debug.Log("try connect device" + info.Name + this.callbacks.Count.ToString());
var self = this;
if (this.callbacks.Count == 1) if (this.callbacks.Count == 1)
{ {
BleResponse s = new BleResponse();
s.IsSuccess = true;
s.Error = null;
var self = this;
BluetoothLEHardwareInterface.ConnectToPeripheral(info.Address, (address) => BluetoothLEHardwareInterface.ConnectToPeripheral(info.Address, (address) =>
{ {
BleResponse s = new BleResponse
{
IsSuccess = true,
Error = null
};
callback?.Invoke(self, info, s); callback?.Invoke(self, info, s);
this.callbacks.Remove(info); this.callbacks.Remove(info);
Debug.Log("连接成功!"+info.Name); Debug.Log("连接成功!" + info.Name);
if (this.callbacks.Any()) if (this.callbacks.Any())
{ {
this.ConnectPeripheral(this.callbacks.First().Key, this.callbacks.First().Value); this.ConnectPeripheral(this.callbacks.First().Key, this.callbacks.First().Value);
} }
}, (address, service) => }, (address, service) =>
{ {
Debug.Log("发现服务");
ServicesDiscovered(address, service); ServicesDiscovered(address, service);
}, (address, service, characteristic) => }, (address, service, characteristic) =>
{ {
@ -242,9 +254,25 @@ namespace Assets.Scripts.Ble
{ {
Debug.Log("disconnect device:" + address); Debug.Log("disconnect device:" + address);
PeripheralDisconnected(address, info); PeripheralDisconnected(address, info);
}); },
(address, error) =>
{
BleResponse s = new BleResponse
{
IsSuccess = false,
Error = new BleHwInterfaceError(error)
};
callback?.Invoke(self, info, s);
this.callbacks.Remove(info);
if (this.callbacks.Any())
{
this.ConnectPeripheral(this.callbacks.First().Key, this.callbacks.First().Value);
}
}
);
} }
} }
#region #region
//服务发现 //服务发现
private void ServicesDiscovered(string address, string service) private void ServicesDiscovered(string address, string service)
@ -305,7 +333,7 @@ namespace Assets.Scripts.Ble
} }
var characteristicsDiscoveredCallback = characteristicsDiscoveredCallbacks.Where(c => c.Key.MatchAddress(address)); var characteristicsDiscoveredCallback = characteristicsDiscoveredCallbacks.Where(c => c.Key.MatchAddress(address));
if (serviceCallback.Any()) if (characteristicsDiscoveredCallback.Any())
{ {
characteristicsDiscoveredCallbacks.Remove(characteristicsDiscoveredCallback.First().Key); characteristicsDiscoveredCallbacks.Remove(characteristicsDiscoveredCallback.First().Key);
} }

View File

@ -267,7 +267,7 @@ public class ConnectDeviceModal : PFUIPanel
} }
} }
noDevice.text = deviceItemObj.DeviceInfo.Name + "-"+ deviceItemObj.DeviceInfo.DeviceNumber; noDevice.text = deviceItemObj.DeviceInfo.Name;
if (deviceItemObj.DeviceInfo.State == DeviceState.Connected) if (deviceItemObj.DeviceInfo.State == DeviceState.Connected)
{ {
noDevice.color = Color.white; noDevice.color = Color.white;

View File

@ -64,7 +64,7 @@ public class RowerHomeScript : PFUIPanel
{ {
get get
{ {
var device = App.MainDeviceAdapter.GetDevices().FirstOrDefault(d => (d.State == DeviceState.Connected || d.State == DeviceState.Connecting) && d.Sensor == SensorType.Rower); var device = App.MainDeviceAdapter.GetDevices().FirstOrDefault(d => d.State == DeviceState.Connected && d.Sensor == SensorType.Rower);
if (device != null) if (device != null)
{ {
return (IRowerDevice)device; return (IRowerDevice)device;
@ -88,12 +88,12 @@ public class RowerHomeScript : PFUIPanel
} }
} }
GameObject btnStart; GameObject btnStart;
Transform left, bottom, mid,rmydata; Transform left, bottom, mid, rmydata;
Image leftImage; Image leftImage;
Image rightImage; Image rightImage;
float timer = 1.0f; float timer = 1.0f;
List<DoubleVector2> pullList, historyPullList; List<DoubleVector2> pullList, historyPullList;
public Dictionary<object, Sprite> spriteDict,spriteDict2; public Dictionary<object, Sprite> spriteDict, spriteDict2;
List<string> records; List<string> records;
List<TempRowerCalc> values; List<TempRowerCalc> values;
DateTime startTime; DateTime startTime;
@ -240,12 +240,12 @@ public class RowerHomeScript : PFUIPanel
}); });
UIManager.AddEvent(transform.Find("Stopped/DeviceStatus").gameObject, UnityEngine.EventSystems.EventTriggerType.PointerClick, b => UIManager.AddEvent(transform.Find("Stopped/DeviceStatus").gameObject, UnityEngine.EventSystems.EventTriggerType.PointerClick, b =>
{ {
if (checkRowing()) return; //if (checkRowing()) return;
UIManager.ShowRowerDevicePanel(); UIManager.ShowRowerDevicePanel();
}); });
UIManager.AddEvent(transform.Find("Stopped/DeviceStatusConnect").gameObject, UnityEngine.EventSystems.EventTriggerType.PointerClick, b => UIManager.AddEvent(transform.Find("Stopped/DeviceStatusConnect").gameObject, UnityEngine.EventSystems.EventTriggerType.PointerClick, b =>
{ {
if (checkRowing()) return; //if (checkRowing()) return;
UIManager.ShowRowerDevicePanel(); UIManager.ShowRowerDevicePanel();
}); });
//手机版tab //手机版tab
@ -260,11 +260,11 @@ public class RowerHomeScript : PFUIPanel
//return; //return;
if (checkRowing()) return; if (checkRowing()) return;
if (C2RowerData.IsEnabled == true && C2RowerData.rowerType != null) return; if (C2RowerData.IsEnabled == true && C2RowerData.rowerType != null) return;
UIManager.ShowRowerTaskPanel(type=> UIManager.ShowRowerTaskPanel(type =>
{ {
rowerType = type; rowerType = type;
HandleSelectType(); HandleSelectType();
},rowerType); }, rowerType);
}, false); }, false);
var c2 = new NewMainNav.CustomButton(Resources.Load<Sprite>("Images/RowerNew/记录"), () => var c2 = new NewMainNav.CustomButton(Resources.Load<Sprite>("Images/RowerNew/记录"), () =>
{ {
@ -306,9 +306,9 @@ public class RowerHomeScript : PFUIPanel
public void ReRow(RowerResultModel r) public void ReRow(RowerResultModel r)
{ {
this.reRowData = r; this.reRowData = r;
if (r!= null && r.Type.HasValue) if (r != null && r.Type.HasValue)
{ {
rowerType = new RowerType { type = r.Type.Value,value = (float)r.TypeValue.Value }; rowerType = new RowerType { type = r.Type.Value, value = (float)r.TypeValue.Value };
if (Rower != null) if (Rower != null)
{ {
Rower.Reset(); Rower.Reset();
@ -392,12 +392,17 @@ public class RowerHomeScript : PFUIPanel
//Utils.showToast(null, "请滑动划船机并开始", isLowest: true, type: 1); //Utils.showToast(null, "请滑动划船机并开始", isLowest: true, type: 1);
} }
protected override void OnDisable()
{
base.OnDisable();
//App.MainDeviceAdapter.StopScan();
}
public override void Show() public override void Show()
{ {
base.Show(); base.Show();
//var mainNav = this.transform.Find("MainNav").GetComponent<MainNav>(); //var mainNav = this.transform.Find("MainNav").GetComponent<MainNav>();
//mainNav.ShowRowerTab(); //mainNav.ShowRowerTab();
//App.MainDeviceAdapter.StartScan();
transform.MyDOFade(); transform.MyDOFade();
//Debug.Log("140,开始扫描"); //Debug.Log("140,开始扫描");
//App.MainDeviceAdapter.StartScan(); //App.MainDeviceAdapter.StartScan();
@ -407,7 +412,7 @@ public class RowerHomeScript : PFUIPanel
} }
void Disconnect() void Disconnect()
{ {
foreach(var d in App.MainDeviceAdapter.GetDevices()) foreach (var d in App.MainDeviceAdapter.GetDevices())
{ {
if ((d.State == DeviceState.Connected || d.State == DeviceState.Connecting) && (d.Sensor == SensorType.Rower || d.Sensor == SensorType.HeartRate)) if ((d.State == DeviceState.Connected || d.State == DeviceState.Connecting) && (d.Sensor == SensorType.Rower || d.Sensor == SensorType.HeartRate))
{ {
@ -459,7 +464,7 @@ public class RowerHomeScript : PFUIPanel
int truelyTime = 0; int truelyTime = 0;
private void StartFunc(object sender, EventArgs e) private void StartFunc(object sender, EventArgs e)
{ {
if (UIManager.Instance.confirm!=null && UIManager.Instance.confirm.IsActive()) if (UIManager.Instance.confirm != null && UIManager.Instance.confirm.IsActive())
{ {
print("当前有弹窗"); print("当前有弹窗");
return; return;
@ -554,8 +559,14 @@ public class RowerHomeScript : PFUIPanel
} }
model.Id = Id;//Guid.NewGuid().ToString(); model.Id = Id;//Guid.NewGuid().ToString();
model.Weight = App.CurrentUser.Weight; model.Weight = App.CurrentUser.Weight;
if (string.IsNullOrEmpty(shadowids))
model.StartTime = createTime.Value.AddSeconds(-values.Count); {
model.StartTime = startTime;
}
else
{
model.StartTime = createTime.Value.AddSeconds(-values.Count);
}
model.CreateTime = createTime.Value; model.CreateTime = createTime.Value;
Debug.Log(values.Count); Debug.Log(values.Count);
if (values.Count > 0) if (values.Count > 0)
@ -786,7 +797,7 @@ public class RowerHomeScript : PFUIPanel
#if !UNITY_EDITOR #if !UNITY_EDITOR
if (Rower == null) if (Rower == null)
{ {
HandleDiscardDirect(); //HandleDiscardDirect();
return; return;
} }
if (RowerData == null) return; if (RowerData == null) return;
@ -1251,7 +1262,7 @@ public class RowerHomeScript : PFUIPanel
//graph.DataSource.AddPointToCategoryRealtime("Player 2", item.x, item.y); //graph.DataSource.AddPointToCategoryRealtime("Player 2", item.x, item.y);
if (M1.localPosition.x == 0) if (M1.localPosition.x == 0)
{ {
rowerGraphChartFeed.SetData(v1, v2); rowerGraphChartFeed.SetData(v1, v2);
} }
else else
{ {

View File

@ -10,6 +10,7 @@ public class RowerDevicePanel : PFUIPanel
{ {
UIManager.AddEvent(transform.Find("Container/Tools/Back").gameObject, UnityEngine.EventSystems.EventTriggerType.PointerClick, b => UIManager.AddEvent(transform.Find("Container/Tools/Back").gameObject, UnityEngine.EventSystems.EventTriggerType.PointerClick, b =>
{ {
App.MainDeviceAdapter.StopScan();
Close(); Close();
}); });
} }