Exemplo n.º 1
0
        public static bool HasUIForm(this UIComponent uiComponent, int uiFormId, string uiGroupName = null)
        {
            IDataTable <DRUIForms> dtUIForm = GameEntry.DataTable.GetDataTable <DRUIForms>();
            DRUIForms drUIForm = dtUIForm.GetDataRow(uiFormId);

            if (drUIForm == null)
            {
                return(false);
            }

            string assetName = AssetUtility.GetUIFormAsset(drUIForm.AssetName);

            if (string.IsNullOrEmpty(uiGroupName))
            {
                return(uiComponent.HasUIForm(assetName));
            }

            IUIGroup uiGroup = uiComponent.GetUIGroup(uiGroupName);

            if (uiGroup == null)
            {
                return(false);
            }

            return(uiGroup.HasUIForm(assetName));
        }
Exemplo n.º 2
0
        public static int?OpenUIForm(this UIComponent uiComponent, int uiFormId, object userData = null)
        {
            IDataTable <DRUIForms> dtUIForm = GameEntry.DataTable.GetDataTable <DRUIForms>();
            DRUIForms drUIForm = dtUIForm.GetDataRow(uiFormId);

            if (drUIForm == null)
            {
                Log.Warning("Can not load UI form '{0}' from data table.", uiFormId.ToString());
                return(null);
            }

            string assetName = AssetUtility.GetUIFormAsset(drUIForm.AssetName);

            if (!drUIForm.AllowMultiInstance)
            {
                if (uiComponent.IsLoadingUIForm(assetName))
                {
                    return(null);
                }

                if (uiComponent.HasUIForm(assetName))
                {
                    return(null);
                }
            }

            return(uiComponent.OpenUIForm(assetName, drUIForm.UIGroupName, Constant.AssetPriority.UIFormAsset, drUIForm.PauseCoveredUIForm, userData));
        }
Exemplo n.º 3
0
        public static UGuiForm GetUIForm(this UIComponent uiComponent, int uiFormId, string uiGroupName = null)
        {
            IDataTable <DRUIForms> dtUIForm = GameEntry.DataTable.GetDataTable <DRUIForms>();
            DRUIForms drUIForm = dtUIForm.GetDataRow(uiFormId);

            if (drUIForm == null)
            {
                return(null);
            }

            string assetName = AssetUtility.GetUIFormAsset(drUIForm.AssetName);
            UIForm uiForm    = null;

            if (string.IsNullOrEmpty(uiGroupName))
            {
                uiForm = uiComponent.GetUIForm(assetName);
                if (uiForm == null)
                {
                    return(null);
                }

                return((UGuiForm)uiForm.Logic);
            }

            IUIGroup uiGroup = uiComponent.GetUIGroup(uiGroupName);

            if (uiGroup == null)
            {
                return(null);
            }

            uiForm = (UIForm)uiGroup.GetUIForm(assetName);
            if (uiForm == null)
            {
                return(null);
            }

            return((UGuiForm)uiForm.Logic);
        }