可选参数
文:Santy-Wang
为了增加灵活性和更多的扩展性,Asset Manager 中大部分加载接口包括 cc.assetManager.loadAny
,cc.assetManager.preloadAny
都提供了 options 参数,你可以配置引擎内置参数,也可以自定义自己的参数用于扩展引擎功能。如果你不需要设置更多参数或者扩展引擎,你可以忽略 options 参数并使用更为简单的 API 比如 cc.resources.load
,并跳过此文章。
目前 options 中引擎已使用的参数包括:
uuid
,url
,path
,dir
,scene
,type
,priority
,preset
,audioLoadMode
,ext
,bundle
,onFileProgress
,maxRetryCount
,maxConcurrency
,maxRequestsPerFrame
,version
,responseType
,withCredentials
,mimeType
,timeout
,header
,reload
,cacheAsset
,cacheEnabled
请 不要 使用以上的字段作为你自定义的参数名称,避免和引擎功能发生冲突。
可选参数作为上层业务逻辑与底层加载管线的沟通工具,可以实现由上层业务逻辑提供参数来控制底层加载管线的运作:
控制下载器和解析器,
priority
,maxConcurrency
,maxRequestsPerFrame
,maxRetryCount
参数用于控制下载器对于下载请求的优先级排序,加载并行数限制,每帧能发起的请求限制,最大重试次数。例如你可以如此使用:cc.assetManager.loadAny({ 'path': 'image/background' }, { priority: 2, maxRetryCount: 10 }, callback);
控制下载器和解析器的处理方法,下载器与解析器的处理方法可以接收到业务逻辑设置的可选参数,下载器中文本文件,二进制文件等资源的处理方法可接受
responseType
,withCredentials
,mimeType
,timeout
,header
,onFileProgress
的可选参数,用于设置 XHR 的返回类型,头部,下载进度回调等参数;而音频文件的处理方法则接受audioLoadMode
参数,用于控制是否使用WebAudio
的方式来加载音频。你可以如下使用:// 获取下载进度回调
cc.assetManager.loadAny({ 'path': 'image/background' }, { onFileProgress: function (loaded, total) {
console.log(loaded/total);
} }, callback);
// 使用 web audio 形式加载音频
cc.assetManager.loadRemote('http://example.com/background.mp3', { audioLoadMode: cc.AudioClip.LoadMode.WEB_AUDIO }, callback);
注意 :想要获取资源的加载进度必须在服务器端做好相关配置。
更多关于处理方法的介绍请参考 下载器与解析器。
控制加载流程,加载管线接受
reload
,cacheAsset
,cacheEnabled
可选参数用于控制是否复用缓存中的资源和是否缓存资源和是否缓存文件。uuid
,url
,path
,dir
,scene
,type
,ext
,bundle
等参数则是用于搜索资源。你可以如下使用:cc.assetManager.loadAny({ path: 'images/background', type: cc.SpriteFrame, bundle: 'resources' }, callback);
cc.assetManager.loadAny({ dir: 'images', type: cc.SpriteFrame, bundle: 'resources' }, callback);
这种方式完全等价于直接使用
cc.resources.load
和cc.resources.loadDir
。
扩展引擎
当你需要扩展引擎的加载功能时,你可以在 管线,自定义处理方式 中使用可选参数。例如:
// 扩展管线
cc.assetManager.pipeline.insert(function (task, done) {
var input = task.input;
for (var i = 0; i < input.length; i++) {
if (input[i].options.myParam === 'important') {
console.log(input[i].url);
}
}
task.output = task.input;
done();
}, 1);
cc.assetManager.loadAny({ path: 'images/background'}, { myParam: 'important' }, callback);
// 注册处理方法
cc.assetManager.downloader.register('.myformat', function (url, options, callback) {
// 下载对应资源
var img = new Image();
if (options.isCrossOrigin) {
img.crossOrigin = 'anonymous';
}
img.onload = function () {
callback(null, img);
};
img.onerror = function () {
callback(new Error('download failed'), null);
};
img.src = url;
});
cc.assetManager.parser.register('.myformat', function (file, options, callback) {
// 解析下载回来的文件
callback(null, file);
});
cc.assetManager.loadAny({ url: 'http://example.com/myAsset.myformat' }, { isCrossOrigin: true }, callback);
通过结合管线,自定义处理方法,可选参数可以达到极大的扩展度。Asset Bundle 可以看做使用可选参数扩展的第一个实例。