forked from bklol/Misc-Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kid-stages.sp
445 lines (386 loc) · 10.3 KB
/
kid-stages.sp
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
#pragma semicolon 1
#pragma newdecls required
#include <sourcemod>
#include <sdktools>
#include <mapzonelib>
#include <convert>
#define USES_CHAT_COLORS
#include <shavit>
#define MAXSTAGES 64
#define DEFAULTREPLAYINDEX 1
float gF_ClientPB[MAXPLAYERS+1][TRACKS_SIZE][MAXSTAGES][STYLE_LIMIT];
float gF_ClientTime[MAXPLAYERS+1][TRACKS_SIZE][MAXSTAGES][STYLE_LIMIT];
float gF_BestTime[TRACKS_SIZE][MAXSTAGES][STYLE_LIMIT];
bool gB_ZonesLoaded;
bool gB_Late = false;
any gA_StyleSettings[STYLE_LIMIT][STYLESETTINGS_SIZE];
char gS_ChatStrings[CHATSETTINGS_SIZE][128];
int gI_LastStage[MAXPLAYERS+1];
int replayBot = 1;
int stageCount = 1;
public Plugin myinfo =
{
name = "shavit Stages",
author = "KiD Fearless",
description = "Stage plugin for shavits bhop timer",
version = "1.1",
url = "https://steamcommunity.com/id/kidfearless/"
}
public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
{
gB_Late = late;
return APLRes_Success;
}
public void OnPluginStart()
{
RegConsoleCmd("sm_stages", Command_Stages, "Teleports to a stage or opens the menu");
RegConsoleCmd("sm_stage", Command_Stages, "Teleports to a stage or opens the menu");
//RegConsoleCmd("sm_t", Command_Stages, "Teleports you to your current stage");
RegAdminCmd("sm_stagezones", Command_StageZones, ADMFLAG_CHANGEMAP);
MapZone_RegisterZoneGroup("stages");
if(gB_Late)
{
OnMapStart();
Shavit_OnStyleConfigLoaded(-1);
Shavit_OnChatConfigLoaded();
MapZone_OnZonesLoaded();
}
}
public Action Command_StageZones(int client, int args)
{
MapZone_SetNewZoneBaseName(client, "stages", Convert_IntToString(stageCount), false);
MapZone_ShowMenu(client, "stages");
return Plugin_Handled;
}
public void MapZone_OnZoneRemoved(const char[] sZoneGroup, const char[] sZoneName, MapZoneType type, int iRemover)
{
if(StrEqual(sZoneGroup, "stages"))
{
int stage = StringToInt(sZoneName);
if(stage == stageCount)
{
--stageCount;
}
}
}
public void MapZone_OnZoneCreated(const char[] sZoneGroup, const char[] sZoneName, MapZoneType type, int iCreator)
{
if(StrEqual(sZoneGroup, "stages"))
{
int stage = StringToInt(sZoneName);
if(stage == stageCount)
{
++stageCount;
}
else if (stage > stageCount)
{
stageCount = stage + 1;
}
MapZone_SetZoneVisibility(sZoneGroup, sZoneName, ZoneVisibility_WhenEditing);
}
}
public void OnMapStart()
{
replayBot = DEFAULTREPLAYINDEX;
}
public void MapZone_OnZonesLoaded()
{
stageCount = GetGroupSize("stages") + 1;
gB_ZonesLoaded = true;
}
public void OnMapEnd()
{
gB_ZonesLoaded = false;
stageCount = 0;
ResetAllTimes();
}
public void OnClientDisconnect(int client)
{
ResetClientTimes(client);
}
public void Shavit_OnReplayStart(int replay)
{
replayBot = replay;
gI_LastStage[replayBot] = 0;
}
public void Shavit_OnChatConfigLoaded()
{
for(int i = 0; i < CHATSETTINGS_SIZE; ++i)
{
Shavit_GetChatStrings(i, gS_ChatStrings[i], 128);
}
}
public void Shavit_OnStyleConfigLoaded(int styles)
{
if(styles == -1)
{
styles = Shavit_GetStyleCount();
}
for(int i = 0; i < styles; ++i)
{
Shavit_GetStyleSettings(i, gA_StyleSettings[i]);
}
}
public void Shavit_OnStyleChanged(int client, int oldstyle, int newstyle)
{
gI_LastStage[client] = 0;
}
public void MapZone_OnClientEnterZone(int client, const char[] sZoneGroup, const char[] sZoneName)
{
if(StrContains(sZoneGroup, "stages", false) != -1)
{
OnEnterStage(client, StringToInt(sZoneName), Track_Main);
}
else if(StrContains(sZoneGroup, "bonus", false) != -1)
{
OnEnterStage(client, StringToInt(sZoneName), Track_Bonus);
}
}
void OnEnterStage(int client, int stage, int track)
{
int style;
float time, pbDiff, wrDiff;
char sTime[64], pbTime[64], wrTime[64], buffer[128];
if(client != replayBot)
{
if(client < 1 || client > MaxClients || !IsClientInGame(client) ||!IsPlayerAlive(client) || (Shavit_GetTimerStatus(client) != Timer_Running) || (Shavit_IsPracticeMode(client)) || (track != Shavit_GetClientTrack(client)))
{
return;
}
style = Shavit_GetBhopStyle(client);
time = Shavit_GetClientTime(client);
if(stage - gI_LastStage[client] == 1) //incremented stages normally
{
gF_ClientTime[client][track][stage][style] = time;
FormatEx(buffer, sizeof(buffer), "Stage %i {default}[ ", stage);
FormatSeconds(gF_ClientTime[client][track][stage][style], sTime, sizeof(sTime));
Format(buffer, sizeof(buffer), "%s{default}T %s | ", buffer, sTime);
if(gF_ClientPB[client][track][stage][style] != 0.0)
{
pbDiff = time - gF_ClientPB[client][track][stage][style];
FormatSeconds(pbDiff, pbTime, sizeof(pbTime));
Format(buffer, sizeof(buffer), "%s{yellow}PB %s%s{yellow} | ", buffer, (pbDiff > 0.0?"+{lightred}":"-{lime}"), pbTime);
}
if(gF_BestTime[track][stage][style] != 0.0)
{
wrDiff = time - gF_BestTime[track][stage][style];
FormatSeconds(wrDiff, wrTime, sizeof(wrTime));
Format(buffer, sizeof(buffer), "%s{bluegrey}WR %s%s{default} ]", buffer, (wrDiff > 0.0? "+{lightred}":"-{lime}"), wrTime);
}
ColorPrintToChat(client, buffer);
gI_LastStage[client] = stage;
}
else if(stage - gI_LastStage[client] > 1)//skipped a stage
{
gI_LastStage[client] = 0;
}
}
else
{
style = Shavit_GetReplayBotStyle(replayBot);
track = Shavit_GetReplayBotTrack(replayBot);
if(stage - gI_LastStage[replayBot] == 1)// incremented stages normally
{
time = Shavit_GetReplayTime(style, track);
gF_ClientTime[replayBot][track][stage][style] = time;
gF_BestTime[track][stage][style] = time;
gI_LastStage[replayBot] = stage;
}
else if(stage - gI_LastStage[replayBot] > 1)//skipped a stage
{
gI_LastStage[replayBot] = 0;
}
}
}
public void Shavit_OnFinish(int client, int style, float time, int jumps, int strafes, float sync, int track, float oldtime, float perfs)
{
if(time <= oldtime)
{
UpdateClientPB(client, style, track);
}
else if(gF_ClientPB[client][track][1][style] == 0.0)
{
UpdateClientPB(client, style, track);
}
}
public void Shavit_OnWorldRecord(int client, int style, float time, int jumps, int strafes, float sync, int track, float oldwr, float oldtime, float perfs)
{
UpdateStyleWR(client, style, track);
}
public void Shavit_OnRestart(int client, int track)
{
gI_LastStage[client] = 0;
ResetClientTimes(client);
}
public Action Command_Stages(int client, int args)
{
if(args < 1)
{
DisplayStageMenu(client);
}
else
{
char stage[2];
float position[3];
GetCmdArg(1, stage, sizeof(stage));
MapZone_GetZonePosition("stages", stage, position);
if(!IsNullVector(position))
{
Shavit_SetPracticeMode(client, true, true);
TeleportEntity(client, position, NULL_VECTOR , NULL_VECTOR);
Shavit_PrintToChat(client, "Teleported to %s", stage);
}
else
{
Shavit_PrintToChat(client, "Error: Unable To Find Stage");
}
}
return Plugin_Handled;
}
public Action DisplayStageMenu(int client)
{
Menu menu = new Menu(StageHandler);
menu.SetTitle("Select A Stage\nYOU WILL BE PUT IN PRACTICE MODE!");
for(int i = 0; i < (stageCount - 1); ++i)//stages start at 1, length also starts at 1
{
char buffer[12];
char stage[2];
Format(stage, sizeof(stage), "%i", (i+1));
Format(buffer, sizeof(buffer), "Stage: %i", (i+1));
menu.AddItem(stage, buffer);
}
menu.ExitButton = true;
menu.Display(client, 60);
return Plugin_Handled;
}
public int StageHandler(Menu menu, MenuAction action, int param1, int param2)
{
switch(action)
{
case MenuAction_Select:
{
char stage[2];
float position[3];
menu.GetItem(param2, stage, sizeof(stage));
MapZone_GetZonePosition("stages", stage, position);
if(!IsNullVector(position))
{
Shavit_SetPracticeMode(param1, true, true);
TeleportEntity(param1, position, NULL_VECTOR , NULL_VECTOR);
Shavit_PrintToChat(param1, "Teleported to %s", stage);
}
else
{
Shavit_PrintToChat(param1, "Error: Unable To Find Stage");
}
}
case MenuAction_End:
{
delete menu;
}
}
return 1;
}
void UpdateStyleWR(int client, int style, int track)
{
for(int i = 0; i < MAXSTAGES; ++i)
{
gF_BestTime[track][i][style] = gF_ClientTime[client][track][i][style];
}
}
void UpdateClientPB(int client, int style, int track)
{
for(int i = 0; i < MAXSTAGES; ++i)
{
gF_ClientPB[client][track][i][style] = gF_ClientTime[client][track][i][style];
}
}
stock void ResetClientTimes(int client)
{
for(int track = 0; track < TRACKS_SIZE; ++track)
{
for(int stage = 0; stage < MAXSTAGES; ++stage)
{
int styleCount = Shavit_GetStyleCount();
for(int style = 0; style < styleCount; ++style)
{
gF_ClientTime[client][track][stage][style] = 0.0;
}
}
}
}
stock void ResetWRTimes()
{
for(int track = 0; track < TRACKS_SIZE; ++track)
{
for(int stage = 0; stage < MAXSTAGES; ++stage)
{
int styleCount = Shavit_GetStyleCount();
for(int style = 0; style < styleCount; ++style)
{
gF_BestTime[track][stage][style] = 0.0;
}
}
}
}
stock void ResetAllTimes()
{
for(int client = 0; client < MaxClients; ++client)
{
for(int track = 0; track < TRACKS_SIZE; ++track)
{
for(int stage = 0; stage < MAXSTAGES; ++stage)
{
int styleCount = Shavit_GetStyleCount();
for(int style = 0; style < styleCount; ++style)
{
gF_ClientPB[client][track][stage][style] = 0.0;
gF_ClientTime[client][track][stage][style] = 0.0;
}
}
}
}
ResetWRTimes();
}
//Taken from slidy's ssj
void FormatColors(char[] buffer, int size, bool colors, bool escape)
{
if(colors)
{
static EngineVersion engine = Engine_Unknown;
if( engine == Engine_Unknown )
{
engine = GetEngineVersion();
}
for(int i = 0; i < sizeof(gS_GlobalColorNames); i++)
{
ReplaceString(buffer, size, gS_GlobalColorNames[i], gS_GlobalColors[i]);
}
if(engine == Engine_CSGO)
{
for(int i = 0; i < sizeof(gS_CSGOColorNames); i++)
{
ReplaceString(buffer, size, gS_CSGOColorNames[i], gS_CSGOColors[i]);
}
}
ReplaceString(buffer, size, "^", "\x07");
ReplaceString(buffer, size, "{RGB}", "\x07");
ReplaceString(buffer, size, "&", "\x08");
ReplaceString(buffer, size, "{RGBA}", "\x08");
}
if(escape)
{
ReplaceString(buffer, size, "%%", "");
}
}
void ColorPrintToChat( int client, char[] format, any ... )
{
char buffer[512];
VFormat( buffer, sizeof(buffer), format, 3 );
FormatColors( buffer, sizeof(buffer), true, false );
Shavit_PrintToChat( client, buffer );
}
int GetGroupSize(const char[] group, bool bIncludeClusters=true)
{
return MapZone_GetGroupZones(group, bIncludeClusters).Length;
}