NPOTB: Use camel casing for variables in adminhelp.sp (#1750)

This is a stylistic change to ensure more adhered-to consistency throughout base plugins
This commit is contained in:
Arron Vinyard 2022-05-03 21:45:45 -04:00 committed by Your Name
parent 92fc27f67f
commit 305799b441

View File

@ -63,44 +63,44 @@ public Action HelpCmd(int client, int args)
return Plugin_Handled; return Plugin_Handled;
} }
char arg[64], CmdName[20]; char arg[64], cmdName[20];
int PageNum = 1; int pageNum = 1;
bool DoSearch; bool doSearch;
GetCmdArg(0, CmdName, sizeof(CmdName)); GetCmdArg(0, cmdName, sizeof(cmdName));
if (args >= 1) if (args >= 1)
{ {
GetCmdArg(1, arg, sizeof(arg)); GetCmdArg(1, arg, sizeof(arg));
StringToIntEx(arg, PageNum); StringToIntEx(arg, pageNum);
PageNum = (PageNum <= 0) ? 1 : PageNum; pageNum = (pageNum <= 0) ? 1 : pageNum;
} }
DoSearch = (strcmp("sm_help", CmdName) == 0) ? false : true; doSearch = (strcmp("sm_help", cmdName) == 0) ? false : true;
if (GetCmdReplySource() == SM_REPLY_TO_CHAT) if (GetCmdReplySource() == SM_REPLY_TO_CHAT)
{ {
ReplyToCommand(client, "[SM] %t", "See console for output"); ReplyToCommand(client, "[SM] %t", "See console for output");
} }
char Name[64]; char name[64];
char Desc[255]; char desc[255];
char NoDesc[128]; char noDesc[128];
CommandIterator CmdIter = new CommandIterator(); CommandIterator cmdIter = new CommandIterator();
FormatEx(NoDesc, sizeof(NoDesc), "%T", "No description available", client); FormatEx(noDesc, sizeof(noDesc), "%T", "No description available", client);
if (DoSearch) if (doSearch)
{ {
int i = 1; int i = 1;
while (CmdIter.Next()) while (cmdIter.Next())
{ {
CmdIter.GetName(Name, sizeof(Name)); cmdIter.GetName(name, sizeof(name));
CmdIter.GetDescription(Desc, sizeof(Desc)); cmdIter.GetDescription(desc, sizeof(desc));
if ((StrContains(Name, arg, false) != -1) && CheckCommandAccess(client, Name, CmdIter.Flags)) if ((StrContains(name, arg, false) != -1) && CheckCommandAccess(client, name, cmdIter.Flags))
{ {
PrintToConsole(client, "[%03d] %s - %s", i++, Name, (Desc[0] == '\0') ? NoDesc : Desc); PrintToConsole(client, "[%03d] %s - %s", i++, name, (desc[0] == '\0') ? noDesc : desc);
} }
} }
@ -112,15 +112,15 @@ public Action HelpCmd(int client, int args)
PrintToConsole(client, "%t", "SM help commands"); PrintToConsole(client, "%t", "SM help commands");
/* Skip the first N commands if we need to */ /* Skip the first N commands if we need to */
if (PageNum > 1) if (pageNum > 1)
{ {
int i; int i;
int EndCmd = (PageNum-1) * COMMANDS_PER_PAGE - 1; int endCmd = (pageNum-1) * COMMANDS_PER_PAGE - 1;
for (i=0; CmdIter.Next() && i<EndCmd; ) for (i=0; cmdIter.Next() && i<endCmd; )
{ {
CmdIter.GetName(Name, sizeof(Name)); cmdIter.GetName(name, sizeof(name));
if (CheckCommandAccess(client, Name, CmdIter.Flags)) if (CheckCommandAccess(client, name, cmdIter.Flags))
{ {
i++; i++;
} }
@ -129,23 +129,23 @@ public Action HelpCmd(int client, int args)
if (i == 0) if (i == 0)
{ {
PrintToConsole(client, "%t", "No commands available"); PrintToConsole(client, "%t", "No commands available");
delete CmdIter; delete cmdIter;
return Plugin_Handled; return Plugin_Handled;
} }
} }
/* Start printing the commands to the client */ /* Start printing the commands to the client */
int i; int i;
int StartCmd = (PageNum-1) * COMMANDS_PER_PAGE; int StartCmd = (pageNum-1) * COMMANDS_PER_PAGE;
for (i=0; CmdIter.Next() && i<COMMANDS_PER_PAGE; ) for (i=0; cmdIter.Next() && i<COMMANDS_PER_PAGE; )
{ {
CmdIter.GetName(Name, sizeof(Name)); cmdIter.GetName(name, sizeof(name));
CmdIter.GetDescription(Desc, sizeof(Desc)); cmdIter.GetDescription(desc, sizeof(desc));
if (CheckCommandAccess(client, Name, CmdIter.Flags)) if (CheckCommandAccess(client, name, cmdIter.Flags))
{ {
i++; i++;
PrintToConsole(client, "[%03d] %s - %s", i+StartCmd, Name, (Desc[0] == '\0') ? NoDesc : Desc); PrintToConsole(client, "[%03d] %s - %s", i+StartCmd, name, (desc[0] == '\0') ? noDesc : desc);
} }
} }
@ -153,17 +153,17 @@ public Action HelpCmd(int client, int args)
{ {
PrintToConsole(client, "%t", "No commands available"); PrintToConsole(client, "%t", "No commands available");
} else { } else {
PrintToConsole(client, "%t", "Entries n - m in page k", StartCmd+1, i+StartCmd, PageNum); PrintToConsole(client, "%t", "Entries n - m in page k", StartCmd+1, i+StartCmd, pageNum);
} }
/* Test if there are more commands available */ /* Test if there are more commands available */
if (CmdIter.Next()) if (cmdIter.Next())
{ {
PrintToConsole(client, "%t", "Type sm_help to see more", PageNum+1); PrintToConsole(client, "%t", "Type sm_help to see more", pageNum+1);
} }
} }
delete CmdIter; delete cmdIter;
return Plugin_Handled; return Plugin_Handled;
} }