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-03-05 21:03:14 +00:00
|
|
|
|
2004-01-31 20:56:22 +00:00
|
|
|
#ifndef PLUGIN_H
|
|
|
|
#define PLUGIN_H
|
|
|
|
|
2006-05-07 21:16:00 +00:00
|
|
|
#include "CString.h"
|
|
|
|
#include "sh_list.h"
|
|
|
|
#include "amx.h"
|
|
|
|
#include "amxxfile.h"
|
|
|
|
|
2004-01-31 20:56:22 +00:00
|
|
|
// *****************************************************
|
|
|
|
// class CPluginMngr
|
|
|
|
// *****************************************************
|
|
|
|
|
2005-09-10 00:38:42 +00:00
|
|
|
enum
|
|
|
|
{
|
2005-12-01 13:42:28 +00:00
|
|
|
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
|
2004-01-31 20:56:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CPluginMngr
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
class iterator;
|
|
|
|
|
|
|
|
class CPlugin
|
|
|
|
{
|
|
|
|
friend class iterator;
|
|
|
|
friend class CPluginMngr;
|
|
|
|
|
|
|
|
AMX amx;
|
|
|
|
void* code;
|
2005-09-16 23:48:51 +00:00
|
|
|
|
2004-08-15 10:53:48 +00:00
|
|
|
String name;
|
|
|
|
String version;
|
|
|
|
String title;
|
|
|
|
String author;
|
2004-09-10 15:52:48 +00:00
|
|
|
String errorMsg;
|
2005-09-16 23:48:51 +00:00
|
|
|
|
2007-03-03 23:14:24 +00:00
|
|
|
unsigned int failcounter;
|
2005-07-25 06:03:43 +00:00
|
|
|
int m_PauseFwd;
|
|
|
|
int m_UnpauseFwd;
|
2004-01-31 20:56:22 +00:00
|
|
|
int paused_fun;
|
|
|
|
int status;
|
|
|
|
CPlugin* next;
|
|
|
|
int id;
|
2005-09-16 23:48:51 +00:00
|
|
|
|
2005-09-10 00:38:42 +00:00
|
|
|
CPlugin(int i, const char* p, const char* n, char* e, int d);
|
|
|
|
~CPlugin();
|
2005-09-16 23:48:51 +00:00
|
|
|
|
2005-07-26 21:31:21 +00:00
|
|
|
bool m_Debug;
|
2004-01-31 20:56:22 +00:00
|
|
|
public:
|
2004-08-13 08:46:04 +00:00
|
|
|
inline const char* getName() { return name.c_str();}
|
|
|
|
inline const char* getVersion() { return version.c_str();}
|
|
|
|
inline const char* getTitle() { return title.c_str();}
|
|
|
|
inline const char* getAuthor() { return author.c_str();}
|
2004-09-10 15:52:48 +00:00
|
|
|
inline const char* getError() { return errorMsg.c_str();}
|
|
|
|
inline int getStatusCode() { return status; }
|
2004-01-31 20:56:22 +00:00
|
|
|
inline int getId() const { return id; }
|
|
|
|
inline AMX* getAMX() { return &amx; }
|
2004-09-17 00:27:28 +00:00
|
|
|
inline const AMX* getAMX() const { return &amx; }
|
2005-09-10 00:38:42 +00:00
|
|
|
inline void setTitle(const char* n) { title.assign(n); }
|
|
|
|
inline void setAuthor(const char* n) { author.assign(n); }
|
|
|
|
inline void setVersion(const char* n) { version.assign(n); }
|
|
|
|
inline void setError(const char* n) { errorMsg.assign(n); }
|
2005-08-30 07:18:47 +00:00
|
|
|
inline bool isValid() const { return (status >= ps_paused); }
|
2005-09-10 00:38:42 +00:00
|
|
|
inline bool isPaused() const { return ((status == ps_paused) || (status == ps_stopped)); }
|
2007-02-19 06:43:52 +00:00
|
|
|
inline bool isStopped() const { return (status == ps_stopped); }
|
2005-07-25 06:03:43 +00:00
|
|
|
inline bool isExecutable(int id) const { return (isValid() && !isPaused()); }
|
2005-09-16 23:48:51 +00:00
|
|
|
|
2005-07-31 20:11:58 +00:00
|
|
|
void Finalize();
|
2007-03-03 23:14:24 +00:00
|
|
|
void AddToFailCounter(unsigned int i);
|
2004-04-22 07:47:55 +00:00
|
|
|
void pausePlugin();
|
|
|
|
void unpausePlugin();
|
2005-09-10 00:38:42 +00:00
|
|
|
void pauseFunction(int id);
|
|
|
|
void unpauseFunction(int id);
|
|
|
|
void setStatus(int a);
|
2005-09-16 23:48:51 +00:00
|
|
|
|
2004-01-31 20:56:22 +00:00
|
|
|
const char* getStatus() const;
|
2005-07-26 21:31:21 +00:00
|
|
|
inline bool isDebug() const { return m_Debug; }
|
2004-01-31 20:56:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
CPlugin *head;
|
|
|
|
int pCounter;
|
|
|
|
public:
|
2005-07-31 20:11:58 +00:00
|
|
|
CPluginMngr() { head = 0; pCounter = 0; pNatives = NULL; m_Finalized=false;}
|
2006-05-07 21:16:00 +00:00
|
|
|
~CPluginMngr() { clear(); InvalidateCache(); }
|
2004-01-31 20:56:22 +00:00
|
|
|
|
2005-07-31 20:11:58 +00:00
|
|
|
bool m_Finalized;
|
|
|
|
AMX_NATIVE_INFO *pNatives;
|
|
|
|
|
2004-01-31 20:56:22 +00:00
|
|
|
// Interface
|
|
|
|
|
2004-09-08 07:05:16 +00:00
|
|
|
CPlugin* loadPlugin(const char* path, const char* name, char* error, int debug);
|
2005-09-10 00:38:42 +00:00
|
|
|
void unloadPlugin(CPlugin** a);
|
2006-08-17 19:34:34 +00:00
|
|
|
int loadPluginsFromFile(const char* filename, bool warn=true);
|
2005-09-16 23:48:51 +00:00
|
|
|
|
2006-02-01 12:10:52 +00:00
|
|
|
inline CPlugin* findPluginFast(AMX *amx) { return (CPlugin*)(amx->userdata[UD_FINDPLUGIN]); }
|
2004-01-31 20:56:22 +00:00
|
|
|
CPlugin* findPlugin(AMX *amx);
|
|
|
|
CPlugin* findPlugin(int index);
|
|
|
|
CPlugin* findPlugin(const char* name);
|
2005-09-16 23:48:51 +00:00
|
|
|
|
2004-01-31 20:56:22 +00:00
|
|
|
inline int getPluginsNum() const { return pCounter; }
|
2005-07-31 20:11:58 +00:00
|
|
|
void Finalize();
|
2004-01-31 20:56:22 +00:00
|
|
|
void clear();
|
|
|
|
|
2005-09-10 00:38:42 +00:00
|
|
|
class iterator
|
|
|
|
{
|
2004-01-31 20:56:22 +00:00
|
|
|
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; }
|
|
|
|
};
|
2005-09-10 00:38:42 +00:00
|
|
|
|
2004-01-31 20:56:22 +00:00
|
|
|
inline iterator begin() const { return iterator(head); }
|
|
|
|
inline iterator end() const { return iterator(0); }
|
2006-05-07 21:16:00 +00:00
|
|
|
public:
|
|
|
|
struct plcache_entry
|
|
|
|
{
|
|
|
|
CAmxxReader *file;
|
|
|
|
size_t bufsize;
|
|
|
|
char *buffer;
|
|
|
|
String path;
|
|
|
|
};
|
|
|
|
char *ReadIntoOrFromCache(const char *file, size_t &bufsize);
|
|
|
|
void InvalidateCache();
|
|
|
|
void InvalidateFileInCache(const char *file, bool freebuf);
|
2006-05-10 02:32:34 +00:00
|
|
|
void CacheAndLoadModules(const char *plugin);
|
|
|
|
void CALMFromFile(const char *file);
|
2006-05-07 21:16:00 +00:00
|
|
|
private:
|
|
|
|
List<plcache_entry *> m_plcache;
|
2006-08-17 18:25:23 +00:00
|
|
|
List<String *> m_BlockList;
|
2004-01-31 20:56:22 +00:00
|
|
|
};
|
|
|
|
|
2005-09-10 00:38:42 +00:00
|
|
|
#endif //PLUGIN_H
|