Browse Source

供水系统数据选中头顶图标切换的同时显示信息

develop
杨栋梁 11 months ago
parent
commit
bc0f59f028
  1. 10
      Assets/Scripts/ANet/DeviceFollowTarget.cs
  2. 21
      Assets/Scripts/ANet/DeviceInfo.cs
  3. 3
      Assets/Scripts/ANet/DeviceItem.cs
  4. 29
      Assets/Scripts/ANet/DeviceObj.cs
  5. 1
      Assets/Scripts/ANet/Prefabs/DeviceItem.prefab

10
Assets/Scripts/ANet/DeviceFollowTarget.cs

@ -31,6 +31,16 @@ public class DeviceFollowTarget : MonoBehaviour
}
if (!GetComponent<DeviceLumos>())
gameObject.AddComponent<DeviceLumos>();
if (target.GetComponent<DeviceObj>().BindData.deviceNo != null)
{
DeviceInfo.Instance.OnShow(target.GetComponent<DeviceObj>().BindData);
}
else
{
target.GetComponent<DeviceObj>().SetBindData();
DeviceInfo.Instance.OnShow(target.GetComponent<DeviceObj>().BindData);
}
}
}

21
Assets/Scripts/ANet/DeviceInfo.cs

@ -27,6 +27,25 @@ public class DeviceInfo : MonoBehaviour
infoName.text = "设备信息";
bindInfo = info;
foreach (Transform item in DevicePanelManager.Instance.transform)
{
if (item.GetComponent<DeviceBind>() && item.gameObject.activeSelf)
{
foreach (Transform child in item.GetComponent<DeviceBind>().BindParent)
{
if (child.GetComponent<DeviceItem>())
if (child.GetComponent<DeviceItem>().BindData.deviceNo == info.deviceNo)
{
child.GetComponent<DeviceItem>().Selected.SetActive(true);
}
else
{
child.GetComponent<DeviceItem>().Selected.SetActive(false);
}
}
}
}
foreach (Transform item in infoParent)
{
if (item.name != "None")
@ -83,7 +102,7 @@ public class DeviceInfo : MonoBehaviour
go.GetComponent<DeviceInfoItem>().Bind("预警状态 : " + (pinfo.alarmStatus == "0" ? "正常" : "告警"));
}
}
else if (info.deviceType == (int)DeviceType.|| info.deviceType == (int)DeviceType.
else if (info.deviceType == (int)DeviceType. || info.deviceType == (int)DeviceType.
|| info.deviceType == (int)DeviceType. || info.deviceType == (int)DeviceType.)
{
XHSMDInfo pinfo = JsonConvert.DeserializeObject<XHSMDInfo>(info.timelyData.ToString());

3
Assets/Scripts/ANet/DeviceItem.cs

@ -12,6 +12,7 @@ public class DeviceItem : MonoBehaviour
public Button LocalBtn;
public Button ViewBtn;
public Image CanLocal;
public GameObject Selected;
void Start()
{
LocalBtn.onClick.AddListener(LocalBtn_Click);
@ -39,7 +40,7 @@ public class DeviceItem : MonoBehaviour
}
private void ViewBtn_Click()
{
DeviceInfo.Instance.OnShow(BindData);
//DeviceInfo.Instance.OnShow(BindData);
string deviceName = "";
foreach (var item in DevicePanelManager.Instance.BindObjectList)
{

29
Assets/Scripts/ANet/DeviceObj.cs

@ -142,5 +142,34 @@ public class DeviceObj : MonoBehaviour
tIconObj.gameObject.SetActive(isShow);
gameObject.GetComponent<MeshRenderer>().enabled = isShow;
}
public void SetBindData()
{
string deviceId = "";
foreach (var item in DevicePanelManager.Instance.BindObjectList)
{
if (item.ObjName == name)
{
deviceId = item.DeviceId;
break;
}
}
if (!string.IsNullOrEmpty(deviceId))
{
foreach (var datalist in DevicePanelManager.Instance.AllData)
{
if (datalist.Key == BindType)
{
foreach (var data in datalist.Value)
{
if (deviceId == data.deviceNo)
{
BindData = data;
break;
}
}
}
}
}
}
}

1
Assets/Scripts/ANet/Prefabs/DeviceItem.prefab

@ -485,6 +485,7 @@ MonoBehaviour:
LocalBtn: {fileID: 6612412687128553362}
ViewBtn: {fileID: 4207703022074011421}
CanLocal: {fileID: 6574008811849784718}
Selected: {fileID: 9007145183056439487}
--- !u!1 &9007145183056439487
GameObject:
m_ObjectHideFlags: 0

Loading…
Cancel
Save