171 lines
4.7 KiB
C++
Executable File
171 lines
4.7 KiB
C++
Executable File
// 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
|
|
|
|
#ifndef PLUGIN_H
|
|
#define PLUGIN_H
|
|
|
|
#include "sh_list.h"
|
|
#include "amx.h"
|
|
#include "amxxfile.h"
|
|
#include <amtl/am-string.h>
|
|
#include <amtl/am-vector.h>
|
|
#include <amtl/am-autoptr.h>
|
|
|
|
// *****************************************************
|
|
// class CPluginMngr
|
|
// *****************************************************
|
|
|
|
enum
|
|
{
|
|
ps_bad_load, //Load failed
|
|
ps_error, //Erroneous state
|
|
ps_locked, //UNUSED
|
|
ps_paused, //Plugin is temporarily paused
|
|
ps_stopped, //Plugin is ... more temporarily paused
|
|
ps_running, //Plugin is running
|
|
};
|
|
|
|
struct AutoConfig
|
|
{
|
|
ke::AString autocfg;
|
|
ke::AString folder;
|
|
bool create;
|
|
};
|
|
|
|
class CPluginMngr
|
|
{
|
|
public:
|
|
|
|
class iterator;
|
|
|
|
class CPlugin
|
|
{
|
|
friend class iterator;
|
|
friend class CPluginMngr;
|
|
|
|
AMX amx;
|
|
void* code;
|
|
|
|
ke::AString name;
|
|
ke::AString version;
|
|
ke::AString title;
|
|
ke::AString author;
|
|
ke::AString errorMsg;
|
|
|
|
unsigned int failcounter;
|
|
int m_PauseFwd;
|
|
int m_UnpauseFwd;
|
|
int paused_fun;
|
|
int status;
|
|
CPlugin* next;
|
|
int id;
|
|
|
|
CPlugin(int i, const char* p, const char* n, char* e, int d);
|
|
~CPlugin();
|
|
|
|
bool m_Debug;
|
|
cell* m_pNullStringOfs;
|
|
cell* m_pNullVectorOfs;
|
|
ke::Vector<ke::AutoPtr<AutoConfig>> m_configs;
|
|
public:
|
|
inline const char* getName() { return name.chars();}
|
|
inline const char* getVersion() { return version.chars();}
|
|
inline const char* getTitle() { return title.chars();}
|
|
inline const char* getAuthor() { return author.chars();}
|
|
inline const char* getError() { return errorMsg.chars();}
|
|
inline int getStatusCode() { return status; }
|
|
inline int getId() const { return id; }
|
|
inline AMX* getAMX() { return &amx; }
|
|
inline const AMX* getAMX() const { return &amx; }
|
|
inline void setTitle(const char* n) { title = n; }
|
|
inline void setAuthor(const char* n) { author =n; }
|
|
inline void setVersion(const char* n) { version = n; }
|
|
inline void setError(const char* n) { errorMsg = n; }
|
|
inline bool isValid() const { return (status >= ps_paused); }
|
|
inline bool isPaused() const { return ((status == ps_paused) || (status == ps_stopped)); }
|
|
inline bool isStopped() const { return (status == ps_stopped); }
|
|
inline bool isExecutable(int id) const { return (isValid() && !isPaused()); }
|
|
|
|
void Finalize();
|
|
void AddToFailCounter(unsigned int i);
|
|
void pausePlugin();
|
|
void unpausePlugin();
|
|
void pauseFunction(int id);
|
|
void unpauseFunction(int id);
|
|
void setStatus(int a);
|
|
|
|
const char* getStatus() const;
|
|
inline bool isDebug() const { return m_Debug; }
|
|
inline cell* getNullStringOfs() const { return m_pNullStringOfs; }
|
|
inline cell* getNullVectorOfs() const { return m_pNullVectorOfs; }
|
|
public:
|
|
void AddConfig(bool create, const char *name, const char *folder);
|
|
size_t GetConfigCount();
|
|
AutoConfig *GetConfig(size_t index);
|
|
};
|
|
|
|
private:
|
|
CPlugin *head;
|
|
int pCounter;
|
|
public:
|
|
CPluginMngr() { head = 0; pCounter = 0; pNatives = NULL; m_Finalized=false;}
|
|
~CPluginMngr() { clear(); InvalidateCache(); }
|
|
|
|
bool m_Finalized;
|
|
AMX_NATIVE_INFO *pNatives;
|
|
|
|
// Interface
|
|
|
|
CPlugin* loadPlugin(const char* path, const char* name, char* error, int debug);
|
|
void unloadPlugin(CPlugin** a);
|
|
int loadPluginsFromFile(const char* filename, bool warn=true);
|
|
|
|
inline CPlugin* findPluginFast(AMX *amx) { return (CPlugin*)(amx->userdata[UD_FINDPLUGIN]); }
|
|
CPlugin* findPlugin(AMX *amx);
|
|
CPlugin* findPlugin(int index);
|
|
CPlugin* findPlugin(const char* name);
|
|
|
|
inline int getPluginsNum() const { return pCounter; }
|
|
void Finalize();
|
|
void clear();
|
|
|
|
class iterator
|
|
{
|
|
CPlugin *a;
|
|
public:
|
|
iterator(CPlugin*aa) : 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; }
|
|
CPlugin& operator*() { return *a; }
|
|
};
|
|
|
|
inline iterator begin() const { return iterator(head); }
|
|
inline iterator end() const { return iterator(0); }
|
|
public:
|
|
struct plcache_entry
|
|
{
|
|
CAmxxReader *file;
|
|
size_t bufsize;
|
|
char *buffer;
|
|
ke::AString path;
|
|
};
|
|
char *ReadIntoOrFromCache(const char *file, size_t &bufsize);
|
|
void InvalidateCache();
|
|
void InvalidateFileInCache(const char *file, bool freebuf);
|
|
void CacheAndLoadModules(const char *plugin);
|
|
void CALMFromFile(const char *file);
|
|
private:
|
|
List<plcache_entry *> m_plcache;
|
|
List<ke::AString *> m_BlockList;
|
|
};
|
|
|
|
#endif //PLUGIN_H
|