yyl
昨天 5d3366f2e0f687995eb7ad2107c4379fe7acd4e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using System;
using System.Collections.Generic;
using System.IO;
using UnityEngine;
 
public class CheckAssetValidTask : LaunchTask
{
    public override float expectTime
    {
        get { return LocalSave.GetFloat("CheckAssetValidTask_ExpectTime", 3f); }
        protected set { LocalSave.SetFloat("CheckAssetValidTask_ExpectTime", value); }
    }
 
    public override void Begin()
    {
        LaunchInHot.m_CurrentStage = LaunchStage.CheckAsset;
        duration = Mathf.Max(0.5f, expectTime);
 
        ServerListCenter.Instance.RequestJumpUrl();
 
        // TODO YYL
        // OperationLogCollect.Instance.RecordLauchEvent(2);
        // OperationLogCollect.Instance.RecordEvent(2);
 
        if (VersionUtility.Instance.NeedDownAsset())
        {
            var remoteURL = StringUtility.Contact(VersionUtility.Instance.versionInfo.GetResourcesURL(VersionConfig.Get().branch), Language.fixPath, "/config/PriorBundle.txt");
            var localURL = StringUtility.Contact(ResourcesPath.Instance.ExternalStorePath, "config/PriorBundle.txt");
            var downloadTask = new DownloadTask(remoteURL, localURL);
            downloadTask.BeginDownload(AssetVersionUtility.OnDownLoadPriorBundle);
 
            //AssetVersionUtility.GetAssetVersionFile();
            done = false;
            progress = 0f;
        }
        else
        {
            //if (Application.isEditor)
            //    PatchLoader.InitLocalPatchAsset();
            done = true;
        }
    }
 
    public override void End()
    {
        expectTime = timer;
        Debug.LogFormat("{0}执行时长:{1};", this.GetType().Name, timer);
 
        GameNotice.OpenGameNotice();
    }
 
    public override void Update()
    {
        if (done)
        {
            return;
        }
 
        timer += Time.deltaTime;
        if (!AssetVersionUtility.checkAssetCompleted)
        {
            done = false;
            progress = timer / expectTime;
        }
        else
        {
            done = true;
        }
 
        ExceptionReport();
    }
}