123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- using LitJson;
- using login;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Text;
- using UnityEngine;
- using UnityEngine.Android;
- using uPLibrary.Networking.M2Mqtt.Messages;
- using static QTTManager;
- public class MQTTClient : MonoSingleton<MQTTClient>
- {
-
-
-
-
- public string rid = "mqttx_b4c02ddc";
-
-
-
-
-
-
-
-
- public event Action<JsonData> OnCoordinate;
- public static byte[] bytes;
-
-
- QTTManager qt;
-
- void Start()
- {
-
- if (!Permission.HasUserAuthorizedPermission(Permission.ExternalStorageRead) ||
- !Permission.HasUserAuthorizedPermission(Permission.ExternalStorageWrite))
- {
- Permission.RequestUserPermission(Permission.ExternalStorageRead);
- Permission.RequestUserPermission(Permission.ExternalStorageWrite);
- }
- bytes = (Resources.Load("emqxsl-ca") as TextAsset).bytes;
- Debug.Log(" DGJ ===> emqxsl-ca.bytes " + bytes.Length);
- }
- Queue<MqttMsgPublishEventArgs> rlist = new Queue<MqttMsgPublishEventArgs>();
- private void OnReceived(MqttMsgPublishEventArgs obj)
- {
- rlist.Enqueue(obj);
- }
- private void OnConnecting()
- {
- Debug.Log("MQtt 连接中");
- }
- private void onSucceed()
- {
-
-
- Subscribe(MQTTManager.Instance.front + "personnel/" + MQTTManager.Instance.resourcePoolId);
- Subscribe(MQTTManager.Instance.front + "online/" + MQTTManager.Instance.id);
- }
- private void onFaild()
- {
- Debug.Log("MQtt 连接失败");
- }
-
- void Update()
- {
- if (rlist.Count > 0)
- {
- for (int i = 0; i < rlist.Count; i++)
- {
- OnUnityReceived(rlist.Dequeue());
- }
- }
- }
-
- public void OnUnityReceived(MqttMsgPublishEventArgs obj)
- {
- string msg = Encoding.UTF8.GetString(obj.Message);
- Debug.Log("uid => " + obj.Topic + ":\n" + msg);
-
- MQTTManager.Instance.Received(msg);
- }
- private void OnDestroy()
- {
- DisConnect();
- }
-
- public void Connect()
- {
-
-
-
-
-
-
-
-
-
-
-
-
- DisConnect();
-
- qt.ConnectionFailed += onFaild;
- qt.ConnectionSucceeded += onSucceed;
- qt.OnConnecting += OnConnecting;
- qt.OnReceived += OnReceived;
- qt.OnClose += OnClose;
- qt.Connect();
- StartCoroutine(Reconnection());
-
- }
- private void OnClose(EventArgs obj)
- {
- Debug.Log("断开连接");
- }
- private IEnumerator Reconnection()
- {
- while (true)
- {
- yield return new WaitForSeconds(5);
- if (qt != null && !qt.IsConnect())
- {
- Debug.Log(" DGJ ===> Reconnection ");
- Connect();
- }
- }
- }
-
- public void DisConnect()
- {
- if (qt != null && qt.IsConnect())
- qt.DisConnect();
- }
-
-
-
-
- public void Subscribe(string channelID)
- {
- Debug.Log(" DGJ =====> Subscribe " + channelID);
- if (qt != null && qt.IsConnect())
- {
- ushort s = qt.Subscribe(
- new string[]
- {
- channelID
-
- },
- new byte[]
- {
- MqttMsgBase.QOS_LEVEL_AT_MOST_ONCE,
-
- });
- Debug.Log(" DGJ =====> Subscribe2");
- }
- else
- Debug.LogError(" MQTT 未连接 !!!");
- }
- public void UnSubscribe(string channelID)
- {
- if (qt != null && qt.IsConnect())
- {
- ushort s = qt.Unsubscribe(new string[] { channelID });
- }
- }
- public void StartSendCameraPos()
- {
- StartCoroutine(sendCameraPos());
- }
-
- IEnumerator sendCameraPos()
- {
- Debug.Log("DGJ =====> sendCameraPos" + qt.IsConnect());
- while (true)
- {
- yield return new WaitForSeconds(1f);
- if (qt != null && qt.IsConnect())
- {
- JsonData json = new JsonData();
- json["type"] = "CamPos";
-
-
-
-
-
-
- json["Sid"] = "sid";
- publish(Encoding.UTF8.GetBytes(json.ToJson()));
- }
- }
- }
-
- public void sendActiveSp(string spid, bool isOpen)
- {
- JsonData json = new JsonData();
- json["type"] = "ActiveSp";
- json["Sid"] = "sid";
- json["spid"] = spid;
- json["isOpen"] = isOpen;
- publish(Encoding.UTF8.GetBytes(json.ToJson()));
- Debug.Log("MQtt 发送manage");
- }
-
- public void sendActiveVideo(string spid, string videoId, bool isplay, float jindu)
- {
- JsonData json = new JsonData();
- json["type"] = "ActiveVideo";
- json["Sid"] = "sid";
- json["spid"] = spid;
- json["videoId"] = videoId;
- json["isplay"] = isplay;
- json["jindu"] = jindu;
- publish(Encoding.UTF8.GetBytes(json.ToJson()));
- Debug.Log("MQtt 发送manage");
- }
- public void SendCoord()
- {
- JsonData json = new JsonData();
- json["id"] = UserInfo.Instance.name;
- json["type"] = "Coord";
- json["x"] = 0.1f;
- json["y"] = 0.1f;
- json["z"] = 0.1f;
- }
- public void publish(byte[] bs)
- {
- if (qt != null && qt.IsConnect())
- {
-
-
- }
- else
- {
- Debug.LogError(" MQTT 未连接 ");
- }
- }
- public void publish(string channelID, byte[] bs)
- {
- if (qt != null && qt.IsConnect())
- {
- Debug.Log(MQTTManager.Instance.clientId + MQTTManager.Instance.account + " DGJ publish =====> " + channelID + " " + bs.Length);
- qt.Publish(channelID, bs, MqttMsgBase.QOS_LEVEL_EXACTLY_ONCE, false);
- }
- else
- {
- Debug.LogError(" MQTT 未连接 ");
- }
- }
- }
|