using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Networking; public class UnityNetworkManager : MonoBehaviour { private static UnityNetworkManager instance; public static UnityNetworkManager Instance { get { if (instance == null) { GameObject NetworkManager = new GameObject("UnityNetworkManager"); instance = NetworkManager.AddComponent(); } return instance; } } /** UnityWebRequest uwr = new UnityWebRequest(); uwr.url = "http://www.mysite.com"; uwr.method = UnityWebRequest.kHttpVerbGET; // can be set to any custom method, common constants privided uwr.useHttpContinue = false; uwr.chunkedTransfer = false; uwr.redirectLimit = 0; // disable redirects uwr.timeout = 60; // don't make this small, web requests do take some time **/ /// /// GET请求 /// /// /// public void Get(string url, Action actionResult) { StartCoroutine(_Get(url, actionResult)); } /// /// 请求byte数据 /// /// /// 请求发起后处理回调结果的委托,处理请求结果的byte数组 /// public void GetBytes(string url, Action actionResult) { StartCoroutine(_GetBytes(url, actionResult)); } /// /// 请求图片 /// /// 图片地址,like 'http://www.my-server.com/image.png ' /// 请求发起后处理回调结果的委托,处理请求结果的图片 /// public void GetTexture(string url, Action actionResult) { StartCoroutine(_GetTexture(url, actionResult)); } /// /// 请求AssetBundle /// /// AssetBundle地址,like 'http://www.my-server.com/myData.unity3d' /// 请求发起后处理回调结果的委托,处理请求结果的AssetBundle /// public void GetAssetBundle(string url, Action actionResult) { StartCoroutine(_GetAssetBundle(url, actionResult)); } /// /// 请求服务器地址上的音效 /// /// 没有音效地址,like 'http://myserver.com/mysound.wav' /// 请求发起后处理回调结果的委托,处理请求结果的AudioClip /// 音效类型 /// public void GetAudioClip(string url, Action actionResult, AudioType audioType = AudioType.WAV) { StartCoroutine(_GetAudioClip(url, actionResult, audioType)); } /// /// 向服务器提交post请求 /// /// 服务器请求目标地址,like "http://www.my-server.com/myform" /// form表单参数 /// 处理返回结果的委托,处理请求对象 /// public void Post(string serverURL, List lstformData, Action actionResult) { //List formData = new List(); //formData.Add(new MultipartFormDataSection("field1=foo&field2=bar")); //formData.Add(new MultipartFormFileSection("my file data", "myfile.txt")); StartCoroutine(_Post(serverURL, lstformData, actionResult)); } /// /// 通过PUT方式将字节流传到服务器 /// /// 服务器目标地址 like 'http://www.my-server.com/upload' /// 需要上传的字节流 /// 处理返回结果的委托 /// public void UploadByPut(string url, byte[] contentBytes, Action actionResult) { StartCoroutine(_UploadByPut(url, contentBytes, actionResult, "")); } /// /// GET请求 /// /// 请求地址,like 'http://www.my-server.com/ ' /// 请求发起后处理回调结果的委托 /// IEnumerator _Get(string url, Action actionResult) { using (UnityWebRequest uwr = UnityWebRequest.Get(url)) { //yield return uwr.SendWebRequest(); yield return uwr.SendWebRequest(); string text = ""; if (!(uwr.isNetworkError || uwr.isHttpError)) { text = uwr.downloadHandler.text; } else { text = uwr.error; } if (actionResult != null) { actionResult.Invoke(uwr.isHttpError, text); } } } /// /// 请求图片 /// /// /// 请求发起后处理回调结果的委托,处理请求结果的byte数组 /// IEnumerator _GetBytes(string url, Action actionResult) { using (UnityWebRequest uwr = new UnityWebRequest(url)) { DownloadHandlerFile downloadFile = new DownloadHandlerFile(url); uwr.downloadHandler = downloadFile; yield return uwr.SendWebRequest(); byte[] bytes = null; string text = null; if (!(uwr.isNetworkError || uwr.isHttpError)) { bytes = downloadFile.data; } else { text = uwr.error; } if (actionResult != null) { actionResult.Invoke((uwr.isNetworkError || uwr.isHttpError), text, bytes); } } } /// /// 请求图片 /// /// 图片地址,like 'http://www.my-server.com/image.png ' /// 请求发起后处理回调结果的委托,处理请求结果的图片 /// IEnumerator _GetTexture(string url, Action actionResult) { using (UnityWebRequest uwr = new UnityWebRequest(url)) { DownloadHandlerTexture downloadTexture = new DownloadHandlerTexture(true); uwr.downloadHandler = downloadTexture; yield return uwr.SendWebRequest(); Texture2D texture = null; string text = null; if (!(uwr.isNetworkError || uwr.isHttpError)) { texture = downloadTexture.texture; } else { text = uwr.error; } if (actionResult != null) { actionResult.Invoke((uwr.isNetworkError || uwr.isHttpError), text, texture); } } } /// /// 请求AssetBundle /// /// AssetBundle地址,like 'http://www.my-server.com/myData.unity3d' /// 请求发起后处理回调结果的委托,处理请求结果的AssetBundle /// IEnumerator _GetAssetBundle(string url, Action actionResult) { using (UnityWebRequest uwr = new UnityWebRequest(url)) { DownloadHandlerAssetBundle downloadAssetBundle = new DownloadHandlerAssetBundle(uwr.url, uint.MaxValue); uwr.downloadHandler = downloadAssetBundle; yield return uwr.SendWebRequest(); AssetBundle assetBundle = null; string text = null; if (!(uwr.isNetworkError || uwr.isHttpError)) { assetBundle = downloadAssetBundle.assetBundle; } else { text = uwr.error; } if (actionResult != null) { actionResult.Invoke((uwr.isNetworkError || uwr.isHttpError), text, assetBundle); } } } /// /// 请求服务器地址上的音效 /// /// 没有音频地址,like 'http://myserver.com/mymovie.mp3' /// 请求发起后处理回调结果的委托,处理请求结果的MovieTexture /// 音效类型 /// IEnumerator _GetAudioClip(string url, Action actionResult, AudioType audioType = AudioType.WAV) { using (UnityWebRequest uwr = new UnityWebRequest(url)) { DownloadHandlerAudioClip downloadAudioClip = new DownloadHandlerAudioClip(url, AudioType.WAV); uwr.downloadHandler = downloadAudioClip; yield return uwr.SendWebRequest(); AudioClip audioClip = null; string text = null; if (!(uwr.isNetworkError || uwr.isHttpError)) { audioClip = downloadAudioClip.audioClip; } else { text = uwr.error; } if (actionResult != null) { actionResult.Invoke((uwr.isNetworkError || uwr.isHttpError), text, audioClip); } } } /// /// 向服务器提交post请求 /// /// 服务器请求目标地址,like "http://www.my-server.com/myform" /// form表单参数 /// 处理返回结果的委托 /// IEnumerator _Post(string url, List lstformData, Action actionResult) { //List formData = new List(); //formData.Add(new MultipartFormDataSection("field1=foo&field2=bar")); //formData.Add(new MultipartFormFileSection("my file data", "myfile.txt")); using (UnityWebRequest uwr = UnityWebRequest.Post(url, lstformData)) { yield return uwr.SendWebRequest(); string text = ""; if (!(uwr.isNetworkError || uwr.isHttpError)) { text = uwr.downloadHandler.text; } else { text = uwr.error; } if (actionResult != null) { actionResult.Invoke(uwr.isHttpError, text); } } } /// /// 通过PUT方式将字节流传到服务器 /// /// 服务器目标地址 like 'http://www.my-server.com/upload' /// 需要上传的字节流 /// 处理返回结果的委托 /// 设置header文件中的Content-Type属性 /// IEnumerator _UploadByPut(string url, byte[] contentBytes, Action actionResult, string contentType = "application/octet-stream") { using (UnityWebRequest uwr = new UnityWebRequest()) { UploadHandler uploader = new UploadHandlerRaw(contentBytes); // Sends header: "Content-Type: custom/content-type"; uploader.contentType = contentType; uwr.uploadHandler = uploader; yield return uwr.SendWebRequest(); bool res = true; if (!(uwr.isNetworkError || uwr.isHttpError)) { res = false; } if (actionResult != null) { actionResult.Invoke(res); } } } }