定制项目构建流程

自定义发布模版

Creator 支持对每个项目分别定制发布模板,只需要在项目路径下添加一个 build-templates 目录,里面按照平台路径划分子目录,然后里面的所有文件在构建结束后都会自动按照对应的目录结构复制到构建出的工程里。

结构类似:

  1. project-folder
  2. |--assets
  3. |--build
  4. |--build-templates
  5. |--web-mobile
  6. |--index.html
  7. |--jsb-link
  8. |--main.js
  9. |--jsb-default
  10. |--main.js

这样如果当前构建的平台是 web-mobile 的话,那么 build-templates/web-mobile/index.html 就会在构建后被拷贝到 build/web-mobile/index.html

扩展构建流程

要扩展构建流程,需要在 扩展包 中实现。如果你对扩展包还不了解,可参考 这篇文档 来快速创建一个扩展包。

打开扩展包中的 main.js 脚本,在其中的 loadunload 方法中加入 Editor.Builder 的事件处理函数:

  1. // main.js
  2. var path = require('path');
  3. var fs = require('fs');
  4. function onBeforeBuildFinish (options, callback) {
  5. Editor.log('Building ' + options.platform + ' to ' + options.dest); // 你可以在控制台输出点什么
  6. var mainJsPath = path.join(options.dest, 'main.js'); // 获取发布目录下的 main.js 所在路径
  7. var script = fs.readFileSync(mainJsPath, 'utf8'); // 读取构建好的 main.js
  8. script += '\n' + 'window.myID = "01234567";'; // 添加一点脚本到
  9. fs.writeFileSync(mainJsPath, script); // 保存 main.js
  10. callback();
  11. }
  12. module.exports = {
  13. load () {
  14. Editor.Builder.on('before-change-files', onBeforeBuildFinish);
  15. },
  16. unload () {
  17. Editor.Builder.removeListener('before-change-files', onBeforeBuildFinish);
  18. }
  19. };

上面例子中,我们监听了 Builder 的 'before-change-files' 的事件,当事件触发时就会调用我们的 onBeforeBuildFinish 处理函数。目前能监听以下这些事件:

  • 'build-start':构建开始时触发。
  • 'before-change-files':在构建结束之前触发,此时除了计算文件 MD5、生成 settings.js、原生平台的加密脚本以外,大部分构建操作都已执行完毕。我们通常会在这个事件中对已经构建好的文件做进一步处理。
  • 'build-finished':构建完全结束时触发。
    你可以注册任意多个处理函数,当函数被调用时,将传入两个参数。第一个参数是一个对象,包含了此次构建的相关参数,例如构建的平台、构建目录、是否调试模式等。第二个参数是一个回调函数,你需要在响应函数所做的操作完全结束后手动调用这个回调,这样后续的其它构建过程才会继续进行,也就是说你的响应函数可以是异步的。

获取构建结果

'before-change-files''build-finished' 事件的处理函数中,你还可以通过 BuildResults 对象获取一些构建结果。例子如下:

  1. function onBeforeBuildFinish (options, callback) {
  2. var prefabUrl = 'db://assets/cases/05_scripting/02_prefab/MonsterPrefab.prefab';
  3. var prefabUuid = Editor.assetdb.urlToUuid(prefabUrl);
  4. // 通过 options.buildResults 访问 BuildResults
  5. var buildResults = options.buildResults;
  6. // 获得指定资源依赖的所有资源
  7. var depends = buildResults.getDependencies(prefabUuid);
  8. for (var i = 0; i < depends.length; ++i) {
  9. var uuid = depends[i];
  10. // 获得工程中的资源相对 URL(如果是自动图集生成的图片,由于工程中不存在对应资源,将返回空)
  11. var url = Editor.assetdb.uuidToUrl(uuid);
  12. // 获取资源类型
  13. var type = buildResults.getAssetType(uuid);
  14. // 获得工程中的资源绝对路径(如果是自动图集生成的图片,同样将返回空)
  15. var rawPath = Editor.assetdb.uuidToFspath(uuid);
  16. // 获得构建后的原生资源路径(原生资源有图片、音频等,如果不是原生资源将返回空)
  17. var nativePath = buildResults.getNativeAssetPath(uuid);
  18. Editor.log(`${prefabUrl} depends on: ${rawPath || nativePath} (${type})`);
  19. }
  20. callback();
  21. }
  22. module.exports = {
  23. load () {
  24. Editor.Builder.on('before-change-files', onBeforeBuildFinish);
  25. },
  26. unload () {
  27. Editor.Builder.removeListener('before-change-files', onBeforeBuildFinish);
  28. }
  29. };

BuildResults 的详细 API 如下:

  1. class BuildResults {
  2. constructor () {
  3. this._buildAssets = null;
  4. this._packedAssets = null;
  5. }
  6. /**
  7. * Returns true if the asset contains in the build.
  8. *
  9. * @param {boolean} [assertContains=false]
  10. * @returns {boolean}
  11. */
  12. containsAsset (uuid, assertContains) {
  13. var res = uuid in this._buildAssets;
  14. if (!res && assertContains) {
  15. Editor.error(`The bulid not contains an asset with the given uuid "${uuid}".`);
  16. }
  17. return res;
  18. }
  19. /**
  20. * Returns the uuids of all assets included in the build.
  21. *
  22. * @returns {string[]}
  23. */
  24. getAssetUuids () {
  25. return Object.keys(this._buildAssets);
  26. }
  27. /**
  28. * Return the uuids of assets which are dependencies of the input, also include all indirect dependencies.
  29. * The list returned will not include the input uuid itself.
  30. *
  31. * @param {string} uuid
  32. * @returns {string[]}
  33. */
  34. getDependencies (uuid) {
  35. if (!this.containsAsset(uuid, true)) {
  36. return [];
  37. }
  38. return Editor.Utils.getDependsRecursively(this._buildAssets, uuid, 'dependUuids');
  39. }
  40. /**
  41. * Get type of asset defined in the engine.
  42. * You can get the constructor of an asset by using `cc.js.getClassByName(type)`.
  43. *
  44. * @param {string} uuid
  45. * @returns {string}
  46. */
  47. getAssetType (uuid) {
  48. this.containsAsset(uuid, true);
  49. return getAssetType(uuid);
  50. }
  51. /**
  52. * Get the path of the specified native asset such as texture.
  53. * Returns empty string if not found.
  54. *
  55. * @param {string} uuid
  56. * @returns {string}
  57. */
  58. getNativeAssetPath (uuid) {
  59. if (!this.containsAsset(uuid, true)) {
  60. return '';
  61. }
  62. var result = this._buildAssets[uuid];
  63. if (typeof result === 'object') {
  64. return result.nativePath || '';
  65. }
  66. return '';
  67. }
  68. }

范例 - 遍历构建后的图片

项目地址:https://github.com/cocos-creator/demo-process-build-textures

这个项目中包含了一个简单的构建插件,展示了如何在构建的过程中遍历项目中的各种类型的图片,并且输出它们构建后的路径,以便你对这些构建好的图片做进一步处理。