143 lines
4.0 KiB
SourcePawn
143 lines
4.0 KiB
SourcePawn
/*
|
|
* ============================================================================
|
|
*
|
|
* Zombie:Reloaded
|
|
*
|
|
* File: sayhooks.inc
|
|
* Type: Core
|
|
* Description: Hook plugin say commands and redirect to their handling module.
|
|
*
|
|
* Copyright (C) 2009 Greyscale, Richard Helgeby
|
|
*
|
|
* 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 3 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. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* ============================================================================
|
|
*/
|
|
|
|
/**
|
|
* @section SM core config info.
|
|
*/
|
|
#define SAYHOOKS_CORE_KVNAME "Core"
|
|
#define SAYHOOKS_CORE_KVPATH "configs/core.cfg"
|
|
#define SAYHOOKS_CHAT_PUBLIC_DEFAULT "!"
|
|
#define SAYHOOKS_CHAT_SILENT_DEFAULT "/"
|
|
/**
|
|
* @endsection
|
|
*/
|
|
|
|
/**
|
|
* Max number of characters in a chat text string.
|
|
*/
|
|
#define SAYHOOKS_MAX_CHAT_LENGTH 192
|
|
|
|
/**
|
|
* @section Say command key words.
|
|
*/
|
|
#define SAYHOOKS_KEYWORD_ZMENU "zmenu"
|
|
#define SAYHOOKS_KEYWORD_ZADMIN "zadmin"
|
|
#define SAYHOOKS_KEYWORD_ZCLASS "zclass"
|
|
#define SAYHOOKS_KEYWORD_ZCOOKIES "zcookies"
|
|
#define SAYHOOKS_KEYWORD_ZSPAWN "zspawn"
|
|
#define SAYHOOKS_KEYWORD_ZTELE "ztele"
|
|
#define SAYHOOKS_KEYWORD_ZHP "zhp"
|
|
#define SAYHOOKS_KEYWORD_ZMARKET "zmarket"
|
|
/**
|
|
* @endsection
|
|
*/
|
|
|
|
/**
|
|
* Hack function to get the public chat trigger value.
|
|
*
|
|
* @param trigger The string to store value in.
|
|
* @param maxlen The maximum length of the string.
|
|
*/
|
|
SayHooksGetPublicChatTrigger(String:trigger[], maxlen)
|
|
{
|
|
// Create kv handle.
|
|
new Handle:kvCore = CreateKeyValues(SAYHOOKS_CORE_KVNAME);
|
|
|
|
// Build path to file.
|
|
decl String:filepath[PLATFORM_MAX_PATH];
|
|
BuildPath(Path_SM, filepath, PLATFORM_MAX_PATH, SAYHOOKS_CORE_KVPATH);
|
|
|
|
// Load kv into memory.
|
|
new bool:success = FileToKeyValues(kvCore, filepath);
|
|
|
|
// If the file couldn't be loaded, then return the default value.
|
|
if (!success)
|
|
{
|
|
strcopy(trigger, maxlen, SAYHOOKS_CHAT_PUBLIC_DEFAULT);
|
|
|
|
// Close the handle.
|
|
CloseHandle(kvCore);
|
|
|
|
return;
|
|
}
|
|
|
|
// Rewind and find value.
|
|
KvRewind(kvCore);
|
|
KvGetString(kvCore, "PublicChatTrigger", trigger, maxlen, SAYHOOKS_CHAT_PUBLIC_DEFAULT);
|
|
|
|
// If trigger is disabled, then display as "N/A".
|
|
if (!trigger[0])
|
|
{
|
|
strcopy(trigger, maxlen, "N/A");
|
|
}
|
|
|
|
// Close the handle.
|
|
CloseHandle(kvCore);
|
|
}
|
|
|
|
/**
|
|
* Hack function to get the silent chat trigger value.
|
|
*
|
|
* @param trigger The string to store value in.
|
|
* @param maxlen The maximum length of the string.
|
|
*/
|
|
SayHooksGetSilentChatTrigger(String:trigger[], maxlen)
|
|
{
|
|
// Create kv handle.
|
|
new Handle:kvCore = CreateKeyValues(SAYHOOKS_CORE_KVNAME);
|
|
|
|
// Build path to file.
|
|
decl String:filepath[PLATFORM_MAX_PATH];
|
|
BuildPath(Path_SM, filepath, PLATFORM_MAX_PATH, SAYHOOKS_CORE_KVPATH);
|
|
|
|
// Load kv into memory.
|
|
new bool:success = FileToKeyValues(kvCore, filepath);
|
|
|
|
// If the file couldn't be loaded, then return the default value.
|
|
if (!success)
|
|
{
|
|
strcopy(trigger, maxlen, SAYHOOKS_CHAT_SILENT_DEFAULT);
|
|
|
|
// Close the handle.
|
|
CloseHandle(kvCore);
|
|
|
|
return;
|
|
}
|
|
|
|
// Rewind and find value.
|
|
KvRewind(kvCore);
|
|
KvGetString(kvCore, "SilentChatTrigger", trigger, maxlen, SAYHOOKS_CHAT_SILENT_DEFAULT);
|
|
|
|
// If trigger is disabled, then display as "N/A".
|
|
if (!trigger[0])
|
|
{
|
|
strcopy(trigger, maxlen, "N/A");
|
|
}
|
|
|
|
// Close the handle.
|
|
CloseHandle(kvCore);
|
|
} |