UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

144 lines (143 loc) 5.69 kB
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const StorageUtilities_1 = __importDefault(require("../storage/StorageUtilities")); const IProjectItemData_1 = require("../app/IProjectItemData"); const JigsawProcessorListDefinition_1 = __importDefault(require("./JigsawProcessorListDefinition")); const Log_1 = __importDefault(require("../core/Log")); class JigsawTemplatePoolDefinition { _file; _data; _isLoaded = false; _loadedWithComments = false; get data() { return this._data; } get file() { return this._file; } set file(newFile) { this._file = newFile; } get isLoaded() { return this._isLoaded; } get id() { if (this._data?.["minecraft:template_pool"]?.description?.identifier) { return this._data["minecraft:template_pool"].description.identifier; } return ""; } get elements() { if (this._data?.["minecraft:template_pool"]?.elements) { return this._data["minecraft:template_pool"].elements; } return []; } async getFormatVersionIsCurrent() { // For now, assume format version is current return true; } async addChildItems(project, item) { const elements = this.elements; if (!elements || elements.length === 0) { return; } const jigsawProcessorListItems = project.getItemsByType(IProjectItemData_1.ProjectItemType.jigsawProcessorList); // Find structure files and processors referenced by this template pool for (const element of elements) { // Find structure files referenced by location if (element.element.location) { const structurePath = element.element.location + ".mcstructure"; for (const candItem of jigsawProcessorListItems) { if (candItem.itemType === IProjectItemData_1.ProjectItemType.structure) { if (candItem.projectPath?.endsWith(structurePath) || candItem.projectPath?.includes(element.element.location)) { item.addChildItem(candItem); } } } } // Find processors referenced by processors field if (element.element.processors) { for (const candItem of jigsawProcessorListItems) { if (!candItem.isContentLoaded) { await candItem.loadContent(); } if (candItem.primaryFile) { const processorList = await JigsawProcessorListDefinition_1.default.ensureOnFile(candItem.primaryFile); if (processorList && processorList.id === element.element.processors) { item.addChildItem(candItem); } } } } } } static async ensureOnFile(file) { let jigsawTemplatePool; if (file.manager === undefined) { jigsawTemplatePool = new JigsawTemplatePoolDefinition(); jigsawTemplatePool.file = file; file.manager = jigsawTemplatePool; } if (file.manager !== undefined && file.manager instanceof JigsawTemplatePoolDefinition) { jigsawTemplatePool = file.manager; if (!jigsawTemplatePool.isLoaded) { await jigsawTemplatePool.load(); } } return jigsawTemplatePool; } /** * Loads the definition from the file. * @param preserveComments If true, uses comment-preserving JSON parsing for edit/save cycles. * If false (default), uses efficient standard JSON parsing. * Can be called again with true to "upgrade" a read-only load to read/write. */ async load(preserveComments = false) { // If already loaded with comments, we have the "best" version - nothing more to do if (this._isLoaded && this._loadedWithComments) { return; } // If already loaded without comments and caller doesn't need comments, we're done if (this._isLoaded && !preserveComments) { return; } if (this._file === undefined) { return; } if (!this._file.isContentLoaded) { await this._file.loadContent(); } if (!this._file.content || this._file.content instanceof Uint8Array) { this._isLoaded = true; this._loadedWithComments = preserveComments; return; } // Use comment-preserving parser only when needed for editing const result = preserveComments ? StorageUtilities_1.default.getJsonObjectWithComments(this._file) : StorageUtilities_1.default.getJsonObject(this._file); if (result) { this._data = result; } this._isLoaded = true; this._loadedWithComments = preserveComments; } persist() { if (this._file === undefined) { return false; } if (!this._data) { Log_1.default.unexpectedUndefined("ITRDP"); return false; } return this._file.setObjectContentIfSemanticallyDifferent(this._data); } } exports.default = JigsawTemplatePoolDefinition;