UNPKG

dragonbones-runtime

Version:

the tools to build dragonbones file for diffrent framework

141 lines (134 loc) 6.1 kB
////////////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2014-present, Egret Technology. // All rights reserved. // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // * Neither the name of the Egret nor the // names of its contributors may be used to endorse or promote products // derived from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY EGRET AND CONTRIBUTORS "AS IS" AND ANY EXPRESS // OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. // IN NO EVENT SHALL EGRET AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;LOSS OF USE, DATA, // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, // EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // ////////////////////////////////////////////////////////////////////////////////////// namespace RES { /** * Version control loading interface * @version Egret 2.4 * @platform Web,Native * @includeExample extension/version/VersionControl.ts * @language en_US */ /** * 版本控制加载的接口 * @version Egret 2.4 * @platform Web,Native * @includeExample extension/version/VersionControl.ts * @language zh_CN */ export interface IVersionController { /** * Get the version information data.<br/> * Before calling this method requires the application of any resource load, we recommend starting at the application entry class (Main) The first call processing. This method is only responsible for acquiring version information, is not responsible for downloaded resources. * @version Egret 2.4 * @platform Web,Native * @language en_US */ /** * 获取版本信息数据。<br/> * 这个方法的调用需要在应用程序进行任何资源加载之前,建议在应用程序的入口类(Main)的开始最先进行调用处理。此方法只负责获取版本信息,不负责资源的下载。 * @version Egret 2.4 * @platform Web,Native * @language zh_CN */ fetchVersion(callback:egret.AsyncCallback):void; /** * Get all changed files.<br/> * The main application in native scene. Changes here include new file, update file (the same file name, but changed files).<br/> * @returns All changes in the file list. In the Web end this list is empty. * @version Egret 2.4 * @platform Web,Native * @language en_US */ /** * 获取所有有变化的文件。<br/> * 主要应用在native场景中。这里的变化包括新增文件、更新文件(文件名相同,但更改过的文件)。<br/> * @returns 所有有变化的文件列表。在Web端此列表为空。 * @version Egret 2.4 * @platform Web,Native * @language zh_CN */ getChangeList():Array<{url:string; size:number}>; /** * Get the actual URL of the resource file.<br/> * Because this method needs to be called to control the actual version of the URL have the original resource files were changed, so would like to get the specified resource file the actual URL.<br/> * In the development and debugging phase, this method will directly return value passed. * @param url Url used in the game * @returns Actual loaded url * @version Egret 2.4 * @platform Web,Native * @language en_US */ /** * 获取资源文件实际的URL地址。<br/> * 由于版本控制实际已经对原来的资源文件的URL进行了改变,因此想获取指定资源文件实际的URL时需要调用此方法。<br/> * 在开发调试阶段,这个方法会直接返回传入的参数值。 * @param url 游戏中使用的url * @returns 实际加载的url * @version Egret 2.4 * @platform Web,Native * @language zh_CN */ getVirtualUrl(url:string):string; } /** * Manage version control class * @version Egret 2.4 * @platform Web,Native * @event egret.Event.COMPLETE Version control loading is complete when thrown * @event egret.IOErrorEvent.IO_ERROR Version control failed to load when thrown * @includeExample extension/version/VersionControl.ts * @language en_US */ /** * 管理版本控制的类 * @version Egret 2.4 * @platform Web,Native * @event egret.Event.COMPLETE 版本控制加载完成时抛出 * @event egret.IOErrorEvent.IO_ERROR 版本控制加载失败时抛出 * @includeExample extension/version/VersionControl.ts * @language zh_CN */ export interface VersionController extends IVersionController { } /** * @version Egret 2.4 * @platform Web,Native */ export let VersionController:{ /** * Constructor initialization * @language en_US */ /** * 初始化构造函数 * @language zh_CN */ new():VersionController }; }