forked from alliedmodders/cssdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcssdm_main.cpp
273 lines (226 loc) · 7.71 KB
/
cssdm_main.cpp
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
/**
* vim: set ts=4 :
* ===============================================================
* CS:S DM, Copyright (C) 2004-2007 AlliedModders LLC.
* By David "BAILOPAN" Anderson
* All rights reserved.
* ===============================================================
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
* MA 02110-1301 USA
*
* Version: $Id$
*/
#include "cssdm_main.h"
#include "cssdm_headers.h"
#include "cssdm_utils.h"
#include "cssdm_events.h"
#include "cssdm_players.h"
#include "cssdm_ctrl.h"
#include "cssdm_config.h"
#include "cssdm_ffa.h"
#include "cssdm_callbacks.h"
#include "cssdm_weapons.h"
#include "cssdm_detours.h"
#include "cssdm_version.h"
SH_DECL_HOOK3_void(IServerGameDLL, ServerActivate, SH_NOATTRIB, 0, edict_t *, int, int);
SH_DECL_HOOK0_void(IServerGameDLL, LevelShutdown, SH_NOATTRIB, 0)
SH_DECL_HOOK0_void(IServerGameDLL, DLLShutdown, SH_NOATTRIB, false);
SH_DECL_HOOK2_void(IServerGameClients, ClientCommand, SH_NOATTRIB, false, edict_t *, const CCommand &);
Deathmatch g_DM;
IGameEventManager2 *gameevents = NULL;
IBaseFileSystem *basefilesystem = NULL;
IBinTools *bintools = NULL;
IGameConfig *g_pDmConf = NULL;
CGlobalVars *gpGlobals = NULL;
IPlayerInfoManager *playerinfomngr = NULL;
IServerGameEnts *gameents = NULL;
IServerGameClients *gameclients = NULL;
ISourcePawnEngine *spengine = NULL;
IBotManager *botmanager = NULL;
ICvar *icvar = NULL;
char g_GlobError[255] = {0};
bool g_IsLoadedOkay = false;
bool g_Startup = false;
bool g_IsInGlobalShutdown = false;
SMEXT_LINK(&g_DM);
#define VERIFY_SIGNATURE(name) \
if (!g_pDmConf->GetMemSig(name, &addr) || !addr) { \
snprintf(error, maxlength, "Could not find signature \"%s\"", name); \
return false; \
}
#define VERIFY_OFFSET(name) \
if (!g_pDmConf->GetOffset(name, &offset) || !offset) { \
snprintf(error, maxlength, "Could not find offset \"%s\"", name); \
return false; \
}
#define HOOK_EVENT2(name) \
if (!gameevents->AddListener(&g_cls_event_##name, #name, true)) { \
snprintf(error, maxlength, "Could not hook event \"%s\"", #name); \
return false; \
}
#define UNHOOK_EVENT2(name) gameevents->RemoveListener(&g_cls_event_##name);
bool Deathmatch::SDK_OnLoad(char *error, size_t maxlength, bool late)
{
sharesys->AddDependency(myself, "bintools.ext", true, true);
sharesys->AddNatives(myself, g_BaseNatives);
if (!gameconfs->LoadGameConfigFile("cssdm.games", &g_pDmConf, error, maxlength))
{
return false;
}
void *addr;
int offset;
VERIFY_OFFSET("CSWeaponDropPatch");
VERIFY_SIGNATURE("RoundRespawn");
VERIFY_SIGNATURE("CSWeaponDrop");
VERIFY_SIGNATURE("DropWeapons");
VERIFY_OFFSET("Weapon_GetSlot");
VERIFY_OFFSET("RemoveAllItems");
VERIFY_OFFSET("DropWeaponsPatch");
VERIFY_OFFSET("GiveAmmo");
if (!DM_ParseWeapons(error, maxlength))
{
return false;
}
gpGlobals = g_SMAPI->GetCGlobals();
SM_InitConCommandBase();
spengine = g_pSM->GetScriptingEngine();
return true;
}
bool Deathmatch::SDK_OnMetamodLoad(ISmmAPI *ismm, char *error, size_t maxlen, bool late)
{
GET_V_IFACE_CURRENT(GetEngineFactory, gameevents, IGameEventManager2, INTERFACEVERSION_GAMEEVENTSMANAGER2);
GET_V_IFACE_CURRENT(GetFileSystemFactory, basefilesystem, IBaseFileSystem, BASEFILESYSTEM_INTERFACE_VERSION);
GET_V_IFACE_ANY(GetServerFactory, playerinfomngr, IPlayerInfoManager, INTERFACEVERSION_PLAYERINFOMANAGER);
GET_V_IFACE_ANY(GetServerFactory, gameents,IServerGameEnts, INTERFACEVERSION_SERVERGAMEENTS);
GET_V_IFACE_ANY(GetServerFactory, botmanager, IBotManager, INTERFACEVERSION_PLAYERBOTMANAGER);
GET_V_IFACE_ANY(GetServerFactory, gameclients, IServerGameClients, INTERFACEVERSION_SERVERGAMECLIENTS);
GET_V_IFACE_CURRENT(GetEngineFactory, icvar, ICvar, CVAR_INTERFACE_VERSION);
return true;
}
void OnDLLShutdown()
{
g_IsInGlobalShutdown = true;
RETURN_META(MRES_IGNORED);
}
void ServerActivate(edict_t *pEdictList, int edictCount, int clientMax)
{
OnLevelInitialized();
RETURN_META(MRES_IGNORED);
}
void LevelShutdown()
{
OnLevelEnd();
RETURN_META(MRES_IGNORED);
}
bool Startup(char *error, size_t maxlength)
{
playerhelpers->AddClientListener(&g_ClientListener);
HOOK_EVENT2(player_death);
HOOK_EVENT2(player_spawn);
HOOK_EVENT2(player_team);
HOOK_EVENT2(round_start);
HOOK_EVENT2(round_end);
HOOK_EVENT2(server_shutdown);
HOOK_EVENT2(item_pickup);
g_Startup = true;
SH_ADD_HOOK_STATICFUNC(IServerGameDLL, ServerActivate, gamedll, ServerActivate, true);
SH_ADD_HOOK_STATICFUNC(IServerGameDLL, LevelShutdown, gamedll, LevelShutdown, false);
SH_ADD_HOOK_STATICFUNC(IServerGameDLL, DLLShutdown, gamedll, OnDLLShutdown, false);
SH_ADD_HOOK_STATICFUNC(IServerGameClients, ClientCommand, gameclients, OnClientCommand_Post, true);
DM_InitCallbacks();
char ffa_error[255];
if (!DM_Prepare_FFA(ffa_error, sizeof(ffa_error)))
{
g_pSM->LogError(myself, "FFA will not work: %s", ffa_error);
}
DM_InitDetours();
return InitializeUtils(error, maxlength);
}
void Shutdown()
{
/* Remove hooks that could have happened whether we got started up or not */
playerhelpers->RemoveClientListener(&g_ClientListener);
UNHOOK_EVENT2(player_death);
UNHOOK_EVENT2(player_spawn);
UNHOOK_EVENT2(player_team);
UNHOOK_EVENT2(round_start);
UNHOOK_EVENT2(round_end);
UNHOOK_EVENT2(server_shutdown);
UNHOOK_EVENT2(item_pickup);
/* If we were never started up, the rest of this is invalid */
if (!g_Startup)
{
return;
}
/* Make sure stuff like FFA is cleaned up */
DM_Disable();
/* Destroy various internal things */
DM_ShutdownDetours();
DM_ShutdownCallbacks();
DM_FreeWeapons();
ShutdownUtils();
/* Unhook everything from SourceHook */
SH_REMOVE_HOOK_STATICFUNC(IServerGameClients, ClientCommand, gameclients, OnClientCommand_Post, true);
SH_REMOVE_HOOK_STATICFUNC(IServerGameDLL, DLLShutdown, gamedll, OnDLLShutdown, false);
SH_REMOVE_HOOK_STATICFUNC(IServerGameDLL, LevelShutdown, gamedll, LevelShutdown, false);
SH_REMOVE_HOOK_STATICFUNC(IServerGameDLL, ServerActivate, gamedll, ServerActivate, true);
}
void Deathmatch::SDK_OnAllLoaded()
{
SM_GET_LATE_IFACE(BINTOOLS, bintools);
g_IsLoadedOkay = Startup(g_GlobError, sizeof(g_GlobError));
if (!QueryRunning(NULL, 0))
{
return;
}
}
void Deathmatch::SDK_OnUnload()
{
DM_FreeWeapons();
Shutdown();
gameconfs->CloseGameConfigFile(g_pDmConf);
}
bool Deathmatch::QueryRunning(char *error, size_t maxlength)
{
SM_CHECK_IFACE(BINTOOLS, bintools);
if (!g_IsLoadedOkay && g_GlobError[0] != '\0')
{
snprintf(error, maxlength, "%s", g_GlobError);
return false;
}
return true;
}
bool Deathmatch::QueryInterfaceDrop(SMInterface *pInterface)
{
if (pInterface == bintools)
{
return false;
}
return true;
}
void Deathmatch::NotifyInterfaceDrop(SMInterface *pInterface)
{
/* We have to take care of bintools early then... */
if (pInterface == bintools)
{
ShutdownUtils();
bintools = NULL;
}
}
const char *Deathmatch::GetExtensionVerString()
{
return CSSDM_FULL_VERSION;
}