game.js
1.62 KB
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
require('./libs/wrapper/builtin/index');
window.DOMParser = require('./libs/common/xmldom/dom-parser').DOMParser;
window.Promise = require('./es6-promise.min.js');
require('./libs/common/engine/globalAdapter/index');
require('./libs/wrapper/unify');
require('./libs/wrapper/systemInfo');
// Ensure getting the system info in open data context
window.__globalAdapter.init(function () {
require('./src/settings');
// Will be replaced with cocos2d-js path in editor
require('cocos/cocos2d-js.js');
require('./libs/common/engine/index');
// Introduce Cocos Service here
require('./main');
require('./libs/common/remote-downloader');
require('./libs/wrapper/engine/index');
// Adjust devicePixelRatio
cc.view._maxPixelRatio = 4;
// downloader polyfill
window.wxDownloader = remoteDownloader;
// handle remote downloader
remoteDownloader.REMOTE_SERVER_ROOT = "";
remoteDownloader.SUBCONTEXT_ROOT = "";
var pipeBeforeDownloader = cc.loader.subPackPipe || cc.loader.md5Pipe || cc.loader.assetLoader;
cc.loader.insertPipeAfter(pipeBeforeDownloader, remoteDownloader);
if (cc.sys.platform === cc.sys.WECHAT_GAME_SUB) {
var SUBDOMAIN_DATA = require('src/subdomain.json.js');
cc.game.once(cc.game.EVENT_ENGINE_INITED, function () {
cc.Pipeline.Downloader.PackDownloader._doPreload("SUBDOMAIN_DATA", SUBDOMAIN_DATA);
});
require('./libs/wrapper/sub-context-adapter');
}
else {
// Release Image objects after uploaded gl texture
cc.macro.CLEANUP_IMAGE_CACHE = true;
}
remoteDownloader.init();
window.boot();
});