123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- using LitJson;
- using Newtonsoft.Json;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- using UnityEngine;
- using UnityEngine.Networking;
- public class DownLoadItem : MonoBehaviour
- {
- public delegate void DownLoadCallBack(bool b);
- public delegate void DownLoadPressOn(float f);
-
- public DownLoadCallBack callback;
-
- public DownLoadPressOn onProgress;
-
- public string id;
-
-
-
- public string downLoadPath;
-
-
-
- public bool isDownLoad;
-
-
-
- public byte[] downLoadData;
- public object downLoadObject;
- public ModelType type;
-
-
-
- public float progress;
-
-
-
- public string downLoadState;
-
- public bool isAction;
- public long updateTime;
- private UnityWebRequest webRequest;
- public void Init(string downLoadPath,string id,ModelType type,long updateTime)
- {
- this.downLoadPath = downLoadPath;
- this.id = id;
- this.type = type;
- this.updateTime = updateTime;
- LoadManager.Instance.downloadQueueList.Enqueue(this);
- }
- public System.Collections.IEnumerator DownloadFile()
- {
- string url = HttpAction.Instance.baseurl + HttpAction.file_download;
- if (UserInfo.Instance.is20)
- {
- url = HttpAction.Instance.baseurl20 + HttpAction.file_download;
- }
- Debug.Log(" 当前下载>>>> " + url + " " + downLoadPath);
- using (webRequest = new UnityWebRequest(url, UnityWebRequest.kHttpVerbPOST))
- {
- SendMaterials sendImage = new SendMaterials();
- sendImage.url = downLoadPath;
- string jsonString = JsonConvert.SerializeObject(sendImage);
- Debug.Log("body :" + jsonString);
- Debug.Log("Token :" + UserInfo.Instance.Token);
- byte[] bodyRaw = Encoding.UTF8.GetBytes(jsonString);
- webRequest.uploadHandler = (UploadHandler)new UploadHandlerRaw(bodyRaw);
-
-
- webRequest.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- webRequest.SetRequestHeader("authorization", UserInfo.Instance.Token);
- webRequest.SetRequestHeader("Content-Type", "application/json");
- yield return webRequest.SendWebRequest();
- while (!webRequest.isDone)
- {
-
- progress = webRequest.downloadProgress;
- onProgress?.Invoke(progress);
-
- yield return new WaitForFixedUpdate();
- }
- if (webRequest.isHttpError || webRequest.isNetworkError)
- {
- Debug.LogError("Download Failed: " + webRequest.error);
-
- downLoadState = webRequest.error;
- isDownLoad = false;
- }
- else
- {
- Debug.Log(webRequest.isDone + " " + webRequest.downloadHandler.data.Length);
-
-
- downLoadData = webRequest.downloadHandler.data;
- isDownLoad = true;
- downLoadState = "下载成功";
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- callback?.Invoke(isDownLoad);
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- public void DownloadFileMsg()
- {
- Debug.Log("查询需要下载的updateTime"+updateTime);
- MsgHandler.AddListener(downLoadPath, HandleMsg);
- DownLoadMaterial data = new DownLoadMaterial();
- data.downLoadPath = downLoadPath;
- data.localLoadPath = Application.persistentDataPath + "/Material/" + Path.GetFileName(downLoadPath);
- if(type == ModelType.vuforial)
- data.localLoadPath = Application.persistentDataPath + "/StreamingAssets/Vuforia/GHZVuforia." + downLoadPath.Split('.')[1];
-
- data.type = ((int)type).ToString();
-
- Debug.LogError("DownloadFileMsg");
- DownloadResManager.Instance.DownLoad(data);
- }
- private void HandleMsg(Msg msg)
- {
- if (msg.Value != null)
- {
- downLoadData = (byte[])msg.Value;
- isDownLoad = true;
- downLoadState = "下载成功";
- }
- else
- {
- isDownLoad = true;
- downLoadState = "下载失败";
- }
- callback?.Invoke(isDownLoad);
- MsgHandler.RemoveListener(Application.persistentDataPath + "" + downLoadPath, HandleMsg);
- }
- Dictionary<string, string> requestHeader = new Dictionary<string, string>();
- public void initHead()
- {
- requestHeader.Clear();
- if (UserInfo.Instance.Token != "" && UserInfo.Instance.Token != null)
- {
-
- Debug.Log("ADD Token");
- requestHeader.Add("authorization", UserInfo.Instance.Token);
- }
- requestHeader.Add("Content-Type", "application/json");
- }
- private void OnDestroy()
- {
-
- if (webRequest != null && !webRequest.isDone)
- {
- webRequest.Abort();
- }
- }
- }
|