Skip to content

Instantly share code, notes, and snippets.

@Zeex
Last active December 22, 2015 02:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zeex/6401949 to your computer and use it in GitHub Desktop.
Save Zeex/6401949 to your computer and use it in GitHub Desktop.
OSM plugin (reproduces fixes2's OnServerMessage functionality)
// Copyright (c) 2013, Zeex
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include <algorithm>
#include <cstdarg>
#include <cstdio>
#include <vector>
#include <subhook.h>
#include "sdk/amx/amx.h"
#include "sdk/plugincommon.h"
#if defined _MSC_VER && _MSC_VER < 1700
#define vsnprintf vsprintf_s
#endif
typedef void (*logprintf_t)(const char *format, ...);
static const std::size_t LogprintfBufferSize = 1024;
extern void *pAMXFunctions;
static logprintf_t logprintf;
static SubHook logprintf_hook;
static std::vector<AMX*> scripts;
static void ProcessServerMessage(AMX *amx, const char *msg) {
int index;
if (amx_FindPublic(amx, "OnServerMessage", &index) == AMX_ERR_NONE) {
cell address;
amx_PushString(amx, &address, 0, msg, 0, 0);
amx_Exec(amx, 0, index);
amx_Release(amx, address);
}
}
static void do_logprintf(const char *format, ...) {
SubHook::ScopedRemove remove(&logprintf_hook);
char buffer[LogprintfBufferSize];
std::va_list args;
va_start(args, format);
vsnprintf(buffer, sizeof(buffer), format, args);
va_end(args);
for (std::vector<AMX*>::const_iterator it = scripts.begin();
it != scripts.end(); it++) {
ProcessServerMessage(*it, buffer);
}
logprintf("%s", buffer);
}
PLUGIN_EXPORT unsigned int PLUGIN_CALL Supports() {
return SUPPORTS_VERSION | SUPPORTS_AMX_NATIVES;
}
PLUGIN_EXPORT bool PLUGIN_CALL Load(void **ppData) {
pAMXFunctions = ppData[PLUGIN_DATA_AMX_EXPORTS];
logprintf = (logprintf_t)ppData[PLUGIN_DATA_LOGPRINTF];
logprintf_hook.Install(ppData[PLUGIN_DATA_LOGPRINTF], (void*)do_logprintf);
return true;
}
PLUGIN_EXPORT void PLUGIN_CALL Unload() {
logprintf_hook.Remove();
}
PLUGIN_EXPORT int PLUGIN_CALL AmxLoad(AMX *amx) {
scripts.push_back(amx);
return AMX_ERR_NONE;
}
PLUGIN_EXPORT int PLUGIN_CALL AmxUnload(AMX *amx) {
scripts.erase(std::remove(scripts.begin(), scripts.end(), amx));
return AMX_ERR_NONE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment