123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- using LitJson;
- 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>
- {
- string front = "client/";
- string id = "";
- string username = "u@unity3";
- string password = null;
- string rid = "mqttx_b4c02ddc";
- 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();
- }
- 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);
- try
- {
- JsonData data = JsonMapper.ToObject(msg);
- Debug.Log(" DGJ === > " + data["type"].ToString());
- switch (data["type"].ToString())
- {
- case "CamPos":
- Debug.Log("DGJ ===> CamPos");
-
- MultiPlayerManager.Instance.ReceivedCamPos(obj.Topic, data);
- break;
- case "ActiveSp":
-
- MultiPlayerManager.Instance.ReceivedActiveSp( data);
- break;
- case "ActiveVideo":
-
- MultiPlayerManager.Instance.ReceivedActiveVideo(data);
- break;
- default:
- break;
- }
- }
- catch
- {
- return;
- }
- }
- private void OnDestroy()
- {
- DisConnect();
- }
- public void SetUserName(string username)
- {
- if (username != null)
- this.username = username;
- }
- public void SetFront(string front)
- {
- if (front != null)
- this.front = front;
- }
-
- public void Connect()
- {
-
- Debug.Log("DGJ ===> MQTT ");
- if (DeviceType.type == "Phone")
- {
- id =UserInfo.Instance.Account + "_Phone";
- rid = front+UserInfo.Instance.Account + "_Glasses";
- }
- else
- {
- id = UserInfo.Instance.Account + "_Glasses";
- rid = front+UserInfo.Instance.Account + "_Phone";
- }
- DisConnect();
- qt = new QTTManager(front+id, username, password, HttpAction.Instance.mqtturl, HttpAction.Instance.officeport);
- qt.Connect();
- StartCoroutine(Reconnection());
- qt.ConnectionFailed += onFaild;
- qt.ConnectionSucceeded += onSucceed;
- qt.OnConnecting += OnConnecting;
- qt.OnReceived += OnReceived;
- qt.OnClose += OnClose;
- }
- 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()
- {
- Debug.Log(" DGJ =====> Subscribe "+ id);
- ushort s = qt.Subscribe(
- new string[]
- {
- front+id
- },
- new byte[]
- {
-
- MqttMsgBase.QOS_LEVEL_EXACTLY_ONCE
- });
- Debug.Log(" DGJ =====> Subscribe2");
-
- }
- public void StartSendCameraPos()
- {
- StartCoroutine(sendCameraPos());
- }
-
- IEnumerator sendCameraPos()
- {
- Debug.Log("DGJ =====> sendCameraPos" + qt.IsConnect());
- while (true)
- {
- if(qt!=null&& qt.IsConnect())
- {
- JsonData json = new JsonData();
- json["type"] = "CamPos";
-
-
-
- json["x"] = GameManager.Instance.Player.transform.localPosition.x;
- json["y"] = GameManager.Instance.Player.transform.localPosition.y;
- json["z"] = GameManager.Instance.Player.transform.localPosition.z;
- json["Sid"] = "sid";
- publish(Encoding.UTF8.GetBytes(json.ToJson()));
- }
-
- yield return new WaitForSeconds(0.1f);
- }
- }
-
- 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");
- }
- void publish(byte[] bs)
- {
- if(qt!=null&& qt.IsConnect())
- {
- Debug.Log(id + " DGJ publish =====> " + front+rid + " " + bs.Length);
- qt.Publish(rid, bs, MqttMsgBase.QOS_LEVEL_EXACTLY_ONCE, false);
- }
- else
- {
- Debug.LogError(" MQTT 未连接 ");
- }
-
- }
- }
|