fixed reloading and a few other bugs

This commit is contained in:
BotoX 2016-05-08 22:06:57 +02:00
parent 1968ee9f7f
commit 307d75d433
4 changed files with 66 additions and 31 deletions

View File

@ -18,5 +18,10 @@ for sdk_name in SM.sdks:
sdk = SM.sdks[sdk_name]
binary = SM.HL2Config(project, projectName + '.ext.' + sdk.ext, sdk)
binary.compiler.cxxincludes += [
os.path.join(SM.sm_root, 'public', 'extensions'),
os.path.join(SM.sm_root, 'public', 'sourcepawn'),
os.path.join(SM.sm_root, 'public', 'amtl')
]
SM.extensions += builder.Add(project)

View File

@ -10,3 +10,5 @@ func_rotating
func_breakable
AddOutput input fired with bad string.
Interpenetrating entities!
ERROR: Tried to SetParentAttachment
triggered "clantag"

View File

@ -34,12 +34,6 @@
#include "CDetour/detours.h"
#include "extension.h"
/* SourceMod CDetour doesn't have this */
#define DETOUR_DECL_STATIC2(name, ret, p1type, p1name, p2type, p2name) \
ret (*name##_Actual)(p1type, p2type) = NULL; \
ret name(p1type p1name, p2type p2name)
/* */
#if SOURCE_ENGINE > SE_LEFT4DEAD2
#define WINDOWS_SIGNATURE "\x55\x8B\xEC\x83\xE4\xF8\x83\xEC\x14\x8B\x45\x08\x53\x56\x57\x8B\xF9"
#define WINDOWS_SIG_LENGTH 17
@ -56,10 +50,9 @@ ret name(p1type p1name, p2type p2name)
Cleaner g_Cleaner;
SMEXT_LINK(&g_Cleaner);
CDetour *g_pDetour = 0;
CDetour *g_pPrintf = 0;
CDetour *g_pDetour = NULL;
char **g_ppStrings;
char **g_ppStrings = NULL;
int g_Strings = 0;
#if SOURCE_ENGINE >= SE_LEFT4DEAD2
@ -86,6 +79,10 @@ DETOUR_DECL_STATIC2(Detour_DefSpew, SpewRetval_t, SpewType_t, channel, char *, t
bool Cleaner::SDK_OnLoad(char *error, size_t maxlength, bool late)
{
g_pDetour = NULL;
g_ppStrings = NULL;
g_Strings = 0;
CDetourManager::Init(g_pSM->GetScriptingEngine(), 0);
char szPath[256];
@ -109,6 +106,8 @@ bool Cleaner::SDK_OnLoad(char *error, size_t maxlength, bool late)
rewind(pFile);
g_ppStrings = (char **)malloc(Lines * sizeof(char **));
memset(g_ppStrings, 0, Lines * sizeof(char **));
while(!feof(pFile))
{
g_ppStrings[g_Strings] = (char *)malloc(256 * sizeof(char *));
@ -121,10 +120,25 @@ bool Cleaner::SDK_OnLoad(char *error, size_t maxlength, bool late)
if(g_ppStrings[g_Strings][Len - 2] == '\r')
g_ppStrings[g_Strings][Len - 2] = 0;
Len = strlen(g_ppStrings[g_Strings]);
if(!Len)
{
free(g_ppStrings[g_Strings]);
g_ppStrings[g_Strings] = NULL;
}
else
g_Strings++;
}
fclose(pFile);
if(!g_Strings)
{
SDK_OnUnload();
snprintf(error, maxlength, "Config is empty, disabling extension.");
return false;
}
#if SOURCE_ENGINE >= SE_LEFT4DEAD2
#ifdef PLATFORM_WINDOWS
HMODULE pTier0 = GetModuleHandle("tier0.dll");
@ -132,9 +146,11 @@ bool Cleaner::SDK_OnLoad(char *error, size_t maxlength, bool late)
#elif defined PLATFORM_LINUX
void *pTier0 = dlopen("libtier0.so", RTLD_NOW);
void *pFn = memutils->ResolveSymbol(pTier0, LINUX_SIGNATURE);
dlclose(pTier0);
#elif defined PLATFORM_APPLE
void *pTier0 = dlopen("libtier0.dylib", RTLD_NOW);
void *pFn = memutils->ResolveSymbol(pTier0, MAC_SIGNATURE);
dlclose(pTier0);
#endif
if(!pFn)
{
@ -144,7 +160,7 @@ bool Cleaner::SDK_OnLoad(char *error, size_t maxlength, bool late)
#endif
#if SOURCE_ENGINE >= SE_LEFT4DEAD2
g_pDetour = DETOUR_CREATE_MEMBER(Detour_LogDirect, fn);
g_pDetour = DETOUR_CREATE_MEMBER(Detour_LogDirect, pFn);
#else
g_pDetour = DETOUR_CREATE_STATIC(Detour_DefSpew, (void *)GetSpewOutputFunc());
#endif
@ -162,8 +178,20 @@ bool Cleaner::SDK_OnLoad(char *error, size_t maxlength, bool late)
void Cleaner::SDK_OnUnload()
{
if(g_pDetour)
if(g_pDetour != NULL)
{
g_pDetour->Destroy();
delete[] g_ppStrings;
g_pDetour = NULL;
}
if(g_ppStrings != NULL)
{
for(int i = 0; i < g_Strings; i++)
{
free(g_ppStrings[i]);
g_ppStrings[i] = NULL;
}
free(g_ppStrings);
g_ppStrings = NULL;
}
}

View File

@ -40,9 +40,9 @@
/* Basic information exposed publicly */
#define SMEXT_CONF_NAME "Cleaner"
#define SMEXT_CONF_DESCRIPTION "Filter useless output from console"
#define SMEXT_CONF_VERSION "1.0"
#define SMEXT_CONF_AUTHOR "Zephyrus"
#define SMEXT_CONF_URL "http://www.sourcemod.net/"
#define SMEXT_CONF_VERSION "1.1"
#define SMEXT_CONF_AUTHOR "Zephyrus + BotoX"
#define SMEXT_CONF_URL "https://github.com/CSSZombieEscape/sm-ext-cleaner"
#define SMEXT_CONF_LOGTAG "CLEANER"
#define SMEXT_CONF_LICENSE "GPL"
#define SMEXT_CONF_DATESTRING __DATE__