2014-08-04 12:12:15 +00:00
// vim: set ts=4 sw=4 tw=99 noet:
//
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
// Copyright (C) The AMX Mod X Development Team.
//
// This software is licensed under the GNU General Public License, version 3 or higher.
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
// https://alliedmods.net/amxmodx-license
//
// Menus Front-End Plugin
//
2004-01-31 20:56:22 +00:00
2004-03-05 19:35:38 +00:00
# include <amxmodx>
2004-03-07 14:30:53 +00:00
# include <amxmisc>
2004-01-31 20:56:22 +00:00
2004-10-08 08:37:27 +00:00
# define MAXMENUS 128
# define STRINGSIZE 32
# define STRINGLENGTH STRINGSIZE - 1
# define MENUITEMSPERPAGE 8
//#define MENUS_NUMBER 16
2004-01-31 20:56:22 +00:00
2015-02-20 18:46:26 +00:00
new g_coloredMenus
2015-02-01 18:20:55 +00:00
new g_menuPosition [ MAX_PLAYERS + 1 ]
2015-02-20 18:46:26 +00:00
2004-10-08 08:37:27 +00:00
new g_menusNumber = 0
new g_menuBody [ MAXMENUS ] [ STRINGSIZE ]
new g_menuCmd [ MAXMENUS ] [ STRINGSIZE ]
new g_menuAccess [ MAXMENUS ]
new g_menuPlugin [ MAXMENUS ] [ STRINGSIZE ]
2005-01-15 09:58:51 +00:00
new g_clientMenusNumber = 0
new g_clientMenuBody [ MAXMENUS ] [ STRINGSIZE ]
new g_clientMenuCmd [ MAXMENUS ] [ STRINGSIZE ]
new g_clientMenuAccess [ MAXMENUS ]
new g_clientMenuPlugin [ MAXMENUS ] [ STRINGSIZE ]
2015-02-20 18:46:26 +00:00
public plugin_init ( )
{
register_plugin ( " Menus Front-End " , AMXX_VERSION_STR , " AMXX Dev Team " )
register_dictionary ( " menufront.txt " )
register_dictionary ( " common.txt " )
register_menucmd ( register_menuid ( " AMX Mod X Menu " ) , 1023 , " actionMenu " )
register_menucmd ( register_menuid ( " AMX Mod X Client Menu " ) , 1023 , " clientActionMenu " )
register_clcmd ( " amxmodmenu " , " cmdMenu " , ADMIN_MENU , " - displays menus " )
register_clcmd ( " amx_menu " , " clientCmdMenu " , 0 , " - displays menus available to client " )
register_srvcmd ( " amx_addmenuitem " , " addmenuitem_cmd " , 0 , " <menu text> <menu command> <access flags> <plugin name | plugin filename> - Add a menu item to Menus Front-End " )
register_srvcmd ( " amx_addclientmenuitem " , " addclientmenuitem_cmd " , 0 , " <menu text> <menu command> <access flags> <plugin name | plugin filename> - Add a menu item to Client Menus Front-End " )
g_coloredMenus = colored_menus ( )
}
public plugin_cfg ( )
{
AddDefaultMenus ( )
new configs [ 128 ]
get_configsdir ( configs , charsmax ( configs ) )
server_cmd ( " exec %s/custommenuitems.cfg " , configs )
}
2004-10-08 08:37:27 +00:00
// menuBody: Text that will be shown for this item in menu
// menuCmd: Command that should be executed to start menu
// menuAccess: Access required for menu
// menuPlugin: The exact case-insensitive name of plugin holding the menu command
2005-09-12 21:06:24 +00:00
public AddMenu ( const menuBody [ ] , const menuCmd [ ] , const menuAccess , const menuPlugin [ ] )
{
if ( g_menusNumber + 1 = = MAXMENUS )
{
2004-10-09 09:32:56 +00:00
log_amx ( " Error: Plugin ^ " % s ^ " tried to add a menu item to Menu Front-End plugin with maximum menu items reached! " , menuPlugin )
return
}
2004-10-08 08:37:27 +00:00
copy ( g_menuBody [ g_menusNumber ] , STRINGLENGTH , menuBody )
copy ( g_menuCmd [ g_menusNumber ] , STRINGLENGTH , menuCmd )
g_menuAccess [ g_menusNumber ] = menuAccess
2005-09-12 21:06:24 +00:00
2004-10-08 08:37:27 +00:00
copy ( g_menuPlugin [ g_menusNumber ] , STRINGLENGTH , menuPlugin )
2004-01-31 20:56:22 +00:00
2004-10-08 08:37:27 +00:00
g_menusNumber + +
2015-02-20 18:46:26 +00:00
// server_print("Menu item %d added to Menus Front-End: ^"%s^" from plugin ^"%s^"", g_menusNumber, menuBody, menuPlugin)
2004-01-31 20:56:22 +00:00
}
2005-09-12 21:06:24 +00:00
public AddClientMenu ( const menuBody [ ] , const menuCmd [ ] , const menuAccess , const menuPlugin [ ] )
{
if ( g_clientMenusNumber + 1 = = MAXMENUS )
{
2005-01-15 09:58:51 +00:00
log_amx ( " Error: Plugin ^ " % s ^ " tried to add a menu item to Menu Front-End plugin with maximum menu items reached! " , menuPlugin )
return
}
copy ( g_clientMenuBody [ g_clientMenusNumber ] , STRINGLENGTH , menuBody )
copy ( g_clientMenuCmd [ g_clientMenusNumber ] , STRINGLENGTH , menuCmd )
g_clientMenuAccess [ g_clientMenusNumber ] = menuAccess
2005-09-12 21:06:24 +00:00
2005-01-15 09:58:51 +00:00
copy ( g_clientMenuPlugin [ g_clientMenusNumber ] , STRINGLENGTH , menuPlugin )
g_clientMenusNumber + +
server_print ( " Client menu item %d added to Client Menus Front-End: ^ " % s ^ " from plugin ^ " % s ^ " " , g_clientMenusNumber , menuBody , menuPlugin )
}
2004-01-31 20:56:22 +00:00
2005-09-12 21:06:24 +00:00
AddDefaultMenus ( )
{
2008-03-30 20:51:48 +00:00
new flags ;
2015-02-20 18:46:26 +00:00
AddMenu ( " KICK_PLAYER " , " amx_kickmenu " , get_clcmd_flags ( " amx_kickmenu " , flags ) ? flags : ADMIN_KICK , " Players Menu " )
AddMenu ( " BAN_PLAYER " , " amx_banmenu " , get_clcmd_flags ( " amx_banmenu " , flags ) ? flags : ADMIN_BAN , " Players Menu " )
AddMenu ( " SLAP_SLAY " , " amx_slapmenu " , get_clcmd_flags ( " amx_slapmenu " , flags ) ? flags : ADMIN_SLAY , " Players Menu " )
AddMenu ( " TEAM_PLAYER " , " amx_teammenu " , get_clcmd_flags ( " amx_teammenu " , flags ) ? flags : ADMIN_LEVEL_A , " Players Menu " )
AddMenu ( " CHANGEL " , " amx_mapmenu " , get_clcmd_flags ( " amx_mapmenu " , flags ) ? flags : ADMIN_MAP , " Maps Menu " )
AddMenu ( " VOTE_MAPS " , " amx_votemapmenu " , get_clcmd_flags ( " amx_votemapmenu " , flags ) ? flags : ADMIN_VOTE , " Maps Menu " )
AddMenu ( " SPECH_STUFF " , " amx_speechmenu " , get_clcmd_flags ( " amx_speechmenu " , flags ) ? flags : ADMIN_MENU , " Commands Menu " )
AddMenu ( " CLIENT_COM " , " amx_clcmdmenu " , get_clcmd_flags ( " amx_clcmdmenu " , flags ) ? flags : ADMIN_LEVEL_A , " Players Menu " )
AddMenu ( " SERVER_COM " , " amx_cmdmenu " , get_clcmd_flags ( " amx_cmdmenu " , flags ) ? flags : ADMIN_MENU , " Commands Menu " )
AddMenu ( " CVARS_SET " , " amx_cvarmenu " , get_clcmd_flags ( " amx_cvarmenu " , flags ) ? flags : ADMIN_CVAR , " Commands Menu " )
AddMenu ( " CONFIG " , " amx_cfgmenu " , get_clcmd_flags ( " amx_cfgmenu " , flags ) ? flags : ADMIN_MENU , " Commands Menu " )
AddMenu ( " LANG_SET " , " amx_langmenu " , get_clcmd_flags ( " amx_langmenu " , flags ) ? flags : ADMIN_CFG , " Multi-Lingual System " )
AddMenu ( " STATS_SET " , " amx_statscfgmenu " , get_clcmd_flags ( " amx_statscfgmenu " , flags ) ? flags : ADMIN_CFG , " Stats Configuration " )
AddMenu ( " PAUSE_PLUG " , " amx_pausecfgmenu " , get_clcmd_flags ( " amx_pausecfgmenu " , flags ) ? flags : ADMIN_CFG , " Pause Plugins " )
AddMenu ( " RES_WEAP " , " amx_restmenu " , get_clcmd_flags ( " amx_restmenu " , flags ) ? flags : ADMIN_CFG , " Restrict Weapons " )
AddMenu ( " TELE_PLAYER " , " amx_teleportmenu " , get_clcmd_flags ( " amx_teleportmenu " , flags ) ? flags : ADMIN_CFG , " Teleport Menu " )
2004-01-31 20:56:22 +00:00
}
2015-02-20 18:46:26 +00:00
2008-03-30 20:51:48 +00:00
stock bool : get_clcmd_flags ( const search_command [ ] , & flags )
{
new count = get_clcmdsnum ( - 1 ) ;
static cmd [ 128 ] ;
static info [ 1 ] ;
new _flags ;
for ( new i = 0 ; i < count ; i + + )
{
get_clcmd ( i , cmd , charsmax ( cmd ) , _flags , info , charsmax ( info ) , - 1 ) ;
2004-01-31 20:56:22 +00:00
2008-03-30 20:51:48 +00:00
if ( strcmp ( cmd , search_command ) = = 0 )
{
flags = _flags ;
return true ;
}
}
return false ;
}
2015-02-20 18:46:26 +00:00
2005-09-12 21:06:24 +00:00
public actionMenu ( id , key )
{
switch ( key )
{
case 8 : displayMenu ( id , + + g_menuPosition [ id ] )
case 9 : displayMenu ( id , - - g_menuPosition [ id ] )
2015-02-22 21:21:20 +00:00
default : client_cmd ( id , " %s " , g_menuCmd [ g_menuPosition [ id ] * 8 + key ] )
2005-01-15 09:58:51 +00:00
}
return PLUGIN_HANDLED
}
2005-09-12 21:06:24 +00:00
public clientActionMenu ( id , key )
{
switch ( key )
{
2015-02-20 18:46:26 +00:00
case 8 : clientDisplayMenu ( id , + + g_menuPosition [ id ] )
case 9 : clientDisplayMenu ( id , - - g_menuPosition [ id ] )
2015-02-22 21:21:20 +00:00
default : client_cmd ( id , " %s " , g_clientMenuCmd [ g_menuPosition [ id ] * 8 + key ] )
2005-01-15 09:58:51 +00:00
}
return PLUGIN_HANDLED
2004-01-31 20:56:22 +00:00
}
2005-09-12 21:06:24 +00:00
displayMenu ( id , pos )
{
2004-10-08 08:37:27 +00:00
if ( pos < 0 )
return
new menuBody [ 512 ]
new b = 0
new start = pos * MENUITEMSPERPAGE
2005-09-12 21:06:24 +00:00
if ( start > = g_menusNumber ) // MENUS_NUMBER
2004-10-08 08:37:27 +00:00
start = pos = g_menuPosition [ id ] = 0
2014-07-29 14:32:32 +00:00
new len = format ( menuBody , charsmax ( menuBody ) ,
2005-09-12 21:06:24 +00:00
g_coloredMenus ? " \ yAMX Mod X Menu \ R%d/%d^n \ w^n " : " AMX Mod X Menu %d/%d^n^n " , pos + 1 , ( g_menusNumber / MENUITEMSPERPAGE ) + ( ( ( g_menusNumber % MENUITEMSPERPAGE ) > 0 ) ? 1 : 0 ) )
2004-10-08 08:37:27 +00:00
2015-02-20 18:46:26 +00:00
new end = min ( start + MENUITEMSPERPAGE , g_menusNumber ) ;
2004-10-08 08:37:27 +00:00
new keys = MENU_KEY_0
2015-02-20 18:46:26 +00:00
new iUserFlags = get_user_flags ( id ) ;
2005-09-12 21:06:24 +00:00
for ( new a = start ; a < end ; + + a )
{
2015-02-22 21:21:20 +00:00
if ( ( g_menuAccess [ a ] = = 0 | | iUserFlags & g_menuAccess [ a ] ) & &
2007-07-25 18:54:32 +00:00
( ( is_plugin_loaded ( g_menuPlugin [ a ] ) ! = - 1 ) | | // search plugins for registered name
( is_plugin_loaded ( g_menuPlugin [ a ] , true ) ! = - 1 ) ) ) // search plugins for filename
2005-09-12 21:06:24 +00:00
{
2004-10-08 08:37:27 +00:00
keys | = ( 1 < < b )
2005-09-12 21:06:24 +00:00
2015-02-20 18:46:26 +00:00
if ( GetLangTransKey ( g_menuBody [ a ] ) ! = TransKey_Bad )
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " %d. %L^n " , + + b , id , g_menuBody [ a ] )
2004-10-08 08:37:27 +00:00
else
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " %d. %s^n " , + + b , g_menuBody [ a ] )
2005-09-12 21:06:24 +00:00
} else {
2004-10-08 08:37:27 +00:00
+ + b
2005-09-12 21:06:24 +00:00
if ( g_coloredMenus )
{
2015-02-20 18:46:26 +00:00
if ( GetLangTransKey ( g_menuBody [ a ] ) ! = TransKey_Bad )
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " \ d%d. %L^n \ w " , b , id , g_menuBody [ a ] )
2004-10-08 08:37:27 +00:00
else
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " \ d%d. %s^n \ w " , b , g_menuBody [ a ] )
2005-09-12 21:06:24 +00:00
} else {
2015-02-20 18:46:26 +00:00
if ( GetLangTransKey ( g_menuBody [ a ] ) ! = TransKey_Bad )
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " #. %L^n " , id , g_menuBody [ a ] )
2004-10-08 08:37:27 +00:00
else
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " #. %s^n " , g_menuBody [ a ] )
2004-10-08 08:37:27 +00:00
}
}
}
2005-09-12 21:06:24 +00:00
if ( end ! = g_menusNumber ) // MENUS_NUMBER
{
2014-07-29 14:32:32 +00:00
format ( menuBody [ len ] , charsmax ( menuBody ) - len , " ^n9. %L...^n0. %L " , id , " MORE " , id , pos ? " BACK " : " EXIT " )
2004-10-08 08:37:27 +00:00
keys | = MENU_KEY_9
2005-09-12 21:06:24 +00:00
} else {
2014-07-29 14:32:32 +00:00
format ( menuBody [ len ] , charsmax ( menuBody ) - len , " ^n0. %L " , id , pos ? " BACK " : " EXIT " )
2004-10-08 08:37:27 +00:00
}
2005-09-12 21:06:24 +00:00
show_menu ( id , keys , menuBody )
2004-01-31 20:56:22 +00:00
}
2005-09-12 21:06:24 +00:00
clientDisplayMenu ( id , pos )
{
2005-01-15 09:58:51 +00:00
if ( pos < 0 )
return
new menuBody [ 512 ]
new b = 0
new start = pos * MENUITEMSPERPAGE
2005-09-12 21:06:24 +00:00
if ( start > = g_clientMenusNumber ) // MENUS_NUMBER
2015-02-20 18:46:26 +00:00
start = pos = g_menuPosition [ id ] = 0
2005-01-15 09:58:51 +00:00
2014-07-29 14:32:32 +00:00
new len = format ( menuBody , charsmax ( menuBody ) , g_coloredMenus ? " \ yAMX Mod X Client Menu \ R%d/%d^n \ w^n " : " AMX Mod X Client Menu %d/%d^n^n " , pos + 1 , ( g_clientMenusNumber / MENUITEMSPERPAGE ) + ( ( ( g_clientMenusNumber % MENUITEMSPERPAGE ) > 0 ) ? 1 : 0 ) )
2005-01-15 09:58:51 +00:00
2015-02-20 18:46:26 +00:00
new end = min ( start + MENUITEMSPERPAGE , g_clientMenusNumber ) ;
2005-01-15 09:58:51 +00:00
new keys = MENU_KEY_0
2015-02-20 18:46:26 +00:00
new iUserFlags = get_user_flags ( id ) ;
2005-09-12 21:06:24 +00:00
for ( new a = start ; a < end ; + + a )
{
2015-02-22 21:21:20 +00:00
if ( ( g_clientMenuAccess [ a ] = = 0 | | iUserFlags & g_clientMenuAccess [ a ] ) & &
2007-07-25 18:54:32 +00:00
( ( is_plugin_loaded ( g_clientMenuPlugin [ a ] ) ! = - 1 ) | | // search plugins for registered name
( is_plugin_loaded ( g_clientMenuPlugin [ a ] , true ) ! = - 1 ) ) ) // search plugins for file name
2005-09-12 21:06:24 +00:00
{
2005-01-15 09:58:51 +00:00
keys | = ( 1 < < b )
2005-09-12 21:06:24 +00:00
2015-02-20 18:46:26 +00:00
if ( GetLangTransKey ( g_clientMenuBody [ a ] ) ! = TransKey_Bad )
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " %d. %L^n " , + + b , id , g_clientMenuBody [ a ] )
2005-01-15 09:58:51 +00:00
else
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " %d. %s^n " , + + b , g_clientMenuBody [ a ] )
2005-09-12 21:06:24 +00:00
} else {
2005-01-15 09:58:51 +00:00
+ + b
2005-09-12 21:06:24 +00:00
if ( g_coloredMenus )
{
2015-02-20 18:46:26 +00:00
if ( GetLangTransKey ( g_clientMenuBody [ a ] ) ! = TransKey_Bad )
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " \ d%d. %L^n \ w " , b , id , g_clientMenuBody [ a ] )
2005-01-15 09:58:51 +00:00
else
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " \ d%d. %s^n \ w " , b , g_clientMenuBody [ a ] )
2005-09-12 21:06:24 +00:00
} else {
2015-02-20 18:46:26 +00:00
if ( GetLangTransKey ( g_clientMenuBody [ a ] ) ! = TransKey_Bad )
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " #. %L^n " , id , g_clientMenuBody [ a ] )
2005-01-15 09:58:51 +00:00
else
2014-07-29 14:32:32 +00:00
len + = format ( menuBody [ len ] , charsmax ( menuBody ) - len , " #. %s^n " , g_clientMenuBody [ a ] )
2005-01-15 09:58:51 +00:00
}
}
}
2005-09-12 21:06:24 +00:00
if ( end ! = g_clientMenusNumber ) // MENUS_NUMBER
{
2014-07-29 14:32:32 +00:00
format ( menuBody [ len ] , charsmax ( menuBody ) - len , " ^n9. %L...^n0. %L " , id , " MORE " , id , pos ? " BACK " : " EXIT " )
2005-01-15 09:58:51 +00:00
keys | = MENU_KEY_9
}
else {
2014-07-29 14:32:32 +00:00
format ( menuBody [ len ] , charsmax ( menuBody ) - len , " ^n0. %L " , id , pos ? " BACK " : " EXIT " )
2005-01-15 09:58:51 +00:00
}
show_menu ( id , keys , menuBody )
}
2004-01-31 20:56:22 +00:00
2005-09-12 21:06:24 +00:00
public cmdMenu ( id , level , cid )
{
if ( cmd_access ( id , level , cid , 1 ) )
displayMenu ( id , g_menuPosition [ id ] = 0 )
2004-08-22 14:54:07 +00:00
2005-09-12 21:06:24 +00:00
return PLUGIN_HANDLED
2004-10-08 08:37:27 +00:00
}
2005-09-12 21:06:24 +00:00
public clientCmdMenu ( id , level , cid )
{
2005-01-15 09:58:51 +00:00
if ( cmd_access ( id , level , cid , 1 ) )
2015-02-20 18:46:26 +00:00
clientDisplayMenu ( id , g_menuPosition [ id ] = 0 )
2005-01-15 09:58:51 +00:00
return PLUGIN_HANDLED
}
2004-10-08 08:37:27 +00:00
2005-09-12 21:06:24 +00:00
public addmenuitem_cmd ( id , level , cid )
{
2004-10-09 09:50:33 +00:00
if ( ! cmd_access ( id , level , cid , 5 ) )
return PLUGIN_HANDLED
// AddMenu(const menuBody[], const menuCmd[], const menuAccess, const menuPlugin[])
new menuBody [ STRINGSIZE ] , menuCmd [ STRINGSIZE ] , flags [ STRINGSIZE ] , menuAccess = 0 , menuPlugin [ STRINGSIZE ]
read_argv ( 1 , menuBody , STRINGLENGTH )
read_argv ( 2 , menuCmd , STRINGLENGTH )
read_argv ( 3 , flags , STRINGLENGTH )
menuAccess = read_flags ( flags )
read_argv ( 4 , menuPlugin , STRINGLENGTH )
AddMenu ( menuBody , menuCmd , menuAccess , menuPlugin )
return PLUGIN_HANDLED
}
2005-09-12 21:06:24 +00:00
public addclientmenuitem_cmd ( id , level , cid )
{
2005-01-15 09:58:51 +00:00
if ( ! cmd_access ( id , level , cid , 5 ) )
return PLUGIN_HANDLED
// AddMenu(const menuBody[], const menuCmd[], const menuAccess, const menuPlugin[])
new menuBody [ STRINGSIZE ] , menuCmd [ STRINGSIZE ] , flags [ STRINGSIZE ] , menuAccess = 0 , menuPlugin [ STRINGSIZE ]
read_argv ( 1 , menuBody , STRINGLENGTH )
read_argv ( 2 , menuCmd , STRINGLENGTH )
read_argv ( 3 , flags , STRINGLENGTH )
menuAccess = read_flags ( flags )
read_argv ( 4 , menuPlugin , STRINGLENGTH )
AddClientMenu ( menuBody , menuCmd , menuAccess , menuPlugin )
return PLUGIN_HANDLED
}