少年修仙传客户端代码仓库
lcy
2024-12-16 a39c35fc6449430cd02bccb681c4a0a880e46cd9
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using LitJson;
 
 
namespace vnxbqy.UI
{
    
    
    public class FuncSwitchModel : Model, IBeforePlayerDataInitialize, IPlayerLoginOk
    {
        public override void Init()
        {
            ParseFuncSwitchConfig();
        }
 
        public void OnBeforePlayerDataInitialize()
        {
           
        }
 
        public void OnPlayerLoginOk()
        {
           
        }
 
        public override void UnInit()
        { 
 
        }
 
        public Dictionary<int, FuncSwithData> switchDataDict { get; private set;}
        private void ParseFuncSwitchConfig()
        {
            switchDataDict = null;
            var funcSwiths = FuncSwitchConfig.GetValues();
            if (funcSwiths == null) return;
 
            switchDataDict = new Dictionary<int, FuncSwithData>();
            for (int i = 0; i < funcSwiths.Count; i++)
            {
                var switchData = new FuncSwithData(funcSwiths[i]);
                switchDataDict.Add(switchData.Id,switchData);
            }
        }
 
        public class FuncSwithData
        {
            public int Id { get; private set;}
            public FuncSwitchConfig switchConfig { get; private set; }
            public Dictionary<string, int> switchDict { get; private set; }
            public FuncSwithData(FuncSwitchConfig _switchConfig)
            {
                Id = 0;
                switchConfig = _switchConfig;
                switchDict = null;
                if (_switchConfig == null) return;
 
                switchDict = new Dictionary<string, int>();
                Id = _switchConfig.ID;
                JsonData jsonData = JsonMapper.ToObject(_switchConfig.AppIdSwitch);
                foreach(var appId in jsonData.Keys)
                {
                    int open = 0;
                    int.TryParse(jsonData[appId].ToString(),out open);
                    switchDict.Add(appId,open);
                }
            }
 
            public int GetSwitchNum(string appId)
            {
                int num = 1;
                if (switchDict.ContainsKey(appId))
                {
                    num = switchDict[appId];
                }
                return num;
            }
        }
 
        public bool IsOpen(int id)
        {
            if (switchDataDict == null) return true;
 
            if(switchDataDict.ContainsKey(id))
            {
                FuncSwithData swithData = switchDataDict[id];
                string appId = VersionConfig.Get().appId;
                int open = swithData.GetSwitchNum(appId);
                return open == 1;
            }
 
            return true;
        }
    }
}