/**
* @constructor
*/
function XUIDefense() {
}

XUIDefense.prototype = {
    //事件
    /**
   * 北斗系统组成弹窗
   * @eventname XUI_Defense_BeiDouSystemPop
   * @eventid 0x00000001
   */
    /**
   * 北斗卫星概况
   * @eventname XUI_Defense_InstrStart
   * @eventid 0x00000002
   */
    /**
   * 中圆地球轨道卫星2
   * @eventname XUI_Defense_orbitSatellite
   * @eventid 0x00000003
   */
    /**
   * 北斗系统地面段与用户段
   * @eventname XUI_Defense_groundAndUser
   * @eventid 0x00000004
   */
    /**
   * 主控站时统
   * @eventname XUI_Defense_MainControlStation
   * @eventid 0x00000005
   */
    /**
   * 左边主控站时统组成与时统业务流程
   * @eventname XUI_Defense_MasterStation
   * @eventid 0x00000006
   */
    /**
   * 原子钟机房弹窗
   * @eventname XUI_Defense_ACRInstr
   * @eventid 0x00000007
   */
    /**
   * 中心机房弹窗
   * @eventname XUI_Defense_CentralOffice
   * @eventid 0x00000008
   */
    /**
   * 末节点弹窗
   * @eventname XUI_Defense_TNMR
   * @eventid 0x00000009
   */
    /**
   * 时间生成
   * @eventname XUI_Defense_TimeGeneration
   * @eventid 0x00000010
   */
    /**
   * 时间传递
   * @eventname XUI_Defense_Time_transfer
   * @eventid 0x00000011
   */
    /**
   * 时间发播
   * @eventname XUI_Defense_Time_broadcast
   * @eventid 0x00000012
   */
    /**
   * 时差监测和比对
   * @eventname XUI_Defense_TimeDifferenceMonitoring
   * @eventid 0x00000013
   */
    /**
   * End of all animation
   * @eventname XUI_Defense_EndOfAll
   * @eventid 0x00000014
   */
    /**
   * 北斗系统空间段
   * @eventname XUI_Defense_Space
   * @eventid 0x00000015
   */
    /**
   * 动画实体加载完成
   * @eventname XUI_Defense_AnimteLoading
   * @eventid 0x00000016
   */

    //接口
    /**
     * 设置对象样式
     * @param {Number} opacitydata 0~代表完全透明1~代表不透明
     */
    SetStyleObjects:function (opacitydata) {
    },

    /**
     * 设置模式样式
     * @param {Number} number 0~代表绿色模式1代表蓝色模式
     */
    SetupMode:function (number) {
    },

    /**
     * 设置地球地板模式样式/北京
     * @param {Number} number 0~代表绿色模式1代表蓝色模式
     */
    SetEarthStyle:function (number) {
    },

    /**
     * 设置地球地板模式样式/成都
     * @param {Number} number 0~代表绿色模式1代表蓝色模式
     */
    SetEarthStyleChenDu:function (number) {
    },

    /**
     * 设置地球地板模式样式/三亚
     * @param {Number} number 0~代表绿色模式1代表蓝色模式
     */
    SetEarthStyleSanYa:function (number) {
    },

    /**
     * 开始渲染
     */
    Render:function () {
    },

    /**
     * 停止渲染
     */
    StopRender:function () {
    },

    /**
     * 设置动画重播
     * @param {Double} parameter 代表动画速度,例如2代表2倍速
     */
    RestartAnimation:function (parameter) {
    },

    /**
     * 设置自定义文本场景设备
     * @param {Array} array 代表各个位置文本信息
     */
    SetCustomText_:function (array) {
    },

    /**
     * 设置自定义文本卫星与用户
     * @param {Array} array 代表各个位置文本信息
     */
    SetCustomText:function (array) {
    },

    /**
     * 设置自定义最后场景文本
     */
    ChangeText:function () {
    },

    /**
     * 设置动画播放
     * @param {Double} parameter 代表动画速度,例如2代表2倍速
     */
    ResumeAnimate:function (parameter) {
    },

    /**
     * 设置动画暂停
     */
    PauseAnimate:function () {
    },

    /**
     * 设置节点动画暂停
     */
    PauseNodeAnimate:function () {
    },

    /**
     * 设置节点动画播放
     */
    ResumeNodeAnimate:function () {
    },

    /**
     * 设置节点动画播放
     */
    StartNodeAnimate:function () {
    },

    /**
     * 自适应
     * @param {Number} width 
     * @param {Number} height 
     */
    Resize:function (width,height) {
    },

    /**
     * 设置首页卫星对象
     */
    SetSatelliteObject:function () {
    },

    /**
     * 设置天线对象
     */
    SetantennaObject:function () {
    },

    /**
     * 设置北京版本
     */
    SetBeijingVersion:function () {
    },

    /**
     * 设置文本(北京)
     */
    SetTextBeijing:function () {
    },

    /**
     * 设置视频
     */
    SceneVideoSwitch:function () {
    },

    /**
     * 设置成都版本
     */
    SetChengDuVersion:function () {
    },

    /**
     * 设置文本(成都)
     */
    SetTextChengdu:function () {
    },

    /**
     * 设置三亚版本
     */
    SetSanyaVersion:function () {
    },

    /**
     * 设置天线对象
     */
    SetantennaObject_sanya:function () {
    },

    /**
     * 设置文本(三亚)
     */
    SetTextSanya:function () {
    },

}