UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

160 lines (159 loc) 5.57 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 ste_events_1 = require("ste-events"); const StorageUtilities_1 = __importDefault(require("../storage/StorageUtilities")); const Database_1 = __importDefault(require("./Database")); const MinecraftUtilities_1 = __importDefault(require("./MinecraftUtilities")); const Log_1 = __importDefault(require("../core/Log")); class AnimationControllerBehaviorDefinition { _file; _id; _isLoaded = false; _loadedWithComments = false; data; _onLoaded = new ste_events_1.EventDispatcher(); get isLoaded() { return this._isLoaded; } get file() { return this._file; } get onLoaded() { return this._onLoaded.asEvent(); } set file(newFile) { this._file = newFile; } get id() { return this._id; } set id(newId) { this._id = newId; } get shortId() { if (this._id !== undefined) { if (this._id.startsWith("minecraft:")) { return this._id.substring(10, this._id.length); } return this._id; } return undefined; } async getFormatVersionIsCurrent() { const fv = this.getFormatVersion(); if (fv === undefined || fv.length !== 3) { return false; } return await Database_1.default.isRecentVersionFromVersionArray(fv); } getAllStates() { const states = []; if (this.data && this.data.animation_controllers) { for (const acName in this.data.animation_controllers) { const ac = this.data.animation_controllers[acName]; if (ac && ac.states) { for (const stateName in ac.states) { const state = ac.states[stateName]; if (state) { states.push({ id: stateName, animationControllerId: acName, state: state, }); } } } } } return states; } getFormatVersion() { if (!this.data || !this.data.format_version) { return undefined; } return MinecraftUtilities_1.default.getVersionArrayFrom(this.data.format_version); } setBehaviorPackFormatVersion(versionStr) { this._ensureDataInitialized(); if (this.data) { this.data.format_version = versionStr; } } _ensureDataInitialized() { if (this.data === undefined) { this.data = { format_version: "1.12.0", animation_controllers: {}, }; } } static async ensureOnFile(file, loadHandler) { let abcd; if (file.manager === undefined) { abcd = new AnimationControllerBehaviorDefinition(); abcd.file = file; file.manager = abcd; } if (file.manager !== undefined && file.manager instanceof AnimationControllerBehaviorDefinition) { abcd = file.manager; if (!abcd.isLoaded) { if (loadHandler) { abcd.onLoaded.subscribe(loadHandler); } await abcd.load(); } } return abcd; } persist() { if (this._file === undefined) { return false; } Log_1.default.assert(this.data !== null, "ITDP"); if (!this.data) { return false; } return this._file.setObjectContentIfSemanticallyDifferent(this.data); } /** * 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 === null || this._file.content instanceof Uint8Array) { this._isLoaded = true; this._loadedWithComments = preserveComments; this._onLoaded.dispatch(this, this); return; } // Use comment-preserving parser only when needed for editing this.data = preserveComments ? StorageUtilities_1.default.getJsonObjectWithComments(this._file) : StorageUtilities_1.default.getJsonObject(this._file); this._isLoaded = true; this._loadedWithComments = preserveComments; this._onLoaded.dispatch(this, this); } } exports.default = AnimationControllerBehaviorDefinition;