yyl
1 天以前 48f67bcd7025dd86525666ef99b8420f363b0901
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
using System;
 
/// <summary>
/// 关联界面索引表,用于获取途径,富文本打开界面等情况
/// </summary>
public class UIJumpManager : GameSystemManager<UIJumpManager>
{
 
 
    public override void Init()
    {
    }
 
    public bool CanOpenWin(int winID, bool showTip = false)
    {
        var config = WindowSearchConfig.Get(winID);
        if (config == null)
        {
            return false;
        }
        if (config.FuncID !=0 && !FuncOpen.Instance.IsFuncOpen(config.FuncID, showTip))
        {
            return false;
        }
 
        //活动后续补充
        return true;
    }
 
    public void OpenWindow(int winID, bool showTip = true)
    {
        if (!CanOpenWin(winID, showTip))
        {
            return;
        }
        var config = WindowSearchConfig.Get(winID);
        UIManager.Instance.OpenWindow(config.WinName, config.TabIndex);
    }
}