amxmodx/amxmodx/CCmd.h

154 lines
4.0 KiB
C
Raw Normal View History

2014-08-04 08:36:20 +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
2004-01-31 20:56:22 +00:00
#ifndef COMMANDS_H
#define COMMANDS_H
// *****************************************************
// class CmdMngr
// *****************************************************
2005-09-09 23:54:15 +00:00
enum
{
2004-01-31 20:56:22 +00:00
CMD_ConsoleCommand,
CMD_ClientCommand,
CMD_ServerCommand
};
class CmdMngr
{
public:
class Command;
friend class Command;
2005-09-09 23:54:15 +00:00
class Command
{
2004-01-31 20:56:22 +00:00
friend class CmdMngr;
2005-09-16 23:48:51 +00:00
2004-01-31 20:56:22 +00:00
CPluginMngr::CPlugin* plugin;
CmdMngr* parent;
String command;
String argument;
String commandline;
String info;
2005-09-16 23:48:51 +00:00
2004-01-31 20:56:22 +00:00
bool listable;
int function;
int flags;
int id;
int cmdtype;
int prefix;
static int uniqueid;
2005-09-16 23:48:51 +00:00
2005-09-09 23:54:15 +00:00
Command(CPluginMngr::CPlugin* pplugin, const char* pcmd, const char* pinfo, int pflags, int pfunc, bool pviewable, CmdMngr* pparent);
2004-01-31 20:56:22 +00:00
~Command();
public:
2004-08-13 08:46:04 +00:00
inline const char* getCommand() { return command.c_str(); }
inline const char* getArgument() { return argument.c_str(); }
inline const char* getCmdInfo() { return info.c_str(); }
inline const char* getCmdLine() { return commandline.c_str(); }
2005-09-16 23:48:51 +00:00
inline bool matchCommandLine(const char* cmd, const char* arg) { return (!stricmp(command.c_str() + prefix, cmd + prefix) && (argument.empty() || !stricmp(argument.c_str(), arg))); }
inline bool matchCommand(const char* cmd) { return (!stricmp(command.c_str(), cmd)); }
2004-01-31 20:56:22 +00:00
inline int getFunction() const { return function; }
inline bool gotAccess(int f) const { return (!flags || ((flags & f) != 0)); }
2004-01-31 20:56:22 +00:00
inline CPluginMngr::CPlugin* getPlugin() { return plugin; }
inline bool isViewable() const { return listable; }
inline int getFlags() const { return flags; }
inline long int getId() const { return (long int)id; }
2005-09-16 23:48:51 +00:00
2004-01-31 20:56:22 +00:00
const char* getCmdType() const;
2005-09-09 23:54:15 +00:00
void setCmdType(int a);
2004-01-31 20:56:22 +00:00
};
private:
struct CmdPrefix;
friend struct CmdPrefix;
2005-09-09 23:54:15 +00:00
struct CmdLink
{
2004-01-31 20:56:22 +00:00
Command* cmd;
CmdLink* next;
CmdLink(Command* c): cmd(c), next(0) {}
};
CmdLink* sortedlists[3];
CmdLink* srvcmdlist;
CmdLink* clcmdlist;
2005-09-09 23:54:15 +00:00
struct CmdPrefix
{
String name;
2004-04-01 05:53:22 +00:00
CmdMngr* parent;
2004-01-31 20:56:22 +00:00
CmdLink* list;
CmdPrefix* next;
2005-09-16 23:48:51 +00:00
CmdPrefix(const char* nn, CmdMngr* pp): name(nn), parent(pp), list(0), next(0) {}
2005-09-09 23:54:15 +00:00
~CmdPrefix() { parent->clearCmdLink(&list); }
2004-01-31 20:56:22 +00:00
} *prefixHead;
2005-09-09 23:54:15 +00:00
bool registerCmdPrefix(Command* cc);
CmdPrefix** findPrefix(const char* nn);
2004-01-31 20:56:22 +00:00
void clearPrefix();
2005-09-09 23:54:15 +00:00
void setCmdLink(CmdLink** a, Command* c, bool sorted = true);
void clearCmdLink(CmdLink** phead, bool pclear = false);
2004-01-31 20:56:22 +00:00
public:
CmdMngr();
2005-09-09 23:54:15 +00:00
~CmdMngr() { clear(); }
2004-01-31 20:56:22 +00:00
// Interface
2005-09-09 23:54:15 +00:00
void registerPrefix(const char* nn);
2005-09-16 23:48:51 +00:00
2005-09-09 23:54:15 +00:00
Command* registerCommand(CPluginMngr::CPlugin* plugin, int func, char* cmd, char* info, int level, bool listable);
Command* getCmd(long int id, int type, int access);
int getCmdNum(int type, int access);
2005-09-16 23:48:51 +00:00
2004-01-31 20:56:22 +00:00
void clearBufforedInfo();
void clear();
2005-09-09 23:54:15 +00:00
class iterator
{
2004-01-31 20:56:22 +00:00
CmdLink *a;
public:
iterator(CmdLink*aa = 0) : a(aa) {}
iterator& operator++() { a = a->next; return *this; }
bool operator==(const iterator& b) const { return a == b.a; }
bool operator!=(const iterator& b) const { return !operator==(b); }
operator bool () const { return a ? true : false; }
Command& operator*() { return *a->cmd; }
};
2005-09-09 23:54:15 +00:00
inline iterator clcmdprefixbegin(const char* nn)
{
2004-01-31 20:56:22 +00:00
CmdPrefix* a = *findPrefix(nn);
2005-09-09 23:54:15 +00:00
return iterator(a ? a->list : 0);
2004-01-31 20:56:22 +00:00
}
2005-09-09 23:54:15 +00:00
inline iterator clcmdbegin() const { return iterator(clcmdlist); }
inline iterator srvcmdbegin() const { return iterator(srvcmdlist); }
inline iterator begin(int type) const { return iterator(sortedlists[type]); }
2004-01-31 20:56:22 +00:00
inline iterator end() const { return iterator(0); }
private:
int buf_cmdid;
int buf_cmdtype;
int buf_cmdaccess;
2005-09-16 23:48:51 +00:00
2004-01-31 20:56:22 +00:00
iterator buf_cmdptr;
int buf_id;
int buf_type;
int buf_access;
int buf_num;
};
2005-09-09 23:54:15 +00:00
#endif //COMMANDS_H
2004-01-31 20:56:22 +00:00