forked from supergosciu/ArcadeScripts-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvents.cs
More file actions
279 lines (244 loc) · 10.5 KB
/
Copy pathEvents.cs
File metadata and controls
279 lines (244 loc) · 10.5 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
using CounterStrikeSharp.API.Core;
using CounterStrikeSharp.API.Modules.Memory.DynamicFunctions;
using ArcadeScripts.Scripts;
using CounterStrikeSharp.API;
using CounterStrikeSharp.API.Modules.Utils;
namespace ArcadeScripts;
public partial class ArcadeScripts
{
public delegate void OnAllEntitiesSpawnedDelegate();
public event OnAllEntitiesSpawnedDelegate? OnAllEntitiesSpawnedEvent;
public delegate void OnEntitySpawnedDelegate(CEntityInstance entity);
public event OnEntitySpawnedDelegate? OnEntitySpawnedEvent;
public delegate void OnEntityRemovedDelegate(CEntityInstance entity);
public event OnEntityRemovedDelegate? OnEntityRemovedEvent;
private List<CEntityInstance> Entities = [];
private bool IsRoundStart = false;
private bool WarmuedUp = false;
private void OnPrecacheResources(ResourceManifest manifest)
{
if (Server.MapName != "jb_arcade_b6") return;
manifest.AddResource("panorama/images/icons/equipment/lightning.vsvg");
manifest.AddResource("panorama/images/icons/equipment/nuclear.vsvg");
manifest.AddResource("panorama/images/icons/equipment/poison.vsvg");
manifest.AddResource("panorama/images/icons/equipment/wreckingball.vsvg");
}
private HookResult OnAcceptInput(DynamicHook hook)
{
if (Server.MapName != "jb_arcade_b6") return HookResult.Continue;
string input = hook.GetParam<CUtlSymbolLarge>(1).String;
if (!string.Equals(input.ToLower(), "runscriptcode")) return HookResult.Continue;
string? value = hook.GetParam<CVariant>(4).FieldType == fieldtype_t.FIELD_CSTRING ? NativeAPI.GetStringFromSymbolLarge(hook.GetParam<CVariant>(4).Handle) : null;
if (value == null) return HookResult.Continue;
if (!WarmuedUp && Scripts.Count != 0)
{
foreach (ScriptBase script in Scripts.Values)
{
script.Warmup();
}
WarmuedUp = true;
return HookResult.Continue;
}
CEntityInstance target = hook.GetParam<CEntityIdentity>(0).EntityInstance;
if (target.DesignerName != "logic_script") return HookResult.Continue;
CEntityInstance activator = hook.GetParam<CEntityInstance>(2);
CEntityInstance caller = hook.GetParam<CEntityInstance>(3);
InputData inputData = new(target.As<CLogicScript>(), value, activator, caller);
RunScriptCode(inputData);
return HookResult.Continue;
}
private HookResult OnTakeDamage(DynamicHook hook)
{
if (Server.MapName != "jb_arcade_b6") return HookResult.Continue;
CTakeDamageInfo info = hook.GetParam<CTakeDamageInfo>(1);
CBaseEntity? attacker = info.Attacker.Value ?? info.Ability.Value;
if (attacker != null && (attacker.DesignerName == "weapon_nuclear" || attacker.DesignerName == "weapon_poison" || attacker.DesignerName == "weapon_lightning" || attacker.DesignerName == "weapon_wreckingball"))
{
CBaseEntity? owner = attacker.OwnerEntity.Value;
if (owner != null && owner.IsValid)
{
info.Inflictor.Raw = attacker.EntityHandle.Raw;
info.Ability.Raw = attacker.EntityHandle.Raw;
info.Attacker.Raw = attacker.OwnerEntity;
}
}
return HookResult.Continue;
}
private HookResult OnRoundPrestart(EventRoundPrestart @event, GameEventInfo info)
{
if (Server.MapName != "jb_arcade_b6") return HookResult.Continue;
foreach (KeyValuePair<CLogicScript, ScriptBase> script in Scripts.ToDictionary())
{
script.Value.Remove();
Scripts[script.Key] = null!;
}
Scripts.Clear();
IsRoundStart = true;
return HookResult.Continue;
}
private HookResult OnRoundStart(EventRoundStart @event, GameEventInfo info)
{
if (Server.MapName != "jb_arcade_b6") return HookResult.Continue;
if (Entities.Count == 0) return HookResult.Continue;
foreach (CEntityInstance entity in Entities)
{
if (entity.DesignerName == "logic_script")
{
CLogicScript script = entity.As<CLogicScript>();
if (entity.PrivateVScripts == "playsoundat.nut")
{
Scripts.Add(script, new PlaySoundAt(script));
}
else if (entity.PrivateVScripts == "colors.nut")
{
Scripts.Add(script, new Colors(script));
}
else if (entity.PrivateVScripts == "blockjump.nut")
{
Scripts.Add(script, new BlockJump(script));
}
else if (entity.PrivateVScripts == "darude.nut")
{
Scripts.Add(script, new Darude(script));
}
else if (entity.PrivateVScripts == "item_in_area.nut")
{
Scripts.Add(script, new ItemInArea(script));
}
else if (entity.PrivateVScripts == "car_secret.nut")
{
Scripts.Add(script, new CarSecret(script));
}
else if (entity.PrivateVScripts == "decathlon.nut")
{
Scripts.Add(script, new Decathlon(script));
}
else if (entity.PrivateVScripts == "surf.nut")
{
Scripts.Add(script, new Surf(script));
}
else if (entity.PrivateVScripts == "bee.nut")
{
Scripts.Add(script, new Bee(script));
}
else if (entity.PrivateVScripts == "tapper.nut")
{
Scripts.Add(script, new Tapper(script));
}
else if (entity.PrivateVScripts == "strafe_jump.nut")
{
Scripts.Add(script, new StrafeJump(script));
}
else if (entity.PrivateVScripts == "lightduel.nut")
{
Scripts.Add(script, new LightDuel(script));
}
else if (entity.PrivateVScripts == "blob.nut")
{
Scripts.Add(script, new Blob(script));
}
else if (entity.PrivateVScripts == "fidgetspinner.nut")
{
Scripts.Add(script, new FidgetSpinner(script));
}
else if (entity.PrivateVScripts == "rocketjump.nut")
{
Scripts.Add(script, new RocketJump(script));
}
else if (entity.PrivateVScripts == "follower.nut")
{
Scripts.Add(script, new Follower(script));
}
else if (entity.PrivateVScripts == "cell_instructions.nut")
{
Scripts.Add(script, new CellInstructions(script));
}
else if (entity.PrivateVScripts == "cellrewards")
{
Scripts.Add(script, new CellRewards(script));
}
else if (entity.PrivateVScripts == "decoys.nut")
{
Scripts.Add(script, new Decoys(script));
}
else if (entity.PrivateVScripts == "has_weapon_noname.nut")
{
Scripts.Add(script, new HasWeapon(script));
}
else if (entity.PrivateVScripts == "hurt.nut")
{
Scripts.Add(script, new Hurt(script));
}
else if (entity.PrivateVScripts == "lightning.nut")
{
Scripts.Add(script, new Lightning(script));
}
else if (entity.PrivateVScripts == "lunge.nut")
{
Scripts.Add(script, new Lunge(script));
}
else if (entity.PrivateVScripts == "poison.nut")
{
Scripts.Add(script, new Poison(script));
}
else if (entity.PrivateVScripts == "rogue.nut")
{
Scripts.Add(script, new Rogue(script));
}
else if (entity.PrivateVScripts == "timer.nut")
{
Scripts.Add(script, new SurfTimer(script));
}
if (entity.PrivateVScripts == "grab.nut")
{
Scripts.Add(script, new Grab(script));
}
else if (entity.PrivateVScripts == "compass.nut")
{
Scripts.Add(script, new Compass(script));
}
else if (entity.PrivateVScripts == "flight.nut")
{
Scripts.Add(script, new Flight(script));
}
}
}
foreach (CEntityInstance entity in Entities)
{
string? targetname = entity.Entity?.Name;
if (string.IsNullOrEmpty(targetname)) continue;
foreach (ScriptBase script in Scripts.Values)
{
foreach (string name in script.EntityNames)
{
if (targetname.Contains(name))
{
if (!script.EntityList.TryGetValue(targetname, out List<CEntityInstance>? entityList))
{
entityList = [];
script.EntityList[targetname] = entityList;
}
entityList.Add(entity);
}
}
}
}
OnAllEntitiesSpawnedEvent?.Invoke();
IsRoundStart = false;
return HookResult.Continue;
}
private void OnEntitySpawned(CEntityInstance entity)
{
if (Server.MapName != "jb_arcade_b6") return;
if (!entity.IsValid) return;
if (!IsRoundStart) OnEntitySpawnedEvent?.Invoke(entity);
if (string.IsNullOrEmpty(entity.Entity?.Name)) return;
Entities.Add(entity);
}
private void OnEntityRemoved(CEntityInstance entity)
{
if (Server.MapName != "jb_arcade_b6") return;
if (!IsRoundStart) OnEntityRemovedEvent?.Invoke(entity);
Entities.Remove(entity);
}
}