forked from LeagueSandbox/GameServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProtectionManager.cs
133 lines (121 loc) · 4.97 KB
/
ProtectionManager.cs
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
using System.Collections.Generic;
using GameServerCore;
using GameServerCore.Domain.GameObjects;
using GameServerCore.Enums;
using LeagueSandbox.GameServer.GameObjects.Stats;
namespace LeagueSandbox.GameServer
{
public class ProtectionManager : IProtectionManager
{
private Dictionary<IAttackableUnit, IAttackableUnit[]> _dependOnAll = new Dictionary<IAttackableUnit, IAttackableUnit[]>();
private Dictionary<IAttackableUnit, IAttackableUnit[]> _dependOnSingle = new Dictionary<IAttackableUnit, IAttackableUnit[]>();
private List<IAttackableUnit> _protectedElements = new List<IAttackableUnit>();
private List<IAttackableUnit> _hasProtectionElements = new List<IAttackableUnit>();
private readonly List<IChampion> _protectedPlayers = new List<IChampion>();
private readonly IStatsModifier AFK_PROT_MODIFIER = new StatsModifier();
private readonly Game _game;
public ProtectionManager(Game game)
{
_game = game;
AFK_PROT_MODIFIER.Armor.FlatBonus = 99999.0f;
AFK_PROT_MODIFIER.MagicResist.FlatBonus = 99999.0f;
}
public void AddProtection(IAttackableUnit element, IAttackableUnit[] dependOnAll,
IAttackableUnit[] dependOnSingle)
{
_dependOnAll.Add(element, dependOnAll);
_dependOnSingle.Add(element, dependOnSingle);
_protectedElements.Add(element);
}
public void AddProtection(IAttackableUnit element, bool dependAll,
params IAttackableUnit[] dependOn)
{
if (dependAll)
{
_dependOnAll.Add(element, dependOn);
}
else
{
_dependOnSingle.Add(element, dependOn);
}
_protectedElements.Add(element);
}
public void RemoveProtection(IAttackableUnit element)
{
_dependOnAll.Remove(element);
_dependOnSingle.Remove(element);
_protectedElements.Remove(element);
}
public bool IsProtected(IAttackableUnit element)
{
return _protectedElements.Contains(element);
}
public void Update(float diff)
{
foreach (var element in _protectedElements)
{
if (_dependOnAll.ContainsKey(element) || _dependOnSingle.ContainsKey(element))
{
int destroyedAllCount = 0;
int destroyedSingleCount = 0;
if (_dependOnAll.ContainsKey(element))
{
foreach (var el in _dependOnAll[element])
{
if (el.IsDead) destroyedAllCount++;
}
}
if (_dependOnSingle.ContainsKey(element))
{
foreach (var el in _dependOnSingle[element])
{
if (el.IsDead)
{
destroyedSingleCount++;
break;
}
}
}
if ((!_dependOnAll.ContainsKey(element) || _dependOnAll[element].Length == 0 ||
destroyedAllCount == _dependOnAll[element].Length) &&
(!_dependOnSingle.ContainsKey(element) || _dependOnSingle[element].Length == 0 ||
destroyedSingleCount >= 1))
{
if (_hasProtectionElements.Contains(element))
{
element.SetIsTargetableToTeam(element.Team == TeamId.TEAM_BLUE ? TeamId.TEAM_PURPLE : TeamId.TEAM_BLUE, true);
_hasProtectionElements.Remove(element);
}
}
else
{
if (!_hasProtectionElements.Contains(element))
{
element.SetIsTargetableToTeam(element.Team == TeamId.TEAM_BLUE ? TeamId.TEAM_PURPLE : TeamId.TEAM_BLUE, false);
_hasProtectionElements.Add(element);
}
}
}
}
}
public void HandleFountainProtection(IChampion champion)
{
if (_game.PlayerManager.GetClientInfoByChampion(champion).IsDisconnected)
{
if (!_protectedPlayers.Contains(champion))
{
champion.AddStatModifier(AFK_PROT_MODIFIER);
_protectedPlayers.Add(champion);
}
}
else
{
if (_protectedPlayers.Contains(champion))
{
champion.RemoveStatModifier(AFK_PROT_MODIFIER);
_protectedPlayers.Remove(champion);
}
}
}
}
}