上海虹口龙之梦项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

147 lines
5.4 KiB

12 months ago
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.UI;
public class DeviceItem : MonoBehaviour
{
public DeviceList BindData;
public Text ShowText;
public Button LocalBtn;
public Button ViewBtn;
public Image CanLocal;
void Start()
{
LocalBtn.onClick.AddListener(LocalBtn_Click);
ViewBtn.onClick.AddListener(ViewBtn_Click);
}
public void DataBind(DeviceList bindData, Color showColor)
{
BindData = bindData;
ShowText.text = bindData.deviceName;
LocalBtn.image.color = showColor;
}
private void ViewBtn_Click()
{
DeviceInfo.Instance.OnShow(BindData);
string deviceName = "";
foreach (var item in DevicePanelManager.Instance.BindObjectList)
{
if (item.DeviceId == BindData.deviceNo)
{
deviceName = item.ObjName;
break;
}
}
if (!string.IsNullOrEmpty(deviceName))
{
DeviceObj obj = DeviceObjManager.Instance.GetDeviceByName(deviceName);
if (null != obj)
{
obj.GetComponent<DeviceObj>().ShowList();
}
}
12 months ago
}
private void LocalBtn_Click()
{
if (DevicePanelManager.Instance.NowClickObject != null)
{
if (LocalBtn.image.color == Color.red)//解绑
{
MessageBox.Show("已经绑定该设备是否取消绑定?", Color.red, () =>
{
DeviceObjConfig config = new DeviceObjConfig();
config.DeviceId = BindData.deviceNo;
config.ObjName = "";
DevicePanelManager.Instance.SaveDeviceObjConfig(config);
});
}
else if (LocalBtn.image.color == Color.white)
{
bool hasbind = false;
foreach (var item in DevicePanelManager.Instance.BindObjectList)
{
if (item.ObjName == DevicePanelManager.Instance.NowClickObject.name)
{
hasbind = true;
break;
}
}
if (hasbind)
{
MessageBox.Show("设备已经被绑定是否更换绑定?", Color.red, () =>
{
foreach (var item in DevicePanelManager.Instance.BindObjectList)
{
if (item.ObjName == DevicePanelManager.Instance.NowClickObject.name)
{
item.ObjName = "";
break;
}
}
DeviceObjConfig config = new DeviceObjConfig();
config.DeviceId = BindData.deviceNo;
config.ObjName = DevicePanelManager.Instance.NowClickObject.name;
DevicePanelManager.Instance.SaveDeviceObjConfig(config);
});
}
else
{
MessageBox.Show("是否绑定该设备?", Color.red, () =>
{
DeviceObjConfig config = new DeviceObjConfig();
config.DeviceId = BindData.deviceNo;
config.ObjName = DevicePanelManager.Instance.NowClickObject.name;
DevicePanelManager.Instance.SaveDeviceObjConfig(config);
});
}
}
else
{
bool hasbind = false;
foreach (var item in DevicePanelManager.Instance.BindObjectList)
{
if (item.ObjName == DevicePanelManager.Instance.NowClickObject.name)
{
hasbind = true;
break;
}
}
if (hasbind)
{
MessageBox.Show("设备已经被绑定是否更换绑定?", Color.red, () =>
{
foreach (var item in DevicePanelManager.Instance.BindObjectList)
{
if (item.ObjName == DevicePanelManager.Instance.NowClickObject.name)
{
item.ObjName = "";
break;
}
}
DeviceObjConfig config = new DeviceObjConfig();
config.DeviceId = BindData.deviceNo;
config.ObjName = DevicePanelManager.Instance.NowClickObject.name;
DevicePanelManager.Instance.SaveDeviceObjConfig(config);
});
}
else
{
MessageBox.Show("设备已经被绑定是否更换绑定?", Color.red, () =>
{
DeviceObjConfig config = new DeviceObjConfig();
config.DeviceId = BindData.deviceNo;
config.ObjName = DevicePanelManager.Instance.NowClickObject.name;
DevicePanelManager.Instance.SaveDeviceObjConfig(config);
});
}
}
}
}
}