summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/XRedpointForbidMgr.cs
blob: 0bca720e49a388c283d4d44ba7586f7bead64b63 (plain)
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
99
100
101
102
103
104
using System;
using System.Collections.Generic;

namespace XUtliPoolLib
{
	public abstract class XRedpointForbidMgr : XRedpointRelationMgr, IXRedpointForbidMgr
	{
		protected HashSet<int> mForbidHashSet = new HashSet<int>();

		public void AddForbid(int sys, bool bImmUpdateUI = true)
		{
			bool flag = this.mForbidHashSet.Add(sys);
			if (flag)
			{
				if (bImmUpdateUI)
				{
					this._RefreshSysRedpointUI(sys, base._GetSysRedpointState(sys));
				}
				else
				{
					this.mDirtySysList.Add(sys);
				}
			}
		}

		public void AddForbids(int[] systems, bool bImmUpdateUI = true)
		{
			bool flag = systems == null || systems.Length == 0;
			if (!flag)
			{
				for (int i = 0; i < systems.Length; i++)
				{
					bool flag2 = this.mForbidHashSet.Add(systems[i]);
					if (flag2)
					{
						if (bImmUpdateUI)
						{
							this._RefreshSysRedpointUI(systems[i], base._GetSysRedpointState(systems[i]));
						}
						else
						{
							this.mDirtySysList.Add(systems[i]);
						}
					}
				}
			}
		}

		public void RemoveForbid(int sys, bool bImmUpdateUI = true)
		{
			bool flag = this.mForbidHashSet.Remove(sys);
			if (flag)
			{
				if (bImmUpdateUI)
				{
					this._RefreshSysRedpointUI(sys, base._GetSysRedpointState(sys));
				}
				else
				{
					this.mDirtySysList.Add(sys);
				}
			}
		}

		public void RemoveForbids(int[] systems, bool bImmUpdateUI = true)
		{
			bool flag = systems == null || systems.Length == 0;
			if (!flag)
			{
				for (int i = 0; i < systems.Length; i++)
				{
					bool flag2 = this.mForbidHashSet.Remove(systems[i]);
					if (flag2)
					{
						if (bImmUpdateUI)
						{
							this._RefreshSysRedpointUI(systems[i], base._GetSysRedpointState(systems[i]));
						}
						else
						{
							this.mDirtySysList.Add(systems[i]);
						}
					}
				}
			}
		}

		public void ClearForbids(bool bImmUpdateUI = true)
		{
			foreach (int num in this.mForbidHashSet)
			{
				if (bImmUpdateUI)
				{
					this._RefreshSysRedpointUI(num, base._GetSysRedpointState(num));
				}
				else
				{
					this.mDirtySysList.Add(num);
				}
			}
			this.mForbidHashSet.Clear();
		}
	}
}