少年修仙传客户端代码仓库
client_linchunjie
2019-04-17 f1f2599ba0e6b64358ffef7ae5c9f9af3ed8b8b4
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
using System.Collections;
using System.Collections.Generic;
using System;
using UnityEngine;
using System.IO;
using Snxxz.UI;
using System.Threading;
 
 
[XLua.LuaCallCSharp]
public class AssetVersionUtility
{
    public static string assetVersionsLocalMd5
    {
        get { return LocalSave.GetString("AssetVersionsLocalMd5"); }
        set { LocalSave.SetString("AssetVersionsLocalMd5", value); }
    }
 
    static bool m_HasDownLoadFullAsset = LocalSave.GetBool("HasDownLoadFullAsset");
    public static bool hasDownLoadFullAsset
    {
        get { return m_HasDownLoadFullAsset; }
        set { LocalSave.SetBool("HasDownLoadFullAsset", value); }
    }
 
    static bool m_PriorAssetDownLoadDone = false;
    public static bool priorAssetDownLoadDone
    {
        get
        {
            if (VersionUtility.Instance.NeedDownAsset())
            {
                return m_PriorAssetDownLoadDone;
            }
            else
            {
                return true;
            }
        }
    }
 
    static bool m_UnPriorAssetDownLoadDone = false;
    public static bool unPriorAssetDownLoadDone
    {
        get
        {
            if (VersionUtility.Instance.NeedDownAsset())
            {
                return m_UnPriorAssetDownLoadDone;
            }
            else
            {
                return true;
            }
        }
    }
 
    public static DateTime assetsBuildTime = DateTime.MinValue;
 
    static Dictionary<string, AssetVersion> assetVersions = new Dictionary<string, AssetVersion>();
    static List<AssetVersion> priorDownLoadAssetVersions = new List<AssetVersion>();
    static List<AssetVersion> unpriorDownLoadAssetVersions = new List<AssetVersion>();
    public static bool checkAssetCompleted { get; private set; }
 
    public static void Init()
    {
 
    }
 
    public static void GetAssetVersionFile()
    {
        checkAssetCompleted = false;
        Debug.LogFormat("开始获取资源版本文件:时间 {0}", DateTime.Now);
        var assetVersionUrl = StringUtility.Contact(VersionUtility.Instance.versionInfo.GetResourcesURL(VersionConfig.Get().branch), "/", "AssetsVersion.txt");
        HttpRequest.Instance.RequestHttpGet(assetVersionUrl, HttpRequest.defaultHttpContentType, 3, OnGetAssetVersionFile);
    }
 
    private static void OnGetAssetVersionFile(bool _ok, string _result)
    {
        Debug.LogFormat("获取资源版本文件结果:时间 {0},结果 {1}", DateTime.Now, _ok);
 
        if (_ok)
        {
            assetVersionsLocalMd5 = FileExtersion.GetStringMD5Hash(_result);
            var assetVersions = UpdateAssetVersions(_result);
            BeginCheckAssets();
        }
        else
        {
            Clock.AlarmAt(DateTime.Now + new TimeSpan(TimeSpan.TicksPerSecond), GetAssetVersionFile);
        }
    }
 
    private static void BeginCheckAssets()
    {
        ThreadPool.QueueUserWorkItem(
            (object aaa) =>
            {
                foreach (var assetVersion in assetVersions.Values)
                {
                    if (!assetVersion.CheckLocalFileValid(false))
                    {
                        if (assetVersion.IsPriorAsset())
                        {
                            priorDownLoadAssetVersions.Add(assetVersion);
                        }
                        else
                        {
                            unpriorDownLoadAssetVersions.Add(assetVersion);
                        }
 
                        assetVersion.localValid = false;
                    }
                    else
                    {
                        assetVersion.localValid = true;
                    }
                }
 
                m_PriorAssetDownLoadDone = priorDownLoadAssetVersions.Count <= 0;
                m_UnPriorAssetDownLoadDone = unpriorDownLoadAssetVersions.Count <= 0;
 
                checkAssetCompleted = true;
            }
            );
    }
 
    public static void BeginDownLoadTask(bool _prior)
    {
        if (_prior)
        {
            m_PriorAssetDownLoadDone = false;
            DownLoadAndDiscompressTask.Instance.Prepare(priorDownLoadAssetVersions, () => { m_PriorAssetDownLoadDone = true; });
        }
        else
        {
            m_UnPriorAssetDownLoadDone = false;
            InGameDownLoad.Instance.AssignTasks(unpriorDownLoadAssetVersions, () =>
          {
              m_UnPriorAssetDownLoadDone = true;
              hasDownLoadFullAsset = true;
          });
        }
    }
 
