上海虹口龙之梦项目
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.

804 lines
26 KiB

12 months ago
using BestHTTP;
using Newtonsoft.Json;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
using System.Security.Cryptography;
using System.IO;
using UnityEngine.Networking;
using UnityEngine.EventSystems;
using AX.MessageSystem;
12 months ago
#region 接口数据类型
#pragma warning disable IDE1006 // 命名样式
[Serializable]
public class DeviceObjConfig
{
public string ObjName;
public string DeviceId;
}
/// <summary>
/// HTTP通信错误信息类
/// </summary>
public class ProblemDetails
{
public string type;
public string title;
public int status;
public string detail;
public string instance;
}
public class diveceSourceData
{
public int currentPage;
public int pageSize;
public long buildingId;
public string deviceTypes;
public string sign;
public long timestamp;
}
12 months ago
public class diveceAlarmData
{
public int currentPage;
public int pageSize;
public long buildingId;
public string type;//fire fault type事件类型(fire=火警, fault=故障)
public string sign;
public long timestamp;
}
12 months ago
[Serializable]
public class PageInfoList<T>
{
public int? endRow { get; set; }
public bool? hasNextPage { get; set; }
public bool? hasPreviousPage { get; set; }
public bool? isFirstPage { get; set; }
public bool? isLastPage { get; set; }
/// <summary>
/// 数据
/// </summary>
public List<T> list { get; set; }
public int? navigateFirstPage { get; set; }
public int? navigateLastPage { get; set; }
public int? navigatePages { get; set; }
public List<int> navigatepageNums { get; set; }
public int? nextPage { get; set; }
public int? pageNum { get; set; }
public int? pageSize { get; set; }
public int? pages { get; set; }
public int? prePage { get; set; }
public int? size { get; set; }
public int? startRow { get; set; }
public int? total { get; set; }
}
[Serializable]
public class TotaDivecelInfo
{
/// <summary>
/// 状态码
/// </summary>
public int? code { get; set; }
/// <summary>
/// 数据
/// </summary>
public PageInfoList<DeviceList> data { get; set; }
/// <summary>
/// 消息
/// </summary>
public string message { get; set; }
}
[Serializable]
public class DeviceList
{
/// <summary>
/// 创建时间
/// </summary>
public string createTime { get; set; }
/// <summary>
/// 点位或者设备的位置描述
/// </summary>
public string descript { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string deviceName { get; set; }
/// <summary>
/// 设备唯一编号
/// </summary>
public string deviceNo { get; set; }
/// <summary>
/// 设备类型code(参照设备类型字典表)
/// </summary>
public int? deviceType { get; set; }
/// <summary>
/// 设备类型名称(参照设备类型字典表)
/// </summary>
public string deviceTypeName { get; set; }
/// <summary>
/// 楼层
/// </summary>
public string floor { get; set; }
/// <summary>
/// 编号
/// </summary>
public string id { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public string modifyTime { get; set; }
/// <summary>
/// 二级平台对应的项目id
/// </summary>
public string openProjectId { get; set; }
/// <summary>
/// 点位号
/// </summary>
public string pointNumber { get; set; }
/// <summary>
/// 数据提供者物联网的唯一标志id
/// </summary>
public string provideKey { get; set; }
/// <summary>
/// 状态
/// </summary>
public int? status { get; set; }
/// <summary>
/// 设备大类型名称
/// </summary>
public int? stype { get; set; }
/// <summary>
/// 设备大类型名称
/// </summary>
public string stypeName { get; set; }
/// <summary>
/// 系统id
/// </summary>
public string sysId { get; set; }
/// <summary>
/// 系统名称
/// </summary>
public string sysName { get; set; }
/// <summary>
/// 设备及时数据
/// </summary>
public object timelyData { get; set; }
/// <summary>
/// 防火/防烟分区
/// </summary>
public string zone { get; set; }
}
12 months ago
[Serializable]
public class TotaDivecelAlarmInfo
{
/// <summary>
/// 状态码
/// </summary>
public int? code { get; set; }
/// <summary>
/// 数据
/// </summary>
public PageInfoList<DeviceAlarmList> data { get; set; }
/// <summary>
/// 消息
/// </summary>
public string message { get; set; }
}
[Serializable]
public class DeviceAlarmList
{
public string alarmTime;
public string createTime;
public string descript;
public string deviceName;
public string deviceNo;
public int deviceType;
public string deviceTypeName;
public string handleAlarmTime;
public string handlePeople;
public string handlePhone;
public string id;
public string modifyTime;
public int state;
public int status;
}
12 months ago
#pragma warning restore IDE1006 // 命名样式
#endregion
//diviceid(136-用户信息传输装置, 258-消防水泵状态, 401-消防水箱水位,
//302-消防主管网压力, 305-消火栓末端压力, 256-喷淋泵, 301-喷淋主管网压力,
//304-喷淋末端压力, 451-正压送风机, 452-防火排烟风机, 453-补风机)
//manualAutomaticState 手自动状态(0 自动,1 手动) TRUE string
//powerState 电源状态(0 已上电,1 未上电) TRUE string
//faultStatus 故障信息(0 正常,1 故障) TRUE string
//startStopStatus 启停状态(0 停止,1 启动) TRUE string
public enum DeviceType
{
= 0,
= 258,//
= 256,//
= 401,//
= 305,//
= 304,//
= 301,//
= 302,//
= 451,
= 452,
= 453,
12 months ago
}
public class DevicePanelManager : MonoBehaviour
{
public static DevicePanelManager Instance;
public GameObject DeviceBindPrefab;
#region 对接数据相关
private string baseHttpUrl = "/api/iot/open/device/point/iot/data/device/list";
private diveceSourceData postData;
private const string key = "2f88b96ff4ac43b4bfbd2b5f99610a01";
private const string secret = "ccb53d34773a43069d17e2c6d3cfd0d1";
private int currentpage = 1;
private int pageSize = 100000;
private long buildId = 1162809597414907904;//凯德虹口商业中心--大型城市综合体
private long buildId1 = 1162809590251036672;//凯德虹口商业中心-超高层
//服务端获取全部数据
public List<KeyValuePair<DeviceType, List<DeviceList>>> AllData = new List<KeyValuePair<DeviceType, List<DeviceList>>>();
public DeviceType textType;
private bool getDataError = false;
private float timmer = 0;
12 months ago
#endregion
#region 本地数据绑定
public List<DeviceObjConfig> BindObjectList = new List<DeviceObjConfig>();
public DeviceObj NowClickObject;
public DeviceType NowType;
private string objId = "binddataid";
#region 创建绑定点位
public bool CanClone = false;
public DeviceType MenuType;
public LayerMask layerMask = -1;
private float DistanceY = 0;
public Transform CloneParent;
public GameObject ClonePrefab;
#endregion
12 months ago
#endregion
void Awake()
{
MessageDispatcher.AddListener("ConfigLoadOver", ConfigLoadOver);
12 months ago
Instance = this;
}
private void Start()
{
}
private void OnDestroy()
{
MessageDispatcher.RemoveListener("ConfigLoadOver", ConfigLoadOver);
}
private void ConfigLoadOver(IMessage obj)
12 months ago
{
LoadDeciceData();
LoadDeviceObjConfig();
}
public void RefreshAllData()
12 months ago
{
StopAllCoroutines();
LoadDeciceData();
12 months ago
}
public void RefreshData(string deviceNo)
{
StopAllCoroutines();
LoadDeciceData(deviceNo);
}
public DeviceList GetDeviceData(string deviceNo)
12 months ago
{
DeviceList data = null;
foreach (var item in AllData)
{
foreach (var value in item.Value)
{
if (value.deviceNo == deviceNo)
{
data = value;
break;
}
}
}
return data;
12 months ago
}
private void LoadDeciceData(string deviceNo = null)
12 months ago
{
if (deviceNo == null)
12 months ago
{
AllData.Clear();
foreach (DeviceType i in Enum.GetValues(typeof(DeviceType)))
{
if (i != DeviceType.)
{
KeyValuePair<DeviceType, List<DeviceList>> info = new KeyValuePair<DeviceType, List<DeviceList>>(
i, new List<DeviceList>());
AllData.Add(info);
}
}
12 months ago
}
foreach (var item in AllData)
12 months ago
{
int iType = (int)item.Key;
LoadDiviceData(buildId, iType.ToString(), item.Key, deviceNo);
LoadDiviceData(buildId1, iType.ToString(), item.Key, deviceNo);
12 months ago
}
}
private void LateUpdate()
{
//if (Input.GetKeyDown(KeyCode.T))
//{
// ShowBindList(textType);
//}
if (Input.GetKey(KeyCode.Q))
{
if (Input.GetKeyDown(KeyCode.P))
{
CanClone = true;
}
if (Input.GetKeyDown(KeyCode.S))
{
DeviceObjManager.Instance.SaveObjs();
}
}
if (CanClone)
12 months ago
{
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
if (Physics.Raycast(ray, out RaycastHit hit, Mathf.Infinity, layerMask))
{
if (!EventSystem.current.IsPointerOverGameObject())
{
int floorid = GetFloorId(hit.transform);
if (Input.GetMouseButtonDown(0) && floorid != 0)
{
CreatePoint(hit.point, floorid);
}
}
if (Input.GetMouseButtonDown(1))
{
CanClone = false;
}
}
12 months ago
}
if (getDataError == true)
{
timmer += Time.deltaTime;
if (timmer >= 60)
{
timmer = 0;
getDataError = false;
RefreshAllData();
Debug.LogWarning("从对方服务器获取数据错误!");
}
}
}
private int GetFloorId(Transform obj)
{
if (obj.GetComponent<InstantiateData>())
{
return obj.GetComponent<InstantiateData>().floorId;
}
else
{
if (obj.parent != null)
{
foreach (Transform child in obj.parent)
{
if (child.GetComponent<InstantiateData>())
{
return child.GetComponent<InstantiateData>().floorId;
}
}
}
if (obj.parent.parent != null)
{
foreach (Transform child in obj.parent.parent)
{
if (child.GetComponent<InstantiateData>())
{
return child.GetComponent<InstantiateData>().floorId;
}
}
}
return 0;
}
}
private void CreatePoint(Vector3 position, int floorId)
{
var pos = new Vector3(position.x, position.y + DistanceY, position.z);
var go = Instantiate(ClonePrefab, pos, Quaternion.identity, CloneParent);
go.name = $"{MenuType}{AX.Network.Common.GUID.NewGuid()}";
if (go.GetComponent<DeviceObj>())
{
go.GetComponent<DeviceObj>().CreateIcon(MenuType, floorId);
}
SelectionManager.Instance.Sets.Add(go);
}
public void ShowBindList(DeviceType type)
{
StopAllCoroutines();
MenuType = type;
NowClickObject = null;
NowType = type;
if (type != DeviceType.)
12 months ago
{
List<DeviceList> infoList = new List<DeviceList>();
foreach (var item in AllData)
{
if (item.Key == type)
{
foreach (var value in item.Value)
{
infoList.Add(value);
}
break;
}
}
BindDeviceList(type, infoList);
12 months ago
}
else
12 months ago
{
foreach (Transform item in transform)
{
item.gameObject.SetActive(false);
}
12 months ago
}
}
public void ShowBindList(DeviceType type, DeviceObj selectObject)
{
NowClickObject = selectObject;
NowType = type;
if (type != DeviceType.)
12 months ago
{
List<DeviceList> infoList = new List<DeviceList>();
foreach (var item in AllData)
{
if (item.Key == type)
{
foreach (var value in item.Value)
{
infoList.Add(value);
}
break;
}
}
BindDeviceList(type, infoList);
12 months ago
}
else
{
foreach (Transform item in transform)
{
item.gameObject.SetActive(false);
}
}
}
private void BindDeviceList(DeviceType type, List<DeviceList> bindData)
12 months ago
{
bool has = false;
foreach (Transform item in transform)
{
if (item.GetComponent<DeviceBind>() && item.GetComponent<DeviceBind>().BindType == type)
{
item.GetComponent<DeviceBind>().DataBind(type, bindData, null == NowClickObject ? null : NowClickObject.name);
12 months ago
has = true;
}
else
{
item.gameObject.SetActive(false);
}
}
if (!has)
{
var go = Instantiate(DeviceBindPrefab, transform);
go.name = type.ToString();
go.GetComponent<DeviceBind>().DataBind(type, bindData, null == NowClickObject ? null : NowClickObject.name);
12 months ago
}
}
private void LoadDiviceData(long buildId, string diviceId, DeviceType type, string deviceNo = null)
12 months ago
{
using (MD5 md5Hash = MD5.Create())
{
postData = new diveceSourceData();
postData.currentPage = currentpage;
postData.pageSize = pageSize;
postData.buildingId = buildId;
postData.deviceTypes = diviceId;
postData.timestamp = DateTime.Now.Ticks / 10000;
string signstr = $"buildingId={postData.buildingId}&currentPage={postData.currentPage}" +
$"&deviceTypes={postData.deviceTypes}&pageSize={postData.pageSize}" +
$"&timestamp={postData.timestamp}&secret={secret}";
byte[] signbyte = Encoding.UTF8.GetBytes(signstr);
byte[] signmdbyte = md5Hash.ComputeHash(signbyte);
string StrResult = BitConverter.ToString(signmdbyte);
StrResult = StrResult.Replace("-", "").ToLower();
postData.sign = StrResult;
//Debug.Log($"sign is:" + postData.sign);
if (Application.platform == RuntimePlatform.WebGLPlayer)
{
Post<diveceSourceData, TotaDivecelInfo>($"{baseHttpUrl}?appKey={key}", postData, (d) =>
{
//Debug.Log(d.code);
if (d.code != 200)
{
getDataError = true;
return;
}
if (deviceNo == null)
12 months ago
{
foreach (var item in d.data.list)
12 months ago
{
foreach (var data in AllData)
{
if (data.Key == type)
{
data.Value.Add(item);
}
}
12 months ago
}
}
else
{
foreach (var item in d.data.list)
{
if (item.deviceNo == deviceNo)
{
foreach (var data in AllData)
{
if (data.Key == type)
{
for (int i = 0; i < data.Value.Count; i++)
{
if (data.Value[i].deviceNo == deviceNo)
{
data.Value[i] = item;
Debug.Log("数据刷新成功!");
break;
}
}
}
}
}
}
}
12 months ago
}, (a, b) =>
{
Debug.LogError(a + b);
getDataError = true;
12 months ago
});
}
else
{
PostJson<diveceSourceData, TotaDivecelInfo>($"?appKey={key}", postData, (d) =>
{
//Debug.Log(d.code);
if (d.code != 200)
{
getDataError = true;
return;
}
if (deviceNo == null)
{
foreach (var item in d.data.list)
{
foreach (var data in AllData)
{
if (data.Key == type)
{
data.Value.Add(item);
}
}
}
}
else
12 months ago
{
foreach (var item in d.data.list)
12 months ago
{
if (item.deviceNo == deviceNo)
{
foreach (var data in AllData)
{
if (data.Key == type)
{
for (int i = 0; i < data.Value.Count; i++)
{
if (data.Value[i].deviceNo == deviceNo)
{
data.Value[i] = item;
Debug.Log("数据刷新成功!");
break;
}
}
}
}
}
12 months ago
}
}
}, (a, b) =>
{
Debug.LogError(a + b);
getDataError = true;
12 months ago
});
}
}
}
public void Post<Tin, Tout>(string url, Tin obj, Action<Tout> action = null, Action<int, string> error = null)
{
StartCoroutine(PostCoroutine(url, obj, action, error));
Debug.Log("web gl");
}
private IEnumerator PostCoroutine<Tin, Tout>(string url, Tin obj, Action<Tout> action = null, Action<int, string> error = null)
{
string jsonParam = JsonConvert.SerializeObject(obj);
byte[] body = Encoding.UTF8.GetBytes(jsonParam);
UnityWebRequest uwr = new UnityWebRequest(url, "POST");
uwr.uploadHandler = new UploadHandlerRaw(body);
uwr.SetRequestHeader("Content-Type", "application/json;charset=utf-8");
uwr.SetRequestHeader("dev", "open_service");
DownloadHandler downloadHandler = new DownloadHandlerBuffer();
uwr.downloadHandler = downloadHandler;
yield return uwr.SendWebRequest();
if (uwr.isHttpError || uwr.isNetworkError)
{
Debug.Log(uwr.error);
error?.Invoke((int)uwr.responseCode, uwr.error);
}
else
{
Debug.Log(uwr.downloadHandler.text);
Tout result = JsonConvert.DeserializeObject<Tout>(uwr.downloadHandler.text);
action?.Invoke(result);
}
}
/// <summary>
/// 提交json数据
/// </summary>
/// <typeparam name="TIn">提交数据类型</typeparam>
/// <typeparam name="TOut">返回数据类型</typeparam>
/// <param name="apiUrl">API URL</param>
/// <param name="data">提交数据</param>
/// <param name="success">请求成功回调</param>
/// <param name="error">请求错误回调</param>
public void PostJson<TIn, TOut>(string apiUrl, TIn data, Action<TOut> success, Action<int, string> error = null)
{
Debug.Log("windows");
if (string.IsNullOrEmpty(apiUrl))
{
throw new ArgumentNullException($"API URL:{apiUrl}无效!");
}
string str = "http://39.108.36.226:81";
Debug.Log("httpUrl is :" + str + baseHttpUrl + apiUrl);
var url = new Uri(str + baseHttpUrl + apiUrl);
HTTPRequest request = new HTTPRequest(url, HTTPMethods.Post, (req, resp) =>
{
Debug.Log(url.Host + url.Port);
switch (req.State)
{
case HTTPRequestStates.Finished:
if (resp.IsSuccess)
{
TOut result = JsonConvert.DeserializeObject<TOut>(resp.DataAsText);
success?.Invoke(result);
}
else
{
Debug.LogWarning(string.Format("Request finished Successfully, but the server sent an error. Status Code: {0}-{1} Message: {2}",
resp.StatusCode,
resp.Message,
resp.DataAsText));
error?.Invoke(resp.StatusCode, JsonConvert.DeserializeObject<ProblemDetails>(resp.DataAsText).detail);
}
break;
case HTTPRequestStates.Error:
Debug.LogError("Request Finished with Error! " + (req.Exception != null ? (req.Exception.Message + "\n" + req.Exception.StackTrace) : "No Exception"));
error?.Invoke((int)HTTPRequestStates.Error, "Request Finished with Error!");
break;
case HTTPRequestStates.Aborted:
Debug.LogWarning("Request Aborted!");
error?.Invoke((int)HTTPRequestStates.Aborted, "Request Aborted!");
break;
case HTTPRequestStates.ConnectionTimedOut:
Debug.LogError("Connection Timed Out!");
error?.Invoke((int)HTTPRequestStates.ConnectionTimedOut, "Connection Timed Out!");
break;
case HTTPRequestStates.TimedOut:
Debug.LogError("Processing the request Timed Out!");
error?.Invoke((int)HTTPRequestStates.TimedOut, "Processing the request Timed Out!");
break;
}
});
//request.SetHeader("Authorization", "Bearer " + identityInfo.token);
request.SetHeader("Content-Type", "application/json; charset=UTF-8");
request.SetHeader("dev", "open_service");
string json = JsonConvert.SerializeObject(data);
request.RawData = Encoding.UTF8.GetBytes(json);
request.Send();
}
private void LoadDeviceObjConfig()
{
try
{
string url = string.Format(HttpManager.Instance.GetOilTankById, objId);
12 months ago
Debug.Log($"the url is :{ url}");
if (Application.platform == RuntimePlatform.WebGLPlayer)
{
url = url.Substring(url.IndexOf("api") - 1);
}
HttpManager.Instance.Get<string>(url, d =>
{
//Debug.Log("aaaaaaaaaaaaaaaaaaaaaa:" + d);
12 months ago
BindObjectList = JsonConvert.DeserializeObject<List<DeviceObjConfig>>(d);
});
}
catch
{
Debug.LogError("暂无数据!");
12 months ago
}
}
public void SaveDeviceObjConfig(DeviceObjConfig config)
{
bool has = false;
foreach (var item in BindObjectList)
{
if (item.DeviceId == config.DeviceId)
{
item.ObjName = config.ObjName;
has = true;
break;
}
}
if (!has)
{
BindObjectList.Add(config);
}
string bindName = "";
foreach (Transform ts in DeviceObjManager.Instance.transform)
{
if (ts.name == config.ObjName)
{
bindName = ts.name;
break;
}
}
if (!string.IsNullOrEmpty(bindName))
{
DeviceObjManager.Instance.AddObj(bindName);
}
12 months ago
var json = JsonConvert.SerializeObject(BindObjectList);
string url = string.Format(HttpManager.Instance.PostIOilTankById, objId);
12 months ago
if (Application.platform == RuntimePlatform.WebGLPlayer)
{
url = url.Substring(url.IndexOf("api") - 1);
}
HttpManager.Instance.Post(url, json, () =>
{
ShowBindList(NowType, NowClickObject);
});
}
public void SaveDeviceObjConfig()
{
var json = JsonConvert.SerializeObject(BindObjectList);
string url = string.Format(HttpManager.Instance.PostIOilTankById, objId);
if (Application.platform == RuntimePlatform.WebGLPlayer)
{
url = url.Substring(url.IndexOf("api") - 1);
}
HttpManager.Instance.Post(url, json, () =>
{
Debug.Log("保存成功!");
});
}
12 months ago
}