-
Notifications
You must be signed in to change notification settings - Fork 115
/
retakes.inc
270 lines (235 loc) · 7.75 KB
/
retakes.inc
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
#if defined _retakes_included
#endinput
#endif
#define _retakes_included
enum Bombsite {
BombsiteA = 0,
BombsiteB = 1,
};
// Spawn types. These only apply to T-side spawns, all
// CT-spawns are considered SpawnType_Normal since they have no bomb.
enum SpawnType {
SpawnType_Normal = 0,
SpawnType_OnlyWithBomb = 1,
SpawnType_NeverWithBomb = 2,
};
#define SITESTRING(%1) ((%1) == BombsiteA ? "A" : "B")
#define TEAMSTRING(%1) ((%1) == CS_TEAM_CT ? "CT" : "T")
/**
* Maxmimum length of a nade string. Example: "hfs" is a hegrenade, flashbang, and smoke.
*/
#define NADE_STRING_LENGTH 8
/**
* Maxmimum length of a weapon name. Example: "weapon_ak47"
*/
#define WEAPON_STRING_LENGTH 32
/**
* Called right before players get put onto teams for the next round.
* This is the best place to decide who goes onto what team if you want
* to change the default behavior.
*
* @param rankingQueue a priority queue (see include/priorityqueue.inc)
* @param waitingQueue a queue of the players waiting to join (see include/queue.inc)
* @noreturn
*/
forward void Retakes_OnPreRoundEnqueue(ArrayList rankingQueue, ArrayList waitingQueue);
/**
* Called after active players have been placed into the priority scoring queue
* for the next round. This is a convenient place to change their scores by
* editing the ranking priority queue itself.
* (rather than using the Retakes_SetRoundPoints native)
*
* @param rankingQueue a priority queue (see include/priorityqueue.inc)
* @param waitingQueue a queue of the players waiting to join (see include/queue.inc)
* @noreturn
*/
forward void Retakes_OnPostRoundEnqueue(ArrayList rankingQueue, ArrayList waitingQueue);
/**
* Called when the bombsite for the round is decided.
*
* @param site which bombsite the round will use
* @noreturn
*/
forward void Retakes_OnSitePicked(Bombsite& site);
/**
* Called when the team sizes are set for the round.
*
* @param tCount the number of terrorists that will play the round
* @param ctcount the number of counter-terrorists that will play the round
* @noreturn
*/
forward void Retakes_OnTeamSizesSet(int& tCount, int& ctCount);
/**
* Called when a player fails to plant the bomb when he spawned with it.
*
* @param client the player that did not plant
* @noreturn
*/
forward void Retakes_OnFailToPlant(int client);
/**
* Called when a team wins a round.
*
* @param winner the winning team (CS_TEAM_T or CS_TEAM_CT)
* @param tPlayers an ArrayList of the players on the terrorist team
* @param ctPlayers an ArrayList of the players on the counter-terrorist team
* @noreturn
*/
forward void Retakes_OnRoundWon(int winner, ArrayList tPlayers, ArrayList ctPlayers);
/**
* Called after teams have been determined for the round.
*
* @param tPlayers an ArrayList of the players on the terrorist team
* @param ctPlayers an ArrayList of the players on the counter-terrorist team
* @param bombsite
* @noreturn
*/
forward void Retakes_OnTeamsSet(ArrayList tPlayers, ArrayList ctPlayers, Bombsite bombsite);
/**
* Called when player weapons are being allocated for the round.
*
* @param tPlayers an ArrayList of the players on the terrorist team
* @param ctPlayers an ArrayList of the players on the counter-terrorist team
* @param bombsite
* @noreturn
*/
forward void Retakes_OnWeaponsAllocated(ArrayList tPlayers, ArrayList ctPlayers, Bombsite bombsite);
/**
* Called when a client issues a command to bring up a "guns" menu.
*/
forward void Retakes_OnGunsCommand(int client);
/**
* Returns if a player has joined the game, i.e., if they are on T/Ct or in the waiting queue.
*
* @param client a player
* @return if the player has joined
*/
native bool Retakes_IsJoined(int client);
/**
* Returns if a player is in the waiting queue.
*
* @param client a player
* @return if the player is in the waiting queue
*/
native bool Retakes_IsInQueue(int client);
/**
* Sends a retake formatted message to a client.
*
* @param client a player
* @param format string message
* @noreturn
*/
native void Retakes_Message(int client, const char[] format, any ...);
/**
* Sends a retake formatted message to all clients.
*
* @param format string message
* @noreturn
*/
native void Retakes_MessageToAll(const char[] format, any ...);
/**
* Returns the number of terrorists for the current round.
*/
native int Retakes_GetNumActiveTs();
/**
* Returns the number of terrorists for the current round.
*/
native int Retakes_GetNumActiveCTs();
/**
* Returns the number of active players (t+ct) for the current round.
*/
native int Retakes_GetNumActivePlayers();
/**
* Returns the bombsite for the current scenario.
*/
native Bombsite Retakes_GetCurrrentBombsite();
/**
* Returns the round points for a client in the current round.
*/
native int Retakes_GetRoundPoints(int client);
/**
* Sets the round points for a client in the current round.
*/
native int Retakes_SetRoundPoints(int client, int points);
/**
* Changes the round points for a client in the current round.
*/
native void Retakes_ChangeRoundPoints(int client, int dp);
/**
* Sets player weapon/equipment information for the current round.
*/
native void Retakes_SetPlayerInfo(int client,
const char[] primary="",
const char[] secondary="",
const char[] nades="",
int health=100,
int armor=0,
bool helmet=false,
bool kit=false);
/**
* Gets player weapon/equipment information for the current round.
*/
native void Retakes_GetPlayerInfo(int client,
char primary[WEAPON_STRING_LENGTH],
char secondary[WEAPON_STRING_LENGTH],
char nades[NADE_STRING_LENGTH],
int& health,
int& armor,
bool& helmet,
bool& kit);
/**
* Returns the total number of live rounds played on the current map.
*/
native int Retakes_GetRetakeRoundsPlayed();
/**
* Returns if edit mode is active.
*/
native bool Retakes_InEditMode();
/**
* Returns if the game is currently in a warmup phase.
*/
native bool Retakes_InWarmup();
/**
* Returns if the plugin is enabled.
*/
native bool Retakes_Enabled();
/**
* Returns if the plugin is enabled and not in warmup.
*/
stock bool Retakes_Live() {
return Retakes_Enabled() && !Retakes_InWarmup() && !Retakes_InEditMode();
}
/**
* Returns the maximum number of players allowed into the game.
*/
native int Retakes_GetMaxPlayers();
public SharedPlugin __pl_retakes = {
name = "retakes",
file = "retakes.smx",
#if defined REQUIRE_PLUGIN
required = 1,
#else
required = 0,
#endif
};
#if !defined REQUIRE_PLUGIN
public __pl_retakes_SetNTVOptional() {
MarkNativeAsOptional("Retakes_IsJoined");
MarkNativeAsOptional("Retakes_IsInQueue");
MarkNativeAsOptional("Retakes_Message");
MarkNativeAsOptional("Retakes_MessageToAll");
MarkNativeAsOptional("Retakes_GetNumActiveTs");
MarkNativeAsOptional("Retakes_GetNumActiveCTs");
MarkNativeAsOptional("Retakes_GetNumActivePlayers");
MarkNativeAsOptional("Retakes_GetCurrrentBombsite");
MarkNativeAsOptional("Retakes_GetRoundPoints");
MarkNativeAsOptional("Retakes_SetRoundPoints");
MarkNativeAsOptional("Retakes_ChangeRoundPoints");
MarkNativeAsOptional("Retakes_SetPlayerInfo");
MarkNativeAsOptional("Retakes_GetPlayerInfo");
MarkNativeAsOptional("Retakes_GetRetakeRoundsPlayed");
MarkNativeAsOptional("Retakes_InEditMode");
MarkNativeAsOptional("Retakes_InWarmup");
MarkNativeAsOptional("Retakes_Enabled");
MarkNativeAsOptional("Retakes_GetMaxPlayers");
}
#endif