From aea0a18a290e26f2b3340b22efcf180d023a5cc0 Mon Sep 17 00:00:00 2001 From: YDL <1368269699@qq.com> Date: Mon, 15 Apr 2024 17:10:19 +0800 Subject: [PATCH] =?UTF-8?q?UI=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9,?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=89=B9=E9=87=8F=E5=88=A0=E9=99=A4=E7=82=B9?= =?UTF-8?q?=E4=BD=8D=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/ANet/DeviceObjManager.cs | 24 ++++++++++++++++ Assets/Scripts/ANet/DevicePanelManager.cs | 25 +++++++++++++++++ Assets/Scripts/ANet/Prefabs/DeviceInfo.prefab | 26 ++++++++--------- .../ANet/Prefabs/DeviceInfoItem.prefab | 8 +++--- Assets/Scripts/ANet/Prefabs/DeviceItem.prefab | 8 +++--- Assets/Scripts/ANet/Prefabs/Devices.prefab | 28 +++++++++---------- 6 files changed, 84 insertions(+), 35 deletions(-) diff --git a/Assets/Scripts/ANet/DeviceObjManager.cs b/Assets/Scripts/ANet/DeviceObjManager.cs index 20fd9a6..78ca439 100644 --- a/Assets/Scripts/ANet/DeviceObjManager.cs +++ b/Assets/Scripts/ANet/DeviceObjManager.cs @@ -24,6 +24,30 @@ public class DeviceObjManager : MonoBehaviour { Instance = this; } + private void Update() + { + if (Input.GetKey(KeyCode.Q)) + { + if (Input.GetKeyDown(KeyCode.Delete)) + { + if (DevicePanelManager.Instance.MenuType == DeviceType.空) + { + NowPointList.Clear(); + SaveObjs(); + return; + } + for (int i = 0; i < NowPointList.Count; i++) + { + if (NowPointList[i].type == DevicePanelManager.Instance.MenuType) + { + NowPointList.RemoveAt(i); + i--; + } + } + SaveObjs(); + } + } + } private void Start() { LoadDeviceObjs(); diff --git a/Assets/Scripts/ANet/DevicePanelManager.cs b/Assets/Scripts/ANet/DevicePanelManager.cs index 71e4c61..cbaf7aa 100644 --- a/Assets/Scripts/ANet/DevicePanelManager.cs +++ b/Assets/Scripts/ANet/DevicePanelManager.cs @@ -244,6 +244,8 @@ public class DevicePanelManager : MonoBehaviour //服务端获取全部数据 public List>> AllData = new List>>(); public DeviceType textType; + private bool getDataError = false; + private float timmer = 0; #endregion #region 本地数据绑定 public List BindObjectList = new List(); @@ -342,6 +344,17 @@ public class DevicePanelManager : MonoBehaviour } } } + if (getDataError == true) + { + timmer += Time.deltaTime; + if (timmer >= 60) + { + timmer = 0; + getDataError = false; + RefreshData(); + Debug.LogWarning("从对方服务器获取数据错误!"); + } + } } private void CreatePoint(Vector3 position, int floorId) { @@ -459,6 +472,11 @@ public class DevicePanelManager : MonoBehaviour Post($"{baseHttpUrl}?appKey={key}", postData, (d) => { Debug.Log(d.code); + if (d.code != 200) + { + getDataError = true; + return; + } foreach (var item in d.data.list) { foreach (var data in AllData) @@ -475,6 +493,7 @@ public class DevicePanelManager : MonoBehaviour }, (a, b) => { Debug.LogError(a + b); + getDataError = true; }); } else @@ -482,6 +501,11 @@ public class DevicePanelManager : MonoBehaviour PostJson($"?appKey={key}", postData, (d) => { Debug.Log(d.code); + if (d.code != 200) + { + getDataError = true; + return; + } foreach (var item in d.data.list) { foreach (var data in AllData) @@ -495,6 +519,7 @@ public class DevicePanelManager : MonoBehaviour }, (a, b) => { Debug.LogError(a + b); + getDataError = true; }); } } diff --git a/Assets/Scripts/ANet/Prefabs/DeviceInfo.prefab b/Assets/Scripts/ANet/Prefabs/DeviceInfo.prefab index 9b9a1e0..7bbb1dd 100644 --- a/Assets/Scripts/ANet/Prefabs/DeviceInfo.prefab +++ b/Assets/Scripts/ANet/Prefabs/DeviceInfo.prefab @@ -114,7 +114,7 @@ RectTransform: m_AnchorMin: {x: 1, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 15, y: 0} + m_SizeDelta: {x: 8, y: 0} m_Pivot: {x: 1, y: 1} --- !u!222 &1265597270167240841 CanvasRenderer: @@ -137,7 +137,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 0} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: @@ -303,10 +303,10 @@ MonoBehaviour: m_Calls: [] m_FontData: m_Font: {fileID: 12800000, guid: decc468d4945aa245a133e054cecdffe, type: 3} - m_FontSize: 28 + m_FontSize: 18 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 2 + m_MinSize: 1 m_MaxSize: 40 m_Alignment: 4 m_AlignByGeometry: 0 @@ -350,8 +350,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 1, y: 0.5} m_AnchorMax: {x: 1, y: 0.5} - m_AnchoredPosition: {x: -31.73, y: 0} - m_SizeDelta: {x: 32, y: 32} + m_AnchoredPosition: {x: -24.5, y: 0} + m_SizeDelta: {x: 30, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1265597270770452413 CanvasRenderer: @@ -380,7 +380,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 98d01617b69d06743aa272ab07511ca3, type: 3} + m_Sprite: {fileID: 665853030641679958, guid: 1724ec1a745a80f44aae3d014e04f5cc, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -470,8 +470,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -230} - m_SizeDelta: {x: 300, y: 340} + m_AnchoredPosition: {x: 0, y: -220} + m_SizeDelta: {x: 300, y: 360} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1265597270811154383 CanvasRenderer: @@ -577,8 +577,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -30} - m_SizeDelta: {x: 300, y: 60} + m_AnchoredPosition: {x: 0, y: -20} + m_SizeDelta: {x: 300, y: 40} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1265597270811444745 CanvasRenderer: @@ -601,7 +601,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.20477772, g: 0.2015842, b: 0.2830189, a: 1} + m_Color: {r: 0.20477772, g: 0.2015842, b: 0.2830189, a: 0} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: @@ -776,7 +776,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.14117648, g: 0.41960788, b: 0.60784316, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: diff --git a/Assets/Scripts/ANet/Prefabs/DeviceInfoItem.prefab b/Assets/Scripts/ANet/Prefabs/DeviceInfoItem.prefab index cd9d239..5c0d738 100644 --- a/Assets/Scripts/ANet/Prefabs/DeviceInfoItem.prefab +++ b/Assets/Scripts/ANet/Prefabs/DeviceInfoItem.prefab @@ -347,7 +347,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 120, y: 0} - m_SizeDelta: {x: 200, y: 50} + m_SizeDelta: {x: 200, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &9007145181275878140 CanvasRenderer: @@ -378,10 +378,10 @@ MonoBehaviour: m_Calls: [] m_FontData: m_Font: {fileID: 12800000, guid: decc468d4945aa245a133e054cecdffe, type: 3} - m_FontSize: 20 + m_FontSize: 18 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 2 + m_MinSize: 1 m_MaxSize: 40 m_Alignment: 3 m_AlignByGeometry: 0 @@ -453,7 +453,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 0} + m_Color: {r: 0.050980397, g: 0.16470589, b: 0.2784314, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: diff --git a/Assets/Scripts/ANet/Prefabs/DeviceItem.prefab b/Assets/Scripts/ANet/Prefabs/DeviceItem.prefab index 85ec404..d2a4134 100644 --- a/Assets/Scripts/ANet/Prefabs/DeviceItem.prefab +++ b/Assets/Scripts/ANet/Prefabs/DeviceItem.prefab @@ -347,7 +347,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 120, y: 0} - m_SizeDelta: {x: 200, y: 50} + m_SizeDelta: {x: 200, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &9007145181275878140 CanvasRenderer: @@ -378,10 +378,10 @@ MonoBehaviour: m_Calls: [] m_FontData: m_Font: {fileID: 12800000, guid: decc468d4945aa245a133e054cecdffe, type: 3} - m_FontSize: 20 + m_FontSize: 18 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 2 + m_MinSize: 1 m_MaxSize: 40 m_Alignment: 3 m_AlignByGeometry: 0 @@ -453,7 +453,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.2938323, g: 0.5177339, b: 0.6698113, a: 1} + m_Color: {r: 0.06666667, g: 0.17254902, b: 0.27450982, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: diff --git a/Assets/Scripts/ANet/Prefabs/Devices.prefab b/Assets/Scripts/ANet/Prefabs/Devices.prefab index abd978d..47055a0 100644 --- a/Assets/Scripts/ANet/Prefabs/Devices.prefab +++ b/Assets/Scripts/ANet/Prefabs/Devices.prefab @@ -188,7 +188,7 @@ RectTransform: m_AnchorMin: {x: 1, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 15, y: 0} + m_SizeDelta: {x: 8, y: 0} m_Pivot: {x: 1, y: 1} --- !u!222 &1265597270167240841 CanvasRenderer: @@ -211,7 +211,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 0} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: @@ -377,10 +377,10 @@ MonoBehaviour: m_Calls: [] m_FontData: m_Font: {fileID: 12800000, guid: decc468d4945aa245a133e054cecdffe, type: 3} - m_FontSize: 28 + m_FontSize: 18 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 2 + m_MinSize: 1 m_MaxSize: 40 m_Alignment: 4 m_AlignByGeometry: 0 @@ -424,8 +424,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 1, y: 0.5} m_AnchorMax: {x: 1, y: 0.5} - m_AnchoredPosition: {x: -31.73, y: 0} - m_SizeDelta: {x: 32, y: 32} + m_AnchoredPosition: {x: -24.95, y: 0} + m_SizeDelta: {x: 30, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1265597270770452413 CanvasRenderer: @@ -454,7 +454,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 98d01617b69d06743aa272ab07511ca3, type: 3} + m_Sprite: {fileID: 665853030641679958, guid: 1724ec1a745a80f44aae3d014e04f5cc, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -544,8 +544,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -217.2} - m_SizeDelta: {x: 300, y: 310} + m_AnchoredPosition: {x: 0, y: -219.99998} + m_SizeDelta: {x: 300, y: 360.00006} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1265597270811154383 CanvasRenderer: @@ -651,8 +651,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: -30} - m_SizeDelta: {x: 300, y: 60} + m_AnchoredPosition: {x: 0, y: -20} + m_SizeDelta: {x: 300, y: 40} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1265597270811444745 CanvasRenderer: @@ -675,7 +675,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.20477772, g: 0.2015842, b: 0.2830189, a: 1} + m_Color: {r: 0.06666667, g: 0.17254902, b: 0.27450982, a: 0} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: @@ -850,7 +850,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.14901961, g: 0.43921572, b: 0.6313726, a: 1} m_RaycastTarget: 1 m_Maskable: 1 m_OnCullStateChanged: @@ -904,7 +904,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchoredPosition: {x: -400, y: 0} m_SizeDelta: {x: 300, y: 400} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1265597271646066060