抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

小游戏平台对于资源的大小限制很严格, 在 OV 平台上,由于快游戏本身自带压缩机制,所以包体大小的问题相对不是那么严重。在微信平台上,包体是没有压缩的。一般来说有两种解决方案, 一个是把资源放在云端,还有一个就是压缩本地资源。

在资源很多但又不是那么多的情况下,我们可以采用压缩包的方式存储资源。有的平台有文件读写的接口,有的没有。为了通用性,我们采取解压到内存中的方式。通过 jszip,我们可以很好的压缩和解压文件。

Laya 引擎中有多重不同的文件格式,解压压缩文件到内存中的时候其实就是读取文件并格式化,然后保存到 Laya 的缓存系统中,通过缓存读取文件的时候就能够直接读取到我们解压到内存中的内容。不过,由于机制问题,暂时还不支持天空盒的格式化,因此天空盒目前还只能放在本地。

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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
export default class ZipManager {
private static instance: ZipManager;

public static getInstance(): ZipManager {
if (!this.instance) {
return new ZipManager();
}
return this.instance;
}

public loadZip(resurl: string, cacheUrl: string, callback: Function): void {
var zip = Laya.loader.getRes(resurl);

if (!zip) {
Laya.loader.load(
[{ type: Laya.Loader.BUFFER, url: resurl }],
Laya.Handler.create(this, function (data) {
Laya.loader.cacheRes(cacheUrl, Laya.loader.getRes(resurl));
Laya.loader.clearRes(resurl);

if (callback) {
callback();
}
})
);
} else {
callback();
}
}

public loadZipFiles(
resUrl: string,
cacheUrl: string,
callback: Function
): void {
// console.log("0----------",Laya.Browser.window);
var self = this;
let skyBox;

let jsZip = new JSZip();
let zipBuff = Laya.loader.getRes(resUrl);

let resources = {};
// console.log("测试压缩包");

var loadZipComplete = function () {
Laya.loader.clearRes(resUrl);
callback();
};

//获取ZIP包内容传入JSZip中解析
jsZip.loadAsync(zipBuff).then((data) => {
//保存文件路径到数组
for (let file in data.files) {
// console.log("------------file", data.files[file]);
if (!data.files[file].dir) {
if (file.indexOf(".lh") != -1) {
//存入模型文件
if (!resources["other"]) {
resources["other"] = [];
}

resources["other"].push(file);
} else if (file.indexOf(".png") != -1 || file.indexOf(".jpg") != -1) {
//存入图片
if (!resources["image"]) {
resources["image"] = [];
}

resources["image"].push(file);
} else if (file.indexOf(".json") != -1) {
//存入json
if (!resources["other"]) {
resources["other"] = [];
}

resources["other"].push(file);
} else if (file.indexOf(".csv") != -1) {
//存入csv
if (!resources["other"]) {
resources["other"] = [];
}

resources["other"].push(file);
} else if (
file.indexOf(".lm") != -1 ||
file.indexOf(".ltc") != -1 ||
file.indexOf(".lmat") != -1 ||
//存入网格 天空盒材质解析文件 材质
file.indexOf(".lani") != -1
) {
if (!resources["mat"]) {
resources["mat"] = [];
}

if (file.indexOf(".ltc") != -1) {
let fileParts = file.split("/");
let name = fileParts[fileParts.length - 1].replace(".ltc", "");
skyBox = name;
}
resources["mat"].push(file);
} else {
//存入其他
if (!resources["other"]) {
resources["other"] = [];
}
resources["other"].push(file);
}
}
}
loadImage();
});

//格式化文件并存入缓存
let subCount = 0;
let subTotal = 0;
let loadImage = () => {
if (resources["image"]) {
for (let key in resources["image"]) {
subTotal++;
let file = resources["image"][key];
jsZip
.file(file)
.async("base64")
.then((content: any) => {
let func = Laya.Loader.prototype["parsePLFData"];
let data = { json: {}, text: {} };
let imgBase64;
if (file.indexOf(".png") != -1) {
imgBase64 = "data:image/png;base64," + content;
} else {
imgBase64 = "data:image/jpg;base64," + content;
}

let image: HTMLImageElement = document.createElement("img");
let onImageLoaded: EventListenerOrEventListenerObject = () => {
image.removeEventListener("load", onImageLoaded);
//接下来就可以把贴图对象赋值给材质了
if (skyBox && file.indexOf(skyBox) != -1) {
// skyBox = null;
Laya.loader.cacheRes(cacheUrl + "/" + file, image);
} else {
let texture: Laya.Texture2D = new Laya.Texture2D();
texture.loadImageSource(image);
Laya.loader.cacheRes(cacheUrl + "/" + file, texture);
// console.log("图片纹理", Laya.loader.getRes(cacheUrl + "/" + file));
}
subCount++;
if (subCount == subTotal) {
subCount = 0;
subTotal = 0;
loadLm();
}
};
image.addEventListener("load", onImageLoaded);
image.src = imgBase64;
});
}
} else {
loadLm();
}
};

let loadLm = () => {
if (resources["mat"]) {
for (let key in resources["mat"]) {
subTotal++;
let file = resources["mat"][key];
if (file.indexOf(".ltc") != -1) {
jsZip
.file(file)
.async("text")
.then((content: any) => {
let contJson = JSON.parse(content);
let func = Laya.Loader.prototype["parsePLFData"];
let data = { json: {}, text: {} };
data.json[cacheUrl + "/" + file] = contJson;

func.call(Laya.Loader, data);

Laya.loader.create(
cacheUrl + "/" + file,
Laya.Handler.create(this, (res) => {
// console.log("预加载", res);
subCount++;
if (subCount == subTotal) {
subCount = 0;
subTotal = 0;
loadOther();
}
})
);
});
} else if (file.indexOf(".lmat") != -1) {
jsZip
.file(file)
.async("text")
.then((content: any) => {
let contJson = JSON.parse(content);
let func = Laya.Loader.prototype["parsePLFData"];
let data = { json: {}, text: {} };
data.json[cacheUrl + "/" + file] = contJson;

func.call(Laya.Loader, data);

Laya.loader.create(
cacheUrl + "/" + file,
Laya.Handler.create(this, (res) => {
// console.log("预加载",file, rses);
subCount++;
if (subCount == subTotal) {
subCount = 0;
subTotal = 0;
loadOther();
}
})
);
});
} else {
jsZip
.file(file)
.async("uint8array")
.then((content: any) => {
let func = Laya.Loader.prototype["parsePLFData"];
let data = { json: {}, text: {} };
data.json[cacheUrl + "/" + file] = content;

func.call(Laya.Loader, data);

Laya.loader.create(
cacheUrl + "/" + file,
Laya.Handler.create(this, (res) => {
// console.log("预加载", res);
subCount++;
if (subCount == subTotal) {
subCount = 0;
subTotal = 0;
loadOther();
}
})
);
});
}
}
} else {
loadOther();
}
};

let loadOther = () => {
for (let key in resources["other"]) {
subTotal++;
let file = resources["other"][key];
if (file.indexOf(".lh") != -1) {
jsZip
.file(file)
.async("text")
.then((content: any) => {
let contJson = JSON.parse(content);
let func = Laya.Loader.prototype["parsePLFData"];
let data = { json: {}, text: {} };
data.json[cacheUrl + "/" + file] = contJson;

func.call(Laya.Loader, data);

Laya.loader.create(
cacheUrl + "/" + file,
Laya.Handler.create(this, (res) => {
// console.log("预加载",file, res);
subCount++;
if (subCount == subTotal) {
loadZipComplete();
}
})
);
});
} else if (file.indexOf(".json") != -1) {
jsZip
.file(file)
.async("text")
.then((content: any) => {
let contJson = JSON.parse(content);
let func = Laya.Loader.prototype["parsePLFData"];
let data = { json: {}, text: {} };
data.json[cacheUrl + "/" + file] = contJson;

func.call(Laya.Loader, data);

Laya.loader.create(
cacheUrl + "/" + file,
Laya.Handler.create(this, (res) => {
// console.log("预加载", res);
subCount++;
if (subCount == subTotal) {
loadZipComplete();
}
})
);
});
} else if (file.indexOf(".csv") != -1) {
jsZip
.file(file)
.async("text")
.then((content: any) => {
Laya.loader.cacheRes(cacheUrl + "/" + file, content);
subCount++;
if (subCount == subTotal) {
loadZipComplete();
}
});
} else {
jsZip
.file(file)
.async("uint8array")
.then((content: any) => {
let func = Laya.Loader.prototype["parsePLFData"];
let data = { json: {}, text: {} };
data.json[cacheUrl + "/" + file] = content;

func.call(Laya.Loader, data);

Laya.loader.create(
cacheUrl + "/" + file,
Laya.Handler.create(this, (res) => {
// console.log("预加载", res);
subCount++;
if (subCount == subTotal) {
loadZipComplete();
}
})
);
});
}
}
};
}
}

评论