2014-04-09 14:35:46 +00:00
|
|
|
/* Ham Sandwich
|
|
|
|
* Copyright 2007-2014
|
|
|
|
* By the AMX Mod X Development Team
|
|
|
|
*
|
|
|
|
* Ham Sandwich 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.
|
|
|
|
*
|
|
|
|
* Ham Sandwich 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 Ham Sandwich; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the author gives permission to
|
|
|
|
* link the code of Ham Sandwich with the Half-Life Game Engine ("HL
|
|
|
|
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
|
|
|
|
* L.L.C ("Valve"). You must obey the GNU General Public License in all
|
|
|
|
* respects for all of the code used other than the HL Engine and MODs
|
|
|
|
* from Valve. If you modify this file, you may extend this exception
|
|
|
|
* to your version of the file, but you are not obligated to do so. If
|
|
|
|
* you do not wish to do so, delete this exception statement from your
|
|
|
|
* version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "amxxmodule.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "CVector.h"
|
|
|
|
|
|
|
|
#include "ham_const.h"
|
|
|
|
#include "hooklist.h"
|
|
|
|
#include "offsets.h"
|
|
|
|
#include "forward.h"
|
|
|
|
#include "hook.h"
|
|
|
|
|
|
|
|
|
|
|
|
extern hook_t hooklist[];
|
|
|
|
extern CVector<Hook *> hooks[HAM_LAST_ENTRY_DONT_USE_ME_LOL];
|
|
|
|
|
|
|
|
void print_srvconsole(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list argptr;
|
|
|
|
static char string[384];
|
|
|
|
va_start(argptr, fmt);
|
|
|
|
vsnprintf(string, sizeof(string) - 1, fmt, argptr);
|
|
|
|
string[sizeof(string) - 1] = '\0';
|
|
|
|
va_end(argptr);
|
|
|
|
|
|
|
|
SERVER_PRINT(string);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void HamCommand(void)
|
|
|
|
{
|
|
|
|
const char *cmd=CMD_ARGV(1);
|
|
|
|
|
|
|
|
if (strcmp(cmd, "list")==0)
|
|
|
|
{
|
|
|
|
unsigned int Total=0;
|
|
|
|
print_srvconsole("%-24s | %10s\n","Name","Set","Value");
|
|
|
|
print_srvconsole("------------------------------------\n");
|
|
|
|
print_srvconsole("%-24s | %10d\n", "pev", Offsets.GetPev());
|
|
|
|
print_srvconsole("%-24s | %10d\n", "base", Offsets.GetBase());
|
|
|
|
|
|
|
|
if (Offsets.IsPevSet())
|
|
|
|
{
|
|
|
|
Total++;
|
|
|
|
}
|
|
|
|
if (Offsets.IsBaseSet())
|
|
|
|
{
|
|
|
|
Total++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int count=2;
|
|
|
|
for (int i=0; i<HAM_LAST_ENTRY_DONT_USE_ME_LOL; i++)
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
if (hooklist[i].isset != 0)
|
|
|
|
{
|
|
|
|
print_srvconsole("%-24s | %10d\n", hooklist[i].name, hooklist[i].vtid);
|
|
|
|
Total++;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count >= 5)
|
|
|
|
{
|
|
|
|
count = 0;
|
|
|
|
print_srvconsole("------------------------------------\n");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
print_srvconsole("\n%u keys, %u set.\n\n", HAM_LAST_ENTRY_DONT_USE_ME_LOL, Total);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (strcmp(cmd, "hooks")==0)
|
|
|
|
{
|
|
|
|
print_srvconsole("%-24s | %-27s | %10s | %10s\n", "Key", "Classname", "Pre", "Post");
|
|
|
|
print_srvconsole("--------------------------------------------------------------------------------\n");
|
|
|
|
unsigned int ForwardCount=0;
|
|
|
|
unsigned int HookCount=0;
|
|
|
|
int count = 0;
|
|
|
|
for (int i=0; i<HAM_LAST_ENTRY_DONT_USE_ME_LOL; i++)
|
|
|
|
{
|
|
|
|
CVector<Hook *>::iterator end=hooks[i].end();
|
|
|
|
|
|
|
|
for (CVector<Hook *>::iterator j=hooks[i].begin();
|
|
|
|
j!=end;
|
|
|
|
++j)
|
|
|
|
{
|
|
|
|
HookCount++;
|
|
|
|
ForwardCount+=(*j)->pre.size() + (*j)->post.size();
|
|
|
|
|
|
|
|
print_srvconsole("%-24s | %-27s | %10d | %10d\n",hooklist[i].name, (*j)->ent, (*j)->pre.size(), (*j)->post.size());
|
|
|
|
if (count >= 5)
|
|
|
|
{
|
|
|
|
print_srvconsole("--------------------------------------------------------------------------------\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print_srvconsole("\n%u hooks, %u forwards.\n\n", HookCount, ForwardCount);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unknown command
|
|
|
|
print_srvconsole("Usage: ham < command > [ argument ]\n");
|
|
|
|
print_srvconsole("Commands:\n");
|
|
|
|
print_srvconsole(" %-22s - %s\n", "list", "list all keys and their values from the config file.");
|
|
|
|
print_srvconsole(" %-22s - %s\n", "hooks", "list all active hooks");
|
|
|
|
}
|