    public static Dictionary<string, AssetVersion> UpdateAssetVersions(string _assetVersionFile)
    {
        var lines = _assetVersionFile.Split(new string[] { FileExtersion.lineSplit }, StringSplitOptions.RemoveEmptyEntries);
        assetVersions.Clear();
        for (int i = 0; i < lines.Length; i++)
        {
            var assetVersion = new AssetVersion(lines[i]);
            assetVersions[assetVersion.relativePath] = assetVersion;
        }
 
        return assetVersions;
    }
 
    public static AssetVersion GetAssetVersion(string assetKey)
    {
        if (assetVersions.ContainsKey(assetKey))
        {
            return assetVersions[assetKey];
        }
        else
        {
            return null;
        }
    }
 
    public static bool IsAssetValid(string assetKey)
    {
        if (assetVersions.ContainsKey(assetKey))
        {
            return assetVersions[assetKey].localValid;
        }
        else
        {
            if (VersionUtility.Instance.NeedDownAsset())
            {
                return false;
            }
            else
            {
                return true;
            }
        }
    }
 
    public static bool IsSceneAssetValid(int mapId, int lineId)
    {
        if (AssetSource.sceneFromEditor || mapId < 100)
        {
            return true;
        }
 
        var dataMapId = MapUtility.GetDataMapId(mapId);
        lineId = MapUtility.GetLineId(mapId, lineId);
        var mapResConfig = MapResourcesConfig.GetConfig(dataMapId, lineId);
        if (mapResConfig == null)
        {
            return false;
        }
 
        if (!IsAssetValid(StringUtility.Contact("maps/", mapResConfig.MapResources.ToLower())))
        {
            return false;
        }
 
        if (dataMapId != 10010)
        {
            ActorShowConfig actorShowConfig = null;
            if (ActorShowConfig.GetActoreShowConfigByMapIdAndLineId(dataMapId, lineId, out actorShowConfig))
            {
                var npcs = actorShowConfig.showNpcs;
                foreach (var item in npcs)
                {
                    var npcConfig = NPCConfig.Get(item);
                    if (npcConfig != null)
                    {
                        var assetbundleName = StringUtility.Contact("prefab_race_", npcConfig.MODE.ToLower());
                        if (!IsAssetValid(StringUtility.Contact("mob/", assetbundleName)))
                        {
                            return false;
                        }
                    }
                }
            }
        }
 
        return true;
    }
 
    public static string GetAssetFilePath(string _assetKey)
    {
        var path = string.Empty;
        if (assetVersions.ContainsKey(_assetKey))
        {
            var assetVersion = assetVersions[_assetKey];
            switch (assetVersion.fileLocation)
            {
                case AssetVersion.StorageLocation.StreamingAsset:
                    path = StringUtility.Contact(ResourcesPath.Instance.StreamingAssetPath, _assetKey);
                    break;
                case AssetVersion.StorageLocation.ExternalStore:
                    path = StringUtility.Contact(ResourcesPath.Instance.ExternalStorePath, _assetKey);
                    break;
            }
        }
        else
        {
            if (Application.platform == RuntimePlatform.Android)
            {
                path = StringUtility.Contact(ResourcesPath.Instance.ExternalStorePath, _assetKey);
            }
            else
            {
                path = StringUtility.Contact(ResourcesPath.Instance.StreamingAssetPath, _assetKey);
            }
        }
 
        return path;
    }
 
    public static string GetBuiltInAssetFilePath(string _assetKey)
    {
        var path = string.Empty;
        if (Application.platform == RuntimePlatform.Android)
        {
            path = StringUtility.Contact(ResourcesPath.Instance.ExternalStorePath, _assetKey);
        }
        else
        {
            if (SDKUtility.builtinAssetCopyFinished)
            {
                path = StringUtility.Contact(ResourcesPath.Instance.ExternalStorePath, _assetKey);
            }
            else
            {
                path = StringUtility.Contact(ResourcesPath.Instance.StreamingAssetPath, _assetKey);
            }
        }
 
        return path;
    }
 
    public static bool IsUnpriorAssetDownLoadOk()
    {
        if (VersionUtility.Instance.NeedDownAsset())
        {
            return unPriorAssetDownLoadDone;
        }
        else
        {
            return true;
        }
    }
 
 
}