Compare commits
1 Commits
amxmodx-0.
...
amxmodx-0.
Author | SHA1 | Date | |
---|---|---|---|
f8a6bf90cd |
@ -419,7 +419,8 @@ void EventsMngr::executeEvents()
|
|||||||
|
|
||||||
if ((err = amx_Exec((*iter).m_Plugin->getAMX(), NULL, (*iter).m_Func, 1, m_ParseVault ? m_ParseVault[0].iValue : 0)) != AMX_ERR_NONE)
|
if ((err = amx_Exec((*iter).m_Plugin->getAMX(), NULL, (*iter).m_Func, 1, m_ParseVault ? m_ParseVault[0].iValue : 0)) != AMX_ERR_NONE)
|
||||||
{
|
{
|
||||||
LogError((*iter).m_Plugin->getAMX(), err, "");
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (plugin \"%s\")", err,
|
||||||
|
(*iter).m_Plugin->getAMX()->curline, (*iter).m_Plugin->getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ cell CForward::execute(cell *params, ForwardPreparedArray *preparedArrays)
|
|||||||
int err = amx_Execv(iter->pPlugin->getAMX(), &retVal, iter->func, m_NumParams, realParams);
|
int err = amx_Execv(iter->pPlugin->getAMX(), &retVal, iter->func, m_NumParams, realParams);
|
||||||
// log runtime error, if any
|
// log runtime error, if any
|
||||||
if (err != AMX_ERR_NONE)
|
if (err != AMX_ERR_NONE)
|
||||||
LogError(iter->pPlugin->getAMX(), err, "");
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (plugin \"%s\")", err, iter->pPlugin->getAMX()->curline, iter->pPlugin->getName());
|
||||||
|
|
||||||
// cleanup strings & arrays
|
// cleanup strings & arrays
|
||||||
for (i = 0; i < m_NumParams; ++i)
|
for (i = 0; i < m_NumParams; ++i)
|
||||||
@ -128,8 +128,6 @@ cell CForward::execute(cell *params, ForwardPreparedArray *preparedArrays)
|
|||||||
else if (m_ParamTypes[i] == FP_ARRAY)
|
else if (m_ParamTypes[i] == FP_ARRAY)
|
||||||
{
|
{
|
||||||
// copy back
|
// copy back
|
||||||
if (preparedArrays[params[i]].copyBack)
|
|
||||||
{
|
|
||||||
cell *tmp = physAddrs[i];
|
cell *tmp = physAddrs[i];
|
||||||
if (preparedArrays[params[i]].type == Type_Cell)
|
if (preparedArrays[params[i]].type == Type_Cell)
|
||||||
{
|
{
|
||||||
@ -141,7 +139,6 @@ cell CForward::execute(cell *params, ForwardPreparedArray *preparedArrays)
|
|||||||
for (unsigned int j = 0; j < preparedArrays[params[i]].size; ++j)
|
for (unsigned int j = 0; j < preparedArrays[params[i]].size; ++j)
|
||||||
*data++ = static_cast<char>(*tmp++ & 0xFF);
|
*data++ = static_cast<char>(*tmp++ & 0xFF);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
amx_Release(iter->pPlugin->getAMX(), realParams[i]);
|
amx_Release(iter->pPlugin->getAMX(), realParams[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -177,7 +174,6 @@ void CSPForward::Set(int func, AMX *amx, int numParams, const ForwardParam *para
|
|||||||
m_NumParams = numParams;
|
m_NumParams = numParams;
|
||||||
memcpy((void *)m_ParamTypes, paramTypes, numParams * sizeof(ForwardParam));
|
memcpy((void *)m_ParamTypes, paramTypes, numParams * sizeof(ForwardParam));
|
||||||
m_HasFunc = true;
|
m_HasFunc = true;
|
||||||
isFree = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSPForward::Set(const char *funcName, AMX *amx, int numParams, const ForwardParam *paramTypes)
|
void CSPForward::Set(const char *funcName, AMX *amx, int numParams, const ForwardParam *paramTypes)
|
||||||
@ -186,14 +182,10 @@ void CSPForward::Set(const char *funcName, AMX *amx, int numParams, const Forwar
|
|||||||
m_NumParams = numParams;
|
m_NumParams = numParams;
|
||||||
memcpy((void *)m_ParamTypes, paramTypes, numParams * sizeof(ForwardParam));
|
memcpy((void *)m_ParamTypes, paramTypes, numParams * sizeof(ForwardParam));
|
||||||
m_HasFunc = (amx_FindPublic(amx, funcName, &m_Func) == AMX_ERR_NONE);
|
m_HasFunc = (amx_FindPublic(amx, funcName, &m_Func) == AMX_ERR_NONE);
|
||||||
isFree = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cell CSPForward::execute(cell *params, ForwardPreparedArray *preparedArrays)
|
cell CSPForward::execute(cell *params, ForwardPreparedArray *preparedArrays)
|
||||||
{
|
{
|
||||||
if (isFree)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
const int STRINGEX_MAXLENGTH = 128;
|
const int STRINGEX_MAXLENGTH = 128;
|
||||||
|
|
||||||
cell realParams[FORWARD_MAX_PARAMS];
|
cell realParams[FORWARD_MAX_PARAMS];
|
||||||
@ -262,8 +254,6 @@ cell CSPForward::execute(cell *params, ForwardPreparedArray *preparedArrays)
|
|||||||
else if (m_ParamTypes[i] == FP_ARRAY)
|
else if (m_ParamTypes[i] == FP_ARRAY)
|
||||||
{
|
{
|
||||||
// copy back
|
// copy back
|
||||||
if (preparedArrays[params[i]].copyBack)
|
|
||||||
{
|
|
||||||
cell *tmp = physAddrs[i];
|
cell *tmp = physAddrs[i];
|
||||||
if (preparedArrays[params[i]].type == Type_Cell)
|
if (preparedArrays[params[i]].type == Type_Cell)
|
||||||
{
|
{
|
||||||
@ -275,7 +265,6 @@ cell CSPForward::execute(cell *params, ForwardPreparedArray *preparedArrays)
|
|||||||
for (unsigned int j = 0; j < preparedArrays[params[i]].size; ++j)
|
for (unsigned int j = 0; j < preparedArrays[params[i]].size; ++j)
|
||||||
*data++ = static_cast<char>(*tmp++ & 0xFF);
|
*data++ = static_cast<char>(*tmp++ & 0xFF);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
amx_Release(m_Amx, realParams[i]);
|
amx_Release(m_Amx, realParams[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -295,30 +284,20 @@ int CForwardMngr::registerForward(const char *funcName, ForwardExecType et, int
|
|||||||
|
|
||||||
int CForwardMngr::registerSPForward(int func, AMX *amx, int numParams, const ForwardParam *paramTypes)
|
int CForwardMngr::registerSPForward(int func, AMX *amx, int numParams, const ForwardParam *paramTypes)
|
||||||
{
|
{
|
||||||
int retVal = -1;
|
int retVal = (m_SPForwards.size() << 1) | 1;
|
||||||
CSPForward *pForward;
|
CSPForward *pForward;
|
||||||
if (!m_FreeSPForwards.empty())
|
if (m_FreeSPForwards.size())
|
||||||
{
|
{
|
||||||
retVal = m_FreeSPForwards.front();
|
pForward = m_SPForwards[m_FreeSPForwards.back()];
|
||||||
pForward = m_SPForwards[retVal >> 1];
|
m_FreeSPForwards.pop_back();
|
||||||
pForward->Set(func, amx, numParams, paramTypes);
|
pForward->Set(func, amx, numParams, paramTypes);
|
||||||
if (pForward->getFuncsNum() == 0)
|
|
||||||
return -1;
|
|
||||||
m_FreeSPForwards.pop();
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
retVal = (m_SPForwards.size() << 1) | 1;
|
|
||||||
pForward = new CSPForward();
|
pForward = new CSPForward();
|
||||||
if (!pForward)
|
if (!pForward)
|
||||||
return -1;
|
return -1;
|
||||||
pForward->Set(func, amx, numParams, paramTypes);
|
pForward->Set(func, amx, numParams, paramTypes);
|
||||||
if (pForward->getFuncsNum() == 0)
|
|
||||||
{
|
|
||||||
return -1;
|
|
||||||
delete pForward;
|
|
||||||
}
|
|
||||||
|
|
||||||
m_SPForwards.push_back(pForward);
|
m_SPForwards.push_back(pForward);
|
||||||
}
|
}
|
||||||
return retVal;
|
return retVal;
|
||||||
@ -328,14 +307,11 @@ int CForwardMngr::registerSPForward(const char *funcName, AMX *amx, int numParam
|
|||||||
{
|
{
|
||||||
int retVal = (m_SPForwards.size() << 1) | 1;
|
int retVal = (m_SPForwards.size() << 1) | 1;
|
||||||
CSPForward *pForward;
|
CSPForward *pForward;
|
||||||
if (!m_FreeSPForwards.empty())
|
if (m_FreeSPForwards.size())
|
||||||
{
|
{
|
||||||
retVal = m_FreeSPForwards.front();
|
pForward = m_SPForwards[m_FreeSPForwards.back()];
|
||||||
pForward = m_SPForwards[retVal>>1]; // >>1 because unregisterSPForward pushes the id which contains the sp flag
|
m_FreeSPForwards.pop_back();
|
||||||
pForward->Set(funcName, amx, numParams, paramTypes);
|
pForward->Set(funcName, amx, numParams, paramTypes);
|
||||||
if (pForward->getFuncsNum() == 0)
|
|
||||||
return -1;
|
|
||||||
m_FreeSPForwards.pop();
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -343,11 +319,6 @@ int CForwardMngr::registerSPForward(const char *funcName, AMX *amx, int numParam
|
|||||||
if (!pForward)
|
if (!pForward)
|
||||||
return -1;
|
return -1;
|
||||||
pForward->Set(funcName, amx, numParams, paramTypes);
|
pForward->Set(funcName, amx, numParams, paramTypes);
|
||||||
if (pForward->getFuncsNum() == 0)
|
|
||||||
{
|
|
||||||
delete pForward;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
m_SPForwards.push_back(pForward);
|
m_SPForwards.push_back(pForward);
|
||||||
}
|
}
|
||||||
return retVal;
|
return retVal;
|
||||||
@ -374,12 +345,6 @@ int CForwardMngr::getParamsNum(int id) const
|
|||||||
m_Forwards[id >> 1]->getParamsNum();
|
m_Forwards[id >> 1]->getParamsNum();
|
||||||
}
|
}
|
||||||
|
|
||||||
ForwardParam CForwardMngr::getParamType(int id, int paramNum) const
|
|
||||||
{
|
|
||||||
return (id & 1) ? m_SPForwards[id >> 1]->getParamType(paramNum) :
|
|
||||||
m_Forwards[id >> 1]->getParamType(paramNum);
|
|
||||||
}
|
|
||||||
|
|
||||||
void CForwardMngr::clear()
|
void CForwardMngr::clear()
|
||||||
{
|
{
|
||||||
for (ForwardVec::iterator iter = m_Forwards.begin(); iter != m_Forwards.end(); ++iter)
|
for (ForwardVec::iterator iter = m_Forwards.begin(); iter != m_Forwards.end(); ++iter)
|
||||||
@ -394,8 +359,7 @@ void CForwardMngr::clear()
|
|||||||
|
|
||||||
m_Forwards.clear();
|
m_Forwards.clear();
|
||||||
m_SPForwards.clear();
|
m_SPForwards.clear();
|
||||||
while (!m_FreeSPForwards.empty())
|
m_FreeSPForwards.clear();
|
||||||
m_FreeSPForwards.pop();
|
|
||||||
m_TmpArraysNum = 0;
|
m_TmpArraysNum = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -406,13 +370,7 @@ bool CForwardMngr::isSPForward(int id) const
|
|||||||
|
|
||||||
void CForwardMngr::unregisterSPForward(int id)
|
void CForwardMngr::unregisterSPForward(int id)
|
||||||
{
|
{
|
||||||
//make sure the id is valid
|
m_FreeSPForwards.push_back(id);
|
||||||
if ( !isIdValid(id) || m_SPForwards.at(id >> 1)->isFree )
|
|
||||||
return;
|
|
||||||
|
|
||||||
m_SPForwards.at(id >> 1)->isFree = true;
|
|
||||||
|
|
||||||
m_FreeSPForwards.push(id);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int registerForward(const char *funcName, ForwardExecType et, ...)
|
int registerForward(const char *funcName, ForwardExecType et, ...)
|
||||||
@ -489,7 +447,7 @@ cell executeForwards(int id, ...)
|
|||||||
va_start(argptr, id);
|
va_start(argptr, id);
|
||||||
for (int i = 0; i < paramsNum && i < FORWARD_MAX_PARAMS; ++i)
|
for (int i = 0; i < paramsNum && i < FORWARD_MAX_PARAMS; ++i)
|
||||||
{
|
{
|
||||||
if (g_forwards.getParamType(id, i) == FP_FLOAT)
|
if (params[i] == FP_FLOAT)
|
||||||
{
|
{
|
||||||
REAL tmp = (REAL)va_arg(argptr, double); // floats get converted to doubles
|
REAL tmp = (REAL)va_arg(argptr, double); // floats get converted to doubles
|
||||||
params[i] = *(cell*)&tmp;
|
params[i] = *(cell*)&tmp;
|
||||||
@ -500,23 +458,22 @@ cell executeForwards(int id, ...)
|
|||||||
return g_forwards.executeForwards(id, params);
|
return g_forwards.executeForwards(id, params);
|
||||||
}
|
}
|
||||||
|
|
||||||
cell CForwardMngr::prepareArray(void *ptr, unsigned int size, ForwardArrayElemType type, bool copyBack)
|
cell CForwardMngr::prepareArray(void *ptr, unsigned int size, ForwardArrayElemType type)
|
||||||
{
|
{
|
||||||
m_TmpArrays[m_TmpArraysNum].ptr = ptr;
|
m_TmpArrays[m_TmpArraysNum].ptr = ptr;
|
||||||
m_TmpArrays[m_TmpArraysNum].size = size;
|
m_TmpArrays[m_TmpArraysNum].size = size;
|
||||||
m_TmpArrays[m_TmpArraysNum].type = type;
|
m_TmpArrays[m_TmpArraysNum].type = type;
|
||||||
m_TmpArrays[m_TmpArraysNum].copyBack = copyBack;
|
|
||||||
return m_TmpArraysNum++;
|
return m_TmpArraysNum++;
|
||||||
}
|
}
|
||||||
|
|
||||||
cell prepareCellArray(cell *ptr, unsigned int size, bool copyBack)
|
cell prepareCellArray(cell *ptr, unsigned int size)
|
||||||
{
|
{
|
||||||
return g_forwards.prepareArray((void*)ptr, size, Type_Cell, copyBack);
|
return g_forwards.prepareArray((void*)ptr, size, Type_Cell);
|
||||||
}
|
}
|
||||||
|
|
||||||
cell prepareCharArray(char *ptr, unsigned int size, bool copyBack)
|
cell prepareCharArray(char *ptr, unsigned int size)
|
||||||
{
|
{
|
||||||
return g_forwards.prepareArray((void*)ptr, size, Type_Char, copyBack);
|
return g_forwards.prepareArray((void*)ptr, size, Type_Char);
|
||||||
}
|
}
|
||||||
|
|
||||||
void unregisterSPForward(int id)
|
void unregisterSPForward(int id)
|
||||||
|
@ -79,7 +79,6 @@ struct ForwardPreparedArray
|
|||||||
void *ptr;
|
void *ptr;
|
||||||
ForwardArrayElemType type;
|
ForwardArrayElemType type;
|
||||||
unsigned int size;
|
unsigned int size;
|
||||||
bool copyBack;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Normal forward
|
// Normal forward
|
||||||
@ -109,12 +108,6 @@ public:
|
|||||||
{
|
{
|
||||||
return m_Funcs.size();
|
return m_Funcs.size();
|
||||||
}
|
}
|
||||||
ForwardParam getParamType(int paramId) const
|
|
||||||
{
|
|
||||||
if (paramId < 0 || paramId >= m_NumParams)
|
|
||||||
return FP_DONE;
|
|
||||||
return m_ParamTypes[paramId];
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Single plugin forward
|
// Single plugin forward
|
||||||
@ -126,8 +119,6 @@ class CSPForward
|
|||||||
AMX *m_Amx;
|
AMX *m_Amx;
|
||||||
int m_Func;
|
int m_Func;
|
||||||
bool m_HasFunc;
|
bool m_HasFunc;
|
||||||
public:
|
|
||||||
bool isFree;
|
|
||||||
public:
|
public:
|
||||||
CSPForward() { m_HasFunc = false; }
|
CSPForward() { m_HasFunc = false; }
|
||||||
void Set(const char *funcName, AMX *amx, int numParams, const ForwardParam * paramTypes);
|
void Set(const char *funcName, AMX *amx, int numParams, const ForwardParam * paramTypes);
|
||||||
@ -142,19 +133,13 @@ public:
|
|||||||
{
|
{
|
||||||
return (m_HasFunc) ? 1 : 0;
|
return (m_HasFunc) ? 1 : 0;
|
||||||
}
|
}
|
||||||
ForwardParam getParamType(int paramId) const
|
|
||||||
{
|
|
||||||
if (paramId < 0 || paramId >= m_NumParams)
|
|
||||||
return FP_DONE;
|
|
||||||
return m_ParamTypes[paramId];
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class CForwardMngr
|
class CForwardMngr
|
||||||
{
|
{
|
||||||
typedef CVector<CForward*> ForwardVec;
|
typedef CVector<CForward*> ForwardVec;
|
||||||
typedef CVector<CSPForward*> SPForwardVec;
|
typedef CVector<CSPForward*> SPForwardVec;
|
||||||
typedef CQueue<int> FreeSPVec; // Free SP Forwards
|
typedef CVector<int> FreeSPVec; // Free SP Forwards
|
||||||
|
|
||||||
ForwardVec m_Forwards;
|
ForwardVec m_Forwards;
|
||||||
|
|
||||||
@ -185,9 +170,7 @@ public:
|
|||||||
bool isSPForward(int id) const; // check whether forward is single plugin
|
bool isSPForward(int id) const; // check whether forward is single plugin
|
||||||
int getParamsNum(int id) const; // get num of params of a forward
|
int getParamsNum(int id) const; // get num of params of a forward
|
||||||
int getFuncsNum(int id) const; // get num of found functions of a forward
|
int getFuncsNum(int id) const; // get num of found functions of a forward
|
||||||
ForwardParam getParamType(int id, int paramId) const;
|
cell prepareArray(void *ptr, unsigned int size, ForwardArrayElemType type); // prepare array
|
||||||
cell prepareArray(void *ptr, unsigned int size, ForwardArrayElemType type,
|
|
||||||
bool copyBack); // prepare array
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// (un)register forward
|
// (un)register forward
|
||||||
@ -199,8 +182,8 @@ void unregisterSPForward(int id);
|
|||||||
// execute forwards
|
// execute forwards
|
||||||
cell executeForwards(int id, ...);
|
cell executeForwards(int id, ...);
|
||||||
// prepare array
|
// prepare array
|
||||||
cell prepareCellArray(cell *ptr, unsigned int size, bool copyBack = false);
|
cell prepareCellArray(cell *ptr, unsigned int size);
|
||||||
cell prepareCharArray(char *ptr, unsigned int size, bool copyBack = false);
|
cell prepareCharArray(char *ptr, unsigned int size);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -341,7 +341,7 @@ void CLangMngr::CLang::MergeDefinitions(CQueue<sKeyDef*> &vec)
|
|||||||
entry->SetKey(key);
|
entry->SetKey(key);
|
||||||
entry->SetCache(false);
|
entry->SetCache(false);
|
||||||
} else {
|
} else {
|
||||||
//AMXXLOG_Log("[AMXX] Language key %s[%s] defined twice", m_LMan->GetKey(key), m_LanguageName);
|
AMXXLOG_Log("[AMXX] Language key %s[%s] defined twice", m_LMan->GetKey(key), m_LanguageName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
delete vec.front();
|
delete vec.front();
|
||||||
@ -497,40 +497,155 @@ int CLangMngr::GetKeyEntry(String &key)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define CHECK_PTR(ptr, start, bufsize) if ((ptr) - (start) >= (bufsize)) { \
|
const char *CLangMngr::Format(const char *src, ...)
|
||||||
AMXXLOG_Log("[AMXX] Buffer overflow in formatting (line %d, \"%s\")", amx->curline, g_plugins.findPluginFast(amx)->getName()); \
|
{
|
||||||
outbuf[0] = 0; \
|
va_list argptr;
|
||||||
len = 0; \
|
va_start(argptr, src);
|
||||||
return outbuf; }
|
static char outbuf[4096];
|
||||||
#define CHECK_OUTPTR(offset) CHECK_PTR(outptr+offset, outbuf, sizeof(outbuf))
|
char *outptr = outbuf;
|
||||||
#define ZEROTERM(buf) buf[(sizeof(buf)/sizeof(buf[0]))-1]=0;
|
enum State
|
||||||
#define NEXT_PARAM() \
|
{
|
||||||
if (parm > paramCount) \
|
S_Normal,
|
||||||
{ \
|
S_PercentSign,
|
||||||
strcpy(outbuf, ""); \
|
};
|
||||||
len = 0; \
|
|
||||||
AMXXLOG_Log("[AMXX] Plugin did not format a string correctly (parameter %d (total %d), line %d, \"%s\")", parm, paramCount, amx->curline, g_plugins.findPluginFast(amx)->getName()); \
|
State curState = S_Normal;
|
||||||
return outbuf; \
|
while (*src)
|
||||||
|
{
|
||||||
|
if (*src == '%' && curState == S_Normal)
|
||||||
|
curState = S_PercentSign;
|
||||||
|
else if (curState == S_PercentSign)
|
||||||
|
{
|
||||||
|
switch (*src)
|
||||||
|
{
|
||||||
|
case 's':
|
||||||
|
{
|
||||||
|
char *tmpArg = va_arg(argptr, char*);
|
||||||
|
while (*tmpArg)
|
||||||
|
*outptr++ = *tmpArg++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'f':
|
||||||
|
case 'g':
|
||||||
|
{
|
||||||
|
char format[16];
|
||||||
|
format[0] = '%';
|
||||||
|
char *ptr = format+1;
|
||||||
|
while (!isalpha(*ptr++ = *src++))
|
||||||
|
/*nothing*/;
|
||||||
|
--src;
|
||||||
|
*ptr = 0;
|
||||||
|
sprintf(outptr, format, va_arg(argptr, double));
|
||||||
|
outptr += strlen(outptr);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'L':
|
||||||
|
{
|
||||||
|
char *langName = va_arg(argptr, char*);
|
||||||
|
const char *cpLangName=NULL;
|
||||||
|
// Handle player ids (1-32) and server language
|
||||||
|
if ((int)langName == LANG_PLAYER)
|
||||||
|
{
|
||||||
|
langName = (char*)m_CurGlobId;
|
||||||
|
}
|
||||||
|
if ((int)langName == LANG_SERVER)
|
||||||
|
{
|
||||||
|
cpLangName = g_vault.get("server_language");
|
||||||
|
} else if ((int)langName >= 1 && (int)langName <= 32) {
|
||||||
|
if ((int)CVAR_GET_FLOAT("amx_client_languages"))
|
||||||
|
{
|
||||||
|
cpLangName = g_vault.get("server_language");
|
||||||
|
} else {
|
||||||
|
cpLangName = ENTITY_KEYVALUE(GET_PLAYER_POINTER_I((int)langName)->pEdict, "lang");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
cpLangName = langName;
|
||||||
|
}
|
||||||
|
if (!cpLangName || strlen(cpLangName) < 1)
|
||||||
|
cpLangName = "en";
|
||||||
|
char *key = va_arg(argptr, char*);
|
||||||
|
const char *def = GetDef(cpLangName, key);
|
||||||
|
while (*def)
|
||||||
|
{
|
||||||
|
switch (*def)
|
||||||
|
{
|
||||||
|
case INSERT_NUMBER:
|
||||||
|
{
|
||||||
|
sprintf(outptr, "%d", va_arg(argptr, int));
|
||||||
|
outptr += strlen(outptr);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case INSERT_STRING:
|
||||||
|
{
|
||||||
|
char *tmpArg = va_arg(argptr, char*);
|
||||||
|
while (*tmpArg)
|
||||||
|
*outptr++ = *tmpArg++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case INSERT_FLOAT:
|
||||||
|
{
|
||||||
|
double tmpArg = va_arg(argptr, double);
|
||||||
|
sprintf(outptr, "%f", tmpArg);
|
||||||
|
outptr += strlen(outptr);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case INSERT_NEWLINE:
|
||||||
|
*outptr++ = '\n';
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
*outptr++ = *def;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'd':
|
||||||
|
{
|
||||||
|
char format[16];
|
||||||
|
format[0] = '%';
|
||||||
|
char *ptr = format+1;
|
||||||
|
while (!isalpha(*ptr++ = *src++))
|
||||||
|
/*nothing*/;
|
||||||
|
--src;
|
||||||
|
*ptr = 0;
|
||||||
|
sprintf(outptr, format, va_arg(argptr, int));
|
||||||
|
outptr += strlen(outptr);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
*outptr++ = '%';
|
||||||
|
*outptr++ = *src;
|
||||||
|
}
|
||||||
|
curState = S_Normal;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
*outptr++ = *src;
|
||||||
|
++src;
|
||||||
|
}
|
||||||
|
*outptr++ = 0;
|
||||||
|
return outbuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
char * CLangMngr::FormatAmxString(AMX *amx, cell *params, int parm, int &len)
|
char * CLangMngr::FormatAmxString(AMX *amx, cell *params, int parm, int &len)
|
||||||
{
|
{
|
||||||
// number of parameters ( for NEXT_PARAM macro )
|
cell *src = get_amxaddr(amx, params[parm++]);
|
||||||
int paramCount = *params / sizeof(cell);
|
|
||||||
// the output buffer
|
|
||||||
static char outbuf[4096];
|
static char outbuf[4096];
|
||||||
char *outptr = outbuf;
|
char *outptr = outbuf;
|
||||||
cell *src = get_amxaddr(amx, params[parm++]);
|
enum State
|
||||||
|
{
|
||||||
|
S_Normal,
|
||||||
|
S_PercentSign,
|
||||||
|
};
|
||||||
|
|
||||||
|
State curState = S_Normal;
|
||||||
while (*src)
|
while (*src)
|
||||||
{
|
{
|
||||||
if (*src == '%')
|
if (*src == '%' && curState == S_Normal)
|
||||||
|
curState = S_PercentSign;
|
||||||
|
else if (curState == S_PercentSign)
|
||||||
{
|
{
|
||||||
++src;
|
|
||||||
if (*src=='L')
|
if (*src=='L')
|
||||||
{
|
{
|
||||||
cell langName = params[parm]; // "en" case (langName contains the address to the string)
|
cell langName = params[parm]; // "en" case (langName contains the address to the string)
|
||||||
NEXT_PARAM();
|
|
||||||
cell *pAmxLangName = get_amxaddr(amx, params[parm++]); // other cases
|
cell *pAmxLangName = get_amxaddr(amx, params[parm++]); // other cases
|
||||||
const char *cpLangName=NULL;
|
const char *cpLangName=NULL;
|
||||||
// Handle player ids (1-32) and server language
|
// Handle player ids (1-32) and server language
|
||||||
@ -552,14 +667,13 @@ char * CLangMngr::FormatAmxString(AMX *amx, cell *params, int parm, int &len)
|
|||||||
cpLangName = ENTITY_KEYVALUE(GET_PLAYER_POINTER_I(*pAmxLangName)->pEdict, "lang");
|
cpLangName = ENTITY_KEYVALUE(GET_PLAYER_POINTER_I(*pAmxLangName)->pEdict, "lang");
|
||||||
}
|
}
|
||||||
} else { // Language Name
|
} else { // Language Name
|
||||||
int tmplen = 0;
|
int len = 0;
|
||||||
cpLangName = get_amxstring(amx, langName, 2, tmplen);
|
cpLangName = get_amxstring(amx, langName, 2, len);
|
||||||
}
|
}
|
||||||
if (!cpLangName || strlen(cpLangName) < 1)
|
if (!cpLangName || strlen(cpLangName) < 1)
|
||||||
cpLangName = "en";
|
cpLangName = "en";
|
||||||
int tmplen = 0;
|
int len = 0;
|
||||||
NEXT_PARAM();
|
char *key = get_amxstring(amx, params[parm++], 1, len);
|
||||||
char *key = get_amxstring(amx, params[parm++], 1, tmplen);
|
|
||||||
const char *def = GetDef(cpLangName, key);
|
const char *def = GetDef(cpLangName, key);
|
||||||
if (def == NULL)
|
if (def == NULL)
|
||||||
{
|
{
|
||||||
@ -573,8 +687,7 @@ char * CLangMngr::FormatAmxString(AMX *amx, cell *params, int parm, int &len)
|
|||||||
}
|
}
|
||||||
if (!def)
|
if (!def)
|
||||||
{
|
{
|
||||||
static char buf[512];
|
static char buf[255];
|
||||||
CHECK_PTR((char*)(buf+17+strlen(key)), buf, sizeof(buf));
|
|
||||||
sprintf(buf, "ML_LNOTFOUND: %s", key);
|
sprintf(buf, "ML_LNOTFOUND: %s", key);
|
||||||
def = buf;
|
def = buf;
|
||||||
}
|
}
|
||||||
@ -584,51 +697,35 @@ char * CLangMngr::FormatAmxString(AMX *amx, cell *params, int parm, int &len)
|
|||||||
if (*def == '%')
|
if (*def == '%')
|
||||||
{
|
{
|
||||||
++def;
|
++def;
|
||||||
static char format[32];
|
char format[16];
|
||||||
format[0] = '%';
|
format[0] = '%';
|
||||||
char *ptr = format+1;
|
char *ptr = format+1;
|
||||||
while (ptr-format<sizeof(format) && !isalpha(*ptr++ = *def++))
|
while (!isalpha(*ptr++ = *def++))
|
||||||
/*nothing*/;
|
/*nothing*/;
|
||||||
ZEROTERM(format);
|
|
||||||
|
|
||||||
*ptr = 0;
|
*ptr = 0;
|
||||||
switch ( *(ptr-1) )
|
switch ( *(ptr-1) )
|
||||||
{
|
{
|
||||||
case 's':
|
case 's':
|
||||||
{
|
{
|
||||||
static char tmpString[4096];
|
char tmpString[256];
|
||||||
char *tmpPtr = tmpString;
|
char *tmpPtr = tmpString;
|
||||||
NEXT_PARAM();
|
|
||||||
cell *tmpCell = get_amxaddr(amx, params[parm++]);
|
cell *tmpCell = get_amxaddr(amx, params[parm++]);
|
||||||
while (tmpPtr-tmpString < sizeof(tmpString) && *tmpCell)
|
while (*tmpCell)
|
||||||
*tmpPtr++ = *tmpCell++;
|
*tmpPtr++ = *tmpCell++;
|
||||||
|
|
||||||
*tmpPtr = 0;
|
*tmpPtr = 0;
|
||||||
sprintf(outptr, format, tmpString);
|
sprintf(outptr, format, tmpString);
|
||||||
ZEROTERM(outbuf);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'g':
|
case 'g':
|
||||||
case 'f':
|
case 'f':
|
||||||
{
|
{
|
||||||
NEXT_PARAM();
|
|
||||||
sprintf(outptr, format, *(REAL*)get_amxaddr(amx, params[parm++]));
|
sprintf(outptr, format, *(REAL*)get_amxaddr(amx, params[parm++]));
|
||||||
ZEROTERM(outbuf);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'i':
|
case 'i':
|
||||||
case 'd':
|
case 'd':
|
||||||
case 'c':
|
|
||||||
{
|
{
|
||||||
NEXT_PARAM();
|
|
||||||
sprintf(outptr, format, (int)*get_amxaddr(amx, params[parm++]));
|
sprintf(outptr, format, (int)*get_amxaddr(amx, params[parm++]));
|
||||||
ZEROTERM(outbuf);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
{
|
|
||||||
CHECK_OUTPTR(strlen(format)+1);
|
|
||||||
strcpy(outptr, format);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -640,19 +737,15 @@ char * CLangMngr::FormatAmxString(AMX *amx, cell *params, int parm, int &len)
|
|||||||
switch (*def)
|
switch (*def)
|
||||||
{
|
{
|
||||||
case 'n':
|
case 'n':
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = '\n';
|
*outptr++ = '\n';
|
||||||
break;
|
break;
|
||||||
case 't':
|
case 't':
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = '\t';
|
*outptr++ = '\t';
|
||||||
break;
|
break;
|
||||||
case '^':
|
case '^':
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = '^';
|
*outptr++ = '^';
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
CHECK_OUTPTR(2);
|
|
||||||
*outptr++ = '^';
|
*outptr++ = '^';
|
||||||
*outptr++ = *def;
|
*outptr++ = *def;
|
||||||
break;
|
break;
|
||||||
@ -660,275 +753,58 @@ char * CLangMngr::FormatAmxString(AMX *amx, cell *params, int parm, int &len)
|
|||||||
++def;
|
++def;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = *def++;
|
*outptr++ = *def++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static char tmpString[4096];
|
char tmpString[256];
|
||||||
char *tmpPtr = tmpString;
|
char *tmpPtr = tmpString;
|
||||||
int tmpLen =0;
|
int tmpLen =0;
|
||||||
static char format[32] = {'%'};
|
char format[16];
|
||||||
|
format[0] = '%';
|
||||||
char *ptr = format+1;
|
char *ptr = format+1;
|
||||||
if (*src != '%')
|
while (!isalpha(*ptr++ = *src++))
|
||||||
{
|
|
||||||
while (*src != 0 && ptr-format<sizeof(format) && !isalpha(*ptr++ = *src++))
|
|
||||||
/*nothing*/;
|
/*nothing*/;
|
||||||
*ptr = 0;
|
|
||||||
ZEROTERM(format);
|
|
||||||
--src;
|
--src;
|
||||||
|
*ptr = 0;
|
||||||
switch ( *(ptr-1) )
|
switch ( *(ptr-1) )
|
||||||
{
|
{
|
||||||
case 's':
|
case 's':
|
||||||
{
|
{
|
||||||
NEXT_PARAM();
|
|
||||||
cell *tmpCell = get_amxaddr(amx, params[parm++]);
|
cell *tmpCell = get_amxaddr(amx, params[parm++]);
|
||||||
while (tmpPtr-tmpString<sizeof(tmpString) && *tmpCell)
|
while (*tmpCell)
|
||||||
*tmpPtr++ = *tmpCell++;
|
*tmpPtr++ = *tmpCell++;
|
||||||
*tmpPtr = 0;
|
*tmpPtr = 0;
|
||||||
sprintf(outptr, format, tmpString);
|
sprintf(outptr, format, tmpString);
|
||||||
ZEROTERM(outbuf);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'g':
|
case 'g':
|
||||||
case 'f':
|
case 'f':
|
||||||
{
|
{
|
||||||
NEXT_PARAM();
|
|
||||||
sprintf(outptr, format, *(REAL*)get_amxaddr(amx, params[parm++]));
|
sprintf(outptr, format, *(REAL*)get_amxaddr(amx, params[parm++]));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'i':
|
case 'i':
|
||||||
case 'd':
|
case 'd':
|
||||||
case 'c':
|
|
||||||
{
|
{
|
||||||
NEXT_PARAM();
|
|
||||||
sprintf(outptr, format, (int)*get_amxaddr(amx, params[parm++]));
|
sprintf(outptr, format, (int)*get_amxaddr(amx, params[parm++]));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
|
||||||
{
|
|
||||||
CHECK_OUTPTR(strlen(format)+1);
|
|
||||||
strcpy(outptr, format);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
outptr += strlen(outptr);
|
outptr += strlen(outptr);
|
||||||
} else {
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = '%';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
curState = S_Normal;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = *src;
|
*outptr++ = *src;
|
||||||
}
|
|
||||||
++src;
|
++src;
|
||||||
}
|
}
|
||||||
len = outptr - outbuf;
|
len = outptr - outbuf;
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = 0;
|
*outptr++ = 0;
|
||||||
return outbuf;
|
return outbuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *CLangMngr::Format(const char *fmt, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
va_start(ap, fmt);
|
|
||||||
const char *retVal = FormatString(fmt, ap);
|
|
||||||
va_end(ap);
|
|
||||||
return retVal;
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef CHECK_PTR
|
|
||||||
#undef CHECK_OUTPR
|
|
||||||
#undef ZEROTERM
|
|
||||||
#undef NEXT_PARAM
|
|
||||||
|
|
||||||
#define CHECK_PTR(ptr, start, bufsize) if ((ptr) - (start) >= (bufsize)) { \
|
|
||||||
AMXXLOG_Log("[AMXX] Buffer overflow in formatting"); \
|
|
||||||
outbuf[0] = 0; \
|
|
||||||
return outbuf; }
|
|
||||||
#define CHECK_OUTPTR(offset) CHECK_PTR(outptr+offset, outbuf, sizeof(outbuf))
|
|
||||||
#define ZEROTERM(buf) buf[(sizeof(buf)/sizeof(buf[0]))-1]=0;
|
|
||||||
#define NEXT_PARAM()
|
|
||||||
|
|
||||||
char *CLangMngr::FormatString(const char *fmt, va_list &ap)
|
|
||||||
{
|
|
||||||
// the output buffer
|
|
||||||
static char outbuf[4096];
|
|
||||||
char *outptr = outbuf;
|
|
||||||
const char *src = fmt;
|
|
||||||
|
|
||||||
while (*src)
|
|
||||||
{
|
|
||||||
if (*src == '%')
|
|
||||||
{
|
|
||||||
++src;
|
|
||||||
if (*src=='L')
|
|
||||||
{
|
|
||||||
NEXT_PARAM();
|
|
||||||
const char *pAmxLangName = va_arg(ap, const char*);
|
|
||||||
const char *cpLangName=NULL;
|
|
||||||
// Handle player ids (1-32) and server language
|
|
||||||
if (pAmxLangName == (const char *)LANG_PLAYER) // LANG_PLAYER
|
|
||||||
{
|
|
||||||
if ((int)CVAR_GET_FLOAT("amx_client_languages"))
|
|
||||||
{
|
|
||||||
cpLangName = g_vault.get("server_language");
|
|
||||||
} else {
|
|
||||||
cpLangName = ENTITY_KEYVALUE(GET_PLAYER_POINTER_I(m_CurGlobId)->pEdict, "lang");
|
|
||||||
}
|
|
||||||
} else if (pAmxLangName == (const char *)LANG_SERVER) { // LANG_SERVER
|
|
||||||
cpLangName = g_vault.get("server_language");
|
|
||||||
} else if (pAmxLangName >= (const char *)1 && pAmxLangName <= (const char *)32) { // Direct Client Id
|
|
||||||
if ((int)CVAR_GET_FLOAT("amx_client_languages"))
|
|
||||||
{
|
|
||||||
cpLangName = g_vault.get("server_language");
|
|
||||||
} else {
|
|
||||||
cpLangName = ENTITY_KEYVALUE(GET_PLAYER_POINTER_I((int)pAmxLangName)->pEdict, "lang");
|
|
||||||
}
|
|
||||||
} else { // Language Name
|
|
||||||
int tmplen = 0;
|
|
||||||
cpLangName = pAmxLangName;
|
|
||||||
}
|
|
||||||
if (!cpLangName || strlen(cpLangName) < 1)
|
|
||||||
cpLangName = "en";
|
|
||||||
int tmplen = 0;
|
|
||||||
const char *key = va_arg(ap, const char *);
|
|
||||||
const char *def = GetDef(cpLangName, key);
|
|
||||||
if (def == NULL)
|
|
||||||
{
|
|
||||||
if (pAmxLangName != LANG_SERVER)
|
|
||||||
{
|
|
||||||
def = GetDef(g_vault.get("server_language"), key);
|
|
||||||
}
|
|
||||||
if (strcmp(cpLangName, "en")!=0 && strcmp(g_vault.get("server_language"), "en")!=0)
|
|
||||||
{
|
|
||||||
def = GetDef("en", key);
|
|
||||||
}
|
|
||||||
if (!def)
|
|
||||||
{
|
|
||||||
static char buf[512];
|
|
||||||
CHECK_PTR((char*)(buf+17+strlen(key)), buf, sizeof(buf));
|
|
||||||
sprintf(buf, "ML_LNOTFOUND: %s", key);
|
|
||||||
def = buf;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
while (*def)
|
|
||||||
{
|
|
||||||
if (*def == '%')
|
|
||||||
{
|
|
||||||
++def;
|
|
||||||
static char format[32];
|
|
||||||
format[0] = '%';
|
|
||||||
char *ptr = format+1;
|
|
||||||
while (ptr-format<sizeof(format) && !isalpha(*ptr++ = *def++))
|
|
||||||
/*nothing*/;
|
|
||||||
ZEROTERM(format);
|
|
||||||
|
|
||||||
*ptr = 0;
|
|
||||||
vsprintf(outptr, format, ap);
|
|
||||||
// vsprintf doesnt alter the ap, increment here
|
|
||||||
switch (*(ptr-1))
|
|
||||||
{
|
|
||||||
case 'f':
|
|
||||||
va_arg(ap, double);
|
|
||||||
break;
|
|
||||||
case 's':
|
|
||||||
va_arg(ap, char *);
|
|
||||||
break;
|
|
||||||
case 'c':
|
|
||||||
case 'd':
|
|
||||||
case 'i':
|
|
||||||
default: // default: assume int-like parameter
|
|
||||||
va_arg(ap, int);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
outptr += strlen(outptr);
|
|
||||||
}
|
|
||||||
else if (*def == '^')
|
|
||||||
{
|
|
||||||
++def;
|
|
||||||
switch (*def)
|
|
||||||
{
|
|
||||||
case 'n':
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = '\n';
|
|
||||||
break;
|
|
||||||
case 't':
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = '\t';
|
|
||||||
break;
|
|
||||||
case '^':
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = '^';
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
CHECK_OUTPTR(2);
|
|
||||||
*outptr++ = '^';
|
|
||||||
*outptr++ = *def;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
++def;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = *def++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
static char format[32] = {'%'};
|
|
||||||
char *ptr = format+1;
|
|
||||||
if (*src != '%')
|
|
||||||
{
|
|
||||||
while (*src != 0 && ptr-format<sizeof(format) && !isalpha(*ptr++ = *src++))
|
|
||||||
/*nothing*/;
|
|
||||||
*ptr = 0;
|
|
||||||
ZEROTERM(format);
|
|
||||||
--src;
|
|
||||||
vsprintf(outptr, format, ap);
|
|
||||||
// vsprintf doesnt alter the ap, increment here
|
|
||||||
switch (*(ptr-1))
|
|
||||||
{
|
|
||||||
case 'f':
|
|
||||||
va_arg(ap, double);
|
|
||||||
break;
|
|
||||||
case 's':
|
|
||||||
va_arg(ap, char *);
|
|
||||||
break;
|
|
||||||
case 'c':
|
|
||||||
case 'd':
|
|
||||||
case 'i':
|
|
||||||
default: // default: assume int-like parameter
|
|
||||||
va_arg(ap, int);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
outptr += strlen(outptr);
|
|
||||||
} else {
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = '%';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = *src;
|
|
||||||
}
|
|
||||||
++src;
|
|
||||||
}
|
|
||||||
CHECK_OUTPTR(1);
|
|
||||||
*outptr++ = 0;
|
|
||||||
return outbuf;
|
|
||||||
}
|
|
||||||
void CLangMngr::MergeDefinitions(const char *lang, CQueue<sKeyDef*> &tmpVec)
|
void CLangMngr::MergeDefinitions(const char *lang, CQueue<sKeyDef*> &tmpVec)
|
||||||
{
|
{
|
||||||
CLang * language = GetLang(lang);
|
CLang * language = GetLang(lang);
|
||||||
@ -1025,7 +901,7 @@ int CLangMngr::MergeDefinitionFile(const char *file)
|
|||||||
language[0] = buf[1];
|
language[0] = buf[1];
|
||||||
language[1] = buf[2];
|
language[1] = buf[2];
|
||||||
language[2] = 0;
|
language[2] = 0;
|
||||||
} else {
|
} else if (buf.size() > 4) {
|
||||||
if (!multiline)
|
if (!multiline)
|
||||||
{
|
{
|
||||||
pos = buf.find('=');
|
pos = buf.find('=');
|
||||||
@ -1084,7 +960,6 @@ int CLangMngr::MergeDefinitionFile(const char *file)
|
|||||||
{
|
{
|
||||||
MergeDefinitions(language, Defq);
|
MergeDefinitions(language, Defq);
|
||||||
}
|
}
|
||||||
fclose(fp);
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -171,7 +171,6 @@ public:
|
|||||||
const char *Format(const char *src, ...);
|
const char *Format(const char *src, ...);
|
||||||
// Format a string for an AMX plugin
|
// Format a string for an AMX plugin
|
||||||
char *FormatAmxString(AMX *amx, cell *params, int parm, int &len);
|
char *FormatAmxString(AMX *amx, cell *params, int parm, int &len);
|
||||||
char *FormatString(const char *fmt, va_list &ap);
|
|
||||||
// Save
|
// Save
|
||||||
bool Save(const char *filename);
|
bool Save(const char *filename);
|
||||||
// Load
|
// Load
|
||||||
|
@ -173,7 +173,8 @@ void LogEventsMngr::executeLogEvents()
|
|||||||
|
|
||||||
if (valid){
|
if (valid){
|
||||||
if ((err = amx_Exec(a->plugin->getAMX(), NULL , a->func , 0)) != AMX_ERR_NONE)
|
if ((err = amx_Exec(a->plugin->getAMX(), NULL , a->func , 0)) != AMX_ERR_NONE)
|
||||||
LogError(a->plugin->getAMX(), err, "");
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (plugin \"%s\")",
|
||||||
|
err,a->plugin->getAMX()->curline,a->plugin->getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLEEXEPTIONS
|
#ifdef ENABLEEXEPTIONS
|
||||||
|
@ -126,9 +126,8 @@ pfnmodule_engine_g engModuleFunc = {
|
|||||||
// class CModule
|
// class CModule
|
||||||
// *****************************************************
|
// *****************************************************
|
||||||
|
|
||||||
CModule::CModule(const char* fname)
|
CModule::CModule(const char* fname) : m_Filename(fname)
|
||||||
{
|
{
|
||||||
m_Filename.assign(fname);
|
|
||||||
clear(false);
|
clear(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ public:
|
|||||||
inline module_info_s* getInfo() const { return m_InfoOld; } // old
|
inline module_info_s* getInfo() const { return m_InfoOld; } // old
|
||||||
inline const amxx_module_info_s* getInfoNew() const { return &m_InfoNew; } // new
|
inline const amxx_module_info_s* getInfoNew() const { return &m_InfoNew; } // new
|
||||||
inline int getStatusValue() { return m_Status; }
|
inline int getStatusValue() { return m_Status; }
|
||||||
inline bool operator==( const char* fname ) { return !strcmp( m_Filename.c_str() , fname ); }
|
inline bool operator==( void* fname ) { return !strcmp( m_Filename.c_str() , (char*)fname ); }
|
||||||
inline bool isReloadable() { return m_Amxx ? ((m_Status == MODULE_LOADED) && (m_InfoNew.reload != 0)) : ( (m_Status==MODULE_LOADED) && (m_InfoOld->type==RELOAD_MODULE)); }
|
inline bool isReloadable() { return m_Amxx ? ((m_Status == MODULE_LOADED) && (m_InfoNew.reload != 0)) : ( (m_Status==MODULE_LOADED) && (m_InfoOld->type==RELOAD_MODULE)); }
|
||||||
inline bool isAmxx() const { return m_Amxx; }
|
inline bool isAmxx() const { return m_Amxx; }
|
||||||
inline const char *getMissingFunc() const { return m_MissingFunc; }
|
inline const char *getMissingFunc() const { return m_MissingFunc; }
|
||||||
|
@ -34,11 +34,11 @@
|
|||||||
#include "CForward.h"
|
#include "CForward.h"
|
||||||
#include "CFile.h"
|
#include "CFile.h"
|
||||||
|
|
||||||
CPluginMngr::CPlugin* CPluginMngr::loadPlugin(const char* path, const char* name, char* error, int debug) {
|
CPluginMngr::CPlugin* CPluginMngr::loadPlugin(const char* path, const char* name, char* error) {
|
||||||
CPlugin** a = &head;
|
CPlugin** a = &head;
|
||||||
while( *a ) a = &(*a)->next;
|
while( *a ) a = &(*a)->next;
|
||||||
*a = new CPlugin( pCounter++ ,path,name,error, debug);
|
*a = new CPlugin( pCounter++ ,path,name,error);
|
||||||
return (*a);
|
return *error ? 0 : *a;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CPluginMngr::unloadPlugin( CPlugin** a ) {
|
void CPluginMngr::unloadPlugin( CPlugin** a ) {
|
||||||
@ -50,7 +50,7 @@ void CPluginMngr::unloadPlugin( CPlugin** a ) {
|
|||||||
|
|
||||||
int CPluginMngr::loadPluginsFromFile( const char* filename )
|
int CPluginMngr::loadPluginsFromFile( const char* filename )
|
||||||
{
|
{
|
||||||
FILE *fp = fopen(build_pathname("%s",filename) , "rt");
|
File fp( build_pathname("%s",filename) , "r" );
|
||||||
|
|
||||||
if ( !fp )
|
if ( !fp )
|
||||||
{
|
{
|
||||||
@ -59,39 +59,21 @@ int CPluginMngr::loadPluginsFromFile( const char* filename )
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Find now folder
|
// Find now folder
|
||||||
char pluginName[256], error[256], debug[256];
|
char pluginName[256], line[256], error[256];
|
||||||
int debugFlag = 0;
|
const char *pluginsDir = get_localinfo("amxx_pluginsdir", "addons/amxx/plugins");
|
||||||
const char *pluginsDir = get_localinfo("amxx_pluginsdir", "addons/amxmodx/plugins");
|
|
||||||
|
|
||||||
String line;
|
|
||||||
|
|
||||||
while ( !feof(fp) )
|
while ( fp.getline(line , 255 ) )
|
||||||
{
|
{
|
||||||
*pluginName = 0;
|
*pluginName = 0;
|
||||||
*debug = 0;
|
sscanf(line,"%s",pluginName);
|
||||||
debugFlag = 0;
|
|
||||||
line.clear();
|
|
||||||
line._fread(fp);
|
|
||||||
sscanf(line.c_str(),"%s %s",pluginName, debug);
|
|
||||||
if (!isalnum(*pluginName)) continue;
|
if (!isalnum(*pluginName)) continue;
|
||||||
|
|
||||||
if (isalnum(*debug) && strcmp(debug, "debug") == 0)
|
CPlugin* plugin = loadPlugin( pluginsDir , pluginName , error );
|
||||||
{
|
|
||||||
debugFlag = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
CPlugin* plugin = loadPlugin( pluginsDir , pluginName , error, debugFlag);
|
if (!plugin)
|
||||||
|
AMXXLOG_Log("[AMXX] %s (plugin \"%s\")", error, pluginName );
|
||||||
if (plugin->getStatusCode() == ps_bad_load)
|
|
||||||
{
|
|
||||||
char errorMsg[255];
|
|
||||||
sprintf(errorMsg, "%s (plugin \"%s\")", error, pluginName);
|
|
||||||
plugin->setError(errorMsg);
|
|
||||||
AMXXLOG_Log("[AMXX] %s", plugin->getError());
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
fclose(fp);
|
|
||||||
|
|
||||||
return pCounter;
|
return pCounter;
|
||||||
}
|
}
|
||||||
@ -105,6 +87,10 @@ void CPluginMngr::clear() {
|
|||||||
CPluginMngr::CPlugin* CPluginMngr::findPluginFast(AMX *amx)
|
CPluginMngr::CPlugin* CPluginMngr::findPluginFast(AMX *amx)
|
||||||
{
|
{
|
||||||
return (CPlugin*)(amx->userdata[3]);
|
return (CPlugin*)(amx->userdata[3]);
|
||||||
|
/*CPlugin*a = head;
|
||||||
|
while ( a && &a->amx != amx )
|
||||||
|
a=a->next;
|
||||||
|
return a;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
CPluginMngr::CPlugin* CPluginMngr::findPlugin(AMX *amx) {
|
CPluginMngr::CPlugin* CPluginMngr::findPlugin(AMX *amx) {
|
||||||
@ -133,16 +119,7 @@ CPluginMngr::CPlugin* CPluginMngr::findPlugin(const char* name) {
|
|||||||
|
|
||||||
const char* CPluginMngr::CPlugin::getStatus() const {
|
const char* CPluginMngr::CPlugin::getStatus() const {
|
||||||
switch(status){
|
switch(status){
|
||||||
case ps_running:
|
case ps_running: return "running";
|
||||||
{
|
|
||||||
if (getAMX()->flags & AMX_FLAG_DEBUG)
|
|
||||||
{
|
|
||||||
return "debug";
|
|
||||||
} else {
|
|
||||||
return "running";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case ps_paused: return "paused";
|
case ps_paused: return "paused";
|
||||||
case ps_bad_load: return "bad load";
|
case ps_bad_load: return "bad load";
|
||||||
case ps_stopped: return "stopped";
|
case ps_stopped: return "stopped";
|
||||||
@ -151,20 +128,16 @@ const char* CPluginMngr::CPlugin::getStatus() const {
|
|||||||
return "error";
|
return "error";
|
||||||
}
|
}
|
||||||
|
|
||||||
CPluginMngr::CPlugin::CPlugin(int i, const char* p,const char* n, char* e, int d) : name(n), title(n) {
|
CPluginMngr::CPlugin::CPlugin(int i, const char* p,const char* n, char* e) : name(n), title(n) {
|
||||||
const char* unk = "unknown";
|
const char* unk = "unknown";
|
||||||
title.assign(unk);
|
title.assign(unk);
|
||||||
author.assign(unk);
|
author.assign(unk);
|
||||||
version.assign(unk);
|
version.assign(unk);
|
||||||
char* path = build_pathname("%s/%s",p,n);
|
char* path = build_pathname("%s/%s",p,n);
|
||||||
code = 0;
|
code = 0;
|
||||||
int err = load_amxscript(&amx,&code,path,e, d);
|
int err = load_amxscript(&amx,&code,path,e );
|
||||||
if ( err == AMX_ERR_NONE )
|
if ( err == AMX_ERR_NONE ) status = ps_running;
|
||||||
{
|
else status = ps_bad_load;
|
||||||
status = ps_running;
|
|
||||||
} else {
|
|
||||||
status = ps_bad_load;
|
|
||||||
}
|
|
||||||
amx.userdata[3] = this;
|
amx.userdata[3] = this;
|
||||||
paused_fun = 0;
|
paused_fun = 0;
|
||||||
next = 0;
|
next = 0;
|
||||||
|
@ -63,12 +63,11 @@ public:
|
|||||||
String version;
|
String version;
|
||||||
String title;
|
String title;
|
||||||
String author;
|
String author;
|
||||||
String errorMsg;
|
|
||||||
int paused_fun;
|
int paused_fun;
|
||||||
int status;
|
int status;
|
||||||
CPlugin* next;
|
CPlugin* next;
|
||||||
int id;
|
int id;
|
||||||
CPlugin(int i , const char* p,const char* n, char* e, int d);
|
CPlugin(int i , const char* p,const char* n, char* e);
|
||||||
~CPlugin( );
|
~CPlugin( );
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -77,15 +76,11 @@ public:
|
|||||||
inline const char* getVersion() { return version.c_str();}
|
inline const char* getVersion() { return version.c_str();}
|
||||||
inline const char* getTitle() { return title.c_str();}
|
inline const char* getTitle() { return title.c_str();}
|
||||||
inline const char* getAuthor() { return author.c_str();}
|
inline const char* getAuthor() { return author.c_str();}
|
||||||
inline const char* getError() { return errorMsg.c_str();}
|
|
||||||
inline int getStatusCode() { return status; }
|
|
||||||
inline int getId() const { return id; }
|
inline int getId() const { return id; }
|
||||||
inline AMX* getAMX() { return &amx; }
|
inline AMX* getAMX() { return &amx; }
|
||||||
inline const AMX* getAMX() const { return &amx; }
|
|
||||||
inline void setTitle( const char* n ) { title.assign(n); }
|
inline void setTitle( const char* n ) { title.assign(n); }
|
||||||
inline void setAuthor( const char* n ) { author.assign(n); }
|
inline void setAuthor( const char* n ) { author.assign(n); }
|
||||||
inline void setVersion( const char* n ) { version.assign(n); }
|
inline void setVersion( const char* n ) { version.assign(n); }
|
||||||
inline void setError( const char* n ) { errorMsg.assign(n); }
|
|
||||||
inline bool isValid() const { return ((status != ps_bad_load) && (status != ps_locked)); }
|
inline bool isValid() const { return ((status != ps_bad_load) && (status != ps_locked)); }
|
||||||
inline bool isPaused() const { return ( (status == ps_paused) || (status == ps_stopped)); }
|
inline bool isPaused() const { return ( (status == ps_paused) || (status == ps_stopped)); }
|
||||||
inline bool isFunctionPaused( int id ) const { return (paused_fun & (1<<id)) ? true : false; }
|
inline bool isFunctionPaused( int id ) const { return (paused_fun & (1<<id)) ? true : false; }
|
||||||
@ -109,7 +104,7 @@ public:
|
|||||||
|
|
||||||
// Interface
|
// Interface
|
||||||
|
|
||||||
CPlugin* loadPlugin(const char* path, const char* name, char* error, int debug);
|
CPlugin* loadPlugin(const char* path, const char* name, char* error);
|
||||||
void unloadPlugin( CPlugin** a );
|
void unloadPlugin( CPlugin** a );
|
||||||
int loadPluginsFromFile( const char* filename );
|
int loadPluginsFromFile( const char* filename );
|
||||||
CPlugin* findPluginFast(AMX *amx);
|
CPlugin* findPluginFast(AMX *amx);
|
||||||
|
@ -71,7 +71,7 @@ public:
|
|||||||
|
|
||||||
void append(const char *t)
|
void append(const char *t)
|
||||||
{
|
{
|
||||||
Grow(cSize + strlen(t) + 1);
|
Grow(cSize + strlen(t));
|
||||||
strcat(v, t);
|
strcat(v, t);
|
||||||
cSize = strlen(v);
|
cSize = strlen(v);
|
||||||
}
|
}
|
||||||
@ -187,7 +187,7 @@ public:
|
|||||||
{
|
{
|
||||||
if (c == '\f' || c == '\n' ||
|
if (c == '\f' || c == '\n' ||
|
||||||
c == '\t' || c == '\r' ||
|
c == '\t' || c == '\r' ||
|
||||||
c == '\v' || c == ' ')
|
c == 'v' || c == ' ')
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -61,11 +61,14 @@ void CTaskMngr::CTask::set(CPluginMngr::CPlugin *pPlugin, int iFunc, int iFlags,
|
|||||||
|
|
||||||
if (iParamsLen)
|
if (iParamsLen)
|
||||||
{
|
{
|
||||||
|
// also add a cell to the back with the value 0
|
||||||
m_iParamLen = iParamsLen + 1;
|
m_iParamLen = iParamsLen + 1;
|
||||||
m_pParams = new cell[m_iParamLen];
|
m_pParams = new cell[m_iParamLen];
|
||||||
memcpy(m_pParams, pParams, sizeof(cell)*iParamsLen);
|
memcpy(m_pParams, pParams, sizeof(cell)*iParamsLen);
|
||||||
m_pParams[iParamsLen] = 0;
|
m_pParams[iParamsLen] = 0;
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
m_iParamLen = 0;
|
m_iParamLen = 0;
|
||||||
m_pParams = NULL;
|
m_pParams = NULL;
|
||||||
}
|
}
|
||||||
@ -73,17 +76,9 @@ void CTaskMngr::CTask::set(CPluginMngr::CPlugin *pPlugin, int iFunc, int iFlags,
|
|||||||
|
|
||||||
void CTaskMngr::CTask::clear()
|
void CTaskMngr::CTask::clear()
|
||||||
{
|
{
|
||||||
if (m_iFunc >= 0)
|
|
||||||
{
|
|
||||||
unregisterSPForward(m_iFunc);
|
|
||||||
m_iFunc = -1;
|
|
||||||
}
|
|
||||||
m_bFree = true;
|
m_bFree = true;
|
||||||
if (m_pParams)
|
if (m_pParams)
|
||||||
{
|
|
||||||
delete [] m_pParams;
|
delete [] m_pParams;
|
||||||
m_pParams = NULL;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CTaskMngr::CTask::isFree() const
|
bool CTaskMngr::CTask::isFree() const
|
||||||
@ -119,16 +114,29 @@ void CTaskMngr::CTask::executeIfRequired(float fCurrentTime, float fTimeLimit, f
|
|||||||
|
|
||||||
if (execute)
|
if (execute)
|
||||||
{
|
{
|
||||||
|
if (m_pPlugin->isExecutable(m_iFunc))
|
||||||
|
{
|
||||||
|
int err;
|
||||||
if (m_iParamLen) // call with parameters
|
if (m_iParamLen) // call with parameters
|
||||||
{
|
{
|
||||||
cell arr = prepareCellArray(m_pParams, m_iParamLen);
|
cell amx_addr, *phys_addr;
|
||||||
executeForwards(m_iFunc, arr, m_iId);
|
if (amx_Allot(m_pPlugin->getAMX(), m_iParamLen, &amx_addr, &phys_addr) != AMX_ERR_NONE)
|
||||||
} else {
|
AMXXLOG_Log("[AMXX] Failed to allocate AMX memory (task \"%d\") (plugin \"%s\")", m_iId, m_pPlugin->getName());
|
||||||
executeForwards(m_iFunc, m_iId);
|
else
|
||||||
}
|
{
|
||||||
|
copy_amxmemory(phys_addr, m_pParams, m_iParamLen);
|
||||||
|
if ((err = amx_Exec(m_pPlugin->getAMX(), NULL, m_iFunc, 2, amx_addr, m_iId)) != AMX_ERR_NONE)
|
||||||
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (task \"%d\") (plugin \"%s\")", err, m_pPlugin->getAMX()->curline, m_iId, m_pPlugin->getName());
|
||||||
|
|
||||||
if (isFree())
|
amx_Release(m_pPlugin->getAMX(), amx_addr);
|
||||||
return;
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ((err = amx_Exec(m_pPlugin->getAMX(), NULL, m_iFunc, 1, m_iId)) != AMX_ERR_NONE)
|
||||||
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (task \"%d\") (plugin \"%s\")", err, m_pPlugin->getAMX()->curline, m_iId, m_pPlugin->getName());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// set new exec time OR remove the task if needed
|
// set new exec time OR remove the task if needed
|
||||||
if (m_bLoop || (--m_iRepeat > 0))
|
if (m_bLoop || (--m_iRepeat > 0))
|
||||||
@ -137,8 +145,6 @@ void CTaskMngr::CTask::executeIfRequired(float fCurrentTime, float fTimeLimit, f
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
unregisterSPForward(m_iFunc);
|
|
||||||
m_iFunc = -1;
|
|
||||||
m_bFree = true;
|
m_bFree = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -54,19 +54,19 @@ private:
|
|||||||
// execution
|
// execution
|
||||||
float m_fNextExecTime;
|
float m_fNextExecTime;
|
||||||
public:
|
public:
|
||||||
void set(CPluginMngr::CPlugin *pPlugin, int iFunc, int iFlags, int iId, float fBase, int iParamsLen, const cell *pParams, int iRepeat, float fCurrentTime);
|
inline void set(CPluginMngr::CPlugin *pPlugin, int iFunc, int iFlags, int iId, float fBase, int iParamsLen, const cell *pParams, int iRepeat, float fCurrentTime);
|
||||||
void clear();
|
inline void clear();
|
||||||
bool isFree() const;
|
inline bool isFree() const;
|
||||||
|
|
||||||
CPluginMngr::CPlugin *getPlugin() const;
|
inline CPluginMngr::CPlugin *getPlugin() const;
|
||||||
int getTaskId() const;
|
inline int getTaskId() const;
|
||||||
|
|
||||||
void executeIfRequired(float fCurrentTime, float fTimeLimit, float fTimeLeft); // also removes the task if needed
|
inline void executeIfRequired(float fCurrentTime, float fTimeLimit, float fTimeLeft); // also removes the task if needed
|
||||||
|
|
||||||
void changeBase(float fNewBase);
|
inline void changeBase(float fNewBase);
|
||||||
void resetNextExecTime(float fCurrentTime);
|
inline void resetNextExecTime(float fCurrentTime);
|
||||||
|
|
||||||
bool shouldRepeat();
|
inline bool shouldRepeat();
|
||||||
|
|
||||||
CTask();
|
CTask();
|
||||||
~CTask();
|
~CTask();
|
||||||
|
@ -32,8 +32,6 @@
|
|||||||
#ifndef __CVECTOR_H__
|
#ifndef __CVECTOR_H__
|
||||||
#define __CVECTOR_H__
|
#define __CVECTOR_H__
|
||||||
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
// Vector
|
// Vector
|
||||||
template <class T> class CVector
|
template <class T> class CVector
|
||||||
{
|
{
|
||||||
@ -286,7 +284,7 @@ public:
|
|||||||
iterator iterAt(size_t pos)
|
iterator iterAt(size_t pos)
|
||||||
{
|
{
|
||||||
if (pos > m_CurrentUsedSize)
|
if (pos > m_CurrentUsedSize)
|
||||||
assert(0);
|
ASSERT(0);
|
||||||
return iterator(m_Data + pos);
|
return iterator(m_Data + pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -333,7 +331,7 @@ public:
|
|||||||
{
|
{
|
||||||
if (pos > m_CurrentUsedSize)
|
if (pos > m_CurrentUsedSize)
|
||||||
{
|
{
|
||||||
assert(0);
|
ASSERT(0);
|
||||||
}
|
}
|
||||||
return m_Data[pos];
|
return m_Data[pos];
|
||||||
}
|
}
|
||||||
@ -342,7 +340,7 @@ public:
|
|||||||
{
|
{
|
||||||
if (pos > m_CurrentUsedSize)
|
if (pos > m_CurrentUsedSize)
|
||||||
{
|
{
|
||||||
assert(0);
|
ASSERT(0);
|
||||||
}
|
}
|
||||||
return m_Data[pos];
|
return m_Data[pos];
|
||||||
}
|
}
|
||||||
@ -361,7 +359,7 @@ public:
|
|||||||
{
|
{
|
||||||
if (m_CurrentUsedSize < 1)
|
if (m_CurrentUsedSize < 1)
|
||||||
{
|
{
|
||||||
assert(0);
|
ASSERT(0);
|
||||||
}
|
}
|
||||||
return m_Data[0];
|
return m_Data[0];
|
||||||
}
|
}
|
||||||
@ -370,7 +368,7 @@ public:
|
|||||||
{
|
{
|
||||||
if (m_CurrentUsedSize < 1)
|
if (m_CurrentUsedSize < 1)
|
||||||
{
|
{
|
||||||
assert(0);
|
ASSERT(0);
|
||||||
}
|
}
|
||||||
return m_Data[0];
|
return m_Data[0];
|
||||||
}
|
}
|
||||||
@ -379,7 +377,7 @@ public:
|
|||||||
{
|
{
|
||||||
if (m_CurrentUsedSize < 1)
|
if (m_CurrentUsedSize < 1)
|
||||||
{
|
{
|
||||||
assert(0);
|
ASSERT(0);
|
||||||
}
|
}
|
||||||
return m_Data[m_CurrentUsedSize - 1];
|
return m_Data[m_CurrentUsedSize - 1];
|
||||||
}
|
}
|
||||||
@ -388,7 +386,7 @@ public:
|
|||||||
{
|
{
|
||||||
if (m_CurrentUsedSize < 1)
|
if (m_CurrentUsedSize < 1)
|
||||||
{
|
{
|
||||||
assert(0);
|
ASSERT(0);
|
||||||
}
|
}
|
||||||
return m_Data[m_CurrentUsedSize - 1];
|
return m_Data[m_CurrentUsedSize - 1];
|
||||||
}
|
}
|
||||||
|
@ -42,12 +42,6 @@
|
|||||||
|
|
||||||
; Revision History
|
; Revision History
|
||||||
;------------------
|
;------------------
|
||||||
; 16 September 2004 by David "BAILOPAN" Anderson
|
|
||||||
; Implemented a compile time toggleable debug hook on OP_CALL and OP_RET.
|
|
||||||
; NOTE: JIT has not had debug hooks since 1999.
|
|
||||||
; 8 September 2004 by David "BAILOPAN" Anderson
|
|
||||||
; Changed OP_LINE call to be compile-time toggle-able between compiling
|
|
||||||
; line ops or not.
|
|
||||||
; 29 June 2004 by G.W.M. Vissers
|
; 29 June 2004 by G.W.M. Vissers
|
||||||
; Translated the thing into NASM. The actual generation of the code is
|
; Translated the thing into NASM. The actual generation of the code is
|
||||||
; put into the data section because the code modifies itself whereas the
|
; put into the data section because the code modifies itself whereas the
|
||||||
@ -107,6 +101,15 @@
|
|||||||
; to compute the destination address: It searches backwards now.
|
; to compute the destination address: It searches backwards now.
|
||||||
; 1999/07/08 MP - initial revision
|
; 1999/07/08 MP - initial revision
|
||||||
|
|
||||||
|
|
||||||
|
; Controls generation of LINE op-codes: 0 - no, all other values - yes
|
||||||
|
; Beware that, if set to 1, this makes the compiled code slower by a factor of
|
||||||
|
; up to 3!
|
||||||
|
;
|
||||||
|
; GWMV: to generate LINE opcode, %define ALLOWOPLINE
|
||||||
|
;
|
||||||
|
%undef ALLOWOPLINE
|
||||||
|
|
||||||
;
|
;
|
||||||
; If this is set to 1 the JIT generates relocatable code for case tables, too.
|
; If this is set to 1 the JIT generates relocatable code for case tables, too.
|
||||||
; If set to 0, a faster variant for switch (using absolute addresses) is
|
; If set to 0, a faster variant for switch (using absolute addresses) is
|
||||||
@ -153,24 +156,16 @@ _dbgcode: resd 1
|
|||||||
_dbgaddr: resd 1
|
_dbgaddr: resd 1
|
||||||
_dbgparam: resd 1
|
_dbgparam: resd 1
|
||||||
_dbgname: resd 1
|
_dbgname: resd 1
|
||||||
;usertags and userdata are 16 bytes on AMX Mod X
|
_usertags: resd 4 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
||||||
_usertags1: resd 1 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
_userdata: resd 4 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
||||||
_usertags2: resd 1 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
|
||||||
_usertags3: resd 1 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
|
||||||
_usertags4: resd 1 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
|
||||||
_userdata1: resd 1 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
|
||||||
_userdata2: resd 1 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
|
||||||
_userdata3: resd 1 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
|
||||||
_userdata4: resd 1 ; 4 = AMX_USERNUM (#define'd in amx.h)
|
|
||||||
_error: resd 1
|
_error: resd 1
|
||||||
_pri: resd 1
|
_pri: resd 1
|
||||||
_alt: resd 1
|
_alt: resd 1
|
||||||
_reset_stk: resd 1
|
_reset_stk: resd 1
|
||||||
_reset_hea: resd 1
|
_reset_hea: resd 1
|
||||||
_syscall_d: resd 1
|
_syscall_d: resd 1
|
||||||
; the two fields below are for the JIT
|
; the two fields below are for the JIT; they do not exist in
|
||||||
; they are included in the non-JIT version for AMX Mod X
|
; the non-JIT version of the abstract machine
|
||||||
; this is to make sure that the structs match universally!
|
|
||||||
_reloc_size: resd 1 ; memory block for relocations
|
_reloc_size: resd 1 ; memory block for relocations
|
||||||
_code_size: resd 1 ; memory size of the native code
|
_code_size: resd 1 ; memory size of the native code
|
||||||
endstruc
|
endstruc
|
||||||
@ -235,7 +230,6 @@ DBG_SYMTAG equ 9
|
|||||||
|
|
||||||
AMX_FLAG_CHAR16 equ 0001h ; characters are 16-bit
|
AMX_FLAG_CHAR16 equ 0001h ; characters are 16-bit
|
||||||
AMX_FLAG_DEBUG equ 0002h ; symbolic info. available
|
AMX_FLAG_DEBUG equ 0002h ; symbolic info. available
|
||||||
AMX_FLAG_LINEOPS equ 0020h ; line ops should be parsed [load time only flag] - ~dvander
|
|
||||||
AMX_FLAG_BROWSE equ 4000h
|
AMX_FLAG_BROWSE equ 4000h
|
||||||
AMX_FLAG_RELOC equ 8000h ; jump/call addresses relocated
|
AMX_FLAG_RELOC equ 8000h ; jump/call addresses relocated
|
||||||
|
|
||||||
@ -278,14 +272,6 @@ AMX_FLAG_RELOC equ 8000h ; jump/call addresses relocated
|
|||||||
|
|
||||||
;
|
;
|
||||||
; This is the work horse of the whole JIT: It actually copies the code.
|
; This is the work horse of the whole JIT: It actually copies the code.
|
||||||
; Notes from ~dvander (with help of dJeyL)
|
|
||||||
; This takes a source and ending address pointer in the assembled JIT code.
|
|
||||||
; Then it subtracts them and copies the code in between.
|
|
||||||
; The last parameter is the number of bytes the opcode is so it can jump
|
|
||||||
; to the next one.
|
|
||||||
; Also note that the "in between" code is NEVER executed during the compile
|
|
||||||
; phase of the JIT. It's only assembled in memory, and copied into the
|
|
||||||
; final output bytecode by this function.
|
|
||||||
%macro GO_ON 2-3 4
|
%macro GO_ON 2-3 4
|
||||||
mov esi, %1 ;get source address of JIT code
|
mov esi, %1 ;get source address of JIT code
|
||||||
mov ecx,%2-%1 ;get number of bytes to copy
|
mov ecx,%2-%1 ;get number of bytes to copy
|
||||||
@ -301,8 +287,6 @@ AMX_FLAG_RELOC equ 8000h ; jump/call addresses relocated
|
|||||||
; Nasm can't handle the determination of the maximum code size as was done
|
; Nasm can't handle the determination of the maximum code size as was done
|
||||||
; in the Masm implementation, since it only does two passes. This macro is
|
; in the Masm implementation, since it only does two passes. This macro is
|
||||||
; called *after* the code for each Small instruction.
|
; called *after* the code for each Small instruction.
|
||||||
; Notes by ~dvander: This just substracts a label's ip from the current ip.
|
|
||||||
; Therefore you get an instant size check - see RELOC
|
|
||||||
%macro CHECKCODESIZE 1
|
%macro CHECKCODESIZE 1
|
||||||
%if MAXCODESIZE < $-%1
|
%if MAXCODESIZE < $-%1
|
||||||
%assign MAXCODESIZE $-%1
|
%assign MAXCODESIZE $-%1
|
||||||
@ -313,11 +297,6 @@ AMX_FLAG_RELOC equ 8000h ; jump/call addresses relocated
|
|||||||
; Modify the argument of an x86 instruction with the Small opcode's parameter
|
; Modify the argument of an x86 instruction with the Small opcode's parameter
|
||||||
; before copying the code.
|
; before copying the code.
|
||||||
;
|
;
|
||||||
; Notes by ~dvander (thanks to dJeyL) - this will take an address and modify
|
|
||||||
; the dword at it. Since the JIT copies already assembled code, you see
|
|
||||||
; things like "call 12345678h". This is an arbitrary value as putval
|
|
||||||
; will modify it in memory and then GO_ON will add it to the program.
|
|
||||||
; It is important to get the putval address right - it's in bytes.
|
|
||||||
%macro putval 1
|
%macro putval 1
|
||||||
mov eax,[ebx+4]
|
mov eax,[ebx+4]
|
||||||
mov dword [%1],eax
|
mov dword [%1],eax
|
||||||
@ -326,12 +305,7 @@ AMX_FLAG_RELOC equ 8000h ; jump/call addresses relocated
|
|||||||
;
|
;
|
||||||
; Add an entry to the table of addresses which have to be relocated after the
|
; Add an entry to the table of addresses which have to be relocated after the
|
||||||
; code compilation is done.
|
; code compilation is done.
|
||||||
; Notes by ~dvander: This is sort of what amx_BrowseRelocate() does, although
|
;
|
||||||
; relocation is actually done after code generation (this just adds to a
|
|
||||||
; table). Like putval, this takes in an address and marks it to be
|
|
||||||
; rewritten. It is a good idea to just use labels to find relocation
|
|
||||||
; offsets (see OP_CALL and OP_RETN). After code generation, this table
|
|
||||||
; is browsed and the correct threaded jumps are placed.
|
|
||||||
%macro RELOC 1-2 ; adr, dest
|
%macro RELOC 1-2 ; adr, dest
|
||||||
mov ebp,[reloc_num]
|
mov ebp,[reloc_num]
|
||||||
%if %0 < 2
|
%if %0 < 2
|
||||||
@ -817,7 +791,7 @@ OP_ALIGN_PRI:
|
|||||||
CHECKCODESIZE j_align_pri
|
CHECKCODESIZE j_align_pri
|
||||||
|
|
||||||
OP_ALIGN_ALT:
|
OP_ALIGN_ALT:
|
||||||
;nop
|
;nop;
|
||||||
mov eax,4
|
mov eax,4
|
||||||
sub eax,[ebx+4]
|
sub eax,[ebx+4]
|
||||||
mov dword [j_align_alt+1],eax
|
mov dword [j_align_alt+1],eax
|
||||||
@ -1073,119 +1047,22 @@ OP_RET:
|
|||||||
;good
|
;good
|
||||||
OP_RETN:
|
OP_RETN:
|
||||||
;nop;
|
;nop;
|
||||||
;save registers
|
|
||||||
push eax
|
|
||||||
push ebp
|
|
||||||
;get .amx flags
|
|
||||||
mov ebp,[amxhead]
|
|
||||||
mov eax,[ebp+_h_flags]
|
|
||||||
;check to see if the flag has line ops
|
|
||||||
and eax,AMX_FLAG_DEBUG
|
|
||||||
cmp eax,AMX_FLAG_DEBUG
|
|
||||||
;restore registers
|
|
||||||
pop ebp
|
|
||||||
pop eax
|
|
||||||
;if so, skip down to debug compiler
|
|
||||||
jmp _go_jit_retn_debug
|
|
||||||
|
|
||||||
_go_jit_retn_nodebug:
|
|
||||||
GO_ON j_retn_nodebug, _go_jit_retn_go
|
|
||||||
j_retn_nodebug:
|
|
||||||
jmp [jit_retn]
|
|
||||||
CHECKCODESIZE j_retn_nodebug
|
|
||||||
_go_jit_retn_go:
|
|
||||||
jmp _go_jit_retn_end
|
|
||||||
|
|
||||||
_go_jit_retn_debug:
|
|
||||||
GO_ON j_retn, OP_CALL
|
GO_ON j_retn, OP_CALL
|
||||||
|
|
||||||
j_retn:
|
j_retn:
|
||||||
push ebp
|
|
||||||
push eax
|
|
||||||
push edx
|
|
||||||
;get AMX
|
|
||||||
mov ebp,amx
|
|
||||||
;get debug call ptr
|
|
||||||
mov eax,[ebp+_userdata2]
|
|
||||||
;check validity
|
|
||||||
mov edx, dword 0
|
|
||||||
cmp eax, edx
|
|
||||||
je _go_jit_skip_debug
|
|
||||||
xchg esp,esi ;switch stack
|
|
||||||
push 1 ;param 2 mode 1 = pop
|
|
||||||
push ebp ;param 1 - amx
|
|
||||||
call eax ;indirect debug call
|
|
||||||
add esp, 8 ;restore stack
|
|
||||||
xchg esp,esi ;return to AMX stack
|
|
||||||
mov ebp,amx ;restore AMX [necessary?]
|
|
||||||
_go_jit_skip_debug:
|
|
||||||
pop edx
|
|
||||||
pop eax
|
|
||||||
pop ebp
|
|
||||||
jmp [jit_retn]
|
jmp [jit_retn]
|
||||||
CHECKCODESIZE j_retn
|
CHECKCODESIZE j_retn
|
||||||
_go_jit_retn_end:
|
|
||||||
|
|
||||||
;good
|
;good
|
||||||
OP_CALL:
|
OP_CALL:
|
||||||
;nop;
|
;nop;
|
||||||
;save registers
|
|
||||||
push eax
|
|
||||||
push ebp
|
|
||||||
;get .amx flags
|
|
||||||
mov ebp,[amxhead]
|
|
||||||
mov eax,[ebp+_h_flags]
|
|
||||||
;check to see if the flag has line ops
|
|
||||||
and eax,AMX_FLAG_DEBUG
|
|
||||||
cmp eax,AMX_FLAG_DEBUG
|
|
||||||
;restore registers
|
|
||||||
pop ebp
|
|
||||||
pop eax
|
|
||||||
;if so, skip down to debug compiler
|
|
||||||
jmp _go_jit_debug
|
|
||||||
|
|
||||||
_go_jit_nodebug:
|
|
||||||
RELOC 1
|
RELOC 1
|
||||||
GO_ON j_call_nodebug, _j_call_go_on, 8
|
|
||||||
j_call_nodebug:
|
|
||||||
db 0e8h, 0, 0, 0, 0
|
|
||||||
CHECKCODESIZE j_call_nodebug
|
|
||||||
|
|
||||||
_j_call_go_on:
|
|
||||||
jmp _opcall_end
|
|
||||||
|
|
||||||
_go_jit_debug:
|
|
||||||
;thanks to Julien "dJeyL" Laurent for code relocation explanation
|
|
||||||
RELOC _go_jit_reloc-j_call+1
|
|
||||||
GO_ON j_call, OP_CALL_I, 8
|
GO_ON j_call, OP_CALL_I, 8
|
||||||
|
|
||||||
j_call:
|
j_call:
|
||||||
; save some registers
|
;call 12345678h ; tasm chokes on this out of a sudden
|
||||||
push ebp
|
|
||||||
push eax
|
|
||||||
push edx
|
|
||||||
; get AMX
|
|
||||||
mov ebp,amx
|
|
||||||
; get debug call pointer
|
|
||||||
mov eax,[ebp+_userdata2]
|
|
||||||
; check to see if it's valid
|
|
||||||
mov edx, dword 0
|
|
||||||
cmp eax,edx
|
|
||||||
je _go_jit_skip_call
|
|
||||||
xchg esp,esi ;switch to caller stack
|
|
||||||
push 2 ;param mode=2, push
|
|
||||||
push ebp ;param amx
|
|
||||||
call eax ;indirect call
|
|
||||||
add esp, 8 ;restore stack
|
|
||||||
xchg esp,esi ;return to AMX stack
|
|
||||||
mov ebp,amx ;restore AMX [necessary?]
|
|
||||||
_go_jit_skip_call:
|
|
||||||
;restore original registers
|
|
||||||
pop edx
|
|
||||||
pop eax
|
|
||||||
pop ebp
|
|
||||||
_go_jit_reloc:
|
|
||||||
db 0e8h, 0, 0, 0, 0
|
db 0e8h, 0, 0, 0, 0
|
||||||
CHECKCODESIZE j_call
|
CHECKCODESIZE j_call
|
||||||
_opcall_end:
|
|
||||||
|
|
||||||
OP_CALL_I:
|
OP_CALL_I:
|
||||||
;nop;
|
;nop;
|
||||||
@ -1857,29 +1734,13 @@ OP_FILE: ;opcode is simply ignored
|
|||||||
|
|
||||||
OP_LINE:
|
OP_LINE:
|
||||||
;nop;
|
;nop;
|
||||||
;~dvander - opline is now variable on compile time :]
|
%ifndef ALLOWOPLINE
|
||||||
;save registers
|
|
||||||
push eax
|
|
||||||
push ebp
|
|
||||||
;get .amx flags
|
|
||||||
mov ebp,[amxhead]
|
|
||||||
mov eax,[ebp+_h_flags]
|
|
||||||
;check to see if the flag has line ops
|
|
||||||
and eax,AMX_FLAG_LINEOPS
|
|
||||||
cmp eax,AMX_FLAG_LINEOPS
|
|
||||||
;restore registers
|
|
||||||
pop ebp
|
|
||||||
pop eax
|
|
||||||
;if so, skip down to debug compiler
|
|
||||||
je _go_debug
|
|
||||||
|
|
||||||
mov [ebx],edi ; no line number support: ignore opcode
|
mov [ebx],edi ; no line number support: ignore opcode
|
||||||
add ebx,12 ; move on to next opcode
|
add ebx,12 ; move on to next opcode
|
||||||
cmp ebx,[end_code]
|
cmp ebx,[end_code]
|
||||||
jae code_gen_done
|
jae code_gen_done
|
||||||
jmp dword [ebx] ; go on with the next opcode
|
jmp dword [ebx] ; go on with the next opcode
|
||||||
|
%else
|
||||||
_go_debug:
|
|
||||||
putval j_line+6
|
putval j_line+6
|
||||||
mov eax,[ebx+8]
|
mov eax,[ebx+8]
|
||||||
mov [j_line_sm],eax
|
mov [j_line_sm],eax
|
||||||
@ -1889,6 +1750,7 @@ _go_debug:
|
|||||||
DD 0 ; space for curline
|
DD 0 ; space for curline
|
||||||
j_line_sm DD 0 ; space for curfile
|
j_line_sm DD 0 ; space for curfile
|
||||||
CHECKCODESIZE j_line
|
CHECKCODESIZE j_line
|
||||||
|
%endif
|
||||||
|
|
||||||
OP_SYMBOL: ;ignored
|
OP_SYMBOL: ;ignored
|
||||||
mov [ebx],edi
|
mov [ebx],edi
|
||||||
@ -2353,6 +2215,7 @@ JIT_OP_LINE:
|
|||||||
pop eax
|
pop eax
|
||||||
jmp ecx ; jump back
|
jmp ecx ; jump back
|
||||||
|
|
||||||
|
|
||||||
JIT_OP_SWITCH:
|
JIT_OP_SWITCH:
|
||||||
pop ebp ; pop return address = table address
|
pop ebp ; pop return address = table address
|
||||||
mov ecx,[ebp] ; ECX = number of records
|
mov ecx,[ebp] ; ECX = number of records
|
||||||
@ -2370,6 +2233,7 @@ JIT_OP_SWITCH:
|
|||||||
jmp ebp
|
jmp ebp
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
; The caller of asm_runJIT() can determine the maximum size of the compiled
|
; The caller of asm_runJIT() can determine the maximum size of the compiled
|
||||||
; code by multiplying the result of this function by the number of opcodes in
|
; code by multiplying the result of this function by the number of opcodes in
|
||||||
; Small module.
|
; Small module.
|
||||||
|
10
amxmodx/JIT/jits.def
Executable file
10
amxmodx/JIT/jits.def
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
LIBRARY jits
|
||||||
|
DESCRIPTION "JIT for AMX Mod X"
|
||||||
|
EXPORTS
|
||||||
|
asm_runJIT @1
|
||||||
|
getMaxCodeSize @2
|
||||||
|
amx_exec_asm @3
|
||||||
|
amx_opcodelist @4
|
||||||
|
SECTIONS
|
||||||
|
.data READ WRITE
|
||||||
|
.code EXECUTE
|
BIN
amxmodx/JIT/jits.exp
Executable file
BIN
amxmodx/JIT/jits.exp
Executable file
Binary file not shown.
BIN
amxmodx/JIT/jits.lib
Executable file
BIN
amxmodx/JIT/jits.lib
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -12,38 +12,23 @@
|
|||||||
# amd64 - compile for AMD64 (impiles no jit)
|
# amd64 - compile for AMD64 (impiles no jit)
|
||||||
# proc=ix86 - assumed not amd64
|
# proc=ix86 - assumed not amd64
|
||||||
# clean - clean the specifications above
|
# clean - clean the specifications above
|
||||||
# asm - for ASM implementation
|
|
||||||
# !! TODO - add memory mananger support
|
|
||||||
# lineop - for JIT only, uses slow version
|
|
||||||
|
|
||||||
$PROJECT = "amxmodx_mm";
|
$PROJECT = "amxx_mm";
|
||||||
$sdk = "../hlsdk/SourceCode";
|
$sdk = "../hlsdk/SourceCode";
|
||||||
$mm = "../metamod/metamod";
|
$mm = "../metamod/metamod";
|
||||||
$gccf = "gcc";
|
|
||||||
$ccf = "cc";
|
|
||||||
$amd64_lstdc = "-lstdc++";
|
|
||||||
|
|
||||||
@CPP_SOURCE_FILES = ("meta_api.cpp", "CFile.cpp", "CVault.cpp", "vault.cpp", "float.cpp", "file.cpp", "modules.cpp", "CMisc.cpp", "CTask.cpp", "string.cpp", "amxmodx.cpp", "CEvent.cpp", "CCmd.cpp", "CLogEvent.cpp", "srvcmd.cpp", "strptime.cpp", "amxcore.cpp", "amxtime.cpp", "power.cpp", "amxxlog.cpp", "fakemeta.cpp", "amxxfile.cpp", "CLang.cpp", "md5.cpp", "emsg.cpp", "CForward.cpp", "CPlugin.cpp", "CModule.cpp", "CMenu.cpp", "util.cpp");
|
@CPP_SOURCE_FILES = ("meta_api.cpp", "CFile.cpp", "CVault.cpp", "vault.cpp", "float.cpp", "file.cpp", "modules.cpp", "CMisc.cpp", "CTask.cpp", "string.cpp", "amxmodx.cpp", "CEvent.cpp", "CCmd.cpp", "CLogEvent.cpp", "srvcmd.cpp", "strptime.cpp", "amxcore.cpp", "amxtime.cpp", "power.cpp", "amxxlog.cpp", "fakemeta.cpp", "MMGR/MMGR.cpp", "amxxfile.cpp", "CLang.cpp", "md5.cpp", "emsg.cpp", "CForward.cpp", "CPlugin.cpp", "CModule.cpp", "CMenu.cpp", "util.cpp");
|
||||||
|
|
||||||
@C_SOURCE_FILES = ();
|
@C_SOURCE_FILES = ("minilzo/minilzo.c");
|
||||||
my %OPTIONS, %OPT;
|
my %OPTIONS, %OPT;
|
||||||
|
|
||||||
$OPT{"debug"} = "-g -ggdb";
|
$OPT{"debug"} = "-g -ggdb";
|
||||||
$OPT{"opt"} = "-O2 -ffast-math -funroll-loops -fomit-frame-pointer -s -DNDEBUG -Wall -Wno-unknown-pragmas -DOPT_TYPE=\"optimized\" -fno-exceptions -fno-rtti";
|
$OPT{"opt"} = "-O2 -ffast-math -funroll-loops -fomit-frame-pointer -s -DNDEBUG -Wall -Wno-unknown-pragmas -DOPT_TYPE=\"optimized\"";
|
||||||
|
|
||||||
$OPTIONS{"include"} = "-I$sdk -I. -I$mm -I$sdk/engine -I$sdk/common -I$sdk/pm_shared -I$sdk/dlls";
|
$OPTIONS{"include"} = "-I$sdk -I. -I$mm -I$sdk/engine -I$sdk/common -I$sdk/pm_shared -I$sdk/dlls";
|
||||||
|
|
||||||
while ($cmd = shift)
|
while ($cmd = shift)
|
||||||
{
|
{
|
||||||
if ($cmd =~ /asm/)
|
|
||||||
{
|
|
||||||
if ($OPTIONS{"amd64"})
|
|
||||||
{
|
|
||||||
die "You cannot compile the ASM core with AMD64 yet.\n";
|
|
||||||
} else {
|
|
||||||
$OPTIONS{"asm"} = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ($cmd =~ /jit/)
|
if ($cmd =~ /jit/)
|
||||||
{
|
{
|
||||||
if ($OPTIONS{"amd64"})
|
if ($OPTIONS{"amd64"})
|
||||||
@ -53,9 +38,9 @@ while ($cmd = shift)
|
|||||||
$OPTIONS{"jit"} = 1;
|
$OPTIONS{"jit"} = 1;
|
||||||
}
|
}
|
||||||
} elsif ($cmd =~ /amd64/) {
|
} elsif ($cmd =~ /amd64/) {
|
||||||
if ($OPTIONS{"jit"} || $OPTIONS{"asm"})
|
if ($OPTIONS{"jit"})
|
||||||
{
|
{
|
||||||
die "You cannot compile the JIT or ASM and AMD64 yet.\n";
|
die "You cannot compile the JIT and AMD64 yet.\n";
|
||||||
} else {
|
} else {
|
||||||
$OPTIONS{"amd64"} = 1;
|
$OPTIONS{"amd64"} = 1;
|
||||||
}
|
}
|
||||||
@ -71,26 +56,19 @@ while ($cmd = shift)
|
|||||||
}
|
}
|
||||||
} elsif ($cmd =~ /clean/) {
|
} elsif ($cmd =~ /clean/) {
|
||||||
$OPTIONS{"clean"} = 1;
|
$OPTIONS{"clean"} = 1;
|
||||||
} elsif ($cmd =~ /lineop/) {
|
|
||||||
$OPTIONS{"lineop"} = 1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$gcc = `$gccf --version`;
|
$gcc = `g++ --version`;
|
||||||
if ($gcc =~ /2\.9/)
|
if ($gcc =~ /2\.9/)
|
||||||
{
|
{
|
||||||
#if ($OPTIONS{"jit"})
|
`cp amx.cpp amx.c`;
|
||||||
#{
|
|
||||||
# push(@CPP_SOURCE_FILES, "amx.cpp");
|
|
||||||
# $OPT{"opt"} .= " -malign-loops=2 -malign-jumps=2 -malign-functions=2";
|
|
||||||
# } else {
|
|
||||||
`ln -s amx.cpp amx.c`;
|
|
||||||
push(@C_SOURCE_FILES, "amx.c");
|
push(@C_SOURCE_FILES, "amx.c");
|
||||||
# }
|
$OPT{"opt"} .= " -malign-loops=2 -malign-jumps=2 -malign-functions=2";
|
||||||
} else {
|
} else {
|
||||||
if ($OPTIONS{"amd64"})
|
if ($OPTIONS{"amd64"})
|
||||||
{
|
{
|
||||||
`ln -s amx.cpp amx.c`;
|
`cp amx.cpp amx.c`;
|
||||||
push(@C_SOURCE_FILES, "amx.c");
|
push(@C_SOURCE_FILES, "amx.c");
|
||||||
} else {
|
} else {
|
||||||
push(@CPP_SOURCE_FILES, "amx.cpp");
|
push(@CPP_SOURCE_FILES, "amx.cpp");
|
||||||
@ -117,7 +95,7 @@ if ($OPTIONS{"debug"})
|
|||||||
|
|
||||||
if ($OPTIONS{"amd64"})
|
if ($OPTIONS{"amd64"})
|
||||||
{
|
{
|
||||||
$cflags = " -m64 -DSMALL_CELL_SIZE=64 -DHAVE_I64 $cflags";
|
$cflags .= " -m64 -DSMALL_CELL_SIZE=64 -DHAVE_I64 $cflags";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($OPTIONS{"jit"})
|
if ($OPTIONS{"jit"})
|
||||||
@ -125,11 +103,6 @@ if ($OPTIONS{"jit"})
|
|||||||
$cflags .= "-DJIT";
|
$cflags .= "-DJIT";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($OPTIONS{"asm"})
|
|
||||||
{
|
|
||||||
$cflags .= " -DASM32";
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($OPTIONS{"debug"})
|
if ($OPTIONS{"debug"})
|
||||||
{
|
{
|
||||||
$outdir = "bin.debug";
|
$outdir = "bin.debug";
|
||||||
@ -156,6 +129,8 @@ if ($OPTIONS{"amd64"})
|
|||||||
if ($OPTIONS{"clean"})
|
if ($OPTIONS{"clean"})
|
||||||
{
|
{
|
||||||
`rm $outdir/*.o`;
|
`rm $outdir/*.o`;
|
||||||
|
`rm $outdir/MMGR/*.o`;
|
||||||
|
`rm $outdir/minilzo/*.o`;
|
||||||
`rm $outdir/$bin`;
|
`rm $outdir/$bin`;
|
||||||
die("Project cleaned.\n");
|
die("Project cleaned.\n");
|
||||||
}
|
}
|
||||||
@ -177,32 +152,25 @@ for ($i=0; $i<=$#C_SOURCE_FILES; $i++)
|
|||||||
}
|
}
|
||||||
if ($OPTIONS{"jit"})
|
if ($OPTIONS{"jit"})
|
||||||
{
|
{
|
||||||
if ($OPTIONS{"lineop"}) {
|
|
||||||
push(@LINK, "JIT/jits-lineop.o");
|
|
||||||
} else {
|
|
||||||
push(@LINK, "JIT/jits.o");
|
push(@LINK, "JIT/jits.o");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if ($OPTIONS{"amd64"})
|
|
||||||
{
|
|
||||||
push(@LINK, "zlib/libz64.a");
|
|
||||||
push(@LINK, $amd64_lstdc);
|
|
||||||
} else {
|
|
||||||
push(@LINK, "zlib/libz.a");
|
|
||||||
}
|
|
||||||
if ($OPTIONS{"asm"})
|
|
||||||
{
|
|
||||||
push(@LINK, "amxexecn.o");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!(-d $outdir))
|
if (!(-d $outdir))
|
||||||
{
|
{
|
||||||
mkdir($outdir);
|
mkdir($outdir);
|
||||||
}
|
}
|
||||||
|
if (!(-d "$outdir/MMGR"))
|
||||||
|
{
|
||||||
|
mkdir("$outdir/MMGR");
|
||||||
|
}
|
||||||
if (!(-d "$outdir/JIT"))
|
if (!(-d "$outdir/JIT"))
|
||||||
{
|
{
|
||||||
mkdir("$outdir/JIT");
|
mkdir("$outdir/JIT");
|
||||||
}
|
}
|
||||||
|
if (!(-d "$outdir/minilzo"))
|
||||||
|
{
|
||||||
|
mkdir("$outdir/minilzo");
|
||||||
|
}
|
||||||
|
|
||||||
$inc = $OPTIONS{"include"};
|
$inc = $OPTIONS{"include"};
|
||||||
|
|
||||||
@ -212,14 +180,13 @@ for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|||||||
$ofile = $file;
|
$ofile = $file;
|
||||||
$ofile =~ s/\.cpp/\.o/;
|
$ofile =~ s/\.cpp/\.o/;
|
||||||
$ofile = "$outdir/$ofile";
|
$ofile = "$outdir/$ofile";
|
||||||
$gcc = "$gccf $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
$gcc = "g++ $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
||||||
if (-e $ofile)
|
if (-e $ofile)
|
||||||
{
|
{
|
||||||
$file_time = (stat($file))[9];
|
$file_time = (stat($file))[9];
|
||||||
$ofile_time = (stat($ofile))[9];
|
$ofile_time = (stat($file))[9];
|
||||||
if ($file_time > $ofile_time)
|
if ($file_time > $ofile_time)
|
||||||
{
|
{
|
||||||
`rm $ofile`;
|
|
||||||
print "$gcc\n";
|
print "$gcc\n";
|
||||||
`$gcc`;
|
`$gcc`;
|
||||||
}
|
}
|
||||||
@ -235,11 +202,11 @@ for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|||||||
$ofile = $file;
|
$ofile = $file;
|
||||||
$ofile =~ s/\.c/\.o/;
|
$ofile =~ s/\.c/\.o/;
|
||||||
$ofile = "$outdir/$ofile";
|
$ofile = "$outdir/$ofile";
|
||||||
$gcc = "$ccf $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
$gcc = "cc $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
||||||
if (-e $ofile)
|
if (-e $ofile)
|
||||||
{
|
{
|
||||||
$file_time = (stat($file))[9];
|
$file_time = (stat($file))[9];
|
||||||
$ofile_time = (stat($ofile))[9];
|
$ofile_time = (stat($file))[9];
|
||||||
if ($file_time > $ofile_time)
|
if ($file_time > $ofile_time)
|
||||||
{
|
{
|
||||||
print "$gcc\n";
|
print "$gcc\n";
|
||||||
@ -251,6 +218,5 @@ for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$gcc = "$gccf $cflags -shared -ldl -lm @LINK -o $outdir/$bin";
|
$gcc = "g++ $cflags -shared -ldl -lm @LINK -o $outdir/$bin";
|
||||||
print "$gcc\n";
|
|
||||||
`$gcc`;
|
`$gcc`;
|
||||||
|
429
amxmodx/amx.cpp
429
amxmodx/amx.cpp
@ -21,7 +21,7 @@
|
|||||||
* Version: $Id$
|
* Version: $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// not used
|
#include <stdio.h>
|
||||||
#define AMX_NODYNALOAD
|
#define AMX_NODYNALOAD
|
||||||
|
|
||||||
// bad bad workaround but we have to prevent a compiler crash :/
|
// bad bad workaround but we have to prevent a compiler crash :/
|
||||||
@ -39,13 +39,11 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stddef.h> /* for wchar_t */
|
#include <stddef.h> /* for wchar_t */
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <malloc.h>
|
|
||||||
#include "osdefs.h"
|
#include "osdefs.h"
|
||||||
#if defined LINUX
|
#if defined LINUX
|
||||||
#include <sclinux.h>
|
#include <sclinux.h>
|
||||||
@ -53,14 +51,11 @@
|
|||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined __LCC__ || defined __GNUC__
|
#if defined __LCC__ || defined __linux__
|
||||||
#include <wchar.h> /* for wcslen() */
|
#include <wchar.h> /* for wcslen() */
|
||||||
#endif
|
#endif
|
||||||
#if (defined _Windows && !defined AMX_NODYNALOAD) || (defined JIT && !defined __linux__)
|
|
||||||
#include <windows.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// this file does not include amxmodx.h, so we have to include the memory manager here
|
// this file does not include amxmodx.h so we have to include the mem mngr here
|
||||||
#ifdef MEMORY_TEST
|
#ifdef MEMORY_TEST
|
||||||
#include "mmgr/mmgr.h"
|
#include "mmgr/mmgr.h"
|
||||||
#endif //MEMORY_TEST
|
#endif //MEMORY_TEST
|
||||||
@ -69,9 +64,9 @@
|
|||||||
|
|
||||||
#ifdef JIT
|
#ifdef JIT
|
||||||
# ifdef __WIN32__
|
# ifdef __WIN32__
|
||||||
# include <windows.h> // DWORD, VirtualProtect, ...
|
# include <windows.h>
|
||||||
# elif defined __linux__
|
# elif defined __linux__
|
||||||
# include <sys/mman.h> // mprotect, PROT_*
|
# include <sys/mman.h>
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
# else
|
# else
|
||||||
// :TODO:
|
// :TODO:
|
||||||
@ -481,70 +476,9 @@ int AMXAPI amx_Debug(AMX *amx)
|
|||||||
return AMX_ERR_DEBUG;
|
return AMX_ERR_DEBUG;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Here is the actual debugger that AMX Mod X uses
|
|
||||||
int AMXAPI amx_DebugCall(AMX *amx, int mode)
|
|
||||||
{
|
|
||||||
//right away, check for debugging
|
|
||||||
AMX_HEADER *hdr;
|
|
||||||
AMX_DBG *p = 0;
|
|
||||||
AMX_TRACE *t = 0;
|
|
||||||
hdr = (AMX_HEADER *)amx->base;
|
|
||||||
if ( !(amx->flags & AMX_FLAG_DEBUG) || !(amx->flags & AMX_FLAG_LINEOPS))
|
|
||||||
return AMX_ERR_NONE;
|
|
||||||
p = (AMX_DBG *)(amx->userdata[0]);
|
|
||||||
if ( !p )
|
|
||||||
return AMX_ERR_NONE;
|
|
||||||
if (mode == 2)
|
|
||||||
{
|
|
||||||
//mode - push onto the stack
|
|
||||||
t = (AMX_TRACE *)malloc(sizeof(AMX_TRACE));
|
|
||||||
memset(t, 0, sizeof(AMX_TRACE));
|
|
||||||
if (!p->head)
|
|
||||||
{
|
|
||||||
p->head = t;
|
|
||||||
t->prev = NULL;
|
|
||||||
} else {
|
|
||||||
t->prev = p->tail;
|
|
||||||
p->tail->next = t;
|
|
||||||
}
|
|
||||||
p->tail = t;
|
|
||||||
t->line = amx->curline;
|
|
||||||
t->file = amx->curfile;
|
|
||||||
} else if (mode == 1) {
|
|
||||||
//mode <0 - pop from the stack
|
|
||||||
t = p->tail;
|
|
||||||
if (t)
|
|
||||||
{
|
|
||||||
p->tail = t->prev;
|
|
||||||
free(t);
|
|
||||||
}
|
|
||||||
if (p->tail == NULL)
|
|
||||||
p->head = NULL;
|
|
||||||
} else if (mode == 0) {
|
|
||||||
AMX_TRACE *m;
|
|
||||||
//mode == 0 - clear stack
|
|
||||||
t = p->head;
|
|
||||||
while (t)
|
|
||||||
{
|
|
||||||
m = t->next;
|
|
||||||
free(t);
|
|
||||||
t = m;
|
|
||||||
}
|
|
||||||
p->head = 0;
|
|
||||||
p->tail = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return AMX_ERR_NONE;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if defined JIT
|
#if defined JIT
|
||||||
#if defined WIN32 || defined __cplusplus
|
|
||||||
extern "C" int AMXAPI getMaxCodeSize(void);
|
extern "C" int AMXAPI getMaxCodeSize(void);
|
||||||
extern "C" int AMXAPI asm_runJIT(void *sourceAMXbase, void *jumparray, void *compiledAMXbase);
|
extern "C" int AMXAPI asm_runJIT(void *sourceAMXbase, void *jumparray, void *compiledAMXbase);
|
||||||
#else
|
|
||||||
extern int AMXAPI getMaxCodeSize(void);
|
|
||||||
extern int AMXAPI asm_runJIT(void *sourceAMXbase, void *jumparray, void *compiledAMXbase);
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if SMALL_CELL_SIZE==16
|
#if SMALL_CELL_SIZE==16
|
||||||
@ -566,6 +500,7 @@ static int amx_BrowseRelocate(AMX *amx)
|
|||||||
cell cip;
|
cell cip;
|
||||||
long codesize;
|
long codesize;
|
||||||
OPCODE op;
|
OPCODE op;
|
||||||
|
int debug;
|
||||||
int last_sym_global = 0;
|
int last_sym_global = 0;
|
||||||
#if defined __GNUC__ || defined ASM32 || defined JIT
|
#if defined __GNUC__ || defined ASM32 || defined JIT
|
||||||
cell *opcode_list;
|
cell *opcode_list;
|
||||||
@ -592,32 +527,27 @@ static int amx_BrowseRelocate(AMX *amx)
|
|||||||
assert(OP_MOVS==117);
|
assert(OP_MOVS==117);
|
||||||
assert(OP_SYMBOL==126);
|
assert(OP_SYMBOL==126);
|
||||||
|
|
||||||
amx->flags=AMX_FLAG_BROWSE;
|
|
||||||
|
|
||||||
/* check the debug hook */
|
/* check the debug hook */
|
||||||
if ((hdr->flags & AMX_FLAG_LINEOPS) && !(hdr->flags & AMX_FLAG_TRACED))
|
amx->dbgcode=DBG_INIT;
|
||||||
{
|
assert(amx->flags==0);
|
||||||
amx->userdata[0] = (AMX_DBG *)malloc(sizeof(AMX_DBG));
|
amx->flags=AMX_FLAG_BROWSE;
|
||||||
amx->userdata[1] = (void *)amx_DebugCall;
|
debug= amx->debug(amx)==AMX_ERR_NONE;
|
||||||
memset(amx->userdata[0], 0, sizeof(AMX_DBG));
|
if (debug)
|
||||||
amx->flags |= AMX_FLAG_LINEOPS;
|
|
||||||
amx->flags |= AMX_FLAG_TRACED;
|
|
||||||
amx->flags|=AMX_FLAG_DEBUG;
|
amx->flags|=AMX_FLAG_DEBUG;
|
||||||
} else {
|
|
||||||
amx->userdata[0] = 0;
|
|
||||||
amx->userdata[1] = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if defined __GNUC__ || defined ASM32 || defined JIT && !defined __64BIT__
|
#if (defined __GNUC__ || defined ASM32 || defined JIT) && !defined __64BIT__
|
||||||
amx_Exec(amx, (cell*)&opcode_list, 0, 0);
|
amx_Exec(amx, (cell*)&opcode_list, 0, 0);
|
||||||
#if !defined JIT
|
#if !defined JIT
|
||||||
|
/* to use direct system requests, a function pointer must fit in a cell;
|
||||||
|
* because the native function's address will be stored as the parameter
|
||||||
|
* of SYSREQ.D
|
||||||
|
*/
|
||||||
amx->sysreq_d= (sizeof(AMX_NATIVE)<=sizeof(cell)) ? opcode_list[OP_SYSREQ_D] : 0;
|
amx->sysreq_d= (sizeof(AMX_NATIVE)<=sizeof(cell)) ? opcode_list[OP_SYSREQ_D] : 0;
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
/* ANSI C
|
/* ANSI C
|
||||||
* to use direct system requests, a function pointer must fit in a cell;
|
* to use direct system requests, a function pointer must fit in a cell;
|
||||||
* because the native function's address will be stored as the parameter
|
* see the comment above
|
||||||
* of SYSREQ.D
|
|
||||||
*/
|
*/
|
||||||
amx->sysreq_d= (sizeof(AMX_NATIVE)<=sizeof(cell)) ? OP_SYSREQ_D : 0;
|
amx->sysreq_d= (sizeof(AMX_NATIVE)<=sizeof(cell)) ? OP_SYSREQ_D : 0;
|
||||||
#endif
|
#endif
|
||||||
@ -787,25 +717,21 @@ static int amx_BrowseRelocate(AMX *amx)
|
|||||||
DBGPARAM(amx->curfile);
|
DBGPARAM(amx->curfile);
|
||||||
amx->dbgname=(char *)(code+(int)cip);
|
amx->dbgname=(char *)(code+(int)cip);
|
||||||
cip+=num - sizeof(cell);
|
cip+=num - sizeof(cell);
|
||||||
if (!(hdr->flags & AMX_FLAG_TRACED) && amx->userdata[0] != NULL)
|
if (debug) {
|
||||||
{
|
assert(amx->flags==(AMX_FLAG_DEBUG | AMX_FLAG_BROWSE));
|
||||||
AMX_DBG *pDbg = (AMX_DBG *)(amx->userdata[0]);
|
amx->dbgcode=DBG_FILE;
|
||||||
if (pDbg->numFiles == 0)
|
amx->debug(amx);
|
||||||
{
|
|
||||||
pDbg->numFiles++;
|
|
||||||
pDbg->files = (char **)malloc(sizeof(char *) * 1);
|
|
||||||
} else {
|
|
||||||
pDbg->numFiles++;
|
|
||||||
pDbg->files = (char **)realloc(pDbg->files, pDbg->numFiles * sizeof(char*));
|
|
||||||
}
|
|
||||||
pDbg->files[pDbg->numFiles-1] = (char *)malloc((sizeof(char) * strlen(amx->dbgname)) + 1);
|
|
||||||
strcpy(pDbg->files[pDbg->numFiles-1], amx->dbgname);
|
|
||||||
} /* if */
|
} /* if */
|
||||||
break;
|
break;
|
||||||
} /* case */
|
} /* case */
|
||||||
case OP_LINE:
|
case OP_LINE:
|
||||||
DBGPARAM(amx->curline);
|
DBGPARAM(amx->curline);
|
||||||
DBGPARAM(amx->curfile);
|
DBGPARAM(amx->curfile);
|
||||||
|
if (debug) {
|
||||||
|
assert(amx->flags==(AMX_FLAG_DEBUG | AMX_FLAG_BROWSE));
|
||||||
|
amx->dbgcode=DBG_LINE;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_SYMBOL: {
|
case OP_SYMBOL: {
|
||||||
cell num;
|
cell num;
|
||||||
@ -815,14 +741,29 @@ static int amx_BrowseRelocate(AMX *amx)
|
|||||||
amx->dbgname=(char *)(code+(int)cip);
|
amx->dbgname=(char *)(code+(int)cip);
|
||||||
cip+=num - 2*sizeof(cell);
|
cip+=num - 2*sizeof(cell);
|
||||||
last_sym_global = (amx->dbgparam >> 8)==0;
|
last_sym_global = (amx->dbgparam >> 8)==0;
|
||||||
|
if (debug && last_sym_global) { /* do global symbols only */
|
||||||
|
assert(amx->flags==(AMX_FLAG_DEBUG | AMX_FLAG_BROWSE));
|
||||||
|
amx->dbgcode=DBG_SYMBOL;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
} /* case */
|
} /* case */
|
||||||
case OP_SRANGE:
|
case OP_SRANGE:
|
||||||
DBGPARAM(amx->dbgaddr); /* dimension level */
|
DBGPARAM(amx->dbgaddr); /* dimension level */
|
||||||
DBGPARAM(amx->dbgparam); /* length */
|
DBGPARAM(amx->dbgparam); /* length */
|
||||||
|
if (debug && last_sym_global) { /* do global symbols only */
|
||||||
|
assert(amx->flags==(AMX_FLAG_DEBUG | AMX_FLAG_BROWSE));
|
||||||
|
amx->dbgcode=DBG_SRANGE;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_SYMTAG:
|
case OP_SYMTAG:
|
||||||
DBGPARAM(amx->dbgparam); /* tag id */
|
DBGPARAM(amx->dbgparam); /* tag id */
|
||||||
|
if (debug && last_sym_global) { /* do global symbols only */
|
||||||
|
assert(amx->flags==(AMX_FLAG_DEBUG | AMX_FLAG_BROWSE));
|
||||||
|
amx->dbgcode=DBG_SYMTAG;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_CASETBL: {
|
case OP_CASETBL: {
|
||||||
cell num;
|
cell num;
|
||||||
@ -851,7 +792,6 @@ static int amx_BrowseRelocate(AMX *amx)
|
|||||||
|
|
||||||
amx->flags &= ~AMX_FLAG_BROWSE;
|
amx->flags &= ~AMX_FLAG_BROWSE;
|
||||||
amx->flags |= AMX_FLAG_RELOC;
|
amx->flags |= AMX_FLAG_RELOC;
|
||||||
amx->flags |= AMX_FLAG_TRACED;
|
|
||||||
return AMX_ERR_NONE;
|
return AMX_ERR_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -991,6 +931,8 @@ int AMXAPI amx_Init(AMX *amx,void *program)
|
|||||||
amx->stk=amx->stp;
|
amx->stk=amx->stp;
|
||||||
if (amx->callback==NULL)
|
if (amx->callback==NULL)
|
||||||
amx->callback=amx_Callback;
|
amx->callback=amx_Callback;
|
||||||
|
if (amx->debug==NULL)
|
||||||
|
amx->debug=amx_Debug;
|
||||||
amx->curline=0;
|
amx->curline=0;
|
||||||
amx->curfile=0;
|
amx->curfile=0;
|
||||||
amx->data=NULL;
|
amx->data=NULL;
|
||||||
@ -1107,6 +1049,9 @@ int AMXAPI amx_Init(AMX *amx,void *program)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#else /* #if defined __WIN32 __ */
|
#else /* #if defined __WIN32 __ */
|
||||||
|
|
||||||
|
// TODO: Add cases for Linux, Unix, OS/2, ...
|
||||||
|
|
||||||
// DOS32 has no imposed limits on its segments.
|
// DOS32 has no imposed limits on its segments.
|
||||||
#if defined __BORLANDC__ || defined __WATCOMC__
|
#if defined __BORLANDC__ || defined __WATCOMC__
|
||||||
#pragma argsused
|
#pragma argsused
|
||||||
@ -1158,7 +1103,7 @@ int AMXAPI amx_InitJIT(AMX *amx, void *reloc_table, void *native_code)
|
|||||||
*(cell *)((char*)native_code + hdr->dat + hdr->stp - sizeof(cell)) = 0;
|
*(cell *)((char*)native_code + hdr->dat + hdr->stp - sizeof(cell)) = 0;
|
||||||
amx->stk = amx->stp;
|
amx->stk = amx->stp;
|
||||||
|
|
||||||
memorySetAccess( (void*)asm_runJIT, 20000, mac );
|
memorySetAccess( asm_runJIT, 20000, mac );
|
||||||
return AMX_ERR_NONE;
|
return AMX_ERR_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1628,7 +1573,8 @@ static AMX_NATIVE findfunction(const char *name, AMX_NATIVE_INFO *list, int numb
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *no_function; // PM: Nice hack ;)
|
const char *no_function;
|
||||||
|
|
||||||
int AMXAPI amx_Register(AMX *amx, AMX_NATIVE_INFO *list, int number)
|
int AMXAPI amx_Register(AMX *amx, AMX_NATIVE_INFO *list, int number)
|
||||||
{
|
{
|
||||||
AMX_FUNCSTUB *func;
|
AMX_FUNCSTUB *func;
|
||||||
@ -1648,6 +1594,10 @@ int AMXAPI amx_Register(AMX *amx, AMX_NATIVE_INFO *list, int number)
|
|||||||
if (func->address==0) {
|
if (func->address==0) {
|
||||||
/* this function is not yet located */
|
/* this function is not yet located */
|
||||||
funcptr=(list!=NULL) ? findfunction(GETENTRYNAME(hdr,func),list,number) : NULL;
|
funcptr=(list!=NULL) ? findfunction(GETENTRYNAME(hdr,func),list,number) : NULL;
|
||||||
|
/* on 64-bit architectures with, only the lower 32-bits of the address
|
||||||
|
* can be stored; hopefully, all addresses can be assumed to have the
|
||||||
|
* same value for the upper 32-bits
|
||||||
|
*/
|
||||||
if (funcptr!=NULL)
|
if (funcptr!=NULL)
|
||||||
func->address=(ucell)funcptr;
|
func->address=(ucell)funcptr;
|
||||||
else
|
else
|
||||||
@ -1660,40 +1610,6 @@ int AMXAPI amx_Register(AMX *amx, AMX_NATIVE_INFO *list, int number)
|
|||||||
} /* for */
|
} /* for */
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static cell AMX_NATIVE_CALL null_native(AMX *amx, cell *params)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void amx_NullNativeTable(AMX *amx)
|
|
||||||
{
|
|
||||||
AMX_FUNCSTUB *func;
|
|
||||||
AMX_HEADER *hdr;
|
|
||||||
int i, numnatives;
|
|
||||||
|
|
||||||
hdr=(AMX_HEADER *)amx->base;
|
|
||||||
if (hdr == NULL)
|
|
||||||
return;
|
|
||||||
if (hdr->magic!=AMX_MAGIC)
|
|
||||||
return;
|
|
||||||
|
|
||||||
numnatives = NUMENTRIES(hdr, natives, libraries);
|
|
||||||
|
|
||||||
func=GETENTRY(hdr, natives, 0);
|
|
||||||
|
|
||||||
for (i=0; i<numnatives; i++)
|
|
||||||
{
|
|
||||||
if (strcmp(GETENTRYNAME(hdr,func), "require_module")==0)
|
|
||||||
{
|
|
||||||
func->address = NULL;
|
|
||||||
} else {
|
|
||||||
func->address = (ucell)null_native;
|
|
||||||
}
|
|
||||||
func=(AMX_FUNCSTUB*)((unsigned char*)func+hdr->defsize);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif /* AMX_REGISTER || AMX_EXEC || AMX_INIT */
|
#endif /* AMX_REGISTER || AMX_EXEC || AMX_INIT */
|
||||||
|
|
||||||
#if defined AMX_NATIVEINFO
|
#if defined AMX_NATIVEINFO
|
||||||
@ -1718,7 +1634,7 @@ AMX_NATIVE_INFO * AMXAPI amx_NativeInfo(const char *name, AMX_NATIVE func)
|
|||||||
#define CHKSTACK() if (stk>amx->stp) return AMX_ERR_STACKLOW
|
#define CHKSTACK() if (stk>amx->stp) return AMX_ERR_STACKLOW
|
||||||
#define CHKHEAP() if (hea<amx->hlw) return AMX_ERR_HEAPLOW
|
#define CHKHEAP() if (hea<amx->hlw) return AMX_ERR_HEAPLOW
|
||||||
|
|
||||||
#if defined __GNUC__ && !defined ASM32 && !defined JIT
|
#if defined __GNUC__ && !defined ASM32
|
||||||
/* GNU C version uses the "labels as values" extension to create
|
/* GNU C version uses the "labels as values" extension to create
|
||||||
* fast "indirect threaded" interpreter.
|
* fast "indirect threaded" interpreter.
|
||||||
*/
|
*/
|
||||||
@ -1808,8 +1724,7 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
ucell codesize;
|
ucell codesize;
|
||||||
int num,i;
|
int num,i;
|
||||||
va_list ap;
|
va_list ap;
|
||||||
AMX_DEBUGCALL tracer = 0;
|
int debug;
|
||||||
AMX_DBG *pdbg = 0;
|
|
||||||
|
|
||||||
/* HACK: return label table (for amx_BrowseRelocate) if amx structure
|
/* HACK: return label table (for amx_BrowseRelocate) if amx structure
|
||||||
* has the AMX_FLAG_BROWSE flag set.
|
* has the AMX_FLAG_BROWSE flag set.
|
||||||
@ -1817,12 +1732,7 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
if ((amx->flags & AMX_FLAG_BROWSE)==AMX_FLAG_BROWSE) {
|
if ((amx->flags & AMX_FLAG_BROWSE)==AMX_FLAG_BROWSE) {
|
||||||
assert(sizeof(cell)==sizeof(void *));
|
assert(sizeof(cell)==sizeof(void *));
|
||||||
assert(retval!=NULL);
|
assert(retval!=NULL);
|
||||||
if (amx->flags & AMX_FLAG_DEBUG)
|
*retval=(cell)((amx->flags & AMX_FLAG_DEBUG)==0 ? amx_opcodelist_nodebug : amx_opcodelist);
|
||||||
{
|
|
||||||
*retval=(cell)(amx_opcodelist);
|
|
||||||
} else {
|
|
||||||
*retval=(cell)(amx_opcodelist_nodebug);
|
|
||||||
}
|
|
||||||
return 0;
|
return 0;
|
||||||
} /* if */
|
} /* if */
|
||||||
|
|
||||||
@ -1835,6 +1745,7 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
if ((amx->flags & AMX_FLAG_RELOC)==0)
|
if ((amx->flags & AMX_FLAG_RELOC)==0)
|
||||||
return AMX_ERR_INIT;
|
return AMX_ERR_INIT;
|
||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
|
debug= (amx->flags & AMX_FLAG_DEBUG)!=0;
|
||||||
|
|
||||||
/* set up the registers */
|
/* set up the registers */
|
||||||
hdr=(AMX_HEADER *)amx->base;
|
hdr=(AMX_HEADER *)amx->base;
|
||||||
@ -1876,6 +1787,15 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
CHKHEAP();
|
CHKHEAP();
|
||||||
init_little_endian();
|
init_little_endian();
|
||||||
|
|
||||||
|
if (debug && index!=AMX_EXEC_CONT) {
|
||||||
|
/* set the entry point in the debugger by marking a "call" to the
|
||||||
|
* exported function
|
||||||
|
*/
|
||||||
|
amx->dbgcode=DBG_CALL;
|
||||||
|
amx->dbgaddr=(ucell)((unsigned char*)cip-code);
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
|
|
||||||
/* sanity checks */
|
/* sanity checks */
|
||||||
assert(OP_PUSH_PRI==36);
|
assert(OP_PUSH_PRI==36);
|
||||||
assert(OP_PROC==46);
|
assert(OP_PROC==46);
|
||||||
@ -1918,20 +1838,6 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
/* check stack/heap before starting to run */
|
/* check stack/heap before starting to run */
|
||||||
CHKMARGIN();
|
CHKMARGIN();
|
||||||
|
|
||||||
if ((amx->flags & AMX_FLAG_DEBUG) && (amx->flags & AMX_FLAG_LINEOPS))
|
|
||||||
{
|
|
||||||
if (amx->userdata[0])
|
|
||||||
{
|
|
||||||
tracer = (AMX_DEBUGCALL)amx->userdata[1];
|
|
||||||
pdbg = (AMX_DBG *)(amx->userdata[0]);
|
|
||||||
if (tracer)
|
|
||||||
{
|
|
||||||
//as a precaution, clear the call stack
|
|
||||||
(tracer)(amx, 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* start running */
|
/* start running */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
|
|
||||||
@ -2195,6 +2101,12 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
stk+=offs;
|
stk+=offs;
|
||||||
CHKMARGIN();
|
CHKMARGIN();
|
||||||
CHKSTACK();
|
CHKSTACK();
|
||||||
|
if (debug && offs>0) {
|
||||||
|
amx->dbgcode=DBG_CLRSYM;
|
||||||
|
amx->stk=stk;
|
||||||
|
amx->hea=hea;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_stack_nodebug:
|
op_stack_nodebug:
|
||||||
GETPARAM(offs);
|
GETPARAM(offs);
|
||||||
@ -2216,16 +2128,19 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
CHKMARGIN();
|
CHKMARGIN();
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_ret:
|
op_ret:
|
||||||
if (tracer)
|
|
||||||
{
|
|
||||||
(tracer)(amx, 1);
|
|
||||||
}
|
|
||||||
POP(frm);
|
POP(frm);
|
||||||
POP(offs);
|
POP(offs);
|
||||||
/* verify the return address */
|
/* verify the return address */
|
||||||
if ((ucell)offs>=codesize)
|
if ((ucell)offs>=codesize)
|
||||||
ABORT(amx,AMX_ERR_MEMACCESS);
|
ABORT(amx,AMX_ERR_MEMACCESS);
|
||||||
cip=(cell *)(code+(int)offs);
|
cip=(cell *)(code+(int)offs);
|
||||||
|
if (debug) {
|
||||||
|
amx->stk=stk;
|
||||||
|
amx->hea=hea;
|
||||||
|
amx->dbgcode=DBG_RETURN;
|
||||||
|
amx->dbgparam=pri; /* store "return value" */
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_ret_nodebug:
|
op_ret_nodebug:
|
||||||
POP(frm);
|
POP(frm);
|
||||||
@ -2236,10 +2151,6 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
cip=(cell *)(code+(int)offs);
|
cip=(cell *)(code+(int)offs);
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_retn:
|
op_retn:
|
||||||
if (tracer)
|
|
||||||
{
|
|
||||||
(tracer)(amx, 1);
|
|
||||||
}
|
|
||||||
POP(frm);
|
POP(frm);
|
||||||
POP(offs);
|
POP(offs);
|
||||||
/* verify the return address */
|
/* verify the return address */
|
||||||
@ -2247,6 +2158,15 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
ABORT(amx,AMX_ERR_MEMACCESS);
|
ABORT(amx,AMX_ERR_MEMACCESS);
|
||||||
cip=(cell *)(code+(int)offs);
|
cip=(cell *)(code+(int)offs);
|
||||||
stk+= *(cell *)(data+(int)stk) + sizeof(cell); /* remove parameters from the stack */
|
stk+= *(cell *)(data+(int)stk) + sizeof(cell); /* remove parameters from the stack */
|
||||||
|
if (debug) {
|
||||||
|
amx->stk=stk;
|
||||||
|
amx->hea=hea;
|
||||||
|
amx->dbgcode=DBG_RETURN;
|
||||||
|
amx->dbgparam=pri; /* store "return value" */
|
||||||
|
amx->debug(amx);
|
||||||
|
amx->dbgcode=DBG_CLRSYM;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_retn_nodebug:
|
op_retn_nodebug:
|
||||||
POP(frm);
|
POP(frm);
|
||||||
@ -2258,24 +2178,26 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
stk+= *(cell *)(data+(int)stk) + sizeof(cell); /* remove parameters from the stack */
|
stk+= *(cell *)(data+(int)stk) + sizeof(cell); /* remove parameters from the stack */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_call:
|
op_call:
|
||||||
if (tracer)
|
|
||||||
{
|
|
||||||
(tracer)(amx, 2);
|
|
||||||
}
|
|
||||||
PUSH(((unsigned char *)cip-code)+sizeof(cell));/* push address behind instruction */
|
PUSH(((unsigned char *)cip-code)+sizeof(cell));/* push address behind instruction */
|
||||||
cip=JUMPABS(code, cip); /* jump to the address */
|
cip=JUMPABS(code, cip); /* jump to the address */
|
||||||
|
if (debug) {
|
||||||
|
amx->dbgcode=DBG_CALL;
|
||||||
|
amx->dbgaddr=(ucell)((unsigned char*)cip-code);
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_call_nodebug:
|
op_call_nodebug:
|
||||||
PUSH(((unsigned char *)cip-code)+sizeof(cell));/* push address behind instruction */
|
PUSH(((unsigned char *)cip-code)+sizeof(cell));/* push address behind instruction */
|
||||||
cip=JUMPABS(code, cip); /* jump to the address */
|
cip=JUMPABS(code, cip); /* jump to the address */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_call_pri:
|
op_call_pri:
|
||||||
if (tracer)
|
|
||||||
{
|
|
||||||
(tracer)(amx, 2);
|
|
||||||
}
|
|
||||||
PUSH((unsigned char *)cip-code);
|
PUSH((unsigned char *)cip-code);
|
||||||
cip=(cell *)(code+(int)pri);
|
cip=(cell *)(code+(int)pri);
|
||||||
|
if (debug) {
|
||||||
|
amx->dbgcode=DBG_CALL;
|
||||||
|
amx->dbgaddr=pri;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_call_pri_nodebug:
|
op_call_pri_nodebug:
|
||||||
PUSH((unsigned char *)cip-code);
|
PUSH((unsigned char *)cip-code);
|
||||||
@ -2607,6 +2529,12 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
amx->pri=pri;
|
amx->pri=pri;
|
||||||
amx->alt=alt;
|
amx->alt=alt;
|
||||||
amx->cip=(cell)((unsigned char*)cip-code);
|
amx->cip=(cell)((unsigned char*)cip-code);
|
||||||
|
if (debug) {
|
||||||
|
amx->dbgcode=DBG_TERMINATE;
|
||||||
|
amx->dbgaddr=(cell)((unsigned char *)cip-code);
|
||||||
|
amx->dbgparam=offs;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
if (offs==AMX_ERR_SLEEP) {
|
if (offs==AMX_ERR_SLEEP) {
|
||||||
amx->reset_stk=reset_stk;
|
amx->reset_stk=reset_stk;
|
||||||
amx->reset_hea=reset_hea;
|
amx->reset_hea=reset_hea;
|
||||||
@ -2683,6 +2611,23 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
GETPARAM(amx->curline);
|
GETPARAM(amx->curline);
|
||||||
GETPARAM(amx->curfile);
|
GETPARAM(amx->curfile);
|
||||||
|
if (debug) {
|
||||||
|
amx->frm=frm;
|
||||||
|
amx->stk=stk;
|
||||||
|
amx->hea=hea;
|
||||||
|
amx->dbgcode=DBG_LINE;
|
||||||
|
num=amx->debug(amx);
|
||||||
|
if (num!=AMX_ERR_NONE) {
|
||||||
|
if (num==AMX_ERR_SLEEP) {
|
||||||
|
amx->pri=pri;
|
||||||
|
amx->alt=alt;
|
||||||
|
amx->cip=(cell)((unsigned char*)cip-code);
|
||||||
|
amx->reset_stk=reset_stk;
|
||||||
|
amx->reset_hea=reset_hea;
|
||||||
|
} /* if */
|
||||||
|
ABORT(amx,num);
|
||||||
|
} /* if */
|
||||||
|
} /* if */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_line_nodebug:
|
op_line_nodebug:
|
||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
@ -2698,6 +2643,10 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
cip=(cell *)((unsigned char *)cip + (int)offs - 2*sizeof(cell));
|
cip=(cell *)((unsigned char *)cip + (int)offs - 2*sizeof(cell));
|
||||||
amx->dbgcode=DBG_SYMBOL;
|
amx->dbgcode=DBG_SYMBOL;
|
||||||
assert((amx->dbgparam >> 8)>0); /* local symbols only */
|
assert((amx->dbgparam >> 8)>0); /* local symbols only */
|
||||||
|
if (debug) {
|
||||||
|
amx->frm=frm; /* debugger needs this to relocate the symbols */
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_symbol_nodebug:
|
op_symbol_nodebug:
|
||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
@ -2709,6 +2658,10 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
GETPARAM(amx->dbgaddr); /* dimension level */
|
GETPARAM(amx->dbgaddr); /* dimension level */
|
||||||
GETPARAM(amx->dbgparam); /* length */
|
GETPARAM(amx->dbgparam); /* length */
|
||||||
amx->dbgcode=DBG_SRANGE;
|
amx->dbgcode=DBG_SRANGE;
|
||||||
|
if (debug) {
|
||||||
|
amx->frm=frm; /* debugger needs this to relocate the symbols */
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_srange_nodebug:
|
op_srange_nodebug:
|
||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
@ -2718,6 +2671,10 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
GETPARAM(amx->dbgparam); /* tag id */
|
GETPARAM(amx->dbgparam); /* tag id */
|
||||||
amx->dbgcode=DBG_SYMTAG;
|
amx->dbgcode=DBG_SYMTAG;
|
||||||
|
if (debug) {
|
||||||
|
amx->frm=frm; /* debugger needs this to relocate the symbols */
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
NEXT(cip);
|
NEXT(cip);
|
||||||
op_symtag_nodebug:
|
op_symtag_nodebug:
|
||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
@ -2779,25 +2736,16 @@ static void *amx_opcodelist_nodebug[] = {
|
|||||||
#endif
|
#endif
|
||||||
#elif defined __GNUC__
|
#elif defined __GNUC__
|
||||||
/* force "cdecl" by adding an "attribute" to the declaration */
|
/* force "cdecl" by adding an "attribute" to the declaration */
|
||||||
#if defined __cplusplus
|
|
||||||
extern "C" cell amx_exec_asm(cell *regs,cell *retval,cell stp,cell hea) __attribute__((cdecl));
|
extern "C" cell amx_exec_asm(cell *regs,cell *retval,cell stp,cell hea) __attribute__((cdecl));
|
||||||
#else
|
#else
|
||||||
extern cell amx_exec_asm(cell *regs,cell *retval,cell stp,cell hea) __attribute__((cdecl));
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
/* force "cdecl" by specifying it as a "function class" with the "__cdecl" keyword */
|
/* force "cdecl" by specifying it as a "function class" with the "__cdecl" keyword */
|
||||||
extern "C" cell __cdecl amx_exec_asm(cell *regs,cell *retval,cell stp,cell hea);
|
extern "C" cell __cdecl amx_exec_asm(cell *regs,cell *retval,cell stp,cell hea);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined ASM32 || defined JIT
|
#if defined ASM32 || defined JIT
|
||||||
#if defined WIN32 || defined __cplusplus
|
|
||||||
extern "C" void *amx_opcodelist[];
|
extern "C" void *amx_opcodelist[];
|
||||||
extern "C" void *amx_opcodelist_nodebug[];
|
extern "C" void *amx_opcodelist_nodebug[];
|
||||||
#else
|
|
||||||
extern void *amx_opcodelist[];
|
|
||||||
extern void *amx_opcodelist_nodebug[];
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
||||||
@ -2810,6 +2758,7 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
ucell codesize;
|
ucell codesize;
|
||||||
int i;
|
int i;
|
||||||
va_list ap;
|
va_list ap;
|
||||||
|
int debug;
|
||||||
#if defined ASM32 || defined JIT
|
#if defined ASM32 || defined JIT
|
||||||
#ifdef __WATCOMC__
|
#ifdef __WATCOMC__
|
||||||
#pragma aux amx_opcodelist "_*"
|
#pragma aux amx_opcodelist "_*"
|
||||||
@ -2821,8 +2770,6 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
cell offs;
|
cell offs;
|
||||||
int num;
|
int num;
|
||||||
#endif
|
#endif
|
||||||
AMX_DEBUGCALL tracer = 0;
|
|
||||||
AMX_DBG *pdbg = 0;
|
|
||||||
|
|
||||||
#if defined ASM32 || defined JIT
|
#if defined ASM32 || defined JIT
|
||||||
/* HACK: return label table (for amx_BrowseRelocate) if amx structure
|
/* HACK: return label table (for amx_BrowseRelocate) if amx structure
|
||||||
@ -2838,27 +2785,12 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
*/
|
*/
|
||||||
*retval=(cell)amx_opcodelist;
|
*retval=(cell)amx_opcodelist;
|
||||||
#else
|
#else
|
||||||
if (amx->flags & AMX_FLAG_DEBUG)
|
*retval=(cell)((amx->flags & AMX_FLAG_DEBUG)==0 ? amx_opcodelist_nodebug : amx_opcodelist);
|
||||||
{
|
|
||||||
*retval=(cell)(amx_opcodelist);
|
|
||||||
} else {
|
|
||||||
*retval=(cell)(amx_opcodelist_nodebug);
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
} /* if */
|
} /* if */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
if ((amx->flags & AMX_FLAG_DEBUG) && (amx->flags & AMX_FLAG_LINEOPS))
|
|
||||||
{
|
|
||||||
if (amx->userdata[0])
|
|
||||||
{
|
|
||||||
tracer = (AMX_DEBUGCALL)amx->userdata[1];
|
|
||||||
pdbg = (AMX_DBG *)(amx->userdata[0]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (amx->callback==NULL)
|
if (amx->callback==NULL)
|
||||||
return AMX_ERR_CALLBACK;
|
return AMX_ERR_CALLBACK;
|
||||||
i=amx_Register(amx,NULL,0); /* verify that all natives are registered */
|
i=amx_Register(amx,NULL,0); /* verify that all natives are registered */
|
||||||
@ -2868,6 +2800,8 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
if ((amx->flags & AMX_FLAG_RELOC)==0)
|
if ((amx->flags & AMX_FLAG_RELOC)==0)
|
||||||
return AMX_ERR_INIT;
|
return AMX_ERR_INIT;
|
||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
|
debug= (amx->flags & AMX_FLAG_DEBUG)!=0;
|
||||||
|
|
||||||
/* set up the registers */
|
/* set up the registers */
|
||||||
hdr=(AMX_HEADER *)amx->base;
|
hdr=(AMX_HEADER *)amx->base;
|
||||||
assert(hdr->magic==AMX_MAGIC);
|
assert(hdr->magic==AMX_MAGIC);
|
||||||
@ -2908,6 +2842,15 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
CHKHEAP();
|
CHKHEAP();
|
||||||
init_little_endian();
|
init_little_endian();
|
||||||
|
|
||||||
|
if (debug && index!=AMX_EXEC_CONT) {
|
||||||
|
/* set the entry point in the debugger by marking a "call" to the
|
||||||
|
* exported function
|
||||||
|
*/
|
||||||
|
amx->dbgcode=DBG_CALL;
|
||||||
|
amx->dbgaddr=(ucell)((unsigned char *)cip-code);
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
|
|
||||||
/* sanity checks */
|
/* sanity checks */
|
||||||
assert(OP_PUSH_PRI==36);
|
assert(OP_PUSH_PRI==36);
|
||||||
assert(OP_PROC==46);
|
assert(OP_PROC==46);
|
||||||
@ -3245,6 +3188,12 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
stk+=offs;
|
stk+=offs;
|
||||||
CHKMARGIN();
|
CHKMARGIN();
|
||||||
CHKSTACK();
|
CHKSTACK();
|
||||||
|
if (debug && offs>0) {
|
||||||
|
amx->dbgcode=DBG_CLRSYM;
|
||||||
|
amx->hea=hea;
|
||||||
|
amx->stk=stk;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_HEAP:
|
case OP_HEAP:
|
||||||
GETPARAM(offs);
|
GETPARAM(offs);
|
||||||
@ -3265,6 +3214,13 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
if ((ucell)offs>=codesize)
|
if ((ucell)offs>=codesize)
|
||||||
ABORT(amx,AMX_ERR_MEMACCESS);
|
ABORT(amx,AMX_ERR_MEMACCESS);
|
||||||
cip=(cell *)(code+(int)offs);
|
cip=(cell *)(code+(int)offs);
|
||||||
|
if (debug) {
|
||||||
|
amx->stk=stk;
|
||||||
|
amx->hea=hea;
|
||||||
|
amx->dbgcode=DBG_RETURN;
|
||||||
|
amx->dbgparam=pri; /* store "return value" */
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_RETN:
|
case OP_RETN:
|
||||||
POP(frm);
|
POP(frm);
|
||||||
@ -3275,22 +3231,33 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
cip=(cell *)(code+(int)offs);
|
cip=(cell *)(code+(int)offs);
|
||||||
stk+= *(cell *)(data+(int)stk) + sizeof(cell); /* remove parameters from the stack */
|
stk+= *(cell *)(data+(int)stk) + sizeof(cell); /* remove parameters from the stack */
|
||||||
amx->stk=stk;
|
amx->stk=stk;
|
||||||
if (tracer)
|
if (debug) {
|
||||||
{
|
amx->stk=stk;
|
||||||
(tracer)(amx, 1);
|
amx->hea=hea;
|
||||||
}
|
amx->dbgcode=DBG_RETURN;
|
||||||
|
amx->dbgparam=pri; /* store "return value" */
|
||||||
|
amx->debug(amx);
|
||||||
|
amx->dbgcode=DBG_CLRSYM;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_CALL:
|
case OP_CALL:
|
||||||
PUSH(((unsigned char *)cip-code)+sizeof(cell));/* skip address */
|
PUSH(((unsigned char *)cip-code)+sizeof(cell));/* skip address */
|
||||||
cip=JUMPABS(code, cip); /* jump to the address */
|
cip=JUMPABS(code, cip); /* jump to the address */
|
||||||
if (tracer)
|
if (debug) {
|
||||||
{
|
amx->dbgcode=DBG_CALL;
|
||||||
(tracer)(amx, 2);
|
amx->dbgaddr=(ucell)((unsigned char *)cip-code);
|
||||||
}
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_CALL_PRI:
|
case OP_CALL_PRI:
|
||||||
PUSH((unsigned char *)cip-code);
|
PUSH((unsigned char *)cip-code);
|
||||||
cip=(cell *)(code+(int)pri);
|
cip=(cell *)(code+(int)pri);
|
||||||
|
if (debug) {
|
||||||
|
amx->dbgcode=DBG_CALL;
|
||||||
|
amx->dbgaddr=pri;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_JUMP:
|
case OP_JUMP:
|
||||||
/* since the GETPARAM() macro modifies cip, you cannot
|
/* since the GETPARAM() macro modifies cip, you cannot
|
||||||
@ -3618,6 +3585,12 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
amx->pri=pri;
|
amx->pri=pri;
|
||||||
amx->alt=alt;
|
amx->alt=alt;
|
||||||
amx->cip=(cell)((unsigned char*)cip-code);
|
amx->cip=(cell)((unsigned char*)cip-code);
|
||||||
|
if (debug) {
|
||||||
|
amx->dbgcode=DBG_TERMINATE;
|
||||||
|
amx->dbgaddr=(cell)((unsigned char *)cip-code);
|
||||||
|
amx->dbgparam=offs;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
if (offs==AMX_ERR_SLEEP) {
|
if (offs==AMX_ERR_SLEEP) {
|
||||||
amx->reset_stk=reset_stk;
|
amx->reset_stk=reset_stk;
|
||||||
amx->reset_hea=reset_hea;
|
amx->reset_hea=reset_hea;
|
||||||
@ -3694,6 +3667,23 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
GETPARAM(amx->curline);
|
GETPARAM(amx->curline);
|
||||||
GETPARAM(amx->curfile);
|
GETPARAM(amx->curfile);
|
||||||
|
if (debug) {
|
||||||
|
amx->frm=frm;
|
||||||
|
amx->stk=stk;
|
||||||
|
amx->hea=hea;
|
||||||
|
amx->dbgcode=DBG_LINE;
|
||||||
|
num=amx->debug(amx);
|
||||||
|
if (num!=AMX_ERR_NONE) {
|
||||||
|
if (num==AMX_ERR_SLEEP) {
|
||||||
|
amx->pri=pri;
|
||||||
|
amx->alt=alt;
|
||||||
|
amx->cip=(cell)((unsigned char*)cip-code);
|
||||||
|
amx->reset_stk=reset_stk;
|
||||||
|
amx->reset_hea=reset_hea;
|
||||||
|
} /* if */
|
||||||
|
ABORT(amx,num);
|
||||||
|
} /* if */
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_SYMBOL:
|
case OP_SYMBOL:
|
||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
@ -3703,15 +3693,30 @@ int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...)
|
|||||||
amx->dbgname=(char *)cip;
|
amx->dbgname=(char *)cip;
|
||||||
cip=(cell *)((unsigned char *)cip + (int)offs - 2*sizeof(cell));
|
cip=(cell *)((unsigned char *)cip + (int)offs - 2*sizeof(cell));
|
||||||
assert((amx->dbgparam >> 8)>0); /* local symbols only */
|
assert((amx->dbgparam >> 8)>0); /* local symbols only */
|
||||||
|
if (debug) {
|
||||||
|
amx->frm=frm; /* debugger needs this to relocate the symbols */
|
||||||
|
amx->dbgcode=DBG_SYMBOL;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_SRANGE:
|
case OP_SRANGE:
|
||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
GETPARAM(amx->dbgaddr); /* dimension level */
|
GETPARAM(amx->dbgaddr); /* dimension level */
|
||||||
GETPARAM(amx->dbgparam); /* length */
|
GETPARAM(amx->dbgparam); /* length */
|
||||||
|
if (debug) {
|
||||||
|
amx->frm=frm; /* debugger needs this to relocate the symbols */
|
||||||
|
amx->dbgcode=DBG_SRANGE;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_SYMTAG:
|
case OP_SYMTAG:
|
||||||
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
assert((amx->flags & AMX_FLAG_BROWSE)==0);
|
||||||
GETPARAM(amx->dbgparam); /* tag id */
|
GETPARAM(amx->dbgparam); /* tag id */
|
||||||
|
if (debug) {
|
||||||
|
amx->frm=frm; /* debugger needs this to relocate the symbols */
|
||||||
|
amx->dbgcode=DBG_SYMTAG;
|
||||||
|
amx->debug(amx);
|
||||||
|
} /* if */
|
||||||
break;
|
break;
|
||||||
case OP_JUMP_PRI:
|
case OP_JUMP_PRI:
|
||||||
cip=(cell *)(code+(int)pri);
|
cip=(cell *)(code+(int)pri);
|
||||||
@ -4034,7 +4039,7 @@ static long utf8_lowmark[5] = { 0x80, 0x800, 0x10000, 0x200000, 0x4000000 };
|
|||||||
*/
|
*/
|
||||||
if (result<utf8_lowmark[followup])
|
if (result<utf8_lowmark[followup])
|
||||||
goto error;
|
goto error;
|
||||||
if ((result>=0xd800 && result<=0xdfff) || result==0xfffe || result==0xffff)
|
if (result>=0xd800 && result<=0xdfff || result==0xfffe || result==0xffff)
|
||||||
goto error;
|
goto error;
|
||||||
} /* if */
|
} /* if */
|
||||||
|
|
||||||
|
@ -22,12 +22,14 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined __linux__
|
#if defined __linux__
|
||||||
#include <sclinux.h>
|
#include "sclinux.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef AMX_H_INCLUDED
|
#ifndef AMX_H_INCLUDED
|
||||||
#define AMX_H_INCLUDED
|
#define AMX_H_INCLUDED
|
||||||
|
|
||||||
|
//#define JIT
|
||||||
|
|
||||||
#if defined __LCC__ || defined __DMC__ || defined __linux__
|
#if defined __LCC__ || defined __DMC__ || defined __linux__
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#elif !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L
|
#elif !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L
|
||||||
@ -134,7 +136,6 @@ typedef cell (AMX_NATIVE_CALL *AMX_NATIVE)(struct tagAMX *amx, cell *params);
|
|||||||
typedef int (AMXAPI *AMX_CALLBACK)(struct tagAMX *amx, cell index,
|
typedef int (AMXAPI *AMX_CALLBACK)(struct tagAMX *amx, cell index,
|
||||||
cell *result, cell *params);
|
cell *result, cell *params);
|
||||||
typedef int (AMXAPI *AMX_DEBUG)(struct tagAMX *amx);
|
typedef int (AMXAPI *AMX_DEBUG)(struct tagAMX *amx);
|
||||||
typedef int (AMXAPI *AMX_DEBUGCALL)(struct tagAMX *amx, int mode);
|
|
||||||
#if !defined _FAR
|
#if !defined _FAR
|
||||||
#define _FAR
|
#define _FAR
|
||||||
#endif
|
#endif
|
||||||
@ -218,9 +219,11 @@ typedef struct tagAMX {
|
|||||||
cell reset_stk PACKED;
|
cell reset_stk PACKED;
|
||||||
cell reset_hea PACKED;
|
cell reset_hea PACKED;
|
||||||
cell sysreq_d PACKED; /* relocated address/value for the SYSREQ.D opcode */
|
cell sysreq_d PACKED; /* relocated address/value for the SYSREQ.D opcode */
|
||||||
|
#if defined JIT
|
||||||
/* support variables for the JIT */
|
/* support variables for the JIT */
|
||||||
int reloc_size PACKED; /* required temporary buffer for relocations */
|
int reloc_size PACKED; /* required temporary buffer for relocations */
|
||||||
long code_size PACKED; /* estimated memory footprint of the native code */
|
long code_size PACKED; /* estimated memory footprint of the native code */
|
||||||
|
#endif
|
||||||
} AMX;
|
} AMX;
|
||||||
|
|
||||||
/* The AMX_HEADER structure is both the memory format as the file format. The
|
/* The AMX_HEADER structure is both the memory format as the file format. The
|
||||||
@ -247,23 +250,6 @@ typedef struct tagAMX_HEADER {
|
|||||||
} AMX_HEADER PACKED;
|
} AMX_HEADER PACKED;
|
||||||
#define AMX_MAGIC 0xf1e0
|
#define AMX_MAGIC 0xf1e0
|
||||||
|
|
||||||
//double linked list for stack
|
|
||||||
typedef struct tagAMX_TRACE
|
|
||||||
{
|
|
||||||
cell line PACKED;
|
|
||||||
cell file PACKED;
|
|
||||||
struct tagAMX_TRACE *next PACKED;
|
|
||||||
struct tagAMX_TRACE *prev PACKED;
|
|
||||||
} AMX_TRACE PACKED;
|
|
||||||
|
|
||||||
typedef struct tagAMX_DBG
|
|
||||||
{
|
|
||||||
int32_t numFiles PACKED; /* number of chars in array */
|
|
||||||
char **files PACKED; /* array of files */
|
|
||||||
AMX_TRACE *head PACKED; /* begin of link list */
|
|
||||||
AMX_TRACE *tail PACKED; /* end of link list */
|
|
||||||
} AMX_DBG PACKED;
|
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
AMX_ERR_NONE,
|
AMX_ERR_NONE,
|
||||||
/* reserve the first 15 error codes for exit codes of the abstract machine */
|
/* reserve the first 15 error codes for exit codes of the abstract machine */
|
||||||
@ -311,8 +297,6 @@ enum {
|
|||||||
#define AMX_FLAG_COMPACT 0x04 /* compact encoding */
|
#define AMX_FLAG_COMPACT 0x04 /* compact encoding */
|
||||||
#define AMX_FLAG_BIGENDIAN 0x08 /* big endian encoding */
|
#define AMX_FLAG_BIGENDIAN 0x08 /* big endian encoding */
|
||||||
#define AMX_FLAG_NOCHECKS 0x10 /* no array bounds checking */
|
#define AMX_FLAG_NOCHECKS 0x10 /* no array bounds checking */
|
||||||
#define AMX_FLAG_LINEOPS 0x20 /* line ops are parsed by the JIT [loadtime only flag] */
|
|
||||||
#define AMX_FLAG_TRACED 0x40 /* the file has already been traced */
|
|
||||||
#define AMX_FLAG_BROWSE 0x4000 /* browsing/relocating or executing */
|
#define AMX_FLAG_BROWSE 0x4000 /* browsing/relocating or executing */
|
||||||
#define AMX_FLAG_RELOC 0x8000 /* jump/call addresses relocated */
|
#define AMX_FLAG_RELOC 0x8000 /* jump/call addresses relocated */
|
||||||
|
|
||||||
@ -353,7 +337,6 @@ uint32_t * AMXAPI amx_Align32(uint32_t *v);
|
|||||||
#if defined _I64_MAX || defined HAVE_I64
|
#if defined _I64_MAX || defined HAVE_I64
|
||||||
uint64_t * AMXAPI amx_Align64(uint64_t *v);
|
uint64_t * AMXAPI amx_Align64(uint64_t *v);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if SMALL_CELL_SIZE==32
|
#if SMALL_CELL_SIZE==32
|
||||||
#define amx_AlignCell amx_Align32
|
#define amx_AlignCell amx_Align32
|
||||||
#elif SMALL_CELL_SIZE==64
|
#elif SMALL_CELL_SIZE==64
|
||||||
@ -361,13 +344,11 @@ uint32_t * AMXAPI amx_Align32(uint32_t *v);
|
|||||||
#else
|
#else
|
||||||
#error Unsupported cell size
|
#error Unsupported cell size
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int AMXAPI amx_Allot(AMX *amx, int cells, cell *amx_addr, cell **phys_addr);
|
int AMXAPI amx_Allot(AMX *amx, int cells, cell *amx_addr, cell **phys_addr);
|
||||||
int AMXAPI amx_Callback(AMX *amx, cell index, cell *result, cell *params);
|
int AMXAPI amx_Callback(AMX *amx, cell index, cell *result, cell *params);
|
||||||
int AMXAPI amx_Cleanup(AMX *amx);
|
int AMXAPI amx_Cleanup(AMX *amx);
|
||||||
int AMXAPI amx_Clone(AMX *amxClone, AMX *amxSource, void *data);
|
int AMXAPI amx_Clone(AMX *amxClone, AMX *amxSource, void *data);
|
||||||
int AMXAPI amx_Debug(AMX *amx); /* default debug procedure, does nothing */
|
int AMXAPI amx_Debug(AMX *amx); /* default debug procedure, does nothing */
|
||||||
int AMXAPI amx_DebugCall(AMX *amx, int mode);
|
|
||||||
int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...);
|
int AMXAPI amx_Exec(AMX *amx, cell *retval, int index, int numparams, ...);
|
||||||
int AMXAPI amx_Execv(AMX *amx, cell *retval, int index, int numparams, cell params[]);
|
int AMXAPI amx_Execv(AMX *amx, cell *retval, int index, int numparams, cell params[]);
|
||||||
int AMXAPI amx_FindNative(AMX *amx, const char *name, int *index);
|
int AMXAPI amx_FindNative(AMX *amx, const char *name, int *index);
|
||||||
@ -402,7 +383,7 @@ int AMXAPI amx_StrLen(cell *cstring, int *length);
|
|||||||
int AMXAPI amx_UTF8Get(const char *string, const char **endptr, cell *value);
|
int AMXAPI amx_UTF8Get(const char *string, const char **endptr, cell *value);
|
||||||
int AMXAPI amx_UTF8Put(char *string, char **endptr, int maxchars, cell value);
|
int AMXAPI amx_UTF8Put(char *string, char **endptr, int maxchars, cell value);
|
||||||
int AMXAPI amx_UTF8Check(const char *string);
|
int AMXAPI amx_UTF8Check(const char *string);
|
||||||
void amx_NullNativeTable(AMX *amx);
|
|
||||||
|
|
||||||
#if !defined AMX_NO_ALIGN
|
#if !defined AMX_NO_ALIGN
|
||||||
#if defined __linux__
|
#if defined __linux__
|
||||||
|
2110
amxmodx/amxexecn.asm
2110
amxmodx/amxexecn.asm
File diff suppressed because it is too large
Load Diff
@ -70,8 +70,8 @@ static cell AMX_NATIVE_CALL emit_sound(AMX *amx, cell *params) /* 7 param */
|
|||||||
|
|
||||||
int len;
|
int len;
|
||||||
char* szSample = get_amxstring(amx,params[3],0,len);
|
char* szSample = get_amxstring(amx,params[3],0,len);
|
||||||
REAL vol = amx_ctof(params[4]);
|
float vol = *(REAL *)((void *)¶ms[4]);
|
||||||
REAL att = amx_ctof(params[5]);
|
float att = *(REAL *)((void *)¶ms[5]);
|
||||||
int channel = params[2];
|
int channel = params[2];
|
||||||
int pitch = params[7];
|
int pitch = params[7];
|
||||||
int flags = params[6];
|
int flags = params[6];
|
||||||
@ -273,13 +273,13 @@ static cell AMX_NATIVE_CALL set_hudmessage(AMX *amx, cell *params) /* 11 param
|
|||||||
g_hudset.r1 = params[1];
|
g_hudset.r1 = params[1];
|
||||||
g_hudset.g1 = params[2];
|
g_hudset.g1 = params[2];
|
||||||
g_hudset.b1 = params[3];
|
g_hudset.b1 = params[3];
|
||||||
g_hudset.x = amx_ctof(params[4]);
|
g_hudset.x = *(REAL *)((void *)¶ms[4]);
|
||||||
g_hudset.y = amx_ctof(params[5]);
|
g_hudset.y = *(REAL *)((void *)¶ms[5]);
|
||||||
g_hudset.effect = params[6];
|
g_hudset.effect = params[6];
|
||||||
g_hudset.fxTime = amx_ctof(params[7]);
|
g_hudset.fxTime = *(REAL *)((void *)¶ms[7]);
|
||||||
g_hudset.holdTime = amx_ctof(params[8]);
|
g_hudset.holdTime = *(REAL *)((void *)¶ms[8]);
|
||||||
g_hudset.fadeinTime = amx_ctof(params[9]);
|
g_hudset.fadeinTime = *(REAL *)((void *)¶ms[9]);
|
||||||
g_hudset.fadeoutTime = amx_ctof(params[10]);
|
g_hudset.fadeoutTime = *(REAL *)((void *)¶ms[10]);
|
||||||
g_hudset.channel = params[11];
|
g_hudset.channel = params[11];
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -1159,13 +1159,13 @@ static cell AMX_NATIVE_CALL get_cvar_float(AMX *amx, cell *params) /* 1 param */
|
|||||||
{
|
{
|
||||||
int ilen;
|
int ilen;
|
||||||
REAL pFloat = CVAR_GET_FLOAT(get_amxstring(amx,params[1],0,ilen));
|
REAL pFloat = CVAR_GET_FLOAT(get_amxstring(amx,params[1],0,ilen));
|
||||||
return amx_ftoc(pFloat);
|
return *(cell*)((void *)&pFloat);
|
||||||
}
|
}
|
||||||
|
|
||||||
static cell AMX_NATIVE_CALL set_cvar_float(AMX *amx, cell *params) /* 2 param */
|
static cell AMX_NATIVE_CALL set_cvar_float(AMX *amx, cell *params) /* 2 param */
|
||||||
{
|
{
|
||||||
int ilen;
|
int ilen;
|
||||||
CVAR_SET_FLOAT(get_amxstring(amx,params[1],0,ilen), amx_ctof(params[2]));
|
CVAR_SET_FLOAT(get_amxstring(amx,params[1],0,ilen),*(REAL *)((void *)¶ms[2]));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1584,7 +1584,7 @@ static cell AMX_NATIVE_CALL get_maxplayers(AMX *amx, cell *params)
|
|||||||
static cell AMX_NATIVE_CALL get_gametime(AMX *amx, cell *params)
|
static cell AMX_NATIVE_CALL get_gametime(AMX *amx, cell *params)
|
||||||
{
|
{
|
||||||
REAL pFloat = gpGlobals->time;
|
REAL pFloat = gpGlobals->time;
|
||||||
return amx_ftoc(pFloat);
|
return *(cell*)((void *)&pFloat);
|
||||||
}
|
}
|
||||||
|
|
||||||
static cell AMX_NATIVE_CALL get_mapname(AMX *amx, cell *params) /* 2 param */
|
static cell AMX_NATIVE_CALL get_mapname(AMX *amx, cell *params) /* 2 param */
|
||||||
@ -1676,27 +1676,23 @@ static cell AMX_NATIVE_CALL set_task(AMX *amx, cell *params) /* 2 param */
|
|||||||
|
|
||||||
char* stemp = get_amxstring(amx,params[2],1, a );
|
char* stemp = get_amxstring(amx,params[2],1, a );
|
||||||
|
|
||||||
if (params[5])
|
if (amx_FindPublic(amx, stemp , &iFunc) != AMX_ERR_NONE){
|
||||||
{
|
|
||||||
iFunc = registerSPForwardByName(amx, stemp, FP_ARRAY, FP_CELL, FP_DONE);
|
|
||||||
} else {
|
|
||||||
iFunc = registerSPForwardByName(amx, stemp, FP_CELL, FP_DONE);
|
|
||||||
}
|
|
||||||
if (iFunc == -1)
|
|
||||||
{
|
|
||||||
AMXXLOG_Log("[AMXX] Function is not present (function \"%s\") (plugin \"%s\")",stemp,plugin->getName() );
|
AMXXLOG_Log("[AMXX] Function is not present (function \"%s\") (plugin \"%s\")",stemp,plugin->getName() );
|
||||||
amx_RaiseError(amx,AMX_ERR_NATIVE);
|
amx_RaiseError(amx,AMX_ERR_NATIVE);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
float base = amx_ctof(params[1]);
|
float base = *(REAL *)((void *)¶ms[1]);
|
||||||
|
|
||||||
if ( base < 0.1 )
|
if ( base < 0.1 )
|
||||||
base = 0.1;
|
base = 0.1;
|
||||||
|
|
||||||
char* temp = get_amxstring(amx,params[6],0,a);
|
char* temp = get_amxstring(amx,params[6],0,a);
|
||||||
|
|
||||||
g_tasksMngr.registerTask( plugin , iFunc , UTIL_ReadFlags(temp), params[3], base , params[5] , get_amxaddr(amx,params[4]) , params[7] );
|
g_tasksMngr.registerTask( plugin ,
|
||||||
|
iFunc , UTIL_ReadFlags(temp), params[3], base ,
|
||||||
|
params[5] ,
|
||||||
|
get_amxaddr(amx,params[4]) , params[7] );
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -1732,7 +1728,7 @@ static cell AMX_NATIVE_CALL register_cvar(AMX *amx, cell *params) /* 3 param */
|
|||||||
{
|
{
|
||||||
CPluginMngr::CPlugin *plugin = g_plugins.findPluginFast(amx);
|
CPluginMngr::CPlugin *plugin = g_plugins.findPluginFast(amx);
|
||||||
CCVar* cvar = new CCVar( temp , plugin->getName() , params[3] ,
|
CCVar* cvar = new CCVar( temp , plugin->getName() , params[3] ,
|
||||||
amx_ctof(params[4]) );
|
*(REAL *)((void *)¶ms[4]) );
|
||||||
|
|
||||||
if ( cvar == 0 )
|
if ( cvar == 0 )
|
||||||
return 0;
|
return 0;
|
||||||
@ -2015,10 +2011,10 @@ static cell AMX_NATIVE_CALL get_distance(AMX *amx, cell *params) /* 2 param */
|
|||||||
|
|
||||||
static cell AMX_NATIVE_CALL random_float(AMX *amx, cell *params) /* 2 param */
|
static cell AMX_NATIVE_CALL random_float(AMX *amx, cell *params) /* 2 param */
|
||||||
{
|
{
|
||||||
float one = amx_ctof(params[1]);
|
float one = *(REAL *)((void *)¶ms[1]);
|
||||||
float two = amx_ctof(params[2]);
|
float two = *(REAL *)((void *)¶ms[2]);
|
||||||
REAL fRnd = RANDOM_FLOAT(one,two);
|
REAL fRnd = RANDOM_FLOAT(one,two);
|
||||||
return amx_ftoc(fRnd);
|
return *(cell*)((void *)&fRnd);
|
||||||
}
|
}
|
||||||
|
|
||||||
static cell AMX_NATIVE_CALL random_num(AMX *amx, cell *params) /* 2 param */
|
static cell AMX_NATIVE_CALL random_num(AMX *amx, cell *params) /* 2 param */
|
||||||
@ -2257,7 +2253,7 @@ static cell AMX_NATIVE_CALL is_module_loaded(AMX *amx, cell *params)
|
|||||||
int len;
|
int len;
|
||||||
char *name = get_amxstring(amx, params[1], 0, len);
|
char *name = get_amxstring(amx, params[1], 0, len);
|
||||||
int id = 0;
|
int id = 0;
|
||||||
for (CList<CModule,const char *>::iterator iter = g_modules.begin(); iter; ++iter)
|
for (CList<CModule>::iterator iter = g_modules.begin(); iter; ++iter)
|
||||||
{
|
{
|
||||||
if (stricmp((*iter).getName(), name) == 0)
|
if (stricmp((*iter).getName(), name) == 0)
|
||||||
return id;
|
return id;
|
||||||
@ -2290,7 +2286,7 @@ static cell AMX_NATIVE_CALL get_modulesnum(AMX *amx, cell *params)
|
|||||||
// native get_module(id, name[], nameLen, author[], authorLen, version[], versionLen, &status);
|
// native get_module(id, name[], nameLen, author[], authorLen, version[], versionLen, &status);
|
||||||
static cell AMX_NATIVE_CALL get_module(AMX *amx, cell *params)
|
static cell AMX_NATIVE_CALL get_module(AMX *amx, cell *params)
|
||||||
{
|
{
|
||||||
CList<CModule,const char *>::iterator moduleIter;
|
CList<CModule>::iterator moduleIter;
|
||||||
|
|
||||||
// find the module
|
// find the module
|
||||||
int i = params[1];
|
int i = params[1];
|
||||||
@ -2304,16 +2300,16 @@ static cell AMX_NATIVE_CALL get_module(AMX *amx, cell *params)
|
|||||||
if ((*moduleIter).isAmxx())
|
if ((*moduleIter).isAmxx())
|
||||||
{
|
{
|
||||||
const amxx_module_info_s *info = (*moduleIter).getInfoNew();
|
const amxx_module_info_s *info = (*moduleIter).getInfoNew();
|
||||||
set_amxstring(amx, params[2], info && info->name ? info->name : "unk", params[3]);
|
set_amxstring(amx, params[2], info->name, params[3]);
|
||||||
set_amxstring(amx, params[4], info && info->author ? info->author : "unk", params[5]);
|
set_amxstring(amx, params[4], info->author, params[5]);
|
||||||
set_amxstring(amx, params[6], info && info->version ? info->version : "unk", params[7]);
|
set_amxstring(amx, params[6], info->version, params[7]);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
module_info_s *info = (*moduleIter).getInfo();
|
module_info_s *info = (*moduleIter).getInfo();
|
||||||
set_amxstring(amx, params[2], info && info->name ? info->name : "unk", params[3]);
|
set_amxstring(amx, params[2], info->name, params[3]);
|
||||||
set_amxstring(amx, params[4], info && info->author ? info->author : "unk", params[5]);
|
set_amxstring(amx, params[4], info->author, params[5]);
|
||||||
set_amxstring(amx, params[6], info && info->version ? info->version : "unk", params[7]);
|
set_amxstring(amx, params[6], info->version, params[7]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// compatibility problem possible
|
// compatibility problem possible
|
||||||
@ -2442,7 +2438,7 @@ static cell AMX_NATIVE_CALL callfunc_end(AMX *amx, cell *params)
|
|||||||
// actual call
|
// actual call
|
||||||
if ((err = amx_Execv(plugin->getAMX(), &retVal, func, curParam, gparams)) != AMX_ERR_NONE)
|
if ((err = amx_Execv(plugin->getAMX(), &retVal, func, curParam, gparams)) != AMX_ERR_NONE)
|
||||||
{
|
{
|
||||||
LogError(amx, err, "");
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (plugin \"%s\")", err, curPlugin->getAMX()->curline, curPlugin->getName());
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2473,7 +2469,7 @@ static cell AMX_NATIVE_CALL callfunc_end(AMX *amx, cell *params)
|
|||||||
|
|
||||||
// native callfunc_push_int(value);
|
// native callfunc_push_int(value);
|
||||||
// native callfunc_push_float(Float: value);
|
// native callfunc_push_float(Float: value);
|
||||||
static cell AMX_NATIVE_CALL callfunc_push_byval(AMX *amx, cell *params)
|
static cell callfunc_push_byval(AMX *amx, cell *params)
|
||||||
{
|
{
|
||||||
CPluginMngr::CPlugin *curPlugin = g_plugins.findPluginFast(amx);
|
CPluginMngr::CPlugin *curPlugin = g_plugins.findPluginFast(amx);
|
||||||
if (!g_CallFunc_Plugin)
|
if (!g_CallFunc_Plugin)
|
||||||
@ -2499,7 +2495,7 @@ static cell AMX_NATIVE_CALL callfunc_push_byval(AMX *amx, cell *params)
|
|||||||
|
|
||||||
// native callfunc_push_intref(&value);
|
// native callfunc_push_intref(&value);
|
||||||
// native callfunc_push_floatref(Float: &value);
|
// native callfunc_push_floatref(Float: &value);
|
||||||
static cell AMX_NATIVE_CALL callfunc_push_byref(AMX *amx, cell *params)
|
static cell callfunc_push_byref(AMX *amx, cell *params)
|
||||||
{
|
{
|
||||||
CPluginMngr::CPlugin *curPlugin = g_plugins.findPluginFast(amx);
|
CPluginMngr::CPlugin *curPlugin = g_plugins.findPluginFast(amx);
|
||||||
if (!g_CallFunc_Plugin)
|
if (!g_CallFunc_Plugin)
|
||||||
@ -2557,7 +2553,7 @@ static cell AMX_NATIVE_CALL callfunc_push_byref(AMX *amx, cell *params)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// native callfunc_push_str(value[]);
|
// native callfunc_push_str(value[]);
|
||||||
static cell AMX_NATIVE_CALL callfunc_push_str(AMX *amx, cell *params)
|
static cell callfunc_push_str(AMX *amx, cell *params)
|
||||||
{
|
{
|
||||||
CPluginMngr::CPlugin *curPlugin = g_plugins.findPluginFast(amx);
|
CPluginMngr::CPlugin *curPlugin = g_plugins.findPluginFast(amx);
|
||||||
if (!g_CallFunc_Plugin)
|
if (!g_CallFunc_Plugin)
|
||||||
@ -2618,54 +2614,34 @@ static cell AMX_NATIVE_CALL callfunc_push_str(AMX *amx, cell *params)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// get_langsnum();
|
// get_langsnum();
|
||||||
static cell AMX_NATIVE_CALL get_langsnum(AMX *amx, cell *params)
|
static cell get_langsnum(AMX *amx, cell *params)
|
||||||
{
|
{
|
||||||
return g_langMngr.GetLangsNum();
|
return g_langMngr.GetLangsNum();
|
||||||
}
|
}
|
||||||
|
|
||||||
// get_lang(id, name[(at least 3)]);
|
// get_lang(id, name[(at least 3)]);
|
||||||
static cell AMX_NATIVE_CALL get_lang(AMX *amx, cell *params)
|
static cell get_lang(AMX *amx, cell *params)
|
||||||
{
|
{
|
||||||
set_amxstring(amx, params[2], g_langMngr.GetLangName(params[1]), 2);
|
set_amxstring(amx, params[2], g_langMngr.GetLangName(params[1]), 2);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// register_dictionary(const filename[]);
|
// register_dictionary(const filename[]);
|
||||||
static cell AMX_NATIVE_CALL register_dictionary(AMX *amx, cell *params)
|
static cell register_dictionary(AMX *amx, cell *params)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
int result = g_langMngr.MergeDefinitionFile(build_pathname("%s/lang/%s",
|
int result = g_langMngr.MergeDefinitionFile(build_pathname("%s/lang/%s",
|
||||||
get_localinfo("amxx_datadir", "addons/amxmodx/data"), get_amxstring(amx, params[1], 1, len)));
|
get_localinfo("amxx_datadir", "addons/amxx/data"), get_amxstring(amx, params[1], 1, len)));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
static cell AMX_NATIVE_CALL plugin_flags(AMX *amx, cell *params)
|
|
||||||
{
|
|
||||||
AMX_HEADER *hdr;
|
|
||||||
hdr = (AMX_HEADER *)amx->base;
|
|
||||||
return hdr->flags;
|
|
||||||
}
|
|
||||||
|
|
||||||
// lang_exists(const name[]);
|
// lang_exists(const name[]);
|
||||||
static cell AMX_NATIVE_CALL lang_exists(AMX *amx, cell *params)
|
static cell lang_exists(AMX *amx, cell *params)
|
||||||
{
|
{
|
||||||
int len = 0;
|
int len = 0;
|
||||||
return g_langMngr.LangExists(get_amxstring(amx, params[1], 1, len)) ? 1 : 0;
|
return g_langMngr.LangExists(get_amxstring(amx, params[1], 1, len)) ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
cell AMX_NATIVE_CALL require_module(AMX *amx, cell *params)
|
|
||||||
{
|
|
||||||
int len = 0;
|
|
||||||
|
|
||||||
String s;
|
|
||||||
|
|
||||||
s.assign(get_amxstring(amx, params[1], 0, len));
|
|
||||||
|
|
||||||
CurModuleList.push(s);
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
AMX_NATIVE_INFO amxmod_Natives[] = {
|
AMX_NATIVE_INFO amxmod_Natives[] = {
|
||||||
{ "client_cmd", client_cmd },
|
{ "client_cmd", client_cmd },
|
||||||
{ "client_print", client_print },
|
{ "client_print", client_print },
|
||||||
@ -2765,7 +2741,6 @@ AMX_NATIVE_INFO amxmod_Natives[] = {
|
|||||||
{ "register_logevent",register_logevent},
|
{ "register_logevent",register_logevent},
|
||||||
{ "register_menucmd", register_menucmd },
|
{ "register_menucmd", register_menucmd },
|
||||||
{ "register_menuid", register_menuid },
|
{ "register_menuid", register_menuid },
|
||||||
{ "require_module", require_module },
|
|
||||||
{ "register_plugin", register_plugin },
|
{ "register_plugin", register_plugin },
|
||||||
{ "register_srvcmd", register_srvcmd },
|
{ "register_srvcmd", register_srvcmd },
|
||||||
{ "remove_cvar_flags", remove_cvar_flags },
|
{ "remove_cvar_flags", remove_cvar_flags },
|
||||||
@ -2823,6 +2798,5 @@ AMX_NATIVE_INFO amxmod_Natives[] = {
|
|||||||
{ "lang_exists", lang_exists },
|
{ "lang_exists", lang_exists },
|
||||||
{ "md5", amx_md5 },
|
{ "md5", amx_md5 },
|
||||||
{ "md5_file", amx_md5_file },
|
{ "md5_file", amx_md5_file },
|
||||||
{ "plugin_flags", plugin_flags},
|
|
||||||
{ NULL, NULL }
|
{ NULL, NULL }
|
||||||
};
|
};
|
||||||
|
@ -140,7 +140,7 @@ extern CList<CCVar> g_cvars;
|
|||||||
extern CList<ForceObject> g_forcemodels;
|
extern CList<ForceObject> g_forcemodels;
|
||||||
extern CList<ForceObject> g_forcesounds;
|
extern CList<ForceObject> g_forcesounds;
|
||||||
extern CList<ForceObject> g_forcegeneric;
|
extern CList<ForceObject> g_forcegeneric;
|
||||||
extern CList<CModule,const char *> g_modules;
|
extern CList<CModule> g_modules;
|
||||||
extern CList<CPlayer*> g_auth;
|
extern CList<CPlayer*> g_auth;
|
||||||
extern EventsMngr g_events;
|
extern EventsMngr g_events;
|
||||||
extern Grenades g_grenades;
|
extern Grenades g_grenades;
|
||||||
@ -157,6 +157,7 @@ extern XVars g_xvars;
|
|||||||
extern bool g_bmod_cstrike;
|
extern bool g_bmod_cstrike;
|
||||||
extern bool g_bmod_dod;
|
extern bool g_bmod_dod;
|
||||||
extern bool g_dontprecache;
|
extern bool g_dontprecache;
|
||||||
|
extern bool g_initialized;
|
||||||
extern int g_srvindex;
|
extern int g_srvindex;
|
||||||
extern cvar_t* amxmodx_version;
|
extern cvar_t* amxmodx_version;
|
||||||
extern cvar_t* hostname;
|
extern cvar_t* hostname;
|
||||||
@ -242,7 +243,7 @@ AMX* get_amxscript(int, void**,const char**);
|
|||||||
const char* get_amxscriptname(AMX* amx);
|
const char* get_amxscriptname(AMX* amx);
|
||||||
char* get_amxstring(AMX *amx,cell amx_addr,int id,int& len);
|
char* get_amxstring(AMX *amx,cell amx_addr,int id,int& len);
|
||||||
int amxstring_len(cell* cstr);
|
int amxstring_len(cell* cstr);
|
||||||
int load_amxscript(AMX* amx, void** program, const char* path, char error[64], int debug);
|
int load_amxscript(AMX* amx, void** program, const char* path, char error[64]);
|
||||||
int set_amxnatives(AMX* amx,char error[64]);
|
int set_amxnatives(AMX* amx,char error[64]);
|
||||||
int set_amxstring(AMX *amx,cell amx_addr,const char *source,int max);
|
int set_amxstring(AMX *amx,cell amx_addr,const char *source,int max);
|
||||||
int unload_amxscript(AMX* amx,void** program);
|
int unload_amxscript(AMX* amx,void** program);
|
||||||
@ -254,8 +255,6 @@ void* alloc_amxmemory(void**, int size);
|
|||||||
void free_amxmemory(void **ptr);
|
void free_amxmemory(void **ptr);
|
||||||
// get_localinfo
|
// get_localinfo
|
||||||
const char* get_localinfo( const char* name , const char* def );
|
const char* get_localinfo( const char* name , const char* def );
|
||||||
cell AMX_NATIVE_CALL require_module(AMX *amx, cell *params);
|
|
||||||
void LogError(AMX *amx, int err, const char *fmt, ...);
|
|
||||||
|
|
||||||
enum ModuleCallReason
|
enum ModuleCallReason
|
||||||
{
|
{
|
||||||
@ -268,7 +267,6 @@ enum ModuleCallReason
|
|||||||
extern ModuleCallReason g_ModuleCallReason; // modules.cpp
|
extern ModuleCallReason g_ModuleCallReason; // modules.cpp
|
||||||
extern CModule *g_CurrentlyCalledModule; // modules.cpp
|
extern CModule *g_CurrentlyCalledModule; // modules.cpp
|
||||||
extern const char *g_LastRequestedFunc; // modules.cpp
|
extern const char *g_LastRequestedFunc; // modules.cpp
|
||||||
extern CQueue<String> CurModuleList;
|
|
||||||
|
|
||||||
void *Module_ReqFnptr(const char *funcName); // modules.cpp
|
void *Module_ReqFnptr(const char *funcName); // modules.cpp
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
#include "amxmodx.h"
|
#include "amxmodx.h"
|
||||||
#include "amxxfile.h"
|
#include "amxxfile.h"
|
||||||
#include "zlib/zlib.h"
|
#include "minilzo/minilzo.h"
|
||||||
|
|
||||||
/**********************
|
/**********************
|
||||||
****** AMXXFILE ******
|
****** AMXXFILE ******
|
||||||
@ -51,7 +51,7 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef char mint8_t;
|
typedef lzo_byte mint8_t;
|
||||||
typedef int16_t mint16_t;
|
typedef int16_t mint16_t;
|
||||||
typedef int32_t mint32_t;
|
typedef int32_t mint32_t;
|
||||||
|
|
||||||
@ -85,6 +85,13 @@ CAmxxReader::CAmxxReader(const char *filename, int cellsize)
|
|||||||
m_Status = Err_None;
|
m_Status = Err_None;
|
||||||
m_CellSize = cellsize;
|
m_CellSize = cellsize;
|
||||||
|
|
||||||
|
// Make sure the decompressor runs
|
||||||
|
if (lzo_init() != LZO_E_OK)
|
||||||
|
{
|
||||||
|
m_Status = Err_DecompressorInit;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
m_pFile = fopen(filename, "rb");
|
m_pFile = fopen(filename, "rb");
|
||||||
if (!m_pFile)
|
if (!m_pFile)
|
||||||
{
|
{
|
||||||
@ -96,7 +103,7 @@ CAmxxReader::CAmxxReader(const char *filename, int cellsize)
|
|||||||
DATAREAD(&magic, sizeof(magic), 1);
|
DATAREAD(&magic, sizeof(magic), 1);
|
||||||
|
|
||||||
m_OldFile = false;
|
m_OldFile = false;
|
||||||
if (magic != 0x414D5842)
|
if (magic != 0x524C4542)
|
||||||
{
|
{
|
||||||
// check for old file
|
// check for old file
|
||||||
AMX_HEADER hdr;
|
AMX_HEADER hdr;
|
||||||
@ -124,13 +131,7 @@ CAmxxReader::CAmxxReader(const char *filename, int cellsize)
|
|||||||
m_pFile = NULL;
|
m_pFile = NULL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else if ( magic == 0x524C4542 ) {
|
}
|
||||||
//we have an invalid, old, RLEB file
|
|
||||||
m_Status = Err_OldFile;
|
|
||||||
fclose(m_pFile);
|
|
||||||
m_pFile = NULL;
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
|
|
||||||
// try to find the section
|
// try to find the section
|
||||||
mint8_t numOfPlugins;
|
mint8_t numOfPlugins;
|
||||||
@ -171,7 +172,6 @@ CAmxxReader::CAmxxReader(const char *filename, int cellsize)
|
|||||||
m_SectionLength = ftell(m_pFile) - (long)entry.offset;
|
m_SectionLength = ftell(m_pFile) - (long)entry.offset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
CAmxxReader::~CAmxxReader()
|
CAmxxReader::~CAmxxReader()
|
||||||
{
|
{
|
||||||
@ -205,15 +205,11 @@ size_t CAmxxReader::GetBufferSize()
|
|||||||
if (!m_pFile)
|
if (!m_pFile)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
|
||||||
long save = ftell(m_pFile);
|
|
||||||
|
|
||||||
if (m_OldFile)
|
if (m_OldFile)
|
||||||
{
|
{
|
||||||
rewind(m_pFile);
|
rewind(m_pFile);
|
||||||
AMX_HEADER hdr;
|
AMX_HEADER hdr;
|
||||||
DATAREAD(&hdr, sizeof(hdr), 1);
|
DATAREAD(&hdr, sizeof(hdr), 1);
|
||||||
fseek(m_pFile, save, SEEK_SET);
|
|
||||||
return hdr.stp;
|
return hdr.stp;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,7 +217,6 @@ size_t CAmxxReader::GetBufferSize()
|
|||||||
|
|
||||||
TableEntry entry;
|
TableEntry entry;
|
||||||
DATAREAD(&entry, sizeof(entry), 1);
|
DATAREAD(&entry, sizeof(entry), 1);
|
||||||
fseek(m_pFile, save, SEEK_SET);
|
|
||||||
return entry.origSize + 1; // +1 : safe
|
return entry.origSize + 1; // +1 : safe
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -260,19 +255,16 @@ CAmxxReader::Error CAmxxReader::GetSection(void *buffer)
|
|||||||
TableEntry entry;
|
TableEntry entry;
|
||||||
DATAREAD(&entry, sizeof(entry), 1);
|
DATAREAD(&entry, sizeof(entry), 1);
|
||||||
fseek(m_pFile, entry.offset, SEEK_SET);
|
fseek(m_pFile, entry.offset, SEEK_SET);
|
||||||
// AMXXLOG_Log("|||| Offset needed: %d At: %d", entry.offset, ftell(m_pFile));
|
|
||||||
uLongf destLen = GetBufferSize();
|
|
||||||
// read the data to a temporary buffer
|
// read the data to a temporary buffer
|
||||||
char *tempBuffer = new char[m_SectionLength + 1];
|
lzo_byte *tempBuffer = new lzo_byte[m_SectionLength + 1];
|
||||||
//fread(tempBuffer, sizeof(char), m_SectionLength, m_pFile);
|
|
||||||
DATAREAD((void*)tempBuffer, 1, m_SectionLength);
|
DATAREAD((void*)tempBuffer, 1, m_SectionLength);
|
||||||
// decompress
|
// decompress
|
||||||
// AMXXLOG_Log("|||| First Bytes: %d %d %d %d", tempBuffer[0], tempBuffer[1], tempBuffer[2], tempBuffer[3]);
|
lzo_uint destLen = GetBufferSize();
|
||||||
int result = uncompress((Bytef *)buffer, &destLen,
|
int result = lzo1x_decompress_safe(tempBuffer, m_SectionLength,
|
||||||
(Bytef *)tempBuffer, m_SectionLength);
|
(lzo_byte*)buffer, &destLen,
|
||||||
delete [] tempBuffer;
|
NULL /*unused*/ );
|
||||||
// AMXXLOG_Log("|||| Result: %d, m_SectionLength=%d, destLen=%d", result, m_SectionLength, destLen);
|
if (result != LZO_E_OK)
|
||||||
if (result != Z_OK)
|
|
||||||
{
|
{
|
||||||
m_Status = Err_Decompress;
|
m_Status = Err_Decompress;
|
||||||
return Err_Decompress;
|
return Err_Decompress;
|
||||||
|
@ -44,8 +44,7 @@ public:
|
|||||||
Err_FileInvalid,
|
Err_FileInvalid,
|
||||||
Err_SectionNotFound,
|
Err_SectionNotFound,
|
||||||
Err_DecompressorInit,
|
Err_DecompressorInit,
|
||||||
Err_Decompress,
|
Err_Decompress
|
||||||
Err_OldFile,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -40,10 +40,6 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "amxmodx.h"
|
#include "amxmodx.h"
|
||||||
|
|
||||||
#ifndef __linux__
|
|
||||||
#define vsnprintf _vsnprintf
|
|
||||||
#endif
|
|
||||||
|
|
||||||
CLog::CLog()
|
CLog::CLog()
|
||||||
{
|
{
|
||||||
m_LogType = 0;
|
m_LogType = 0;
|
||||||
@ -162,7 +158,7 @@ void CLog::Log(const char *fmt, ...)
|
|||||||
|
|
||||||
va_list arglst;
|
va_list arglst;
|
||||||
va_start(arglst, fmt);
|
va_start(arglst, fmt);
|
||||||
vsnprintf(msg, 3071, fmt, arglst);
|
vsprintf(msg, fmt, arglst);
|
||||||
va_end(arglst);
|
va_end(arglst);
|
||||||
|
|
||||||
FILE *pF;
|
FILE *pF;
|
||||||
@ -185,18 +181,9 @@ void CLog::Log(const char *fmt, ...)
|
|||||||
{
|
{
|
||||||
pF = fopen(build_pathname("%s/L%02d%02d.log", g_log_dir.c_str(), curTime->tm_mon + 1, curTime->tm_mday), "a+");
|
pF = fopen(build_pathname("%s/L%02d%02d.log", g_log_dir.c_str(), curTime->tm_mon + 1, curTime->tm_mday), "a+");
|
||||||
}
|
}
|
||||||
if (pF)
|
|
||||||
{
|
|
||||||
fprintf(pF, "L %s: %s\n", date, msg);
|
fprintf(pF, "L %s: %s\n", date, msg);
|
||||||
fclose(pF);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ALERT(at_logged, "[AMXX] Unexpected fatal logging error (couldn't open %s for a+). AMXX Logging disabled for this map.\n", m_LogFile.c_str());
|
|
||||||
m_LogType = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
fclose(pF);
|
||||||
// print on server console
|
// print on server console
|
||||||
print_srvconsole("L %s: %s\n", date, msg);
|
print_srvconsole("L %s: %s\n", date, msg);
|
||||||
}
|
}
|
||||||
@ -207,7 +194,7 @@ void CLog::Log(const char *fmt, ...)
|
|||||||
char msg[3072];
|
char msg[3072];
|
||||||
va_list arglst;
|
va_list arglst;
|
||||||
va_start(arglst, fmt);
|
va_start(arglst, fmt);
|
||||||
vsnprintf(msg, 3071, fmt, arglst);
|
vsprintf(msg, fmt, arglst);
|
||||||
va_end(arglst);
|
va_end(arglst);
|
||||||
ALERT(at_logged, "%s\n", msg);
|
ALERT(at_logged, "%s\n", msg);
|
||||||
}
|
}
|
||||||
|
@ -320,7 +320,7 @@
|
|||||||
prev_mres = mres; \
|
prev_mres = mres; \
|
||||||
if (mres == MRES_UNSET) \
|
if (mres == MRES_UNSET) \
|
||||||
AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has not set meta result in \"%s\"", \
|
AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has not set meta result in \"%s\"", \
|
||||||
(*iter).GetInfo()->name, (*iter).GetPath(), #pfnName); \
|
(*iter).GetInfo()->name, (*iter).GetPath(), #pfnArgs); \
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
/* Set meta result to the highest value */ \
|
/* Set meta result to the highest value */ \
|
||||||
@ -353,7 +353,7 @@
|
|||||||
prev_mres = mres; \
|
prev_mres = mres; \
|
||||||
if (mres == MRES_UNSET) \
|
if (mres == MRES_UNSET) \
|
||||||
AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has not set meta result in \"%s\"", \
|
AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has not set meta result in \"%s\"", \
|
||||||
(*iter).GetInfo()->name, (*iter).GetPath(), #pfnName); \
|
(*iter).GetInfo()->name, (*iter).GetPath(), #pfnArgs); \
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
/* Set meta result to the highest value */ \
|
/* Set meta result to the highest value */ \
|
||||||
@ -379,7 +379,7 @@
|
|||||||
prev_mres = mres; \
|
prev_mres = mres; \
|
||||||
if (mres == MRES_UNSET) \
|
if (mres == MRES_UNSET) \
|
||||||
AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has not set meta result in \"%s\"", \
|
AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has not set meta result in \"%s\"", \
|
||||||
(*iter).GetInfo()->name, (*iter).GetPath(), #pfnName); \
|
(*iter).GetInfo()->name, (*iter).GetPath(), #pfnArgs); \
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
/* Set meta result to the highest value */ \
|
/* Set meta result to the highest value */ \
|
||||||
@ -412,10 +412,7 @@
|
|||||||
prev_mres = mres; \
|
prev_mres = mres; \
|
||||||
if (mres == MRES_UNSET) \
|
if (mres == MRES_UNSET) \
|
||||||
AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has not set meta result in \"%s\"", \
|
AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has not set meta result in \"%s\"", \
|
||||||
(*iter).GetInfo()->name, (*iter).GetPath(), #pfnName); \
|
(*iter).GetInfo()->name, (*iter).GetPath(), #pfnArgs); \
|
||||||
if (mres == MRES_SUPERCEDE) \
|
|
||||||
AMXXLOG_Log("[AMXX] Module \"%s\" (\"%s\") has set meta result in \"%s\" to supercede", \
|
|
||||||
(*iter).GetInfo()->name, (*iter).GetPath(), #pfnName); \
|
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
/* Set meta result to the highest value */ \
|
/* Set meta result to the highest value */ \
|
||||||
@ -2703,7 +2700,7 @@ int CFakeMeta::GetNewDLLFunctions(NEW_DLL_FUNCTIONS *pNewFunctionTable, int *int
|
|||||||
*interfaceVersion = NEW_DLL_FUNCTIONS_VERSION;
|
*interfaceVersion = NEW_DLL_FUNCTIONS_VERSION;
|
||||||
return(FALSE);
|
return(FALSE);
|
||||||
}
|
}
|
||||||
memcpy( pNewFunctionTable, &g_NewDllFunctionTable, sizeof( NEW_DLL_FUNCTIONS ) );
|
memcpy( pNewFunctionTable, &g_NewDllFunctionTable, sizeof( DLL_FUNCTIONS ) );
|
||||||
|
|
||||||
// Make sure there is a core plugin
|
// Make sure there is a core plugin
|
||||||
AddCorePlugin();
|
AddCorePlugin();
|
||||||
@ -2738,7 +2735,7 @@ int CFakeMeta::GetNewDLLFunctions_Post(NEW_DLL_FUNCTIONS *pNewFunctionTable, int
|
|||||||
*interfaceVersion = NEW_DLL_FUNCTIONS_VERSION;
|
*interfaceVersion = NEW_DLL_FUNCTIONS_VERSION;
|
||||||
return(FALSE);
|
return(FALSE);
|
||||||
}
|
}
|
||||||
memcpy( pNewFunctionTable, &g_NewDllFunctionTable_Post, sizeof( NEW_DLL_FUNCTIONS ) );
|
memcpy( pNewFunctionTable, &g_NewDllFunctionTable_Post, sizeof( DLL_FUNCTIONS ) );
|
||||||
|
|
||||||
// Make sure there is a core plugin
|
// Make sure there is a core plugin
|
||||||
AddCorePlugin();
|
AddCorePlugin();
|
||||||
|
@ -37,19 +37,6 @@
|
|||||||
|
|
||||||
#define PI 3.1415926535897932384626433832795
|
#define PI 3.1415926535897932384626433832795
|
||||||
|
|
||||||
static REAL FromRadians(REAL angle, int radix)
|
|
||||||
{
|
|
||||||
switch (radix)
|
|
||||||
{
|
|
||||||
case 1: /* degrees, sexagesimal system (technically: degrees/minutes/seconds) */
|
|
||||||
return (REAL)(angle / PI * 180.0);
|
|
||||||
case 2: /* grades, centesimal system */
|
|
||||||
return (REAL)(angle / PI * 200.0);
|
|
||||||
default: /* assume already radian */
|
|
||||||
return angle;
|
|
||||||
} /* switch */
|
|
||||||
}
|
|
||||||
|
|
||||||
#if defined __BORLANDC__ || defined __WATCOMC__
|
#if defined __BORLANDC__ || defined __WATCOMC__
|
||||||
#pragma argsused
|
#pragma argsused
|
||||||
#endif
|
#endif
|
||||||
@ -370,7 +357,6 @@ static cell AMX_NATIVE_CALL n_floatatan(AMX *amx, cell *params)
|
|||||||
REAL fA = amx_ctof(params[1]);
|
REAL fA = amx_ctof(params[1]);
|
||||||
fA = ToRadians(fA, params[2]);
|
fA = ToRadians(fA, params[2]);
|
||||||
fA = atan(fA);
|
fA = atan(fA);
|
||||||
fA = FromRadians(fA, params[2]);
|
|
||||||
return amx_ftoc(fA);
|
return amx_ftoc(fA);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -385,8 +371,8 @@ static cell AMX_NATIVE_CALL n_floatacos(AMX *amx, cell *params)
|
|||||||
* params[2] = radix
|
* params[2] = radix
|
||||||
*/
|
*/
|
||||||
REAL fA = amx_ctof(params[1]);
|
REAL fA = amx_ctof(params[1]);
|
||||||
|
fA = ToRadians(fA, params[2]);
|
||||||
fA = acos(fA);
|
fA = acos(fA);
|
||||||
fA = FromRadians(fA, params[2]);
|
|
||||||
return amx_ftoc(fA);
|
return amx_ftoc(fA);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -401,8 +387,8 @@ static cell AMX_NATIVE_CALL n_floatasin(AMX *amx, cell *params)
|
|||||||
* params[2] = radix
|
* params[2] = radix
|
||||||
*/
|
*/
|
||||||
REAL fA = amx_ctof(params[1]);
|
REAL fA = amx_ctof(params[1]);
|
||||||
|
fA = ToRadians(fA, params[2]);
|
||||||
fA = asin(fA);
|
fA = asin(fA);
|
||||||
fA = FromRadians(fA, params[2]);
|
|
||||||
return amx_ftoc(fA);
|
return amx_ftoc(fA);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -421,7 +407,6 @@ static cell AMX_NATIVE_CALL n_floatatan2(AMX *amx, cell *params)
|
|||||||
REAL fB = amx_ctof(params[2]);
|
REAL fB = amx_ctof(params[2]);
|
||||||
REAL fC;
|
REAL fC;
|
||||||
fC = atan2(fA, fB);
|
fC = atan2(fA, fB);
|
||||||
fC = FromRadians(fC, params[3]);
|
|
||||||
return amx_ftoc(fC);
|
return amx_ftoc(fC);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +57,6 @@ void (*function)(void*);
|
|||||||
void (*endfunction)(void*);
|
void (*endfunction)(void*);
|
||||||
|
|
||||||
CLog g_log;
|
CLog g_log;
|
||||||
CQueue<String> CurModuleList;
|
|
||||||
CForwardMngr g_forwards;
|
CForwardMngr g_forwards;
|
||||||
CList<CPlayer*> g_auth;
|
CList<CPlayer*> g_auth;
|
||||||
CList<CCVar> g_cvars;
|
CList<CCVar> g_cvars;
|
||||||
@ -82,12 +81,12 @@ bool g_bmod_dod;
|
|||||||
bool g_dontprecache;
|
bool g_dontprecache;
|
||||||
bool g_forcedmodules;
|
bool g_forcedmodules;
|
||||||
bool g_forcedsounds;
|
bool g_forcedsounds;
|
||||||
|
bool g_initialized;
|
||||||
fakecmd_t g_fakecmd;
|
fakecmd_t g_fakecmd;
|
||||||
float g_game_restarting;
|
float g_game_restarting;
|
||||||
float g_game_timeleft;
|
float g_game_timeleft;
|
||||||
float g_task_time;
|
float g_task_time;
|
||||||
float g_auth_time;
|
float g_auth_time;
|
||||||
bool g_initialized = false;
|
|
||||||
|
|
||||||
#ifdef MEMORY_TEST
|
#ifdef MEMORY_TEST
|
||||||
float g_next_memreport_time;
|
float g_next_memreport_time;
|
||||||
@ -106,7 +105,6 @@ int g_srvindex;
|
|||||||
|
|
||||||
cvar_t init_amxmodx_version = {"amxmodx_version", "", FCVAR_SERVER | FCVAR_SPONLY};
|
cvar_t init_amxmodx_version = {"amxmodx_version", "", FCVAR_SERVER | FCVAR_SPONLY};
|
||||||
cvar_t init_amxmodx_modules = {"amxmodx_modules", "", FCVAR_SPONLY};
|
cvar_t init_amxmodx_modules = {"amxmodx_modules", "", FCVAR_SPONLY};
|
||||||
cvar_t init_amxmodx_debug = {"amx_debug", "1", FCVAR_SPONLY};
|
|
||||||
cvar_t* amxmodx_version = NULL;
|
cvar_t* amxmodx_version = NULL;
|
||||||
cvar_t* amxmodx_modules = NULL;
|
cvar_t* amxmodx_modules = NULL;
|
||||||
cvar_t* hostname = NULL;
|
cvar_t* hostname = NULL;
|
||||||
@ -201,8 +199,9 @@ const char* get_localinfo( const char* name , const char* def )
|
|||||||
// Initialize AMX stuff and load it's plugins from plugins.ini list
|
// Initialize AMX stuff and load it's plugins from plugins.ini list
|
||||||
// Call precache forward function from plugins
|
// Call precache forward function from plugins
|
||||||
int C_Spawn( edict_t *pent ) {
|
int C_Spawn( edict_t *pent ) {
|
||||||
if (g_initialized)
|
|
||||||
RETURN_META_VALUE(MRES_IGNORED, 0);
|
if ( g_initialized ) RETURN_META_VALUE(MRES_IGNORED, 0);
|
||||||
|
|
||||||
g_initialized = true;
|
g_initialized = true;
|
||||||
g_forcedmodules = false;
|
g_forcedmodules = false;
|
||||||
g_forcedsounds = false;
|
g_forcedsounds = false;
|
||||||
@ -212,7 +211,6 @@ int C_Spawn( edict_t *pent ) {
|
|||||||
hostname = CVAR_GET_POINTER("hostname");
|
hostname = CVAR_GET_POINTER("hostname");
|
||||||
mp_timelimit = CVAR_GET_POINTER("mp_timelimit");
|
mp_timelimit = CVAR_GET_POINTER("mp_timelimit");
|
||||||
|
|
||||||
g_forwards.clear();
|
|
||||||
|
|
||||||
g_log.MapChange();
|
g_log.MapChange();
|
||||||
|
|
||||||
@ -220,8 +218,8 @@ int C_Spawn( edict_t *pent ) {
|
|||||||
g_tasksMngr.registerTimers( &gpGlobals->time, &mp_timelimit->value, &g_game_timeleft );
|
g_tasksMngr.registerTimers( &gpGlobals->time, &mp_timelimit->value, &g_game_timeleft );
|
||||||
|
|
||||||
// ###### Load lang
|
// ###### Load lang
|
||||||
g_langMngr.LoadCache(build_pathname("%s/dictionary.cache", get_localinfo("amxx_datadir", "addons/amxmodx/data")));
|
g_langMngr.LoadCache(build_pathname("%s/dictionary.cache", get_localinfo("amxx_datadir", "addons/amxx/data")));
|
||||||
g_langMngr.Load(build_pathname("%s/languages.dat", get_localinfo("amxmodx_datadir", "addons/amxmodx/data")));
|
g_langMngr.Load(build_pathname("%s/languages.dat", get_localinfo("amxx_datadir", "addons/amxx/data")));
|
||||||
// ###### Initialize commands prefixes
|
// ###### Initialize commands prefixes
|
||||||
g_commands.registerPrefix( "amx" );
|
g_commands.registerPrefix( "amx" );
|
||||||
g_commands.registerPrefix( "amxx" );
|
g_commands.registerPrefix( "amxx" );
|
||||||
@ -231,14 +229,14 @@ int C_Spawn( edict_t *pent ) {
|
|||||||
g_commands.registerPrefix( "cm_" );
|
g_commands.registerPrefix( "cm_" );
|
||||||
|
|
||||||
// make sure localinfos are set
|
// make sure localinfos are set
|
||||||
get_localinfo("amxx_basedir", "addons/amxmodx");
|
get_localinfo("amxx_basedir", "addons/amxx");
|
||||||
get_localinfo("amxx_pluginsdir", "addons/amxmodx/plugins");
|
get_localinfo("amxx_pluginsdir", "addons/amxx/plugins");
|
||||||
get_localinfo("amxx_modulesdir", "addons/amxmodx/modules");
|
get_localinfo("amxx_modulesdir", "addons/amxx/modules");
|
||||||
get_localinfo("amxx_configsdir", "addons/amxmodx/configs");
|
get_localinfo("amxx_configsdir", "addons/amxx/configs");
|
||||||
get_localinfo("amxx_customdir", "addons/amxmodx/custom");
|
get_localinfo("amxx_customdir", "addons/amxx/custom");
|
||||||
|
|
||||||
// ###### Load modules
|
// ###### Load modules
|
||||||
loadModules(get_localinfo("amxx_modules", "addons/amxmodx/configs/modules.ini"));
|
loadModules(get_localinfo("amxx_modules", "addons/amxx/configs/modules.ini"));
|
||||||
attachModules();
|
attachModules();
|
||||||
int loaded = countModules(CountModules_Running); // Call after attachModules so all modules don't have pending stat
|
int loaded = countModules(CountModules_Running); // Call after attachModules so all modules don't have pending stat
|
||||||
// Set some info about amx version and modules
|
// Set some info about amx version and modules
|
||||||
@ -248,7 +246,7 @@ int C_Spawn( edict_t *pent ) {
|
|||||||
CVAR_SET_STRING(init_amxmodx_modules.name, buffer);
|
CVAR_SET_STRING(init_amxmodx_modules.name, buffer);
|
||||||
|
|
||||||
// ###### Load Vault
|
// ###### Load Vault
|
||||||
g_vault.setSource( build_pathname("%s", get_localinfo("amxx_vault", "addons/amxmodx/configs/vault.ini")) );
|
g_vault.setSource( build_pathname("%s", get_localinfo("amxx_vault", "addons/amxx/configs/vault.ini")) );
|
||||||
g_vault.loadVault( );
|
g_vault.loadVault( );
|
||||||
if (strlen(g_vault.get("server_language")) < 1)
|
if (strlen(g_vault.get("server_language")) < 1)
|
||||||
{
|
{
|
||||||
@ -270,11 +268,11 @@ int C_Spawn( edict_t *pent ) {
|
|||||||
memset(g_players[0].flags,-1,sizeof(g_players[0].flags));
|
memset(g_players[0].flags,-1,sizeof(g_players[0].flags));
|
||||||
|
|
||||||
// ###### Load AMX scripts
|
// ###### Load AMX scripts
|
||||||
g_plugins.loadPluginsFromFile( get_localinfo("amxx_plugins", "addons/amxmodx/configs/plugins.ini") );
|
g_plugins.loadPluginsFromFile( get_localinfo("amxx_plugins", "addons/amxx/configs/plugins.ini") );
|
||||||
|
|
||||||
// Register forwards
|
// Register forwards
|
||||||
FF_PluginInit = registerForward("plugin_init", ET_IGNORE, FP_DONE);
|
FF_PluginInit = registerForward("plugin_init", ET_IGNORE, FP_DONE);
|
||||||
FF_ClientCommand = registerForward("client_command", ET_STOP, FP_CELL, FP_DONE);
|
FF_ClientCommand = registerForward("client_command", ET_IGNORE, FP_CELL, FP_DONE);
|
||||||
FF_ClientConnect = registerForward("client_connect", ET_IGNORE, FP_CELL, FP_DONE);
|
FF_ClientConnect = registerForward("client_connect", ET_IGNORE, FP_CELL, FP_DONE);
|
||||||
FF_ClientDisconnect = registerForward("client_disconnect", ET_IGNORE, FP_CELL, FP_DONE);
|
FF_ClientDisconnect = registerForward("client_disconnect", ET_IGNORE, FP_CELL, FP_DONE);
|
||||||
FF_ClientInfoChanged = registerForward("client_infochanged", ET_IGNORE, FP_CELL, FP_DONE);
|
FF_ClientInfoChanged = registerForward("client_infochanged", ET_IGNORE, FP_CELL, FP_DONE);
|
||||||
@ -400,8 +398,8 @@ void C_ServerActivate_Post( edict_t *pEdictList, int edictCount, int clientMax )
|
|||||||
executeForwards(FF_PluginCfg);
|
executeForwards(FF_PluginCfg);
|
||||||
|
|
||||||
// ###### Save lang
|
// ###### Save lang
|
||||||
g_langMngr.Save(build_pathname("%s/languages.dat", get_localinfo("amxx_datadir", "addons/amxmodx/data")));
|
g_langMngr.Save(build_pathname("%s/languages.dat", get_localinfo("amxx_datadir", "addons/amxx/data")));
|
||||||
g_langMngr.SaveCache(build_pathname("%s/dictionary.cache", get_localinfo("amxx_datadir", "addons/amxmodx/data")));
|
g_langMngr.SaveCache(build_pathname("%s/dictionary.cache", get_localinfo("amxx_datadir", "addons/amxx/data")));
|
||||||
|
|
||||||
// Correct time in Counter-Strike and other mods (except DOD)
|
// Correct time in Counter-Strike and other mods (except DOD)
|
||||||
if ( !g_bmod_dod) g_game_timeleft = 0;
|
if ( !g_bmod_dod) g_game_timeleft = 0;
|
||||||
@ -442,30 +440,27 @@ void C_ServerDeactivate() {
|
|||||||
// However leave AMX modules which are loaded only once
|
// However leave AMX modules which are loaded only once
|
||||||
void C_ServerDeactivate_Post() {
|
void C_ServerDeactivate_Post() {
|
||||||
|
|
||||||
|
g_initialized = false;
|
||||||
|
|
||||||
detachReloadModules();
|
detachReloadModules();
|
||||||
|
|
||||||
g_auth.clear();
|
g_auth.clear();
|
||||||
|
g_forwards.clear();
|
||||||
g_commands.clear();
|
g_commands.clear();
|
||||||
g_forcemodels.clear();
|
g_forcemodels.clear();
|
||||||
g_forcesounds.clear();
|
g_forcesounds.clear();
|
||||||
g_forcegeneric.clear();
|
g_forcegeneric.clear();
|
||||||
g_grenades.clear();
|
g_grenades.clear();
|
||||||
g_tasksMngr.clear();
|
g_tasksMngr.clear();
|
||||||
g_forwards.clear();
|
|
||||||
g_logevents.clearLogEvents();
|
g_logevents.clearLogEvents();
|
||||||
g_events.clearEvents();
|
g_events.clearEvents();
|
||||||
g_menucmds.clear();
|
g_menucmds.clear();
|
||||||
g_vault.clear();
|
g_vault.clear();
|
||||||
g_xvars.clear();
|
g_xvars.clear();
|
||||||
g_plugins.clear();
|
g_plugins.clear();
|
||||||
g_langMngr.Save(build_pathname("%s/languages.dat", get_localinfo("amxx_datadir", "addons/amxmodx/data")));
|
g_langMngr.Save(build_pathname("%s/languages.dat", get_localinfo("amxx_datadir", "addons/amxx/data")));
|
||||||
g_langMngr.SaveCache(build_pathname("%s/dictionary.cache", get_localinfo("amxx_datadir", "addons/amxmodx/data")));
|
g_langMngr.SaveCache(build_pathname("%s/dictionary.cache", get_localinfo("amxx_datadir", "addons/amxx/data")));
|
||||||
g_langMngr.Clear();
|
g_langMngr.Clear();
|
||||||
//clear module name cache
|
|
||||||
while (!CurModuleList.empty())
|
|
||||||
{
|
|
||||||
CurModuleList.pop();
|
|
||||||
}
|
|
||||||
|
|
||||||
// last memreport
|
// last memreport
|
||||||
#ifdef MEMORY_TEST
|
#ifdef MEMORY_TEST
|
||||||
if (g_memreport_enabled)
|
if (g_memreport_enabled)
|
||||||
@ -478,14 +473,14 @@ void C_ServerDeactivate_Post() {
|
|||||||
tm *curTime = localtime(&td);
|
tm *curTime = localtime(&td);
|
||||||
int i = 0;
|
int i = 0;
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
mkdir(build_pathname("%s/memreports", get_localinfo("amxx_basedir", "addons/amxmodx")), 0700);
|
mkdir(build_pathname("%s/memreports", get_localinfo("amxx_basedir", "addons/amxx")), 0700);
|
||||||
#else
|
#else
|
||||||
mkdir(build_pathname("%s/memreports", get_localinfo("amxx_basedir", "addons/amxmodx")));
|
mkdir(build_pathname("%s/memreports", get_localinfo("amxx_basedir", "addons/amxx")));
|
||||||
#endif
|
#endif
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
char buffer[256];
|
char buffer[256];
|
||||||
sprintf(buffer, "%s/memreports/D%02d%02d%03d", get_localinfo("amxx_basedir", "addons/amxmodx"), curTime->tm_mon + 1, curTime->tm_mday, i);
|
sprintf(buffer, "%s/memreports/D%02d%02d%03d", get_localinfo("amxx_basedir", "addons/amxx"), curTime->tm_mon + 1, curTime->tm_mday, i);
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
mkdir(build_pathname("%s", g_log_dir.c_str()), 0700);
|
mkdir(build_pathname("%s", g_log_dir.c_str()), 0700);
|
||||||
if (mkdir(build_pathname(buffer), 0700) < 0)
|
if (mkdir(build_pathname(buffer), 0700) < 0)
|
||||||
@ -519,7 +514,6 @@ void C_ServerDeactivate_Post() {
|
|||||||
}
|
}
|
||||||
#endif // MEMORY_TEST
|
#endif // MEMORY_TEST
|
||||||
|
|
||||||
g_initialized = false;
|
|
||||||
RETURN_META(MRES_IGNORED);
|
RETURN_META(MRES_IGNORED);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -638,7 +632,8 @@ void C_ClientCommand( edict_t *pEntity ) {
|
|||||||
{
|
{
|
||||||
|
|
||||||
if ((err =amx_Exec((*aa).getPlugin()->getAMX(), &ret , (*aa).getFunction() , 3, pPlayer->index, (*aa).getFlags(),(*aa).getId() )) != AMX_ERR_NONE)
|
if ((err =amx_Exec((*aa).getPlugin()->getAMX(), &ret , (*aa).getFunction() , 3, pPlayer->index, (*aa).getFlags(),(*aa).getId() )) != AMX_ERR_NONE)
|
||||||
LogError((*aa).getPlugin()->getAMX(), err, "");
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (plugin \"%s\")",
|
||||||
|
err,(*aa).getPlugin()->getAMX()->curline,(*aa).getPlugin()->getName());
|
||||||
|
|
||||||
if ( ret & 2 ) result = MRES_SUPERCEDE;
|
if ( ret & 2 ) result = MRES_SUPERCEDE;
|
||||||
if ( ret & 1 ) RETURN_META(MRES_SUPERCEDE);
|
if ( ret & 1 ) RETURN_META(MRES_SUPERCEDE);
|
||||||
@ -677,7 +672,8 @@ void C_ClientCommand( edict_t *pEntity ) {
|
|||||||
{
|
{
|
||||||
|
|
||||||
if ( ( err = amx_Exec((*a).getPlugin()->getAMX(), &ret ,(*a).getFunction() , 2, pPlayer->index,pressed_key)) != AMX_ERR_NONE)
|
if ( ( err = amx_Exec((*a).getPlugin()->getAMX(), &ret ,(*a).getFunction() , 2, pPlayer->index,pressed_key)) != AMX_ERR_NONE)
|
||||||
LogError((*a).getPlugin()->getAMX(), err, "");
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (plugin \"%s\")",
|
||||||
|
err,(*a).getPlugin()->getAMX()->curline,(*a).getPlugin()->getName());
|
||||||
|
|
||||||
if ( ret & 2 ) result = MRES_SUPERCEDE;
|
if ( ret & 2 ) result = MRES_SUPERCEDE;
|
||||||
if ( ret & 1 ) RETURN_META(MRES_SUPERCEDE);
|
if ( ret & 1 ) RETURN_META(MRES_SUPERCEDE);
|
||||||
@ -742,14 +738,14 @@ void C_StartFrame_Post( void ) {
|
|||||||
tm *curTime = localtime(&td);
|
tm *curTime = localtime(&td);
|
||||||
int i = 0;
|
int i = 0;
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
mkdir(build_pathname("%s/memreports", get_localinfo("amxx_basedir", "addons/amxmodx")), 0700);
|
mkdir(build_pathname("%s/memreports", get_localinfo("amxx_basedir", "addons/amxx")), 0700);
|
||||||
#else
|
#else
|
||||||
mkdir(build_pathname("%s/memreports", get_localinfo("amxx_basedir", "addons/amxmodx")));
|
mkdir(build_pathname("%s/memreports", get_localinfo("amxx_basedir", "addons/amxx")));
|
||||||
#endif
|
#endif
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
char buffer[256];
|
char buffer[256];
|
||||||
sprintf(buffer, "%s/memreports/D%02d%02d%03d", get_localinfo("amxx_basedir", "addons/amxmodx"), curTime->tm_mon + 1, curTime->tm_mday, i);
|
sprintf(buffer, "%s/memreports/D%02d%02d%03d", get_localinfo("amxx_basedir", "addons/amxx"), curTime->tm_mon + 1, curTime->tm_mday, i);
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
mkdir(build_pathname("%s", g_log_dir.c_str()), 0700);
|
mkdir(build_pathname("%s", g_log_dir.c_str()), 0700);
|
||||||
if (mkdir(build_pathname(buffer), 0700) < 0)
|
if (mkdir(build_pathname(buffer), 0700) < 0)
|
||||||
@ -882,7 +878,7 @@ void C_MessageEnd_Post(void) {
|
|||||||
{
|
{
|
||||||
|
|
||||||
if ((err = amx_Exec((*a).getPlugin()->getAMX(), NULL , (*a).getFunction() , 1, mPlayerIndex /*g_events.getArgInteger(0)*/ )) != AMX_ERR_NONE)
|
if ((err = amx_Exec((*a).getPlugin()->getAMX(), NULL , (*a).getFunction() , 1, mPlayerIndex /*g_events.getArgInteger(0)*/ )) != AMX_ERR_NONE)
|
||||||
LogError((*a).getPlugin()->getAMX(), err, "");
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (plugin \"%s\")",err,(*a).getPlugin()->getAMX()->curline,(*a).getPlugin()->getName());
|
||||||
|
|
||||||
|
|
||||||
++a;
|
++a;
|
||||||
@ -1027,14 +1023,13 @@ C_DLLEXPORT int Meta_Attach(PLUG_LOADTIME now, META_FUNCTIONS *pFunctionTable, m
|
|||||||
gMetaFunctionTable.pfnGetEntityAPI2_Post = GetEntityAPI2_Post;
|
gMetaFunctionTable.pfnGetEntityAPI2_Post = GetEntityAPI2_Post;
|
||||||
gMetaFunctionTable.pfnGetEngineFunctions = GetEngineFunctions;
|
gMetaFunctionTable.pfnGetEngineFunctions = GetEngineFunctions;
|
||||||
gMetaFunctionTable.pfnGetEngineFunctions_Post = GetEngineFunctions_Post;
|
gMetaFunctionTable.pfnGetEngineFunctions_Post = GetEngineFunctions_Post;
|
||||||
gMetaFunctionTable.pfnGetNewDLLFunctions = GetNewDLLFunctions;
|
//gMetaFunctionTable.pfnGetNewDLLFunctions = GetNewDLLFunctions;
|
||||||
gMetaFunctionTable.pfnGetNewDLLFunctions_Post = GetNewDLLFunctions_Post;
|
//gMetaFunctionTable.pfnGetNewDLLFunctions_Post = GetNewDLLFunctions_Post;
|
||||||
|
|
||||||
memcpy(pFunctionTable, &gMetaFunctionTable, sizeof(META_FUNCTIONS));
|
memcpy(pFunctionTable, &gMetaFunctionTable, sizeof(META_FUNCTIONS));
|
||||||
gpGamedllFuncs=pGamedllFuncs;
|
gpGamedllFuncs=pGamedllFuncs;
|
||||||
CVAR_REGISTER(&init_amxmodx_version);
|
CVAR_REGISTER(&init_amxmodx_version);
|
||||||
CVAR_REGISTER(&init_amxmodx_modules);
|
CVAR_REGISTER(&init_amxmodx_modules);
|
||||||
CVAR_REGISTER(&init_amxmodx_debug);
|
|
||||||
amxmodx_version = CVAR_GET_POINTER(init_amxmodx_version.name);
|
amxmodx_version = CVAR_GET_POINTER(init_amxmodx_version.name);
|
||||||
REG_SVR_COMMAND("amxx",amx_command);
|
REG_SVR_COMMAND("amxx",amx_command);
|
||||||
|
|
||||||
@ -1055,7 +1050,7 @@ C_DLLEXPORT int Meta_Attach(PLUG_LOADTIME now, META_FUNCTIONS *pFunctionTable, m
|
|||||||
|
|
||||||
// ###### Load custom path configuration
|
// ###### Load custom path configuration
|
||||||
Vault amx_config;
|
Vault amx_config;
|
||||||
amx_config.setSource(build_pathname("%s", get_localinfo("amxx_cfg", "addons/amxmodx/configs/core.ini")));
|
amx_config.setSource(build_pathname("%s", get_localinfo("amxx_cfg", "addons/amxx/configs/core.ini")));
|
||||||
|
|
||||||
if ( amx_config.loadVault() ){
|
if ( amx_config.loadVault() ){
|
||||||
Vault::iterator a = amx_config.begin();
|
Vault::iterator a = amx_config.begin();
|
||||||
@ -1067,11 +1062,11 @@ C_DLLEXPORT int Meta_Attach(PLUG_LOADTIME now, META_FUNCTIONS *pFunctionTable, m
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ###### Initialize logging here
|
// ###### Initialize logging here
|
||||||
g_log_dir.assign(get_localinfo("amxx_logs", "addons/amxmodx/logs"));
|
g_log_dir.assign(get_localinfo("amxx_logs", "addons/amxx/logs"));
|
||||||
|
|
||||||
// ###### Now attach metamod modules
|
// ###### Now attach metamod modules
|
||||||
// This will also call modules Meta_Query and Meta_Attach functions
|
// This will also call modules Meta_Query and Meta_Attach functions
|
||||||
attachMetaModModules(now, get_localinfo("amxx_modules", "addons/amxmodx/configs/modules.ini") );
|
attachMetaModModules(now, get_localinfo("amxx_modules", "addons/amxx/configs/modules.ini") );
|
||||||
|
|
||||||
return(TRUE);
|
return(TRUE);
|
||||||
}
|
}
|
||||||
@ -1232,6 +1227,15 @@ C_DLLEXPORT int GetEngineFunctions(enginefuncs_t *pengfuncsFromEngine, int *inte
|
|||||||
meta_engfuncs.pfnChangeLevel = C_ChangeLevel;
|
meta_engfuncs.pfnChangeLevel = C_ChangeLevel;
|
||||||
|
|
||||||
return g_FakeMeta.GetEngineFunctions(pengfuncsFromEngine, interfaceVersion, &meta_engfuncs);
|
return g_FakeMeta.GetEngineFunctions(pengfuncsFromEngine, interfaceVersion, &meta_engfuncs);
|
||||||
|
/*
|
||||||
|
if(*interfaceVersion!=ENGINE_INTERFACE_VERSION) {
|
||||||
|
LOG_ERROR(PLID, "GetEngineFunctions version mismatch; requested=%d ours=%d", *interfaceVersion, ENGINE_INTERFACE_VERSION);
|
||||||
|
*interfaceVersion = ENGINE_INTERFACE_VERSION;
|
||||||
|
return(FALSE);
|
||||||
|
}
|
||||||
|
memcpy(pengfuncsFromEngine, &meta_engfuncs, sizeof(enginefuncs_t));
|
||||||
|
return(TRUE);
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
enginefuncs_t meta_engfuncs_post;
|
enginefuncs_t meta_engfuncs_post;
|
||||||
@ -1274,6 +1278,15 @@ C_DLLEXPORT int GetEngineFunctions_Post(enginefuncs_t *pengfuncsFromEngine, int
|
|||||||
++iter;
|
++iter;
|
||||||
}
|
}
|
||||||
return g_FakeMeta.GetEngineFunctions_Post(pengfuncsFromEngine, interfaceVersion, &meta_engfuncs_post);
|
return g_FakeMeta.GetEngineFunctions_Post(pengfuncsFromEngine, interfaceVersion, &meta_engfuncs_post);
|
||||||
|
/*
|
||||||
|
if(*interfaceVersion!=ENGINE_INTERFACE_VERSION) {
|
||||||
|
LOG_ERROR(PLID, "GetEngineFunctions_Post version mismatch; requested=%d ours=%d", *interfaceVersion, ENGINE_INTERFACE_VERSION);
|
||||||
|
*interfaceVersion = ENGINE_INTERFACE_VERSION;
|
||||||
|
return(FALSE);
|
||||||
|
}
|
||||||
|
memcpy(pengfuncsFromEngine, &meta_engfuncs_post, sizeof(enginefuncs_t));
|
||||||
|
return(TRUE);
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
NEW_DLL_FUNCTIONS gNewDLLFunctionTable;
|
NEW_DLL_FUNCTIONS gNewDLLFunctionTable;
|
||||||
|
451
amxmodx/minilzo/lzoconf.h
Executable file
451
amxmodx/minilzo/lzoconf.h
Executable file
@ -0,0 +1,451 @@
|
|||||||
|
/* lzoconf.h -- configuration for the LZO real-time data compression library
|
||||||
|
|
||||||
|
This file is part of the LZO real-time data compression library.
|
||||||
|
|
||||||
|
Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
All Rights Reserved.
|
||||||
|
|
||||||
|
The LZO library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License as
|
||||||
|
published by the Free Software Foundation; either version 2 of
|
||||||
|
the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
The LZO library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with the LZO library; see the file COPYING.
|
||||||
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
Markus F.X.J. Oberhumer
|
||||||
|
<markus@oberhumer.com>
|
||||||
|
http://www.oberhumer.com/opensource/lzo/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __LZOCONF_H
|
||||||
|
#define __LZOCONF_H
|
||||||
|
|
||||||
|
#define LZO_VERSION 0x1080
|
||||||
|
#define LZO_VERSION_STRING "1.08"
|
||||||
|
#define LZO_VERSION_DATE "Jul 12 2002"
|
||||||
|
|
||||||
|
/* internal Autoconf configuration file - only used when building LZO */
|
||||||
|
#if defined(LZO_HAVE_CONFIG_H)
|
||||||
|
# include <config.h>
|
||||||
|
#endif
|
||||||
|
#include <limits.h>
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
// LZO requires a conforming <limits.h>
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
#if !defined(CHAR_BIT) || (CHAR_BIT != 8)
|
||||||
|
# error "invalid CHAR_BIT"
|
||||||
|
#endif
|
||||||
|
#if !defined(UCHAR_MAX) || !defined(UINT_MAX) || !defined(ULONG_MAX)
|
||||||
|
# error "check your compiler installation"
|
||||||
|
#endif
|
||||||
|
#if (USHRT_MAX < 1) || (UINT_MAX < 1) || (ULONG_MAX < 1)
|
||||||
|
# error "your limits.h macros are broken"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* workaround a cpp bug under hpux 10.20 */
|
||||||
|
#define LZO_0xffffffffL 4294967295ul
|
||||||
|
|
||||||
|
#if !defined(LZO_UINT32_C)
|
||||||
|
# if (UINT_MAX < LZO_0xffffffffL)
|
||||||
|
# define LZO_UINT32_C(c) c ## UL
|
||||||
|
# else
|
||||||
|
# define LZO_UINT32_C(c) c ## U
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
// architecture defines
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
#if !defined(__LZO_WIN) && !defined(__LZO_DOS) && !defined(__LZO_OS2)
|
||||||
|
# if defined(__WINDOWS__) || defined(_WINDOWS) || defined(_Windows)
|
||||||
|
# define __LZO_WIN
|
||||||
|
# elif defined(__WIN32__) || defined(_WIN32) || defined(WIN32)
|
||||||
|
# define __LZO_WIN
|
||||||
|
# elif defined(__NT__) || defined(__NT_DLL__) || defined(__WINDOWS_386__)
|
||||||
|
# define __LZO_WIN
|
||||||
|
# elif defined(__DOS__) || defined(__MSDOS__) || defined(MSDOS)
|
||||||
|
# define __LZO_DOS
|
||||||
|
# elif defined(__OS2__) || defined(__OS2V2__) || defined(OS2)
|
||||||
|
# define __LZO_OS2
|
||||||
|
# elif defined(__palmos__)
|
||||||
|
# define __LZO_PALMOS
|
||||||
|
# elif defined(__TOS__) || defined(__atarist__)
|
||||||
|
# define __LZO_TOS
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if (UINT_MAX < LZO_0xffffffffL)
|
||||||
|
# if defined(__LZO_WIN)
|
||||||
|
# define __LZO_WIN16
|
||||||
|
# elif defined(__LZO_DOS)
|
||||||
|
# define __LZO_DOS16
|
||||||
|
# elif defined(__LZO_PALMOS)
|
||||||
|
# define __LZO_PALMOS16
|
||||||
|
# elif defined(__LZO_TOS)
|
||||||
|
# define __LZO_TOS16
|
||||||
|
# elif defined(__C166__)
|
||||||
|
# else
|
||||||
|
/* porting hint: for pure 16-bit architectures try compiling
|
||||||
|
* everything with -D__LZO_STRICT_16BIT */
|
||||||
|
# error "16-bit target not supported - contact me for porting hints"
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__LZO_i386)
|
||||||
|
# if defined(__LZO_DOS) || defined(__LZO_WIN16)
|
||||||
|
# define __LZO_i386
|
||||||
|
# elif defined(__i386__) || defined(__386__) || defined(_M_IX86)
|
||||||
|
# define __LZO_i386
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__LZO_STRICT_16BIT)
|
||||||
|
# if (UINT_MAX < LZO_0xffffffffL)
|
||||||
|
# include <lzo16bit.h>
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* memory checkers */
|
||||||
|
#if !defined(__LZO_CHECKER)
|
||||||
|
# if defined(__BOUNDS_CHECKING_ON)
|
||||||
|
# define __LZO_CHECKER
|
||||||
|
# elif defined(__CHECKER__)
|
||||||
|
# define __LZO_CHECKER
|
||||||
|
# elif defined(__INSURE__)
|
||||||
|
# define __LZO_CHECKER
|
||||||
|
# elif defined(__PURIFY__)
|
||||||
|
# define __LZO_CHECKER
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
// integral and pointer types
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
/* Integral types with 32 bits or more */
|
||||||
|
#if !defined(LZO_UINT32_MAX)
|
||||||
|
# if (UINT_MAX >= LZO_0xffffffffL)
|
||||||
|
typedef unsigned int lzo_uint32;
|
||||||
|
typedef int lzo_int32;
|
||||||
|
# define LZO_UINT32_MAX UINT_MAX
|
||||||
|
# define LZO_INT32_MAX INT_MAX
|
||||||
|
# define LZO_INT32_MIN INT_MIN
|
||||||
|
# elif (ULONG_MAX >= LZO_0xffffffffL)
|
||||||
|
typedef unsigned long lzo_uint32;
|
||||||
|
typedef long lzo_int32;
|
||||||
|
# define LZO_UINT32_MAX ULONG_MAX
|
||||||
|
# define LZO_INT32_MAX LONG_MAX
|
||||||
|
# define LZO_INT32_MIN LONG_MIN
|
||||||
|
# else
|
||||||
|
# error "lzo_uint32"
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* lzo_uint is used like size_t */
|
||||||
|
#if !defined(LZO_UINT_MAX)
|
||||||
|
# if (UINT_MAX >= LZO_0xffffffffL)
|
||||||
|
typedef unsigned int lzo_uint;
|
||||||
|
typedef int lzo_int;
|
||||||
|
# define LZO_UINT_MAX UINT_MAX
|
||||||
|
# define LZO_INT_MAX INT_MAX
|
||||||
|
# define LZO_INT_MIN INT_MIN
|
||||||
|
# elif (ULONG_MAX >= LZO_0xffffffffL)
|
||||||
|
typedef unsigned long lzo_uint;
|
||||||
|
typedef long lzo_int;
|
||||||
|
# define LZO_UINT_MAX ULONG_MAX
|
||||||
|
# define LZO_INT_MAX LONG_MAX
|
||||||
|
# define LZO_INT_MIN LONG_MIN
|
||||||
|
# else
|
||||||
|
# error "lzo_uint"
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef int lzo_bool;
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
// memory models
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
/* Memory model for the public code segment. */
|
||||||
|
#if !defined(__LZO_CMODEL)
|
||||||
|
# if defined(__LZO_DOS16) || defined(__LZO_WIN16)
|
||||||
|
# define __LZO_CMODEL __far
|
||||||
|
# elif defined(__LZO_i386) && defined(__WATCOMC__)
|
||||||
|
# define __LZO_CMODEL __near
|
||||||
|
# else
|
||||||
|
# define __LZO_CMODEL
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Memory model for the public data segment. */
|
||||||
|
#if !defined(__LZO_DMODEL)
|
||||||
|
# if defined(__LZO_DOS16) || defined(__LZO_WIN16)
|
||||||
|
# define __LZO_DMODEL __far
|
||||||
|
# elif defined(__LZO_i386) && defined(__WATCOMC__)
|
||||||
|
# define __LZO_DMODEL __near
|
||||||
|
# else
|
||||||
|
# define __LZO_DMODEL
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Memory model that allows to access memory at offsets of lzo_uint. */
|
||||||
|
#if !defined(__LZO_MMODEL)
|
||||||
|
# if (LZO_UINT_MAX <= UINT_MAX)
|
||||||
|
# define __LZO_MMODEL
|
||||||
|
# elif defined(__LZO_DOS16) || defined(__LZO_WIN16)
|
||||||
|
# define __LZO_MMODEL __huge
|
||||||
|
# define LZO_999_UNSUPPORTED
|
||||||
|
# elif defined(__LZO_PALMOS16) || defined(__LZO_TOS16)
|
||||||
|
# define __LZO_MMODEL
|
||||||
|
# else
|
||||||
|
# error "__LZO_MMODEL"
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* no typedef here because of const-pointer issues */
|
||||||
|
#define lzo_byte unsigned char __LZO_MMODEL
|
||||||
|
#define lzo_bytep unsigned char __LZO_MMODEL *
|
||||||
|
#define lzo_charp char __LZO_MMODEL *
|
||||||
|
#define lzo_voidp void __LZO_MMODEL *
|
||||||
|
#define lzo_shortp short __LZO_MMODEL *
|
||||||
|
#define lzo_ushortp unsigned short __LZO_MMODEL *
|
||||||
|
#define lzo_uint32p lzo_uint32 __LZO_MMODEL *
|
||||||
|
#define lzo_int32p lzo_int32 __LZO_MMODEL *
|
||||||
|
#define lzo_uintp lzo_uint __LZO_MMODEL *
|
||||||
|
#define lzo_intp lzo_int __LZO_MMODEL *
|
||||||
|
#define lzo_voidpp lzo_voidp __LZO_MMODEL *
|
||||||
|
#define lzo_bytepp lzo_bytep __LZO_MMODEL *
|
||||||
|
|
||||||
|
#ifndef lzo_sizeof_dict_t
|
||||||
|
# define lzo_sizeof_dict_t sizeof(lzo_bytep)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
// calling conventions and function types
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
/* linkage */
|
||||||
|
#if !defined(__LZO_EXTERN_C)
|
||||||
|
# ifdef __cplusplus
|
||||||
|
# define __LZO_EXTERN_C extern "C"
|
||||||
|
# else
|
||||||
|
# define __LZO_EXTERN_C extern
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* calling convention */
|
||||||
|
#if !defined(__LZO_CDECL)
|
||||||
|
# if defined(__LZO_DOS16) || defined(__LZO_WIN16)
|
||||||
|
# define __LZO_CDECL __LZO_CMODEL __cdecl
|
||||||
|
# elif defined(__LZO_i386) && defined(_MSC_VER)
|
||||||
|
# define __LZO_CDECL __LZO_CMODEL __cdecl
|
||||||
|
# elif defined(__LZO_i386) && defined(__WATCOMC__)
|
||||||
|
# define __LZO_CDECL __LZO_CMODEL __cdecl
|
||||||
|
# else
|
||||||
|
# define __LZO_CDECL __LZO_CMODEL
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
#if !defined(__LZO_ENTRY)
|
||||||
|
# define __LZO_ENTRY __LZO_CDECL
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* C++ exception specification for extern "C" function types */
|
||||||
|
#if !defined(__cplusplus)
|
||||||
|
# undef LZO_NOTHROW
|
||||||
|
# define LZO_NOTHROW
|
||||||
|
#elif !defined(LZO_NOTHROW)
|
||||||
|
# define LZO_NOTHROW
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
typedef int
|
||||||
|
(__LZO_ENTRY *lzo_compress_t) ( const lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem );
|
||||||
|
|
||||||
|
typedef int
|
||||||
|
(__LZO_ENTRY *lzo_decompress_t) ( const lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem );
|
||||||
|
|
||||||
|
typedef int
|
||||||
|
(__LZO_ENTRY *lzo_optimize_t) ( lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem );
|
||||||
|
|
||||||
|
typedef int
|
||||||
|
(__LZO_ENTRY *lzo_compress_dict_t)(const lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem,
|
||||||
|
const lzo_byte *dict, lzo_uint dict_len );
|
||||||
|
|
||||||
|
typedef int
|
||||||
|
(__LZO_ENTRY *lzo_decompress_dict_t)(const lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem,
|
||||||
|
const lzo_byte *dict, lzo_uint dict_len );
|
||||||
|
|
||||||
|
|
||||||
|
/* assembler versions always use __cdecl */
|
||||||
|
typedef int
|
||||||
|
(__LZO_CDECL *lzo_compress_asm_t)( const lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem );
|
||||||
|
|
||||||
|
typedef int
|
||||||
|
(__LZO_CDECL *lzo_decompress_asm_t)( const lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem );
|
||||||
|
|
||||||
|
|
||||||
|
/* a progress indicator callback function */
|
||||||
|
typedef void (__LZO_ENTRY *lzo_progress_callback_t) (lzo_uint, lzo_uint);
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
// export information
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
/* DLL export information */
|
||||||
|
#if !defined(__LZO_EXPORT1)
|
||||||
|
# define __LZO_EXPORT1
|
||||||
|
#endif
|
||||||
|
#if !defined(__LZO_EXPORT2)
|
||||||
|
# define __LZO_EXPORT2
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* exported calling convention for C functions */
|
||||||
|
#if !defined(LZO_PUBLIC)
|
||||||
|
# define LZO_PUBLIC(_rettype) \
|
||||||
|
__LZO_EXPORT1 _rettype __LZO_EXPORT2 __LZO_ENTRY
|
||||||
|
#endif
|
||||||
|
#if !defined(LZO_EXTERN)
|
||||||
|
# define LZO_EXTERN(_rettype) __LZO_EXTERN_C LZO_PUBLIC(_rettype)
|
||||||
|
#endif
|
||||||
|
#if !defined(LZO_PRIVATE)
|
||||||
|
# define LZO_PRIVATE(_rettype) static _rettype __LZO_ENTRY
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* exported __cdecl calling convention for assembler functions */
|
||||||
|
#if !defined(LZO_PUBLIC_CDECL)
|
||||||
|
# define LZO_PUBLIC_CDECL(_rettype) \
|
||||||
|
__LZO_EXPORT1 _rettype __LZO_EXPORT2 __LZO_CDECL
|
||||||
|
#endif
|
||||||
|
#if !defined(LZO_EXTERN_CDECL)
|
||||||
|
# define LZO_EXTERN_CDECL(_rettype) __LZO_EXTERN_C LZO_PUBLIC_CDECL(_rettype)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* exported global variables (LZO currently uses no static variables and
|
||||||
|
* is fully thread safe) */
|
||||||
|
#if !defined(LZO_PUBLIC_VAR)
|
||||||
|
# define LZO_PUBLIC_VAR(_type) \
|
||||||
|
__LZO_EXPORT1 _type __LZO_EXPORT2 __LZO_DMODEL
|
||||||
|
#endif
|
||||||
|
#if !defined(LZO_EXTERN_VAR)
|
||||||
|
# define LZO_EXTERN_VAR(_type) extern LZO_PUBLIC_VAR(_type)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
// error codes and prototypes
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
/* Error codes for the compression/decompression functions. Negative
|
||||||
|
* values are errors, positive values will be used for special but
|
||||||
|
* normal events.
|
||||||
|
*/
|
||||||
|
#define LZO_E_OK 0
|
||||||
|
#define LZO_E_ERROR (-1)
|
||||||
|
#define LZO_E_OUT_OF_MEMORY (-2) /* not used right now */
|
||||||
|
#define LZO_E_NOT_COMPRESSIBLE (-3) /* not used right now */
|
||||||
|
#define LZO_E_INPUT_OVERRUN (-4)
|
||||||
|
#define LZO_E_OUTPUT_OVERRUN (-5)
|
||||||
|
#define LZO_E_LOOKBEHIND_OVERRUN (-6)
|
||||||
|
#define LZO_E_EOF_NOT_FOUND (-7)
|
||||||
|
#define LZO_E_INPUT_NOT_CONSUMED (-8)
|
||||||
|
|
||||||
|
|
||||||
|
/* lzo_init() should be the first function you call.
|
||||||
|
* Check the return code !
|
||||||
|
*
|
||||||
|
* lzo_init() is a macro to allow checking that the library and the
|
||||||
|
* compiler's view of various types are consistent.
|
||||||
|
*/
|
||||||
|
#define lzo_init() __lzo_init2(LZO_VERSION,(int)sizeof(short),(int)sizeof(int),\
|
||||||
|
(int)sizeof(long),(int)sizeof(lzo_uint32),(int)sizeof(lzo_uint),\
|
||||||
|
(int)lzo_sizeof_dict_t,(int)sizeof(char *),(int)sizeof(lzo_voidp),\
|
||||||
|
(int)sizeof(lzo_compress_t))
|
||||||
|
LZO_EXTERN(int) __lzo_init2(unsigned,int,int,int,int,int,int,int,int,int);
|
||||||
|
|
||||||
|
/* version functions (useful for shared libraries) */
|
||||||
|
LZO_EXTERN(unsigned) lzo_version(void);
|
||||||
|
LZO_EXTERN(const char *) lzo_version_string(void);
|
||||||
|
LZO_EXTERN(const char *) lzo_version_date(void);
|
||||||
|
LZO_EXTERN(const lzo_charp) _lzo_version_string(void);
|
||||||
|
LZO_EXTERN(const lzo_charp) _lzo_version_date(void);
|
||||||
|
|
||||||
|
/* string functions */
|
||||||
|
LZO_EXTERN(int)
|
||||||
|
lzo_memcmp(const lzo_voidp _s1, const lzo_voidp _s2, lzo_uint _len);
|
||||||
|
LZO_EXTERN(lzo_voidp)
|
||||||
|
lzo_memcpy(lzo_voidp _dest, const lzo_voidp _src, lzo_uint _len);
|
||||||
|
LZO_EXTERN(lzo_voidp)
|
||||||
|
lzo_memmove(lzo_voidp _dest, const lzo_voidp _src, lzo_uint _len);
|
||||||
|
LZO_EXTERN(lzo_voidp)
|
||||||
|
lzo_memset(lzo_voidp _s, int _c, lzo_uint _len);
|
||||||
|
|
||||||
|
/* checksum functions */
|
||||||
|
LZO_EXTERN(lzo_uint32)
|
||||||
|
lzo_adler32(lzo_uint32 _adler, const lzo_byte *_buf, lzo_uint _len);
|
||||||
|
LZO_EXTERN(lzo_uint32)
|
||||||
|
lzo_crc32(lzo_uint32 _c, const lzo_byte *_buf, lzo_uint _len);
|
||||||
|
|
||||||
|
/* misc. */
|
||||||
|
LZO_EXTERN(lzo_bool) lzo_assert(int _expr);
|
||||||
|
LZO_EXTERN(int) _lzo_config_check(void);
|
||||||
|
typedef union { lzo_bytep p; lzo_uint u; } __lzo_pu_u;
|
||||||
|
typedef union { lzo_bytep p; lzo_uint32 u32; } __lzo_pu32_u;
|
||||||
|
typedef union { void *vp; lzo_bytep bp; lzo_uint32 u32; long l; } lzo_align_t;
|
||||||
|
|
||||||
|
/* align a char pointer on a boundary that is a multiple of `size' */
|
||||||
|
LZO_EXTERN(unsigned) __lzo_align_gap(const lzo_voidp _ptr, lzo_uint _size);
|
||||||
|
#define LZO_PTR_ALIGN_UP(_ptr,_size) \
|
||||||
|
((_ptr) + (lzo_uint) __lzo_align_gap((const lzo_voidp)(_ptr),(lzo_uint)(_size)))
|
||||||
|
|
||||||
|
/* deprecated - only for backward compatibility */
|
||||||
|
#define LZO_ALIGN(_ptr,_size) LZO_PTR_ALIGN_UP(_ptr,_size)
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
} /* extern "C" */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* already included */
|
||||||
|
|
2935
amxmodx/minilzo/minilzo.c
Executable file
2935
amxmodx/minilzo/minilzo.c
Executable file
File diff suppressed because it is too large
Load Diff
100
amxmodx/minilzo/minilzo.h
Executable file
100
amxmodx/minilzo/minilzo.h
Executable file
@ -0,0 +1,100 @@
|
|||||||
|
/* minilzo.h -- mini subset of the LZO real-time data compression library
|
||||||
|
|
||||||
|
This file is part of the LZO real-time data compression library.
|
||||||
|
|
||||||
|
Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
|
||||||
|
All Rights Reserved.
|
||||||
|
|
||||||
|
The LZO library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU General Public License as
|
||||||
|
published by the Free Software Foundation; either version 2 of
|
||||||
|
the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
The LZO library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with the LZO library; see the file COPYING.
|
||||||
|
If not, write to the Free Software Foundation, Inc.,
|
||||||
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
Markus F.X.J. Oberhumer
|
||||||
|
<markus@oberhumer.com>
|
||||||
|
http://www.oberhumer.com/opensource/lzo/
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* NOTE:
|
||||||
|
* the full LZO package can be found at
|
||||||
|
* http://www.oberhumer.com/opensource/lzo/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __MINILZO_H
|
||||||
|
#define __MINILZO_H
|
||||||
|
|
||||||
|
#define MINILZO_VERSION 0x1080
|
||||||
|
|
||||||
|
#ifdef __LZOCONF_H
|
||||||
|
# error "you cannot use both LZO and miniLZO"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#undef LZO_HAVE_CONFIG_H
|
||||||
|
#include "lzoconf.h"
|
||||||
|
|
||||||
|
#if !defined(LZO_VERSION) || (LZO_VERSION != MINILZO_VERSION)
|
||||||
|
# error "version mismatch in header files"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
//
|
||||||
|
************************************************************************/
|
||||||
|
|
||||||
|
/* Memory required for the wrkmem parameter.
|
||||||
|
* When the required size is 0, you can also pass a NULL pointer.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define LZO1X_MEM_COMPRESS LZO1X_1_MEM_COMPRESS
|
||||||
|
#define LZO1X_1_MEM_COMPRESS ((lzo_uint32) (16384L * lzo_sizeof_dict_t))
|
||||||
|
#define LZO1X_MEM_DECOMPRESS (0)
|
||||||
|
|
||||||
|
|
||||||
|
/* compression */
|
||||||
|
LZO_EXTERN(int)
|
||||||
|
lzo1x_1_compress ( const lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem );
|
||||||
|
|
||||||
|
/* decompression */
|
||||||
|
LZO_EXTERN(int)
|
||||||
|
lzo1x_decompress ( const lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem /* NOT USED */ );
|
||||||
|
|
||||||
|
/* safe decompression with overrun testing */
|
||||||
|
LZO_EXTERN(int)
|
||||||
|
lzo1x_decompress_safe ( const lzo_byte *src, lzo_uint src_len,
|
||||||
|
lzo_byte *dst, lzo_uintp dst_len,
|
||||||
|
lzo_voidp wrkmem /* NOT USED */ );
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
} /* extern "C" */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* already included */
|
||||||
|
|
@ -34,7 +34,7 @@
|
|||||||
#include "CFile.h"
|
#include "CFile.h"
|
||||||
#include "amxxfile.h"
|
#include "amxxfile.h"
|
||||||
|
|
||||||
CList<CModule,const char*> g_modules;
|
CList<CModule> g_modules;
|
||||||
CList<CScript,AMX*> g_loadedscripts;
|
CList<CScript,AMX*> g_loadedscripts;
|
||||||
|
|
||||||
CModule *g_CurrentlyCalledModule = NULL; // The module we are in at the moment; NULL otherwise
|
CModule *g_CurrentlyCalledModule = NULL; // The module we are in at the moment; NULL otherwise
|
||||||
@ -44,6 +44,7 @@ ModuleCallReason g_ModuleCallReason;
|
|||||||
|
|
||||||
extern const char* no_function; // stupid work around
|
extern const char* no_function; // stupid work around
|
||||||
|
|
||||||
|
|
||||||
void report_error( int code, char* fmt, ... )
|
void report_error( int code, char* fmt, ... )
|
||||||
{
|
{
|
||||||
va_list argptr;
|
va_list argptr;
|
||||||
@ -87,7 +88,7 @@ void free_amxmemory(void **ptr)
|
|||||||
*ptr = 0;
|
*ptr = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int load_amxscript(AMX *amx, void **program, const char *filename, char error[64], int debug)
|
int load_amxscript(AMX *amx, void **program, const char *filename, char error[64])
|
||||||
{
|
{
|
||||||
*error = 0;
|
*error = 0;
|
||||||
CAmxxReader reader(filename, SMALL_CELL_SIZE / 8);
|
CAmxxReader reader(filename, SMALL_CELL_SIZE / 8);
|
||||||
@ -131,8 +132,6 @@ int load_amxscript(AMX *amx, void **program, const char *filename, char error[64
|
|||||||
case CAmxxReader::Err_Decompress:
|
case CAmxxReader::Err_Decompress:
|
||||||
strcpy(error, "Internal error: Decompress");
|
strcpy(error, "Internal error: Decompress");
|
||||||
return (amx->error = AMX_ERR_NOTFOUND);
|
return (amx->error = AMX_ERR_NOTFOUND);
|
||||||
case CAmxxReader::Err_OldFile:
|
|
||||||
strcpy(error, "Plugin uses deprecated format. Update compiler");
|
|
||||||
default:
|
default:
|
||||||
strcpy(error, "Unknown error");
|
strcpy(error, "Unknown error");
|
||||||
return (amx->error = AMX_ERR_NOTFOUND);
|
return (amx->error = AMX_ERR_NOTFOUND);
|
||||||
@ -148,13 +147,6 @@ int load_amxscript(AMX *amx, void **program, const char *filename, char error[64
|
|||||||
return (amx->error = AMX_ERR_FORMAT);
|
return (amx->error = AMX_ERR_FORMAT);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( (int)CVAR_GET_FLOAT("amx_debug") >= 2 || debug)
|
|
||||||
{
|
|
||||||
//automatic debug mode
|
|
||||||
hdr->flags |= AMX_FLAG_LINEOPS;
|
|
||||||
hdr->flags |= AMX_FLAG_DEBUG;
|
|
||||||
}
|
|
||||||
|
|
||||||
int err;
|
int err;
|
||||||
memset(amx, 0, sizeof(*amx));
|
memset(amx, 0, sizeof(*amx));
|
||||||
if ((err = amx_Init( amx, *program )) != AMX_ERR_NONE)
|
if ((err = amx_Init( amx, *program )) != AMX_ERR_NONE)
|
||||||
@ -163,6 +155,7 @@ int load_amxscript(AMX *amx, void **program, const char *filename, char error[64
|
|||||||
return (amx->error = AMX_ERR_INIT);
|
return (amx->error = AMX_ERR_INIT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#ifdef JIT
|
#ifdef JIT
|
||||||
void *np = new char[ amx->code_size ];
|
void *np = new char[ amx->code_size ];
|
||||||
void *rt = new char[ amx->reloc_size ];
|
void *rt = new char[ amx->reloc_size ];
|
||||||
@ -212,96 +205,9 @@ int load_amxscript(AMX *amx, void **program, const char *filename, char error[64
|
|||||||
return set_amxnatives(amx,error);
|
return set_amxnatives(amx,error);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *StrCaseStr(const char *as, const char *bs)
|
|
||||||
{
|
|
||||||
static char a[256];
|
|
||||||
static char b[256];
|
|
||||||
unsigned int i = 0;
|
|
||||||
unsigned int len = strlen(as);
|
|
||||||
|
|
||||||
if (len > 254)
|
|
||||||
len = 254;
|
|
||||||
|
|
||||||
for (i=0; i<len; i++)
|
|
||||||
{
|
|
||||||
a[i] = tolower(as[i]);
|
|
||||||
}
|
|
||||||
a[len] = 0;
|
|
||||||
|
|
||||||
len = strlen(bs);
|
|
||||||
|
|
||||||
if (len > 254)
|
|
||||||
len = 254;
|
|
||||||
|
|
||||||
for (i=0; i<len; i++)
|
|
||||||
{
|
|
||||||
b[i] = tolower(bs[i]);
|
|
||||||
}
|
|
||||||
b[len] = 0;
|
|
||||||
|
|
||||||
return strstr(a,b);
|
|
||||||
}
|
|
||||||
|
|
||||||
//BAILOPAN
|
|
||||||
int CheckModules(AMX *amx, char error[64])
|
|
||||||
{
|
|
||||||
int idx = 0, flag = -1;
|
|
||||||
if (amx_FindPublic(amx, "plugin_modules", &idx) == AMX_ERR_NONE)
|
|
||||||
{
|
|
||||||
cell retVal = 0;
|
|
||||||
int err = 0;
|
|
||||||
if ( (err = amx_Exec(amx, &retVal, idx, 0)) == AMX_ERR_NONE )
|
|
||||||
{
|
|
||||||
unsigned int i = 0;
|
|
||||||
while (!CurModuleList.empty())
|
|
||||||
{
|
|
||||||
if (!flag)
|
|
||||||
{
|
|
||||||
CurModuleList.pop();
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
//assume module is not found
|
|
||||||
flag = 0;
|
|
||||||
for (CList<CModule,const char *>::iterator pMod = g_modules.begin(); pMod; ++pMod)
|
|
||||||
{
|
|
||||||
if (strcmpi(CurModuleList.front().c_str(), "dbi") == 0)
|
|
||||||
{
|
|
||||||
if (StrCaseStr( (*pMod).getName(), "sql") || strstr( (*pMod).getName(), "dbi" ))
|
|
||||||
{
|
|
||||||
// the module checks in
|
|
||||||
flag = 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (strcmpi( (*pMod).getName(), CurModuleList.front().c_str() ) == 0)
|
|
||||||
{
|
|
||||||
flag = 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//module was not found
|
|
||||||
if (!flag)
|
|
||||||
{
|
|
||||||
sprintf(error, "Module \"%s\" required for plugin. Check modules.ini.", CurModuleList.front().c_str());
|
|
||||||
}
|
|
||||||
CurModuleList.pop();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
AMXXLOG_Log("[AMXX] Run time error %d on line %ld during module check.", err, amx->curline);
|
|
||||||
//could not execute
|
|
||||||
return -1; //bad! very bad!
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
return flag;
|
|
||||||
}
|
|
||||||
|
|
||||||
int set_amxnatives(AMX* amx,char error[64])
|
int set_amxnatives(AMX* amx,char error[64])
|
||||||
{
|
{
|
||||||
for ( CList<CModule,const char *>::iterator a = g_modules.begin(); a ; ++a )
|
for ( CList<CModule>::iterator a = g_modules.begin(); a ; ++a )
|
||||||
{
|
{
|
||||||
for( CList<AMX_NATIVE_INFO*>::iterator cc =
|
for( CList<AMX_NATIVE_INFO*>::iterator cc =
|
||||||
(*a).m_Natives.begin(); cc; ++cc )
|
(*a).m_Natives.begin(); cc; ++cc )
|
||||||
@ -318,29 +224,14 @@ int set_amxnatives(AMX* amx,char error[64])
|
|||||||
|
|
||||||
if ( amx_Register(amx, core_Natives, -1) != AMX_ERR_NONE )
|
if ( amx_Register(amx, core_Natives, -1) != AMX_ERR_NONE )
|
||||||
{
|
{
|
||||||
//HACKHACK - if we get here, nullify the plugin's native table
|
sprintf(error,"Function not found (name \"%s\")",no_function);
|
||||||
//then reregister the one native we need
|
|
||||||
// - BAILOPAN
|
|
||||||
String save;
|
|
||||||
save.assign(no_function);
|
|
||||||
amx_NullNativeTable(amx);
|
|
||||||
AMX_NATIVE_INFO p[] = {
|
|
||||||
{ "require_module", require_module },
|
|
||||||
{ NULL, NULL },
|
|
||||||
};
|
|
||||||
amx_Register(amx, p, -1);
|
|
||||||
if (CheckModules(amx, error) == -1 || *error == 0)
|
|
||||||
{
|
|
||||||
sprintf(error,"Plugin uses an unknown function (name \"%s\") - check your modules.ini.",save.c_str());
|
|
||||||
}
|
|
||||||
return (amx->error = AMX_ERR_NATIVE);
|
return (amx->error = AMX_ERR_NATIVE);
|
||||||
}
|
}
|
||||||
|
|
||||||
CheckModules(amx, error);
|
|
||||||
|
|
||||||
return AMX_ERR_NONE;
|
return AMX_ERR_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int unload_amxscript(AMX* amx, void** program)
|
int unload_amxscript(AMX* amx, void** program)
|
||||||
{
|
{
|
||||||
CList<CScript,AMX*>::iterator a = g_loadedscripts.find( amx );
|
CList<CScript,AMX*>::iterator a = g_loadedscripts.find( amx );
|
||||||
@ -439,7 +330,7 @@ char* build_pathname_addons(char *fmt, ... )
|
|||||||
|
|
||||||
int add_amxnatives(module_info_s* info,AMX_NATIVE_INFO*natives)
|
int add_amxnatives(module_info_s* info,AMX_NATIVE_INFO*natives)
|
||||||
{
|
{
|
||||||
CList<CModule,const char *>::iterator a = g_modules.begin();
|
CList<CModule>::iterator a = g_modules.begin();
|
||||||
|
|
||||||
while ( a )
|
while ( a )
|
||||||
{
|
{
|
||||||
@ -471,109 +362,9 @@ bool validFile(const char* file)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConvertModuleName(const char *pathString, String &path)
|
|
||||||
{
|
|
||||||
#if SMALL_CELL_SIZE==64
|
|
||||||
char *ptr = strstr(pathString, "i386");
|
|
||||||
if (ptr)
|
|
||||||
{
|
|
||||||
//attempt to fix the binary name
|
|
||||||
*ptr = 0;
|
|
||||||
path.assign(pathString);
|
|
||||||
path.append("amd64.so");
|
|
||||||
} else {
|
|
||||||
ptr = strstr(pathString, ".dll");
|
|
||||||
if (ptr)
|
|
||||||
{
|
|
||||||
*ptr = 0;
|
|
||||||
path.assign(pathString);
|
|
||||||
path.append("_amd64.so");
|
|
||||||
} else {
|
|
||||||
ptr = strstr(pathString, ".so");
|
|
||||||
if (ptr)
|
|
||||||
{
|
|
||||||
path.assign(pathString);
|
|
||||||
} else {
|
|
||||||
//no extension at all
|
|
||||||
path.assign(pathString);
|
|
||||||
path.append("_amd64.so");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
#ifdef __linux__
|
|
||||||
char *ptr = strstr(pathString, "amd64");
|
|
||||||
if (ptr)
|
|
||||||
{
|
|
||||||
//attempt to fix the binary name
|
|
||||||
*ptr = 0;
|
|
||||||
path.assign(pathString);
|
|
||||||
path.append("i386.so");
|
|
||||||
} else {
|
|
||||||
ptr = strstr(pathString, ".dll");
|
|
||||||
if (ptr)
|
|
||||||
{
|
|
||||||
*ptr = 0;
|
|
||||||
path.assign(pathString);
|
|
||||||
path.append("_i386.so");
|
|
||||||
} else {
|
|
||||||
//check to see if this file even has an extension
|
|
||||||
ptr = strstr(pathString, ".so");
|
|
||||||
if (ptr)
|
|
||||||
{
|
|
||||||
path.assign(pathString);
|
|
||||||
} else {
|
|
||||||
path.assign(pathString);
|
|
||||||
path.append("_i386.so");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
char *ptr = strstr(pathString, ".dll");
|
|
||||||
if (ptr)
|
|
||||||
{
|
|
||||||
path.assign(pathString);
|
|
||||||
} else {
|
|
||||||
//prevent this from loading .so too
|
|
||||||
ptr = strstr(pathString, ".so");
|
|
||||||
if (ptr)
|
|
||||||
{
|
|
||||||
int i = 0, len = strlen(pathString), c = -1;
|
|
||||||
for (i=len-1; i>=0; i--)
|
|
||||||
{
|
|
||||||
//cut off at first _
|
|
||||||
if (pathString[i] == '_')
|
|
||||||
{
|
|
||||||
//make sure this is a valid _
|
|
||||||
if (i == len-1 || strncmp(&(pathString[i+1]), "amxx", 4) == 0)
|
|
||||||
break;
|
|
||||||
c = i;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*ptr = 0;
|
|
||||||
if (c == -1)
|
|
||||||
{
|
|
||||||
path.assign(pathString);
|
|
||||||
path.append(".dll");
|
|
||||||
} else {
|
|
||||||
ptr = (char *)&(pathString[c]);
|
|
||||||
*ptr = 0;
|
|
||||||
path.assign(pathString);
|
|
||||||
path.append(".dll");
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
path.assign(pathString);
|
|
||||||
path.append(".dll");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif //__linux__
|
|
||||||
#endif //SMALL_CELL_SIZE==64
|
|
||||||
}
|
|
||||||
|
|
||||||
int loadModules(const char* filename)
|
int loadModules(const char* filename)
|
||||||
{
|
{
|
||||||
FILE *fp = fopen(build_pathname("%s",filename), "rt");
|
File fp( build_pathname("%s",filename), "r" );
|
||||||
|
|
||||||
if ( !fp )
|
if ( !fp )
|
||||||
{
|
{
|
||||||
@ -581,40 +372,23 @@ int loadModules(const char* filename)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
char moduleName[256];
|
char line[256], moduleName[256];
|
||||||
char pathString[512];
|
|
||||||
String line;
|
|
||||||
int loaded = 0;
|
int loaded = 0;
|
||||||
|
|
||||||
String path;
|
while ( fp.getline( line , 255 ) )
|
||||||
|
|
||||||
while (!feof(fp))
|
|
||||||
{
|
{
|
||||||
if (!line._fread(fp) || line.size() < 1)
|
|
||||||
continue;
|
|
||||||
line.trim();
|
|
||||||
*moduleName = 0;
|
*moduleName = 0;
|
||||||
if (sscanf(line.c_str(),"%s",moduleName) == EOF)
|
sscanf(line,"%s",moduleName);
|
||||||
continue;
|
if (!isalnum(*moduleName) || !validFile(moduleName) )
|
||||||
if (moduleName[0] == ';')
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
char* pathname = build_pathname("%s/%s", get_localinfo("amxx_modulesdir", "addons/amxx/modules"), line);
|
||||||
|
|
||||||
char* pathname = build_pathname("%s/%s", get_localinfo("amxx_modulesdir", "addons/amxmodx/modules"), moduleName);
|
CList<CModule>::iterator a = g_modules.find( pathname );
|
||||||
strcpy(pathString, pathname);
|
|
||||||
|
|
||||||
path.assign("");
|
|
||||||
|
|
||||||
ConvertModuleName(pathString, path);
|
|
||||||
|
|
||||||
if (!validFile(path.c_str()))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
CList<CModule,const char *>::iterator a = g_modules.find( path.c_str() );
|
|
||||||
|
|
||||||
if ( a ) continue; // already loaded
|
if ( a ) continue; // already loaded
|
||||||
|
|
||||||
CModule* cc = new CModule( path.c_str() );
|
CModule* cc = new CModule( pathname );
|
||||||
|
|
||||||
if ( cc == 0 ) return loaded;
|
if ( cc == 0 ) return loaded;
|
||||||
|
|
||||||
@ -622,45 +396,42 @@ int loadModules(const char* filename)
|
|||||||
|
|
||||||
switch( cc->getStatusValue() ) {
|
switch( cc->getStatusValue() ) {
|
||||||
case MODULE_BADLOAD:
|
case MODULE_BADLOAD:
|
||||||
report_error( 1 , "[AMXX] Module is not a valid library (file \"%s\")", path.c_str());
|
report_error( 1 , "[AMXX] Module is not a valid library (file \"%s\")",pathname );
|
||||||
break;
|
break;
|
||||||
case MODULE_NOINFO:
|
case MODULE_NOINFO:
|
||||||
report_error( 1 ,"[AMXX] Couldn't find info. about module (file \"%s\")", path.c_str());
|
report_error( 1 ,"[AMXX] Couldn't find info. about module (file \"%s\")",pathname );
|
||||||
break;
|
break;
|
||||||
case MODULE_NOQUERY:
|
case MODULE_NOQUERY:
|
||||||
report_error( 1 , "[AMXX] Couldn't find \"AMX_Query\" or \"AMXX_Query\" (file \"%s\")", path.c_str());
|
report_error( 1 , "[AMXX] Couldn't find \"AMX_Query\" or \"AMXX_Query\" (file \"%s\")", pathname );
|
||||||
break;
|
break;
|
||||||
case MODULE_NOATTACH:
|
case MODULE_NOATTACH:
|
||||||
report_error( 1 , "[AMXX] Couldn't find \"%s\" (file \"%s\")", cc->isAmxx() ? "AMXX_Attach" : "AMX_Attach", path.c_str());
|
report_error( 1 , "[AMXX] Couldn't find \"%s\" (file \"%s\")", cc->isAmxx() ? "AMXX_Attach" : "AMX_Attach", pathname );
|
||||||
break;
|
break;
|
||||||
case MODULE_OLD:
|
case MODULE_OLD:
|
||||||
report_error( 1 , "[AMXX] Module has a different interface version (file \"%s\")",path.c_str());
|
report_error( 1 , "[AMXX] Module has a different interface version (file \"%s\")",pathname );
|
||||||
break;
|
break;
|
||||||
case MODULE_NEWER:
|
case MODULE_NEWER:
|
||||||
report_error(1, "[AMXX] Module has a newer interface version (file \"%s\"). Please download a new amxmodx.", path.c_str());
|
report_error(1, "[AMXX] Module has a newer interface version (file \"%s\"). Please download a new amxmodx.", pathname);
|
||||||
break;
|
break;
|
||||||
case MODULE_INTERROR:
|
case MODULE_INTERROR:
|
||||||
report_error(1, "[AMXX] Internal error during module load (file \"%s\")", path.c_str());
|
report_error(1, "[AMXX] Internal error during module load (file \"%s\")", pathname);
|
||||||
break;
|
break;
|
||||||
case MODULE_NOT64BIT:
|
case MODULE_NOT64BIT:
|
||||||
report_error(1, "[AMXX] Module \"%s\" is not 64 bit compatible.", path.c_str());
|
report_error(1, "[AMXX] Module \"%s\" is not 64 bit compatible.", pathname);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
++loaded;
|
++loaded;
|
||||||
}
|
}
|
||||||
|
|
||||||
g_modules.put( cc );
|
g_modules.put( cc );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fclose(fp);
|
|
||||||
|
|
||||||
return loaded;
|
return loaded;
|
||||||
}
|
}
|
||||||
|
|
||||||
void detachModules()
|
void detachModules()
|
||||||
{
|
{
|
||||||
CList<CModule,const char *>::iterator a = g_modules.begin();
|
CList<CModule>::iterator a = g_modules.begin();
|
||||||
|
|
||||||
while ( a )
|
while ( a )
|
||||||
{
|
{
|
||||||
@ -671,7 +442,7 @@ void detachModules()
|
|||||||
|
|
||||||
void detachReloadModules()
|
void detachReloadModules()
|
||||||
{
|
{
|
||||||
CList<CModule,const char *>::iterator a = g_modules.begin();
|
CList<CModule>::iterator a = g_modules.begin();
|
||||||
|
|
||||||
while ( a )
|
while ( a )
|
||||||
{
|
{
|
||||||
@ -689,7 +460,7 @@ void detachReloadModules()
|
|||||||
|
|
||||||
void attachModules()
|
void attachModules()
|
||||||
{
|
{
|
||||||
CList<CModule,const char *>::iterator a = g_modules.begin();
|
CList<CModule>::iterator a = g_modules.begin();
|
||||||
|
|
||||||
while ( a )
|
while ( a )
|
||||||
{
|
{
|
||||||
@ -741,7 +512,6 @@ void attachMetaModModules(PLUG_LOADTIME now, const char* filename)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char line[256], moduleName[256];
|
char line[256], moduleName[256];
|
||||||
String modPath, mmPath;
|
|
||||||
DLHANDLE module;
|
DLHANDLE module;
|
||||||
|
|
||||||
while ( fp.getline( line , 255 ) )
|
while ( fp.getline( line , 255 ) )
|
||||||
@ -749,34 +519,12 @@ void attachMetaModModules(PLUG_LOADTIME now, const char* filename)
|
|||||||
*moduleName = 0;
|
*moduleName = 0;
|
||||||
sscanf(line,"%s",moduleName);
|
sscanf(line,"%s",moduleName);
|
||||||
|
|
||||||
if (!isalnum(*moduleName))
|
if (!isalnum(*moduleName) || !validFile(moduleName) )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
char* pathname = build_pathname("%s/%s", get_localinfo("amxx_modulesdir", "addons/amxmodx/modules"), line);
|
char* pathname = build_pathname("%s/%s", get_localinfo("amxx_modulesdir", "addons/amxx/modules"), line);
|
||||||
char* mmpathname = build_pathname_addons("%s/%s", get_localinfo("amxx_modulesdir", "addons/amxmodx/modules"), line);
|
char* mmpathname = build_pathname_addons("%s/%s", get_localinfo("amxx_modulesdir", "addons/amxx/modules"), line);
|
||||||
|
module = DLLOAD( pathname ); // link dll
|
||||||
ConvertModuleName(pathname, modPath);
|
|
||||||
ConvertModuleName(mmpathname, mmPath);
|
|
||||||
|
|
||||||
CList<CFakeMeta::CFakeMetaPlugin>::iterator iter = g_FakeMeta.m_Plugins.begin();
|
|
||||||
|
|
||||||
//prevent double loading
|
|
||||||
int foundFlag = 0;
|
|
||||||
|
|
||||||
while (iter)
|
|
||||||
{
|
|
||||||
if ( strcmp( (*iter).GetPath(), mmPath.c_str() ) == 0 )
|
|
||||||
{
|
|
||||||
foundFlag = 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
++iter;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (foundFlag)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
module = DLLOAD( modPath.c_str() ); // link dll
|
|
||||||
|
|
||||||
if ( module )
|
if ( module )
|
||||||
{
|
{
|
||||||
@ -785,7 +533,7 @@ void attachMetaModModules(PLUG_LOADTIME now, const char* filename)
|
|||||||
|
|
||||||
if ( a )
|
if ( a )
|
||||||
{
|
{
|
||||||
g_FakeMeta.AddPlugin(mmPath.c_str());
|
g_FakeMeta.AddPlugin(mmpathname);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -798,7 +546,7 @@ void attachMetaModModules(PLUG_LOADTIME now, const char* filename)
|
|||||||
// Get the number of running modules
|
// Get the number of running modules
|
||||||
int countModules(CountModulesMode mode)
|
int countModules(CountModulesMode mode)
|
||||||
{
|
{
|
||||||
CList<CModule,const char *>::iterator iter;
|
CList<CModule>::iterator iter;
|
||||||
int num;
|
int num;
|
||||||
switch (mode)
|
switch (mode)
|
||||||
{
|
{
|
||||||
@ -831,7 +579,7 @@ int countModules(CountModulesMode mode)
|
|||||||
// Call all modules' AMXX_PluginsLoaded functions
|
// Call all modules' AMXX_PluginsLoaded functions
|
||||||
void modules_callPluginsLoaded()
|
void modules_callPluginsLoaded()
|
||||||
{
|
{
|
||||||
CList<CModule,const char *>::iterator iter = g_modules.begin();
|
CList<CModule>::iterator iter = g_modules.begin();
|
||||||
while (iter)
|
while (iter)
|
||||||
{
|
{
|
||||||
(*iter).CallPluginsLoaded();
|
(*iter).CallPluginsLoaded();
|
||||||
@ -843,7 +591,7 @@ void modules_callPluginsLoaded()
|
|||||||
|
|
||||||
int MNF_AddNatives(AMX_NATIVE_INFO* natives)
|
int MNF_AddNatives(AMX_NATIVE_INFO* natives)
|
||||||
{
|
{
|
||||||
CList<CModule,const char *>::iterator a = g_modules.begin();
|
CList<CModule>::iterator a = g_modules.begin();
|
||||||
|
|
||||||
if (!g_CurrentlyCalledModule || g_ModuleCallReason != ModuleCall_Attach)
|
if (!g_CurrentlyCalledModule || g_ModuleCallReason != ModuleCall_Attach)
|
||||||
return FALSE; // may only be called from attach
|
return FALSE; // may only be called from attach
|
||||||
@ -953,14 +701,6 @@ char *MNF_FormatAmxString(AMX *amx, cell *params, int startParam, int *pLen)
|
|||||||
return retVal;
|
return retVal;
|
||||||
}
|
}
|
||||||
|
|
||||||
int MNF_GetPlayerFlags(int id)
|
|
||||||
{
|
|
||||||
if (id < 1 || id > gpGlobals->maxClients)
|
|
||||||
return 0;
|
|
||||||
CPlayer *pPlayer = GET_PLAYER_POINTER_I(id);
|
|
||||||
return (pPlayer->flags[0]);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MNF_CopyAmxMemory(cell * dest, const cell * src, int len)
|
void MNF_CopyAmxMemory(cell * dest, const cell * src, int len)
|
||||||
{
|
{
|
||||||
memcpy((void*)dest, (const void *)src, (size_t)len*sizeof(cell));
|
memcpy((void*)dest, (const void *)src, (size_t)len*sizeof(cell));
|
||||||
@ -1109,179 +849,11 @@ void MNF_Log(const char *fmt, ...)
|
|||||||
AMXXLOG_Log("%s", msg);
|
AMXXLOG_Log("%s", msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
//by BAILOPAN
|
|
||||||
// generic error printing routine
|
|
||||||
void GenericError(AMX *amx, int err, int line, char buf[], const char *file)
|
|
||||||
{
|
|
||||||
static const char *amx_errs[] =
|
|
||||||
{
|
|
||||||
NULL,
|
|
||||||
"forced exit",
|
|
||||||
"assertion failed",
|
|
||||||
"stack error",
|
|
||||||
"index out of bounds",
|
|
||||||
"memory access",
|
|
||||||
"invalid instruction",
|
|
||||||
"stack low",
|
|
||||||
"heap low",
|
|
||||||
"callback",
|
|
||||||
"native",
|
|
||||||
"divide",
|
|
||||||
"sleep",
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
"out of memory", //16
|
|
||||||
"bad file format",
|
|
||||||
"bad file version",
|
|
||||||
"function not found",
|
|
||||||
"invalid entry point",
|
|
||||||
"debugger cannot run",
|
|
||||||
"plugin un or re-initialized",
|
|
||||||
"userdata table full",
|
|
||||||
"JIT failed to initialize",
|
|
||||||
"parameter error",
|
|
||||||
"domain error",
|
|
||||||
};
|
|
||||||
//does this plugin have line ops?
|
|
||||||
const char *geterr = NULL;
|
|
||||||
if (err > 26 || err < 0)
|
|
||||||
geterr = NULL;
|
|
||||||
else
|
|
||||||
geterr = amx_errs[err];
|
|
||||||
if (!(amx->flags & AMX_FLAG_LINEOPS))
|
|
||||||
{
|
|
||||||
if (geterr == NULL)
|
|
||||||
{
|
|
||||||
sprintf(buf, "Run time error %d (plugin \"%s\" - debug not enabled).", err, g_plugins.findPluginFast(amx)->getName());
|
|
||||||
} else {
|
|
||||||
sprintf(buf, "Run time error %d (%s) (plugin \"%s\") - debug not enabled.", err, geterr, g_plugins.findPluginFast(amx)->getName());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (geterr == NULL)
|
|
||||||
{
|
|
||||||
sprintf(buf, "Run time error %d on line %d (%s \"%s\").", err, line, (file?"file":"plugin"), (file?file:g_plugins.findPluginFast(amx)->getName()));
|
|
||||||
} else {
|
|
||||||
sprintf(buf, "Run time error %d (%s) on line %d (%s \"%s\").", err, geterr, line, (file?"file":"plugin"), (file?file:g_plugins.findPluginFast(amx)->getName()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//by BAILOPAN
|
|
||||||
// debugger engine front end
|
|
||||||
void LogError(AMX *amx, int err, const char *fmt, ...)
|
|
||||||
{
|
|
||||||
//does this plugin have debug info?
|
|
||||||
va_list arg;
|
|
||||||
AMX_DBG *dbg = (AMX_DBG *)(amx->userdata[0]);
|
|
||||||
static char buf[1024];
|
|
||||||
static char vbuf[1024];
|
|
||||||
*buf = 0;
|
|
||||||
*vbuf = 0;
|
|
||||||
|
|
||||||
va_start(arg, fmt);
|
|
||||||
vsprintf(vbuf, fmt, arg);
|
|
||||||
va_end(arg);
|
|
||||||
|
|
||||||
if (!dbg || !(dbg->tail))
|
|
||||||
{
|
|
||||||
GenericError(amx, err, amx->curline, buf, NULL);
|
|
||||||
AMXXLOG_Log("[AMXX] %s %s", buf, vbuf);
|
|
||||||
} else {
|
|
||||||
AMX_TRACE *t = dbg->tail;
|
|
||||||
AMX_DEBUGCALL tracer = (AMX_DEBUGCALL)(amx->userdata[1]);
|
|
||||||
//actuall
|
|
||||||
cell line = amx->curline;
|
|
||||||
cell file = amx->curfile;
|
|
||||||
int i = 0;
|
|
||||||
if (file >= dbg->numFiles || file < 0)
|
|
||||||
{
|
|
||||||
GenericError(amx, err, line, buf, NULL);
|
|
||||||
} else {
|
|
||||||
GenericError(amx, err, line, buf, dbg->files[file]);
|
|
||||||
}
|
|
||||||
AMXXLOG_Log("[AMXX] %s", buf);
|
|
||||||
if (*vbuf)
|
|
||||||
{
|
|
||||||
AMXXLOG_Log("[AMXX] %s", vbuf);
|
|
||||||
}
|
|
||||||
AMXXLOG_Log("[AMXX] Debug Trace =>");
|
|
||||||
//log the error right away
|
|
||||||
while (t != NULL)
|
|
||||||
{
|
|
||||||
line = t->line;
|
|
||||||
file = t->file;
|
|
||||||
if (file >= dbg->numFiles)
|
|
||||||
{
|
|
||||||
AMXXLOG_Log("[AMXX] [%d] Line %d, File \"%s\"", i++, line, g_plugins.findPluginFast(amx)->getName());
|
|
||||||
} else {
|
|
||||||
AMXXLOG_Log("[AMXX] [%d] Line %d, File \"%s\"", i++, line, dbg->files[file]);
|
|
||||||
}
|
|
||||||
if (tracer)
|
|
||||||
(tracer)(amx, 1); //pop
|
|
||||||
t = dbg->tail;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void MNF_MergeDefinitionFile(const char *file)
|
void MNF_MergeDefinitionFile(const char *file)
|
||||||
{
|
{
|
||||||
g_langMngr.MergeDefinitionFile(file);
|
g_langMngr.MergeDefinitionFile(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
edict_t* MNF_GetPlayerEdict(int id)
|
|
||||||
{
|
|
||||||
if (id < 1 || id > gpGlobals->maxClients)
|
|
||||||
return NULL;
|
|
||||||
return (GET_PLAYER_POINTER_I(id)->pEdict);
|
|
||||||
}
|
|
||||||
|
|
||||||
const char *MNF_Format(const char *fmt, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
va_start(ap, fmt);
|
|
||||||
const char *retVal = g_langMngr.FormatString(fmt, ap);
|
|
||||||
va_end(ap);
|
|
||||||
return retVal;
|
|
||||||
}
|
|
||||||
|
|
||||||
const char *MNF_GetPlayerTeam(int id)
|
|
||||||
{
|
|
||||||
if (id < 1 || id > gpGlobals->maxClients)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
return (GET_PLAYER_POINTER_I(id)->team.c_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifndef MEMORY_TEST
|
|
||||||
void *MNF_Allocator(const char *sourceFile, const unsigned int sourceLine, const char *sourceFunc, const unsigned int allocationType, const size_t reportedSize)
|
|
||||||
{
|
|
||||||
return malloc(reportedSize);
|
|
||||||
}
|
|
||||||
|
|
||||||
void *MNF_Reallocator(const char *sourceFile, const unsigned int sourceLine, const char *sourceFunc, const unsigned int reallocationType, const size_t reportedSize, void *reportedAddress)
|
|
||||||
{
|
|
||||||
return realloc(reportedAddress, reportedSize);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MNF_Deallocator(const char *sourceFile, const unsigned int sourceLine, const char *sourceFunc, const unsigned int deallocationType, void *reportedAddress)
|
|
||||||
{
|
|
||||||
free(reportedAddress);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// 09/18/2004 : added these two funcs that default to copyBack=false so we don't break all modules
|
|
||||||
cell MNF_PrepareCellArray(cell *ptr, unsigned int size)
|
|
||||||
{
|
|
||||||
return prepareCellArray(ptr, size, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
cell MNF_PrepareCharArray(char *ptr, unsigned int size)
|
|
||||||
{
|
|
||||||
return prepareCharArray(ptr, size, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Fnptr Request function for the new interface
|
// Fnptr Request function for the new interface
|
||||||
const char *g_LastRequestedFunc = NULL;
|
const char *g_LastRequestedFunc = NULL;
|
||||||
#define REGISTER_FUNC(name, func) { name, (void*)func },
|
#define REGISTER_FUNC(name, func) { name, (void*)func },
|
||||||
@ -1299,9 +871,7 @@ void *Module_ReqFnptr(const char *funcName)
|
|||||||
REGISTER_FUNC("PrintSrvConsole", print_srvconsole)
|
REGISTER_FUNC("PrintSrvConsole", print_srvconsole)
|
||||||
REGISTER_FUNC("GetModname", MNF_GetModname)
|
REGISTER_FUNC("GetModname", MNF_GetModname)
|
||||||
REGISTER_FUNC("Log", MNF_Log)
|
REGISTER_FUNC("Log", MNF_Log)
|
||||||
REGISTER_FUNC("LogError", LogError)
|
|
||||||
REGISTER_FUNC("MergeDefinitionFile", MNF_MergeDefinitionFile)
|
REGISTER_FUNC("MergeDefinitionFile", MNF_MergeDefinitionFile)
|
||||||
REGISTER_FUNC("Format", MNF_Format)
|
|
||||||
|
|
||||||
// Amx scripts loading / unloading / managing
|
// Amx scripts loading / unloading / managing
|
||||||
REGISTER_FUNC("GetAmxScript", MNF_GetAmxScript)
|
REGISTER_FUNC("GetAmxScript", MNF_GetAmxScript)
|
||||||
@ -1324,7 +894,6 @@ void *Module_ReqFnptr(const char *funcName)
|
|||||||
REGISTER_FUNC("amx_Execv", amx_Execv)
|
REGISTER_FUNC("amx_Execv", amx_Execv)
|
||||||
REGISTER_FUNC("amx_Allot", amx_Allot)
|
REGISTER_FUNC("amx_Allot", amx_Allot)
|
||||||
REGISTER_FUNC("amx_FindPublic", amx_FindPublic)
|
REGISTER_FUNC("amx_FindPublic", amx_FindPublic)
|
||||||
REGISTER_FUNC("amx_FindNative", amx_FindNative)
|
|
||||||
|
|
||||||
// Natives / Forwards
|
// Natives / Forwards
|
||||||
REGISTER_FUNC("AddNatives", MNF_AddNatives)
|
REGISTER_FUNC("AddNatives", MNF_AddNatives)
|
||||||
@ -1334,13 +903,10 @@ void *Module_ReqFnptr(const char *funcName)
|
|||||||
REGISTER_FUNC("RegisterSPForwardByName", registerSPForwardByName)
|
REGISTER_FUNC("RegisterSPForwardByName", registerSPForwardByName)
|
||||||
REGISTER_FUNC("UnregisterSPForward", unregisterSPForward)
|
REGISTER_FUNC("UnregisterSPForward", unregisterSPForward)
|
||||||
REGISTER_FUNC("ExecuteForward", executeForwards)
|
REGISTER_FUNC("ExecuteForward", executeForwards)
|
||||||
REGISTER_FUNC("PrepareCellArray", MNF_PrepareCellArray)
|
REGISTER_FUNC("PrepareCellArray", prepareCellArray)
|
||||||
REGISTER_FUNC("PrepareCharArray", MNF_PrepareCharArray)
|
REGISTER_FUNC("PrepareCharArray", prepareCharArray)
|
||||||
REGISTER_FUNC("PrepareCellArrayA", prepareCellArray)
|
|
||||||
REGISTER_FUNC("PrepareCharArrayA", prepareCharArray)
|
|
||||||
|
|
||||||
// Player
|
// Player
|
||||||
REGISTER_FUNC("GetPlayerFlags", MNF_GetPlayerFlags)
|
|
||||||
REGISTER_FUNC("IsPlayerValid", MNF_IsPlayerValid)
|
REGISTER_FUNC("IsPlayerValid", MNF_IsPlayerValid)
|
||||||
REGISTER_FUNC("GetPlayerName", MNF_GetPlayerName)
|
REGISTER_FUNC("GetPlayerName", MNF_GetPlayerName)
|
||||||
REGISTER_FUNC("GetPlayerIP", MNF_GetPlayerIP)
|
REGISTER_FUNC("GetPlayerIP", MNF_GetPlayerIP)
|
||||||
@ -1351,7 +917,6 @@ void *Module_ReqFnptr(const char *funcName)
|
|||||||
REGISTER_FUNC("GetPlayerPlayTime", MNF_GetPlayerPlayTime)
|
REGISTER_FUNC("GetPlayerPlayTime", MNF_GetPlayerPlayTime)
|
||||||
REGISTER_FUNC("GetPlayerCurweapon", MNF_GetPlayerCurweapon)
|
REGISTER_FUNC("GetPlayerCurweapon", MNF_GetPlayerCurweapon)
|
||||||
REGISTER_FUNC("GetPlayerTeamID", MNF_GetPlayerTeamID)
|
REGISTER_FUNC("GetPlayerTeamID", MNF_GetPlayerTeamID)
|
||||||
REGISTER_FUNC("GetPlayerTeam", MNF_GetPlayerTeam)
|
|
||||||
REGISTER_FUNC("GetPlayerDeaths", MNF_GetPlayerDeaths)
|
REGISTER_FUNC("GetPlayerDeaths", MNF_GetPlayerDeaths)
|
||||||
REGISTER_FUNC("GetPlayerFrags", MNF_GetPlayerFrags)
|
REGISTER_FUNC("GetPlayerFrags", MNF_GetPlayerFrags)
|
||||||
REGISTER_FUNC("GetPlayerMenu", MNF_GetPlayerMenu)
|
REGISTER_FUNC("GetPlayerMenu", MNF_GetPlayerMenu)
|
||||||
@ -1361,7 +926,6 @@ void *Module_ReqFnptr(const char *funcName)
|
|||||||
REGISTER_FUNC("IsPlayerHLTV", MNF_IsPlayerHLTV)
|
REGISTER_FUNC("IsPlayerHLTV", MNF_IsPlayerHLTV)
|
||||||
REGISTER_FUNC("GetPlayerArmor", MNF_GetPlayerArmor)
|
REGISTER_FUNC("GetPlayerArmor", MNF_GetPlayerArmor)
|
||||||
REGISTER_FUNC("GetPlayerHealth", MNF_GetPlayerHealth)
|
REGISTER_FUNC("GetPlayerHealth", MNF_GetPlayerHealth)
|
||||||
REGISTER_FUNC("GetPlayerEdict", MNF_GetPlayerEdict)
|
|
||||||
REGISTER_FUNC("CellToReal", MNF_CellToReal)
|
REGISTER_FUNC("CellToReal", MNF_CellToReal)
|
||||||
REGISTER_FUNC("RealToCell", MNF_RealToCell)
|
REGISTER_FUNC("RealToCell", MNF_RealToCell)
|
||||||
|
|
||||||
@ -1369,10 +933,6 @@ void *Module_ReqFnptr(const char *funcName)
|
|||||||
REGISTER_FUNC("Allocator", m_allocator)
|
REGISTER_FUNC("Allocator", m_allocator)
|
||||||
REGISTER_FUNC("Deallocator", m_deallocator)
|
REGISTER_FUNC("Deallocator", m_deallocator)
|
||||||
REGISTER_FUNC("Reallocator", m_reallocator)
|
REGISTER_FUNC("Reallocator", m_reallocator)
|
||||||
#else
|
|
||||||
REGISTER_FUNC("Allocator", MNF_Allocator)
|
|
||||||
REGISTER_FUNC("Deallocator", MNF_Deallocator)
|
|
||||||
REGISTER_FUNC("Reallocator", MNF_Reallocator)
|
|
||||||
#endif // MEMORY_TEST
|
#endif // MEMORY_TEST
|
||||||
|
|
||||||
REGISTER_FUNC("Haha_HiddenStuff", MNF_HiddenStuff)
|
REGISTER_FUNC("Haha_HiddenStuff", MNF_HiddenStuff)
|
||||||
|
@ -144,7 +144,7 @@ struct pfnmodule_engine_g {
|
|||||||
const char* (*pfnget_amxscriptname)(AMX* amx); // amx
|
const char* (*pfnget_amxscriptname)(AMX* amx); // amx
|
||||||
char* (*pfnget_amxstring)(AMX*,cell,int, int&); // amx, src, buffer (0-3), len
|
char* (*pfnget_amxstring)(AMX*,cell,int, int&); // amx, src, buffer (0-3), len
|
||||||
void (*pfnget_modname)(char*); // modname
|
void (*pfnget_modname)(char*); // modname
|
||||||
int (*pfnload_amxscript)(AMX*, void**, const char*, char[64], int); // amx, code, path, error info
|
int (*pfnload_amxscript)(AMX*, void**, const char*, char[64]); // amx, code, path, error info
|
||||||
void (*pfnprint_console)(char*, ...); // format, ....
|
void (*pfnprint_console)(char*, ...); // format, ....
|
||||||
void (*pfnreport_error)(int code, char*, ... );
|
void (*pfnreport_error)(int code, char*, ... );
|
||||||
int (*pfnset_amxnatives)(AMX*,char[64]); // amx, error info
|
int (*pfnset_amxnatives)(AMX*,char[64]); // amx, error info
|
||||||
|
@ -42,8 +42,8 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions="/MACHINE:I386"
|
AdditionalOptions="/MACHINE:I386"
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\zlib\zlib.lib"
|
AdditionalDependencies="odbc32.lib odbccp32.lib"
|
||||||
OutputFile="debug/amxmodx_mm.dll"
|
OutputFile="debug/amxx_mm.dll"
|
||||||
Version="0.1"
|
Version="0.1"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
@ -112,8 +112,8 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions="/MACHINE:I386"
|
AdditionalOptions="/MACHINE:I386"
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\zlib\zlib.lib"
|
AdditionalDependencies="odbc32.lib odbccp32.lib"
|
||||||
OutputFile="release/amxmodx_mm.dll"
|
OutputFile="release/amxx_mm.dll"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
AdditionalLibraryDirectories="..\extra\lib_win32"
|
||||||
@ -179,8 +179,8 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions="/MACHINE:I386"
|
AdditionalOptions="/MACHINE:I386"
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\zlib\zlib.lib"
|
AdditionalDependencies="odbc32.lib odbccp32.lib"
|
||||||
OutputFile="memtestdebug/amxmodx_mm.dll"
|
OutputFile="memtestdebug/amxx_mm.dll"
|
||||||
Version="0.1"
|
Version="0.1"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
@ -249,8 +249,8 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions="/MACHINE:I386"
|
AdditionalOptions="/MACHINE:I386"
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\zlib\zlib.lib"
|
AdditionalDependencies="odbc32.lib odbccp32.lib"
|
||||||
OutputFile="memtestrelease/amxmodx_mm.dll"
|
OutputFile="memtestrelease/amxx_mm.dll"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
AdditionalLibraryDirectories="..\extra\lib_win32"
|
||||||
@ -316,8 +316,8 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions="/MACHINE:I386"
|
AdditionalOptions="/MACHINE:I386"
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib ..\zlib\zlib.lib"
|
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib"
|
||||||
OutputFile="jitdebug/amxmodx_mm.dll"
|
OutputFile="jitdebug/amxx_mm.dll"
|
||||||
Version="0.1"
|
Version="0.1"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
@ -386,8 +386,8 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions="/MACHINE:I386"
|
AdditionalOptions="/MACHINE:I386"
|
||||||
AdditionalDependencies="..\jit\jits.obj ..\zlib\zlib.lib"
|
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib"
|
||||||
OutputFile="jitrelease/amxmodx_mm.dll"
|
OutputFile="jitrelease/amxx_mm.dll"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
AdditionalLibraryDirectories="..\extra\lib_win32"
|
||||||
@ -454,8 +454,8 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions="/MACHINE:I386"
|
AdditionalOptions="/MACHINE:I386"
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib ..\zlib\zlib.lib"
|
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib"
|
||||||
OutputFile="jitmemtestrelease/amxmodx_mm.dll"
|
OutputFile="jitmemtestrelease/amxx_mm.dll"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
AdditionalLibraryDirectories="..\extra\lib_win32"
|
||||||
@ -525,8 +525,8 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalOptions="/MACHINE:I386"
|
AdditionalOptions="/MACHINE:I386"
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib ..\zlib\zlib.lib"
|
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib"
|
||||||
OutputFile="MaximalSpeed/amxmodx_mm.dll"
|
OutputFile="MaximalSpeed/amxx_mm.dll"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="TRUE"
|
SuppressStartupBanner="TRUE"
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
AdditionalLibraryDirectories="..\extra\lib_win32"
|
||||||
@ -646,6 +646,9 @@
|
|||||||
<File
|
<File
|
||||||
RelativePath="..\meta_api.cpp">
|
RelativePath="..\meta_api.cpp">
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\minilzo\minilzo.c">
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\modules.cpp">
|
RelativePath="..\modules.cpp">
|
||||||
</File>
|
</File>
|
||||||
|
@ -1,804 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
|
||||||
<VisualStudioProject
|
|
||||||
ProjectType="Visual C++"
|
|
||||||
Version="7.10"
|
|
||||||
Name="amxmodx"
|
|
||||||
ProjectGUID="{2BF64D1A-AC89-41B0-9D02-FB8CB610F850}"
|
|
||||||
SccProjectName=""
|
|
||||||
SccLocalPath="">
|
|
||||||
<Platforms>
|
|
||||||
<Platform
|
|
||||||
Name="Win32"/>
|
|
||||||
</Platforms>
|
|
||||||
<Configurations>
|
|
||||||
<Configuration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
OutputDirectory=".\Debug"
|
|
||||||
IntermediateDirectory=".\Debug"
|
|
||||||
ConfigurationType="2"
|
|
||||||
UseOfMFC="0"
|
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
|
||||||
CharacterSet="2">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
Optimization="0"
|
|
||||||
AdditionalIncludeDirectories=""C:\Hry\Half-Life\SDK\Multiplayer Source\pm_shared";"C:\Hry\Half-Life\SDK\Multiplayer Source\dlls";"C:\Hry\Half-Life\SDK\Multiplayer Source\engine";"C:\Hry\Half-Life\SDK\Multiplayer Source\common";C:\Files\Programming\metamod\metamod"
|
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;amxmodx_EXPORTS"
|
|
||||||
BasicRuntimeChecks="3"
|
|
||||||
RuntimeLibrary="5"
|
|
||||||
StructMemberAlignment="3"
|
|
||||||
UsePrecompiledHeader="2"
|
|
||||||
PrecompiledHeaderThrough="amxmodx.h"
|
|
||||||
PrecompiledHeaderFile=".\debug/amxmodx.pch"
|
|
||||||
AssemblerListingLocation=".\debug/"
|
|
||||||
ObjectFile=".\debug/"
|
|
||||||
ProgramDataBaseFileName=".\debug/"
|
|
||||||
WarningLevel="3"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
DebugInformationFormat="4"
|
|
||||||
CompileAs="0"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalOptions="/MACHINE:I386"
|
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\zlib\zlib.lib"
|
|
||||||
OutputFile="debug/amxmodx_mm.dll"
|
|
||||||
Version="0.1"
|
|
||||||
LinkIncremental="1"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
|
||||||
ModuleDefinitionFile=""
|
|
||||||
GenerateDebugInformation="TRUE"
|
|
||||||
ProgramDatabaseFile=".\debug/amxx_mm.pdb"
|
|
||||||
ImportLibrary=".\debug/amxx_mm.lib"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
PreprocessorDefinitions="_DEBUG"
|
|
||||||
MkTypLibCompatible="TRUE"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
TargetEnvironment="1"
|
|
||||||
TypeLibraryName=".\debug/amxmodx.tlb"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
PreprocessorDefinitions="_DEBUG"
|
|
||||||
Culture="1033"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="Release|Win32"
|
|
||||||
OutputDirectory=".\Release"
|
|
||||||
IntermediateDirectory=".\Release"
|
|
||||||
ConfigurationType="2"
|
|
||||||
UseOfMFC="0"
|
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
|
||||||
CharacterSet="2">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
GlobalOptimizations="TRUE"
|
|
||||||
InlineFunctionExpansion="1"
|
|
||||||
FavorSizeOrSpeed="1"
|
|
||||||
AdditionalIncludeDirectories="..\..\metamod\metamod,..\..\hlsdk\sourcecode\common,..\..\hlsdk\sourcecode\engine,..\..\hlsdk\sourcecode\dlls,..\..\hlsdk\sourcecode\pm_shared,..\extra\include"
|
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;amxmodx_EXPORTS"
|
|
||||||
StringPooling="TRUE"
|
|
||||||
RuntimeLibrary="4"
|
|
||||||
EnableFunctionLevelLinking="TRUE"
|
|
||||||
UsePrecompiledHeader="2"
|
|
||||||
PrecompiledHeaderThrough="amxmodx.h"
|
|
||||||
PrecompiledHeaderFile=".\release/amxmodx.pch"
|
|
||||||
AssemblerListingLocation=".\release/"
|
|
||||||
ObjectFile=".\release/"
|
|
||||||
ProgramDataBaseFileName=".\release/"
|
|
||||||
WarningLevel="3"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
CompileAs="0"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalOptions="/MACHINE:I386"
|
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\zlib\zlib.lib"
|
|
||||||
OutputFile="release/amxmodx_mm.dll"
|
|
||||||
LinkIncremental="1"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
|
||||||
ModuleDefinitionFile=""
|
|
||||||
ProgramDatabaseFile=".\release/amxx_mm.pdb"
|
|
||||||
ImportLibrary=".\release/amxx_mm.lib"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
MkTypLibCompatible="TRUE"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
TargetEnvironment="1"
|
|
||||||
TypeLibraryName=".\release/amxmodx.tlb"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
Culture="1033"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="MemtestDebug|Win32"
|
|
||||||
OutputDirectory="MemtestDebug"
|
|
||||||
IntermediateDirectory="MemtestDebug"
|
|
||||||
ConfigurationType="2"
|
|
||||||
UseOfMFC="0"
|
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
|
||||||
CharacterSet="2">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
Optimization="0"
|
|
||||||
AdditionalIncludeDirectories=""C:\Hry\Half-Life\SDK\Multiplayer Source\pm_shared";"C:\Hry\Half-Life\SDK\Multiplayer Source\dlls";"C:\Hry\Half-Life\SDK\Multiplayer Source\engine";"C:\Hry\Half-Life\SDK\Multiplayer Source\common";C:\Files\Programming\metamod\metamod"
|
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;amxmodx_EXPORTS;MEMORY_TEST"
|
|
||||||
BasicRuntimeChecks="3"
|
|
||||||
RuntimeLibrary="5"
|
|
||||||
StructMemberAlignment="3"
|
|
||||||
UsePrecompiledHeader="2"
|
|
||||||
PrecompiledHeaderThrough="amxmodx.h"
|
|
||||||
PrecompiledHeaderFile=".\memtestdebug/amxmodx.pch"
|
|
||||||
AssemblerListingLocation=".\memtestdebug/"
|
|
||||||
ObjectFile=".\memtestdebug/"
|
|
||||||
ProgramDataBaseFileName=".\memtestdebug/"
|
|
||||||
WarningLevel="3"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
DebugInformationFormat="4"
|
|
||||||
CompileAs="0"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalOptions="/MACHINE:I386"
|
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\zlib\zlib.lib"
|
|
||||||
OutputFile="memtestdebug/amxmodx_mm.dll"
|
|
||||||
Version="0.1"
|
|
||||||
LinkIncremental="2"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
|
||||||
ModuleDefinitionFile=""
|
|
||||||
GenerateDebugInformation="TRUE"
|
|
||||||
ProgramDatabaseFile=".\memtestdebug/amxx_mm.pdb"
|
|
||||||
ImportLibrary=".\memtestdebug/amxx_mm.lib"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
PreprocessorDefinitions="_DEBUG"
|
|
||||||
MkTypLibCompatible="TRUE"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
TargetEnvironment="1"
|
|
||||||
TypeLibraryName=".\debug/amxmodx.tlb"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
PreprocessorDefinitions="_DEBUG"
|
|
||||||
Culture="1033"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="MemtestRelease|Win32"
|
|
||||||
OutputDirectory="MemtestRelease"
|
|
||||||
IntermediateDirectory="MemtestRelease"
|
|
||||||
ConfigurationType="2"
|
|
||||||
UseOfMFC="0"
|
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
|
||||||
CharacterSet="2">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
GlobalOptimizations="TRUE"
|
|
||||||
InlineFunctionExpansion="1"
|
|
||||||
FavorSizeOrSpeed="1"
|
|
||||||
AdditionalIncludeDirectories="..\..\metamod\metamod,..\..\hlsdk\sourcecode\common,..\..\hlsdk\sourcecode\engine,..\..\hlsdk\sourcecode\dlls,..\..\hlsdk\sourcecode\pm_shared,..\extra\include"
|
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;amxmodx_EXPORTS;MEMORY_TEST"
|
|
||||||
StringPooling="TRUE"
|
|
||||||
RuntimeLibrary="4"
|
|
||||||
EnableFunctionLevelLinking="TRUE"
|
|
||||||
UsePrecompiledHeader="2"
|
|
||||||
PrecompiledHeaderThrough="amxmodx.h"
|
|
||||||
PrecompiledHeaderFile=".\memtestrelease/amxmodx.pch"
|
|
||||||
AssemblerListingLocation=".\memtestrelease/"
|
|
||||||
ObjectFile=".\memtestrelease/"
|
|
||||||
ProgramDataBaseFileName=".\memtestrelease/"
|
|
||||||
WarningLevel="3"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
CompileAs="0"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalOptions="/MACHINE:I386"
|
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\zlib\zlib.lib"
|
|
||||||
OutputFile="memtestrelease/amxmodx_mm.dll"
|
|
||||||
LinkIncremental="1"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
|
||||||
ModuleDefinitionFile=""
|
|
||||||
ProgramDatabaseFile=".\memtestrelease/amxx_mm.pdb"
|
|
||||||
ImportLibrary=".\memtestrelease/amxx_mm.lib"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
MkTypLibCompatible="TRUE"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
TargetEnvironment="1"
|
|
||||||
TypeLibraryName=".\release/amxmodx.tlb"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
Culture="1033"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="JITDebug|Win32"
|
|
||||||
OutputDirectory="JITDebug"
|
|
||||||
IntermediateDirectory="JITDebug"
|
|
||||||
ConfigurationType="2"
|
|
||||||
UseOfMFC="0"
|
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
|
||||||
CharacterSet="2">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
Optimization="0"
|
|
||||||
AdditionalIncludeDirectories=""C:\Hry\Half-Life\SDK\Multiplayer Source\pm_shared";"C:\Hry\Half-Life\SDK\Multiplayer Source\dlls";"C:\Hry\Half-Life\SDK\Multiplayer Source\engine";"C:\Hry\Half-Life\SDK\Multiplayer Source\common";C:\Files\Programming\metamod\metamod"
|
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;amxmodx_EXPORTS;JIT"
|
|
||||||
BasicRuntimeChecks="3"
|
|
||||||
RuntimeLibrary="5"
|
|
||||||
StructMemberAlignment="3"
|
|
||||||
UsePrecompiledHeader="2"
|
|
||||||
PrecompiledHeaderThrough="amxmodx.h"
|
|
||||||
PrecompiledHeaderFile=".\jitdebug/amxmodx.pch"
|
|
||||||
AssemblerListingLocation=".\jitdebug/"
|
|
||||||
ObjectFile=".\jitdebug/"
|
|
||||||
ProgramDataBaseFileName=".\jitdebug/"
|
|
||||||
WarningLevel="3"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
DebugInformationFormat="4"
|
|
||||||
CompileAs="0"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalOptions="/MACHINE:I386"
|
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib ..\zlib\zlib.lib"
|
|
||||||
OutputFile="jitdebug/amxmodx_mm.dll"
|
|
||||||
Version="0.1"
|
|
||||||
LinkIncremental="1"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
|
||||||
ModuleDefinitionFile=""
|
|
||||||
GenerateDebugInformation="TRUE"
|
|
||||||
ProgramDatabaseFile=".\jitdebug/amxx_mm.pdb"
|
|
||||||
ImportLibrary=".\jitdebug/amxx_mm.lib"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
PreprocessorDefinitions="_DEBUG"
|
|
||||||
MkTypLibCompatible="TRUE"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
TargetEnvironment="1"
|
|
||||||
TypeLibraryName=".\debug/amxmodx.tlb"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
PreprocessorDefinitions="_DEBUG"
|
|
||||||
Culture="1033"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="JITRelease|Win32"
|
|
||||||
OutputDirectory="JITRelease"
|
|
||||||
IntermediateDirectory="JITRelease"
|
|
||||||
ConfigurationType="2"
|
|
||||||
UseOfMFC="0"
|
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
|
||||||
CharacterSet="2">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
GlobalOptimizations="TRUE"
|
|
||||||
InlineFunctionExpansion="1"
|
|
||||||
FavorSizeOrSpeed="1"
|
|
||||||
AdditionalIncludeDirectories="..\..\metamod\metamod,..\..\hlsdk\sourcecode\common,..\..\hlsdk\sourcecode\engine,..\..\hlsdk\sourcecode\dlls,..\..\hlsdk\sourcecode\pm_shared,..\extra\include"
|
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;amxmodx_EXPORTS;JIT"
|
|
||||||
StringPooling="TRUE"
|
|
||||||
RuntimeLibrary="4"
|
|
||||||
EnableFunctionLevelLinking="TRUE"
|
|
||||||
UsePrecompiledHeader="2"
|
|
||||||
PrecompiledHeaderThrough="amxmodx.h"
|
|
||||||
PrecompiledHeaderFile=".\jitrelease/amxmodx.pch"
|
|
||||||
AssemblerListingLocation=".\jitrelease/"
|
|
||||||
ObjectFile=".\jitrelease/"
|
|
||||||
ProgramDataBaseFileName=".\jitrelease/"
|
|
||||||
WarningLevel="3"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
CompileAs="0"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalOptions="/MACHINE:I386"
|
|
||||||
AdditionalDependencies="..\jit\jits.obj ..\zlib\zlib.lib"
|
|
||||||
OutputFile="jitrelease/amxmodx_mm.dll"
|
|
||||||
LinkIncremental="1"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
|
||||||
ModuleDefinitionFile=""
|
|
||||||
ProgramDatabaseFile=".\jitrelease/amxx_mm.pdb"
|
|
||||||
ImportLibrary=".\jitrelease/amxx_mm.lib"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
MkTypLibCompatible="TRUE"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
TargetEnvironment="1"
|
|
||||||
TypeLibraryName=".\release/amxmodx.tlb"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
Culture="1033"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="JITMemtestRelease|Win32"
|
|
||||||
OutputDirectory="JITMemtestRelease"
|
|
||||||
IntermediateDirectory="JITMemtestRelease"
|
|
||||||
ConfigurationType="2"
|
|
||||||
UseOfMFC="0"
|
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
|
||||||
CharacterSet="2">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
GlobalOptimizations="TRUE"
|
|
||||||
InlineFunctionExpansion="1"
|
|
||||||
FavorSizeOrSpeed="1"
|
|
||||||
AdditionalIncludeDirectories="..\..\metamod\metamod,..\..\hlsdk\sourcecode\common,..\..\hlsdk\sourcecode\engine,..\..\hlsdk\sourcecode\dlls,..\..\hlsdk\sourcecode\pm_shared,..\extra\include"
|
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;amxmodx_EXPORTS;MEMORY_TEST;JIT"
|
|
||||||
StringPooling="TRUE"
|
|
||||||
RuntimeLibrary="4"
|
|
||||||
EnableFunctionLevelLinking="TRUE"
|
|
||||||
UsePrecompiledHeader="2"
|
|
||||||
PrecompiledHeaderThrough="amxmodx.h"
|
|
||||||
PrecompiledHeaderFile=".\jitmemtestrelease/amxmodx.pch"
|
|
||||||
AssemblerListingLocation=".\jitmemtestrelease/"
|
|
||||||
ObjectFile=".\jitmemtestrelease/"
|
|
||||||
ProgramDataBaseFileName=".\jitmemtestrelease/"
|
|
||||||
WarningLevel="3"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
CompileAs="0"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalOptions="/MACHINE:I386"
|
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib ..\zlib\zlib.lib"
|
|
||||||
OutputFile="jitmemtestrelease/amxmodx_mm.dll"
|
|
||||||
LinkIncremental="1"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
|
||||||
ModuleDefinitionFile=""
|
|
||||||
ProgramDatabaseFile=".\jitmemtestrelease/amxx_mm.pdb"
|
|
||||||
ImportLibrary=".\jitmemtestrelease/amxx_mm.lib"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
MkTypLibCompatible="TRUE"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
TargetEnvironment="1"
|
|
||||||
TypeLibraryName=".\release/amxmodx.tlb"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
Culture="1033"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
|
||||||
</Configuration>
|
|
||||||
<Configuration
|
|
||||||
Name="MaximalSpeed|Win32"
|
|
||||||
OutputDirectory="MaximalSpeed"
|
|
||||||
IntermediateDirectory="MaximalSpeed"
|
|
||||||
ConfigurationType="2"
|
|
||||||
UseOfMFC="0"
|
|
||||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
|
||||||
CharacterSet="2">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
GlobalOptimizations="TRUE"
|
|
||||||
InlineFunctionExpansion="1"
|
|
||||||
EnableIntrinsicFunctions="TRUE"
|
|
||||||
FavorSizeOrSpeed="1"
|
|
||||||
OptimizeForProcessor="2"
|
|
||||||
OptimizeForWindowsApplication="TRUE"
|
|
||||||
AdditionalIncludeDirectories="..\..\metamod\metamod,..\..\hlsdk\sourcecode\common,..\..\hlsdk\sourcecode\engine,..\..\hlsdk\sourcecode\dlls,..\..\hlsdk\sourcecode\pm_shared,..\extra\include"
|
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;amxmodx_EXPORTS;JIT"
|
|
||||||
StringPooling="TRUE"
|
|
||||||
RuntimeLibrary="4"
|
|
||||||
EnableFunctionLevelLinking="TRUE"
|
|
||||||
UsePrecompiledHeader="2"
|
|
||||||
PrecompiledHeaderThrough="amxmodx.h"
|
|
||||||
PrecompiledHeaderFile=".\MaximalSpeed/amxmodx.pch"
|
|
||||||
AssemblerListingLocation=".\MaximalSpeed/"
|
|
||||||
ObjectFile=".\MaximalSpeed/"
|
|
||||||
ProgramDataBaseFileName=".\MaximalSpeed/"
|
|
||||||
WarningLevel="3"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
CompileAs="0"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCCustomBuildTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCLinkerTool"
|
|
||||||
AdditionalOptions="/MACHINE:I386"
|
|
||||||
AdditionalDependencies="odbc32.lib odbccp32.lib ..\jit\jits.lib ..\zlib\zlib.lib"
|
|
||||||
OutputFile="MaximalSpeed/amxmodx_mm.dll"
|
|
||||||
LinkIncremental="1"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
AdditionalLibraryDirectories="..\extra\lib_win32"
|
|
||||||
ModuleDefinitionFile=""
|
|
||||||
ProgramDatabaseFile=".\MaximalSpeede/amxx_mm.pdb"
|
|
||||||
ImportLibrary=".\jitrelease/amxx_mm.lib"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCMIDLTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
MkTypLibCompatible="TRUE"
|
|
||||||
SuppressStartupBanner="TRUE"
|
|
||||||
TargetEnvironment="1"
|
|
||||||
TypeLibraryName=".\release/amxmodx.tlb"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPostBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreBuildEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCPreLinkEventTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCResourceCompilerTool"
|
|
||||||
PreprocessorDefinitions="NDEBUG"
|
|
||||||
Culture="1033"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebServiceProxyGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCXMLDataGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCWebDeploymentTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCManagedWrapperGeneratorTool"/>
|
|
||||||
<Tool
|
|
||||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
|
||||||
</Configuration>
|
|
||||||
</Configurations>
|
|
||||||
<References>
|
|
||||||
</References>
|
|
||||||
<Files>
|
|
||||||
<Filter
|
|
||||||
Name="Source Files"
|
|
||||||
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
|
|
||||||
<File
|
|
||||||
RelativePath="..\amx.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\amxcore.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\amxmodx.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\amxtime.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\amxxfile.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\amxxlog.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CCmd.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CEvent.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CFile.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CForward.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CLang.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CLogEvent.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CMenu.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CMisc.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CModule.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CPlugin.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CTask.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CVault.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\emsg.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\fakemeta.cpp">
|
|
||||||
<FileConfiguration
|
|
||||||
Name="MemtestDebug|Win32">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"
|
|
||||||
GeneratePreprocessedFile="0"/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\file.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\float.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\md5.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\meta_api.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\modules.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\power.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\srvcmd.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\string.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\strptime.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\util.cpp">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\vault.cpp">
|
|
||||||
</File>
|
|
||||||
<Filter
|
|
||||||
Name="mmgr"
|
|
||||||
Filter="">
|
|
||||||
<File
|
|
||||||
RelativePath="..\mmgr\mmgr.cpp">
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Debug|Win32"
|
|
||||||
ExcludedFromBuild="TRUE">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="Release|Win32"
|
|
||||||
ExcludedFromBuild="TRUE">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="JITDebug|Win32"
|
|
||||||
ExcludedFromBuild="TRUE">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="JITRelease|Win32"
|
|
||||||
ExcludedFromBuild="TRUE">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"/>
|
|
||||||
</FileConfiguration>
|
|
||||||
<FileConfiguration
|
|
||||||
Name="MaximalSpeed|Win32"
|
|
||||||
ExcludedFromBuild="TRUE">
|
|
||||||
<Tool
|
|
||||||
Name="VCCLCompilerTool"/>
|
|
||||||
</FileConfiguration>
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
</Filter>
|
|
||||||
<Filter
|
|
||||||
Name="Header Files"
|
|
||||||
Filter="h;hpp;hxx;hm;inl">
|
|
||||||
<File
|
|
||||||
RelativePath="..\amx.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\amxmodx.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\amxxfile.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\amxxlog.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CCmd.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CEvent.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CFile.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CForward.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CLang.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CList.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CLogEvent.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CMenu.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CMisc.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CModule.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CPlugin.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CQueue.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CRList.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CString.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CTask.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CVault.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\CVector.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\fakemeta.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\md5.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\modules.h">
|
|
||||||
</File>
|
|
||||||
<Filter
|
|
||||||
Name="mmgr"
|
|
||||||
Filter="">
|
|
||||||
<File
|
|
||||||
RelativePath="..\mmgr\mmgr.h">
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath="..\mmgr\nommgr.h">
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
</Filter>
|
|
||||||
<Filter
|
|
||||||
Name="Resource Files"
|
|
||||||
Filter="rc">
|
|
||||||
<File
|
|
||||||
RelativePath="..\version.rc">
|
|
||||||
</File>
|
|
||||||
</Filter>
|
|
||||||
</Files>
|
|
||||||
<Globals>
|
|
||||||
</Globals>
|
|
||||||
</VisualStudioProject>
|
|
@ -2439,14 +2439,11 @@ PFN_GET_AMXSTRINGLEN g_fn_GetAmxStringLen;
|
|||||||
PFN_FORMAT_AMXSTRING g_fn_FormatAmxString;
|
PFN_FORMAT_AMXSTRING g_fn_FormatAmxString;
|
||||||
PFN_COPY_AMXMEMORY g_fn_CopyAmxMemory;
|
PFN_COPY_AMXMEMORY g_fn_CopyAmxMemory;
|
||||||
PFN_LOG g_fn_Log;
|
PFN_LOG g_fn_Log;
|
||||||
PFN_LOG_ERROR g_fn_LogError;
|
|
||||||
PFN_RAISE_AMXERROR g_fn_RaiseAmxError;
|
PFN_RAISE_AMXERROR g_fn_RaiseAmxError;
|
||||||
PFN_REGISTER_FORWARD g_fn_RegisterForward;
|
PFN_REGISTER_FORWARD g_fn_RegisterForward;
|
||||||
PFN_EXECUTE_FORWARD g_fn_ExecuteForward;
|
PFN_EXECUTE_FORWARD g_fn_ExecuteForward;
|
||||||
PFN_PREPARE_CELLARRAY g_fn_PrepareCellArray;
|
PFN_PREPARE_CELLARRAY g_fn_PrepareCellArray;
|
||||||
PFN_PREPARE_CHARARRAY g_fn_PrepareCharArray;
|
PFN_PREPARE_CHARARRAY g_fn_PrepareCharArray;
|
||||||
PFN_PREPARE_CELLARRAY_A g_fn_PrepareCellArrayA;
|
|
||||||
PFN_PREPARE_CHARARRAY_A g_fn_PrepareCharArrayA;
|
|
||||||
PFN_IS_PLAYER_VALID g_fn_IsPlayerValid;
|
PFN_IS_PLAYER_VALID g_fn_IsPlayerValid;
|
||||||
PFN_GET_PLAYER_NAME g_fn_GetPlayerName;
|
PFN_GET_PLAYER_NAME g_fn_GetPlayerName;
|
||||||
PFN_GET_PLAYER_IP g_fn_GetPlayerIP;
|
PFN_GET_PLAYER_IP g_fn_GetPlayerIP;
|
||||||
@ -2456,7 +2453,6 @@ PFN_IS_PLAYER_AUTHORIZED g_fn_IsPlayerAuthorized;
|
|||||||
PFN_GET_PLAYER_TIME g_fn_GetPlayerTime;
|
PFN_GET_PLAYER_TIME g_fn_GetPlayerTime;
|
||||||
PFN_GET_PLAYER_PLAYTIME g_fn_GetPlayerPlayTime;
|
PFN_GET_PLAYER_PLAYTIME g_fn_GetPlayerPlayTime;
|
||||||
PFN_GET_PLAYER_CURWEAPON g_fn_GetPlayerCurweapon;
|
PFN_GET_PLAYER_CURWEAPON g_fn_GetPlayerCurweapon;
|
||||||
PFN_GET_PLAYER_TEAM g_fn_GetPlayerTeam;
|
|
||||||
PFN_GET_PLAYER_TEAMID g_fn_GetPlayerTeamID;
|
PFN_GET_PLAYER_TEAMID g_fn_GetPlayerTeamID;
|
||||||
PFN_GET_PLAYER_DEATHS g_fn_GetPlayerDeaths;
|
PFN_GET_PLAYER_DEATHS g_fn_GetPlayerDeaths;
|
||||||
PFN_GET_PLAYER_MENU g_fn_GetPlayerMenu;
|
PFN_GET_PLAYER_MENU g_fn_GetPlayerMenu;
|
||||||
@ -2482,10 +2478,6 @@ PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
|||||||
PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
||||||
PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
||||||
PFN_MERGEDEFINITION_FILE g_fn_MergeDefinition_File;
|
PFN_MERGEDEFINITION_FILE g_fn_MergeDefinition_File;
|
||||||
PFN_AMX_FINDNATIVE g_fn_AmxFindNative;
|
|
||||||
PFN_GETPLAYERFLAGS g_fn_GetPlayerFlags;
|
|
||||||
PFN_GET_PLAYER_EDICT g_fn_GetPlayerEdict;
|
|
||||||
PFN_FORMAT g_fn_Format;
|
|
||||||
|
|
||||||
// *** Exports ***
|
// *** Exports ***
|
||||||
C_DLLEXPORT int AMXX_Query(int *interfaceVersion, amxx_module_info_s *moduleInfo)
|
C_DLLEXPORT int AMXX_Query(int *interfaceVersion, amxx_module_info_s *moduleInfo)
|
||||||
@ -2529,9 +2521,7 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("PrintSrvConsole", g_fn_PrintSrvConsole, PFN_PRINT_SRVCONSOLE);
|
REQFUNC("PrintSrvConsole", g_fn_PrintSrvConsole, PFN_PRINT_SRVCONSOLE);
|
||||||
REQFUNC("GetModname", g_fn_GetModname, PFN_GET_MODNAME);
|
REQFUNC("GetModname", g_fn_GetModname, PFN_GET_MODNAME);
|
||||||
REQFUNC("Log", g_fn_Log, PFN_LOG);
|
REQFUNC("Log", g_fn_Log, PFN_LOG);
|
||||||
REQFUNC("LogError", g_fn_LogError, PFN_LOG_ERROR);
|
|
||||||
REQFUNC("MergeDefinitionFile", g_fn_MergeDefinition_File, PFN_MERGEDEFINITION_FILE);
|
REQFUNC("MergeDefinitionFile", g_fn_MergeDefinition_File, PFN_MERGEDEFINITION_FILE);
|
||||||
REQFUNC("Format", g_fn_Format, PFN_FORMAT);
|
|
||||||
|
|
||||||
// Amx scripts
|
// Amx scripts
|
||||||
REQFUNC("GetAmxScript", g_fn_GetAmxScript, PFN_GET_AMXSCRIPT);
|
REQFUNC("GetAmxScript", g_fn_GetAmxScript, PFN_GET_AMXSCRIPT);
|
||||||
@ -2539,7 +2529,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("FindAmxScriptByName", g_fn_FindAmxScriptByName, PFN_FIND_AMXSCRIPT_BYNAME);
|
REQFUNC("FindAmxScriptByName", g_fn_FindAmxScriptByName, PFN_FIND_AMXSCRIPT_BYNAME);
|
||||||
REQFUNC("LoadAmxScript", g_fn_LoadAmxScript, PFN_LOAD_AMXSCRIPT);
|
REQFUNC("LoadAmxScript", g_fn_LoadAmxScript, PFN_LOAD_AMXSCRIPT);
|
||||||
REQFUNC("UnloadAmxScript", g_fn_UnloadAmxScript, PFN_UNLOAD_AMXSCRIPT);
|
REQFUNC("UnloadAmxScript", g_fn_UnloadAmxScript, PFN_UNLOAD_AMXSCRIPT);
|
||||||
REQFUNC("GetAmxScriptName", g_fn_GetAmxScriptName, PFN_GET_AMXSCRIPTNAME);
|
|
||||||
|
|
||||||
// String / mem in amx scripts support
|
// String / mem in amx scripts support
|
||||||
REQFUNC("SetAmxString", g_fn_SetAmxString, PFN_SET_AMXSTRING);
|
REQFUNC("SetAmxString", g_fn_SetAmxString, PFN_SET_AMXSTRING);
|
||||||
@ -2553,7 +2542,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("amx_Execv", g_fn_AmxExecv, PFN_AMX_EXECV);
|
REQFUNC("amx_Execv", g_fn_AmxExecv, PFN_AMX_EXECV);
|
||||||
REQFUNC("amx_FindPublic", g_fn_AmxFindPublic, PFN_AMX_FINDPUBLIC);
|
REQFUNC("amx_FindPublic", g_fn_AmxFindPublic, PFN_AMX_FINDPUBLIC);
|
||||||
REQFUNC("amx_Allot", g_fn_AmxAllot, PFN_AMX_ALLOT);
|
REQFUNC("amx_Allot", g_fn_AmxAllot, PFN_AMX_ALLOT);
|
||||||
REQFUNC("amx_FindNative", g_fn_AmxFindNative, PFN_AMX_FINDNATIVE);
|
|
||||||
|
|
||||||
// Natives / Forwards
|
// Natives / Forwards
|
||||||
REQFUNC("AddNatives", g_fn_AddNatives, PFN_ADD_NATIVES);
|
REQFUNC("AddNatives", g_fn_AddNatives, PFN_ADD_NATIVES);
|
||||||
@ -2565,8 +2553,7 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("ExecuteForward", g_fn_ExecuteForward, PFN_EXECUTE_FORWARD);
|
REQFUNC("ExecuteForward", g_fn_ExecuteForward, PFN_EXECUTE_FORWARD);
|
||||||
REQFUNC("PrepareCellArray", g_fn_PrepareCellArray, PFN_PREPARE_CELLARRAY);
|
REQFUNC("PrepareCellArray", g_fn_PrepareCellArray, PFN_PREPARE_CELLARRAY);
|
||||||
REQFUNC("PrepareCharArray", g_fn_PrepareCharArray, PFN_PREPARE_CHARARRAY);
|
REQFUNC("PrepareCharArray", g_fn_PrepareCharArray, PFN_PREPARE_CHARARRAY);
|
||||||
REQFUNC("PrepareCellArrayA", g_fn_PrepareCellArrayA, PFN_PREPARE_CELLARRAY_A);
|
|
||||||
REQFUNC("PrepareCharArrayA", g_fn_PrepareCharArrayA, PFN_PREPARE_CHARARRAY_A);
|
|
||||||
// Player
|
// Player
|
||||||
REQFUNC("IsPlayerValid", g_fn_IsPlayerValid, PFN_IS_PLAYER_VALID);
|
REQFUNC("IsPlayerValid", g_fn_IsPlayerValid, PFN_IS_PLAYER_VALID);
|
||||||
REQFUNC("GetPlayerName", g_fn_GetPlayerName, PFN_GET_PLAYER_NAME);
|
REQFUNC("GetPlayerName", g_fn_GetPlayerName, PFN_GET_PLAYER_NAME);
|
||||||
@ -2578,7 +2565,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("GetPlayerPlayTime", g_fn_GetPlayerPlayTime, PFN_GET_PLAYER_PLAYTIME);
|
REQFUNC("GetPlayerPlayTime", g_fn_GetPlayerPlayTime, PFN_GET_PLAYER_PLAYTIME);
|
||||||
REQFUNC("GetPlayerCurweapon", g_fn_GetPlayerCurweapon, PFN_GET_PLAYER_CURWEAPON);
|
REQFUNC("GetPlayerCurweapon", g_fn_GetPlayerCurweapon, PFN_GET_PLAYER_CURWEAPON);
|
||||||
REQFUNC("GetPlayerTeamID", g_fn_GetPlayerTeamID, PFN_GET_PLAYER_TEAMID);
|
REQFUNC("GetPlayerTeamID", g_fn_GetPlayerTeamID, PFN_GET_PLAYER_TEAMID);
|
||||||
REQFUNC("GetPlayerTeam",g_fn_GetPlayerTeam, PFN_GET_PLAYER_TEAM);
|
|
||||||
REQFUNC("GetPlayerDeaths", g_fn_GetPlayerDeaths, PFN_GET_PLAYER_DEATHS);
|
REQFUNC("GetPlayerDeaths", g_fn_GetPlayerDeaths, PFN_GET_PLAYER_DEATHS);
|
||||||
REQFUNC("GetPlayerMenu", g_fn_GetPlayerMenu, PFN_GET_PLAYER_MENU);
|
REQFUNC("GetPlayerMenu", g_fn_GetPlayerMenu, PFN_GET_PLAYER_MENU);
|
||||||
REQFUNC("GetPlayerKeys", g_fn_GetPlayerKeys, PFN_GET_PLAYER_KEYS);
|
REQFUNC("GetPlayerKeys", g_fn_GetPlayerKeys, PFN_GET_PLAYER_KEYS);
|
||||||
@ -2588,8 +2574,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("IsPlayerHLTV", g_fn_IsPlayerHLTV, PFN_IS_PLAYER_HLTV);
|
REQFUNC("IsPlayerHLTV", g_fn_IsPlayerHLTV, PFN_IS_PLAYER_HLTV);
|
||||||
REQFUNC("GetPlayerArmor", g_fn_GetPlayerArmor, PFN_GET_PLAYER_ARMOR);
|
REQFUNC("GetPlayerArmor", g_fn_GetPlayerArmor, PFN_GET_PLAYER_ARMOR);
|
||||||
REQFUNC("GetPlayerHealth", g_fn_GetPlayerHealth, PFN_GET_PLAYER_HEALTH);
|
REQFUNC("GetPlayerHealth", g_fn_GetPlayerHealth, PFN_GET_PLAYER_HEALTH);
|
||||||
REQFUNC("GetPlayerFlags", g_fn_GetPlayerFlags, PFN_GETPLAYERFLAGS);
|
|
||||||
REQFUNC("GetPlayerEdict", g_fn_GetPlayerEdict, PFN_GET_PLAYER_EDICT);
|
|
||||||
|
|
||||||
// Memory
|
// Memory
|
||||||
REQFUNC_OPT("Allocator", g_fn_Allocator, PFN_ALLOCATOR);
|
REQFUNC_OPT("Allocator", g_fn_Allocator, PFN_ALLOCATOR);
|
||||||
@ -2656,14 +2640,11 @@ void ValidateMacros_DontCallThis_Smiley()
|
|||||||
MF_GetAmxStringLen(NULL);
|
MF_GetAmxStringLen(NULL);
|
||||||
MF_CopyAmxMemory(NULL, NULL, 0);
|
MF_CopyAmxMemory(NULL, NULL, 0);
|
||||||
MF_Log("str", "str", 0);
|
MF_Log("str", "str", 0);
|
||||||
MF_LogError(NULL, 0, NULL);
|
|
||||||
MF_RaiseAmxError(NULL, 0);
|
MF_RaiseAmxError(NULL, 0);
|
||||||
MF_RegisterForward("str", (ForwardExecType)0, 0, 0, 0);
|
MF_RegisterForward("str", (ForwardExecType)0, 0, 0, 0);
|
||||||
MF_ExecuteForward(0, 0, 0);
|
MF_ExecuteForward(0, 0, 0);
|
||||||
MF_PrepareCellArray(NULL, 0);
|
MF_PrepareCellArray(NULL, 0);
|
||||||
MF_PrepareCharArray(NULL, 0);
|
MF_PrepareCharArray(NULL, 0);
|
||||||
MF_PrepareCellArrayA(NULL, 0, true);
|
|
||||||
MF_PrepareCharArrayA(NULL, 0, true);
|
|
||||||
MF_IsPlayerValid(0);
|
MF_IsPlayerValid(0);
|
||||||
MF_GetPlayerName(0);
|
MF_GetPlayerName(0);
|
||||||
MF_GetPlayerIP(0);
|
MF_GetPlayerIP(0);
|
||||||
@ -2674,7 +2655,6 @@ void ValidateMacros_DontCallThis_Smiley()
|
|||||||
MF_GetPlayerPlayTime(0);
|
MF_GetPlayerPlayTime(0);
|
||||||
MF_GetPlayerCurweapon(0);
|
MF_GetPlayerCurweapon(0);
|
||||||
MF_GetPlayerTeamID(0);
|
MF_GetPlayerTeamID(0);
|
||||||
MF_GetPlayerTeam(0);
|
|
||||||
MF_GetPlayerDeaths(0);
|
MF_GetPlayerDeaths(0);
|
||||||
MF_GetPlayerMenu(0);
|
MF_GetPlayerMenu(0);
|
||||||
MF_GetPlayerKeys(0);
|
MF_GetPlayerKeys(0);
|
||||||
@ -2688,14 +2668,11 @@ void ValidateMacros_DontCallThis_Smiley()
|
|||||||
MF_AmxExecv(0, 0, 0, 0, 0);
|
MF_AmxExecv(0, 0, 0, 0, 0);
|
||||||
MF_AmxFindPublic(0, 0, 0);
|
MF_AmxFindPublic(0, 0, 0);
|
||||||
MF_AmxAllot(0, 0, 0, 0);
|
MF_AmxAllot(0, 0, 0, 0);
|
||||||
MF_LoadAmxScript(0, 0, 0, 0, 0);
|
MF_LoadAmxScript(0, 0, 0, 0);
|
||||||
MF_UnloadAmxScript(0, 0);
|
MF_UnloadAmxScript(0, 0);
|
||||||
MF_RegisterSPForward(0, 0, 0, 0, 0, 0);
|
MF_RegisterSPForward(0, 0, 0, 0, 0, 0);
|
||||||
MF_RegisterSPForwardByName(0, 0, 0, 0, 0, 0);
|
MF_RegisterSPForwardByName(0, 0, 0, 0, 0, 0);
|
||||||
MF_UnregisterSPForward(0);
|
MF_UnregisterSPForward(0);
|
||||||
MF_GetPlayerFrags(0);
|
|
||||||
MF_GetPlayerEdict(0);
|
|
||||||
MF_Format("", 4, "str");
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -2812,7 +2789,7 @@ void *operator new(size_t reportedSize)
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void *operator new[](size_t reportedSize)
|
void *operator new[](size_t reportedSize)
|
||||||
@ -2825,7 +2802,7 @@ void *operator new[](size_t reportedSize)
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Microsoft memory tracking operators
|
// Microsoft memory tracking operators
|
||||||
@ -2839,7 +2816,7 @@ void *operator new(size_t reportedSize, const char *sourceFile, int sourceLine)
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
void *operator new[](size_t reportedSize, const char *sourceFile, int sourceLine)
|
void *operator new[](size_t reportedSize, const char *sourceFile, int sourceLine)
|
||||||
{
|
{
|
||||||
@ -2851,7 +2828,7 @@ void *operator new[](size_t reportedSize, const char *sourceFile, int sourceLine
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void operator delete(void *reportedAddress)
|
void operator delete(void *reportedAddress)
|
||||||
|
@ -204,9 +204,11 @@ typedef struct tagAMX {
|
|||||||
cell reset_stk PACKED;
|
cell reset_stk PACKED;
|
||||||
cell reset_hea PACKED;
|
cell reset_hea PACKED;
|
||||||
cell sysreq_d PACKED; /* relocated address/value for the SYSREQ.D opcode */
|
cell sysreq_d PACKED; /* relocated address/value for the SYSREQ.D opcode */
|
||||||
|
#if defined JIT
|
||||||
/* support variables for the JIT */
|
/* support variables for the JIT */
|
||||||
int reloc_size PACKED; /* required temporary buffer for relocations */
|
int reloc_size PACKED; /* required temporary buffer for relocations */
|
||||||
long code_size PACKED; /* estimated memory footprint of the native code */
|
long code_size PACKED; /* estimated memory footprint of the native code */
|
||||||
|
#endif
|
||||||
} AMX;
|
} AMX;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
@ -238,14 +240,6 @@ enum {
|
|||||||
AMX_ERR_DOMAIN, /* domain error, expression result does not fit in range */
|
AMX_ERR_DOMAIN, /* domain error, expression result does not fit in range */
|
||||||
};
|
};
|
||||||
|
|
||||||
#if !defined AMX_NO_ALIGN
|
|
||||||
#if defined __linux__
|
|
||||||
#pragma pack() /* reset default packing */
|
|
||||||
#else
|
|
||||||
#pragma pack(pop) /* reset previous packing */
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
// ***** declare functions *****
|
// ***** declare functions *****
|
||||||
|
|
||||||
@ -1919,14 +1913,11 @@ typedef int (*PFN_GET_AMXSTRINGLEN) (const cell *ptr);
|
|||||||
typedef char * (*PFN_FORMAT_AMXSTRING) (AMX * /*amx*/, cell * /*params*/, int /*startParam*/, int * /*pLen*/);
|
typedef char * (*PFN_FORMAT_AMXSTRING) (AMX * /*amx*/, cell * /*params*/, int /*startParam*/, int * /*pLen*/);
|
||||||
typedef void (*PFN_COPY_AMXMEMORY) (cell * /*dest*/, const cell * /*src*/, int /*len*/);
|
typedef void (*PFN_COPY_AMXMEMORY) (cell * /*dest*/, const cell * /*src*/, int /*len*/);
|
||||||
typedef void (*PFN_LOG) (const char * /*fmt*/, ...);
|
typedef void (*PFN_LOG) (const char * /*fmt*/, ...);
|
||||||
typedef void (*PFN_LOG_ERROR) (AMX * /*amx*/, int /*err*/, const char * /*fmt*/, ...);
|
|
||||||
typedef int (*PFN_RAISE_AMXERROR) (AMX * /*amx*/, int /*error*/);
|
typedef int (*PFN_RAISE_AMXERROR) (AMX * /*amx*/, int /*error*/);
|
||||||
typedef int (*PFN_REGISTER_FORWARD) (const char * /*funcname*/, ForwardExecType /*exectype*/, ... /*paramtypes terminated by PF_DONE*/);
|
typedef int (*PFN_REGISTER_FORWARD) (const char * /*funcname*/, ForwardExecType /*exectype*/, ... /*paramtypes terminated by PF_DONE*/);
|
||||||
typedef int (*PFN_EXECUTE_FORWARD) (int /*id*/, ... /*params*/);
|
typedef int (*PFN_EXECUTE_FORWARD) (int /*id*/, ... /*params*/);
|
||||||
typedef cell (*PFN_PREPARE_CELLARRAY) (cell * /*ptr*/, unsigned int /*size*/);
|
typedef cell (*PFN_PREPARE_CELLARRAY) (cell * /*ptr*/, unsigned int /*size*/);
|
||||||
typedef cell (*PFN_PREPARE_CHARARRAY) (char * /*ptr*/, unsigned int /*size*/);
|
typedef cell (*PFN_PREPARE_CHARARRAY) (char * /*ptr*/, unsigned int /*size*/);
|
||||||
typedef cell (*PFN_PREPARE_CELLARRAY_A) (cell * /*ptr*/, unsigned int /*size*/, bool /*copyBack*/);
|
|
||||||
typedef cell (*PFN_PREPARE_CHARARRAY_A) (char * /*ptr*/, unsigned int /*size*/, bool /*copyBack*/);
|
|
||||||
typedef int (*PFN_IS_PLAYER_VALID) (int /*id*/);
|
typedef int (*PFN_IS_PLAYER_VALID) (int /*id*/);
|
||||||
typedef const char * (*PFN_GET_PLAYER_NAME) (int /*id*/);
|
typedef const char * (*PFN_GET_PLAYER_NAME) (int /*id*/);
|
||||||
typedef const char * (*PFN_GET_PLAYER_IP) (int /*id*/);
|
typedef const char * (*PFN_GET_PLAYER_IP) (int /*id*/);
|
||||||
@ -1935,9 +1926,7 @@ typedef int (*PFN_IS_PLAYER_BOT) (int /*id*/);
|
|||||||
typedef int (*PFN_IS_PLAYER_AUTHORIZED) (int /*id*/);
|
typedef int (*PFN_IS_PLAYER_AUTHORIZED) (int /*id*/);
|
||||||
typedef float (*PFN_GET_PLAYER_TIME) (int /*id*/);
|
typedef float (*PFN_GET_PLAYER_TIME) (int /*id*/);
|
||||||
typedef float (*PFN_GET_PLAYER_PLAYTIME) (int /*id*/);
|
typedef float (*PFN_GET_PLAYER_PLAYTIME) (int /*id*/);
|
||||||
typedef int (*PFN_GETPLAYERFLAGS) (int /* id*/);
|
|
||||||
typedef int (*PFN_GET_PLAYER_CURWEAPON) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_CURWEAPON) (int /*id*/);
|
||||||
typedef const char * (*PFN_GET_PLAYER_TEAM) (int /*id*/);
|
|
||||||
typedef int (*PFN_GET_PLAYER_TEAMID) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_TEAMID) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_DEATHS) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_DEATHS) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_MENU) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_MENU) (int /*id*/);
|
||||||
@ -1948,12 +1937,6 @@ typedef int (*PFN_IS_PLAYER_CONNECTING) (int /*id*/);
|
|||||||
typedef int (*PFN_IS_PLAYER_HLTV) (int /*id*/);
|
typedef int (*PFN_IS_PLAYER_HLTV) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_ARMOR) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_ARMOR) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_HEALTH) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_HEALTH) (int /*id*/);
|
||||||
#ifdef USE_METAMOD
|
|
||||||
typedef edict_t * (*PFN_GET_PLAYER_EDICT) (int /*id*/);
|
|
||||||
#else
|
|
||||||
typedef void * (*PFN_GET_PLAYER_EDICT) (int /*id*/);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef void * (*PFN_ALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
typedef void * (*PFN_ALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
||||||
const unsigned int /*type*/, const size_t /*size*/);
|
const unsigned int /*type*/, const size_t /*size*/);
|
||||||
typedef void * (*PFN_REALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
typedef void * (*PFN_REALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
||||||
@ -1964,8 +1947,7 @@ typedef int (*PFN_AMX_EXEC) (AMX* /*amx*/, cell* /*return val*/, int /*in
|
|||||||
typedef int (*PFN_AMX_EXECV) (AMX* /*amx*/, cell* /*return val*/, int /*index*/, int /*numparams*/, cell[] /*params*/);
|
typedef int (*PFN_AMX_EXECV) (AMX* /*amx*/, cell* /*return val*/, int /*index*/, int /*numparams*/, cell[] /*params*/);
|
||||||
typedef int (*PFN_AMX_ALLOT) (AMX* /*amx*/, int /*length*/, cell* /*amx_addr*/, cell** /*phys_addr*/);
|
typedef int (*PFN_AMX_ALLOT) (AMX* /*amx*/, int /*length*/, cell* /*amx_addr*/, cell** /*phys_addr*/);
|
||||||
typedef int (*PFN_AMX_FINDPUBLIC) (AMX* /*amx*/, char* /*func name*/, int* /*index*/);
|
typedef int (*PFN_AMX_FINDPUBLIC) (AMX* /*amx*/, char* /*func name*/, int* /*index*/);
|
||||||
typedef int (*PFN_AMX_FINDNATIVE) (AMX* /*amx*/, char* /*func name*/, int* /*index*/);
|
typedef int (*PFN_LOAD_AMXSCRIPT) (AMX* /*amx*/, void** /*code*/, const char* /*path*/, char[64] /*error info*/);
|
||||||
typedef int (*PFN_LOAD_AMXSCRIPT) (AMX* /*amx*/, void** /*code*/, const char* /*path*/, char[64] /*error info*/, int /* debug */);
|
|
||||||
typedef int (*PFN_UNLOAD_AMXSCRIPT) (AMX* /*amx*/,void** /*code*/);
|
typedef int (*PFN_UNLOAD_AMXSCRIPT) (AMX* /*amx*/,void** /*code*/);
|
||||||
typedef cell (*PFN_REAL_TO_CELL) (REAL /*x*/);
|
typedef cell (*PFN_REAL_TO_CELL) (REAL /*x*/);
|
||||||
typedef REAL (*PFN_CELL_TO_REAL) (cell /*x*/);
|
typedef REAL (*PFN_CELL_TO_REAL) (cell /*x*/);
|
||||||
@ -1973,7 +1955,6 @@ typedef int (*PFN_REGISTER_SPFORWARD) (AMX * /*amx*/, int /*func*/, ... /*pa
|
|||||||
typedef int (*PFN_REGISTER_SPFORWARD_BYNAME) (AMX * /*amx*/, const char * /*funcName*/, ... /*params*/);
|
typedef int (*PFN_REGISTER_SPFORWARD_BYNAME) (AMX * /*amx*/, const char * /*funcName*/, ... /*params*/);
|
||||||
typedef void (*PFN_UNREGISTER_SPFORWARD) (int /*id*/);
|
typedef void (*PFN_UNREGISTER_SPFORWARD) (int /*id*/);
|
||||||
typedef void (*PFN_MERGEDEFINITION_FILE) (const char * /*filename*/);
|
typedef void (*PFN_MERGEDEFINITION_FILE) (const char * /*filename*/);
|
||||||
typedef const char * (*PFN_FORMAT) (const char * /*fmt*/, ... /*params*/);
|
|
||||||
|
|
||||||
extern PFN_ADD_NATIVES g_fn_AddNatives;
|
extern PFN_ADD_NATIVES g_fn_AddNatives;
|
||||||
extern PFN_BUILD_PATHNAME g_fn_BuildPathname;
|
extern PFN_BUILD_PATHNAME g_fn_BuildPathname;
|
||||||
@ -1990,14 +1971,11 @@ extern PFN_GET_AMXSTRINGLEN g_fn_GetAmxStringLen;
|
|||||||
extern PFN_FORMAT_AMXSTRING g_fn_FormatAmxString;
|
extern PFN_FORMAT_AMXSTRING g_fn_FormatAmxString;
|
||||||
extern PFN_COPY_AMXMEMORY g_fn_CopyAmxMemory;
|
extern PFN_COPY_AMXMEMORY g_fn_CopyAmxMemory;
|
||||||
extern PFN_LOG g_fn_Log;
|
extern PFN_LOG g_fn_Log;
|
||||||
extern PFN_LOG_ERROR g_fn_LogError;
|
|
||||||
extern PFN_RAISE_AMXERROR g_fn_RaiseAmxError;
|
extern PFN_RAISE_AMXERROR g_fn_RaiseAmxError;
|
||||||
extern PFN_REGISTER_FORWARD g_fn_RegisterForward;
|
extern PFN_REGISTER_FORWARD g_fn_RegisterForward;
|
||||||
extern PFN_EXECUTE_FORWARD g_fn_ExecuteForward;
|
extern PFN_EXECUTE_FORWARD g_fn_ExecuteForward;
|
||||||
extern PFN_PREPARE_CELLARRAY g_fn_PrepareCellArray;
|
extern PFN_PREPARE_CELLARRAY g_fn_PrepareCellArray;
|
||||||
extern PFN_PREPARE_CHARARRAY g_fn_PrepareCharArray;
|
extern PFN_PREPARE_CHARARRAY g_fn_PrepareCharArray;
|
||||||
extern PFN_PREPARE_CELLARRAY_A g_fn_PrepareCellArrayA;
|
|
||||||
extern PFN_PREPARE_CHARARRAY_A g_fn_PrepareCharArrayA;
|
|
||||||
extern PFN_IS_PLAYER_VALID g_fn_IsPlayerValid;
|
extern PFN_IS_PLAYER_VALID g_fn_IsPlayerValid;
|
||||||
extern PFN_GET_PLAYER_NAME g_fn_GetPlayerName;
|
extern PFN_GET_PLAYER_NAME g_fn_GetPlayerName;
|
||||||
extern PFN_GET_PLAYER_IP g_fn_GetPlayerIP;
|
extern PFN_GET_PLAYER_IP g_fn_GetPlayerIP;
|
||||||
@ -2029,11 +2007,6 @@ extern PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
|||||||
extern PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
extern PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
||||||
extern PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
extern PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
||||||
extern PFN_MERGEDEFINITION_FILE g_fn_MergeDefinition_File;
|
extern PFN_MERGEDEFINITION_FILE g_fn_MergeDefinition_File;
|
||||||
extern PFN_AMX_FINDNATIVE g_fn_AmxFindNative;
|
|
||||||
extern PFN_GETPLAYERFLAGS g_fn_GetPlayerFlags;
|
|
||||||
extern PFN_GET_PLAYER_EDICT g_fn_GetPlayerEdict;
|
|
||||||
extern PFN_FORMAT g_fn_Format;
|
|
||||||
extern PFN_GET_PLAYER_TEAM g_fn_GetPlayerTeam;
|
|
||||||
|
|
||||||
#ifdef MAY_NEVER_BE_DEFINED
|
#ifdef MAY_NEVER_BE_DEFINED
|
||||||
// Function prototypes for intellisense and similar systems
|
// Function prototypes for intellisense and similar systems
|
||||||
@ -2053,14 +2026,11 @@ int MF_GetAmxStringLen (const cell *ptr) { }
|
|||||||
char * MF_FormatAmxString (AMX * amx, cell * params, int startParam, int * pLen) { }
|
char * MF_FormatAmxString (AMX * amx, cell * params, int startParam, int * pLen) { }
|
||||||
void MF_CopyAmxMemory (cell * dest, const cell * src, int len) { }
|
void MF_CopyAmxMemory (cell * dest, const cell * src, int len) { }
|
||||||
void MF_Log (const char * fmt, ...) { }
|
void MF_Log (const char * fmt, ...) { }
|
||||||
void MF_LogError (AMX * amx, int err, const char *fmt, ...) { }
|
|
||||||
int MF_RaiseAmxError (AMX * amx, int error) { }
|
int MF_RaiseAmxError (AMX * amx, int error) { }
|
||||||
int MF_RegisterForward (const char * funcname, ForwardExecType exectype, ...) { }
|
int MF_RegisterForward (const char * funcname, ForwardExecType exectype, ...) { }
|
||||||
int MF_ExecuteForward (int id, ...) { }
|
int MF_ExecuteForward (int id, ...) { }
|
||||||
cell MF_PrepareCellArray (cell * ptr, unsigned int size) { }
|
cell MF_PrepareCellArray (cell * ptr, unsigned int size) { }
|
||||||
cell MF_PrepareCharArray (char * ptr, unsigned int size) { }
|
cell MF_PrepareCharArray (char * ptr, unsigned int size) { }
|
||||||
cell MF_PrepareCellArrayA (cell * ptr, unsigned int size, bool copyBack) { }
|
|
||||||
cell MF_PrepareCharArrayA (char * ptr, unsigned int size, bool copyBack) { }
|
|
||||||
int MF_IsPlayerValid (int id) { }
|
int MF_IsPlayerValid (int id) { }
|
||||||
const char * MF_GetPlayerName (int id) { }
|
const char * MF_GetPlayerName (int id) { }
|
||||||
const char * MF_GetPlayerIP (int id) { }
|
const char * MF_GetPlayerIP (int id) { }
|
||||||
@ -2070,7 +2040,6 @@ int MF_IsPlayerAuthorized (int id) { }
|
|||||||
float MF_GetPlayerTime (int id) { }
|
float MF_GetPlayerTime (int id) { }
|
||||||
float MF_GetPlayerPlayTime (int id) { }
|
float MF_GetPlayerPlayTime (int id) { }
|
||||||
int MF_GetPlayerCurweapon (int id) { }
|
int MF_GetPlayerCurweapon (int id) { }
|
||||||
const char * MF_GetPlayerTeam (int id) { }
|
|
||||||
int MF_GetPlayerTeamID (int id) { }
|
int MF_GetPlayerTeamID (int id) { }
|
||||||
int MF_GetPlayerDeaths (int id) { }
|
int MF_GetPlayerDeaths (int id) { }
|
||||||
int MF_GetPlayerMenu (int id) { }
|
int MF_GetPlayerMenu (int id) { }
|
||||||
@ -2086,9 +2055,6 @@ cell amx_ftoc (float x) { }
|
|||||||
int MF_RegisterSPForwardByName (AMX * amx, const char *str, ...) { }
|
int MF_RegisterSPForwardByName (AMX * amx, const char *str, ...) { }
|
||||||
int MF_RegisterSPForward (AMX * amx, int func, ...) { }
|
int MF_RegisterSPForward (AMX * amx, int func, ...) { }
|
||||||
void MF_UnregisterSPForward (int id) { }
|
void MF_UnregisterSPForward (int id) { }
|
||||||
int MF_GetPlayerFlags (int id) { }
|
|
||||||
edict_t* MF_GetPlayerEdict (int id) { }
|
|
||||||
const char * MF_Format (const char *fmt, ...) { }
|
|
||||||
#endif // MAY_NEVER_BE_DEFINED
|
#endif // MAY_NEVER_BE_DEFINED
|
||||||
|
|
||||||
#define MF_AddNatives g_fn_AddNatives
|
#define MF_AddNatives g_fn_AddNatives
|
||||||
@ -2106,14 +2072,11 @@ const char * MF_Format (const char *fmt, ...) { }
|
|||||||
#define MF_GetAmxStringLen g_fn_GetAmxStringLen
|
#define MF_GetAmxStringLen g_fn_GetAmxStringLen
|
||||||
#define MF_CopyAmxMemory g_fn_CopyAmxMemory
|
#define MF_CopyAmxMemory g_fn_CopyAmxMemory
|
||||||
void MF_Log(const char *fmt, ...);
|
void MF_Log(const char *fmt, ...);
|
||||||
#define MF_LogError g_fn_LogError
|
|
||||||
#define MF_RaiseAmxError g_fn_RaiseAmxError
|
#define MF_RaiseAmxError g_fn_RaiseAmxError
|
||||||
#define MF_RegisterForward g_fn_RegisterForward
|
#define MF_RegisterForward g_fn_RegisterForward
|
||||||
#define MF_ExecuteForward g_fn_ExecuteForward
|
#define MF_ExecuteForward g_fn_ExecuteForward
|
||||||
#define MF_PrepareCellArray g_fn_PrepareCellArray
|
#define MF_PrepareCellArray g_fn_PrepareCellArray
|
||||||
#define MF_PrepareCharArray g_fn_PrepareCharArray
|
#define MF_PrepareCharArray g_fn_PrepareCharArray
|
||||||
#define MF_PrepareCellArrayA g_fn_PrepareCellArrayA
|
|
||||||
#define MF_PrepareCharArrayA g_fn_PrepareCharArrayA
|
|
||||||
#define MF_IsPlayerValid g_fn_IsPlayerValid
|
#define MF_IsPlayerValid g_fn_IsPlayerValid
|
||||||
#define MF_GetPlayerName g_fn_GetPlayerName
|
#define MF_GetPlayerName g_fn_GetPlayerName
|
||||||
#define MF_GetPlayerIP g_fn_GetPlayerIP
|
#define MF_GetPlayerIP g_fn_GetPlayerIP
|
||||||
@ -2123,7 +2086,6 @@ void MF_Log(const char *fmt, ...);
|
|||||||
#define MF_GetPlayerTime g_fn_GetPlayerTime
|
#define MF_GetPlayerTime g_fn_GetPlayerTime
|
||||||
#define MF_GetPlayerPlayTime g_fn_GetPlayerPlayTime
|
#define MF_GetPlayerPlayTime g_fn_GetPlayerPlayTime
|
||||||
#define MF_GetPlayerCurweapon g_fn_GetPlayerCurweapon
|
#define MF_GetPlayerCurweapon g_fn_GetPlayerCurweapon
|
||||||
#define MF_GetPlayerTeam g_fn_GetPlayerTeam
|
|
||||||
#define MF_GetPlayerTeamID g_fn_GetPlayerTeamID
|
#define MF_GetPlayerTeamID g_fn_GetPlayerTeamID
|
||||||
#define MF_GetPlayerDeaths g_fn_GetPlayerDeaths
|
#define MF_GetPlayerDeaths g_fn_GetPlayerDeaths
|
||||||
#define MF_GetPlayerMenu g_fn_GetPlayerMenu
|
#define MF_GetPlayerMenu g_fn_GetPlayerMenu
|
||||||
@ -2138,18 +2100,13 @@ void MF_Log(const char *fmt, ...);
|
|||||||
#define MF_AmxExecv g_fn_AmxExecv
|
#define MF_AmxExecv g_fn_AmxExecv
|
||||||
#define MF_AmxFindPublic g_fn_AmxFindPublic
|
#define MF_AmxFindPublic g_fn_AmxFindPublic
|
||||||
#define MF_AmxAllot g_fn_AmxAllot
|
#define MF_AmxAllot g_fn_AmxAllot
|
||||||
#define MF_AmxFindNative g_fn_AmxFindNative
|
|
||||||
#define MF_LoadAmxScript g_fn_LoadAmxScript
|
#define MF_LoadAmxScript g_fn_LoadAmxScript
|
||||||
#define MF_UnloadAmxScript g_fn_UnloadAmxScript
|
#define MF_UnloadAmxScript g_fn_UnloadAmxScript
|
||||||
#define MF_MergeDefinitionFile g_fn_MergeDefinition_File
|
|
||||||
#define amx_ctof g_fn_CellToReal
|
#define amx_ctof g_fn_CellToReal
|
||||||
#define amx_ftoc g_fn_RealToCell
|
#define amx_ftoc g_fn_RealToCell
|
||||||
#define MF_RegisterSPForwardByName g_fn_RegisterSPForwardByName
|
#define MF_RegisterSPForwardByName g_fn_RegisterSPForwardByName
|
||||||
#define MF_RegisterSPForward g_fn_RegisterSPForward
|
#define MF_RegisterSPForward g_fn_RegisterSPForward
|
||||||
#define MF_UnregisterSPForward g_fn_UnregisterSPForward
|
#define MF_UnregisterSPForward g_fn_UnregisterSPForward
|
||||||
#define MF_GetPlayerFlags g_fn_GetPlayerFlags
|
|
||||||
#define MF_GetPlayerEdict g_fn_GetPlayerEdict
|
|
||||||
#define MF_Format g_fn_Format
|
|
||||||
|
|
||||||
/*** Memory ***/
|
/*** Memory ***/
|
||||||
void *operator new(size_t reportedSize);
|
void *operator new(size_t reportedSize);
|
||||||
|
@ -62,18 +62,6 @@ void amx_command(){
|
|||||||
++a;
|
++a;
|
||||||
}
|
}
|
||||||
|
|
||||||
a = g_plugins.begin();
|
|
||||||
|
|
||||||
while (a)
|
|
||||||
{
|
|
||||||
if ( (*a).getStatusCode() == ps_bad_load )
|
|
||||||
{
|
|
||||||
//error
|
|
||||||
print_srvconsole("Load fails: %s\n", (*a).getError());
|
|
||||||
}
|
|
||||||
++a;
|
|
||||||
}
|
|
||||||
|
|
||||||
print_srvconsole( "%d plugins, %d running\n",plugins,running );
|
print_srvconsole( "%d plugins, %d running\n",plugins,running );
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -150,15 +138,7 @@ void amx_command(){
|
|||||||
print_srvconsole( "%s %s\n", Plugin_info.name, Plugin_info.version);
|
print_srvconsole( "%s %s\n", Plugin_info.name, Plugin_info.version);
|
||||||
print_srvconsole( "author: %s (%s)\n", Plugin_info.author, Plugin_info.url);
|
print_srvconsole( "author: %s (%s)\n", Plugin_info.author, Plugin_info.url);
|
||||||
print_srvconsole( "compiled: %s\n", __DATE__ ", " __TIME__);
|
print_srvconsole( "compiled: %s\n", __DATE__ ", " __TIME__);
|
||||||
#ifdef JIT
|
|
||||||
print_srvconsole( "Core mode: JIT\n");
|
|
||||||
#else
|
|
||||||
#ifdef ASM32
|
|
||||||
print_srvconsole( "Core mode: ASM\n");
|
|
||||||
#else
|
|
||||||
print_srvconsole( "Core mode: Normal\n");
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
else if (!strcmp(cmd,"modules"))
|
else if (!strcmp(cmd,"modules"))
|
||||||
{
|
{
|
||||||
@ -169,7 +149,7 @@ void amx_command(){
|
|||||||
int running = 0;
|
int running = 0;
|
||||||
int modules = 0;
|
int modules = 0;
|
||||||
|
|
||||||
CList<CModule,const char *>::iterator a = g_modules.begin();
|
CList<CModule>::iterator a = g_modules.begin();
|
||||||
|
|
||||||
while ( a )
|
while ( a )
|
||||||
{
|
{
|
||||||
@ -185,7 +165,8 @@ void amx_command(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
print_srvconsole( "%d modules, %d correct\n",modules,running);
|
print_srvconsole( "%d modules, %d correct\n",modules,running);
|
||||||
} else if (!strcmp(cmd, "gpl"))
|
}
|
||||||
|
else if (!strcmp(cmd, "gpl"))
|
||||||
{
|
{
|
||||||
print_srvconsole("AMX Mod X\n");
|
print_srvconsole("AMX Mod X\n");
|
||||||
print_srvconsole("\n");
|
print_srvconsole("\n");
|
||||||
@ -283,9 +264,10 @@ void plugin_srvcmd()
|
|||||||
|
|
||||||
if ((err = amx_Exec( (*a).getPlugin()->getAMX(), &ret , (*a).getFunction()
|
if ((err = amx_Exec( (*a).getPlugin()->getAMX(), &ret , (*a).getFunction()
|
||||||
, 3 , g_srvindex , (*a).getFlags() , (*a).getId() )) != AMX_ERR_NONE)
|
, 3 , g_srvindex , (*a).getFlags() , (*a).getId() )) != AMX_ERR_NONE)
|
||||||
{
|
|
||||||
LogError((*a).getPlugin()->getAMX(), err, "");
|
AMXXLOG_Log("[AMXX] Run time error %d on line %ld (plugin \"%s\")",
|
||||||
}
|
err,(*a).getPlugin()->getAMX()->curline,(*a).getPlugin()->getName());
|
||||||
|
|
||||||
if ( ret ) break;
|
if ( ret ) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -448,60 +448,6 @@ char* format_arguments(AMX *amx, int parm,int& len)
|
|||||||
return *buffer;
|
return *buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
//added by BAILOPAN for jtp10181
|
|
||||||
//takes a string and breaks it into a 1st param and rest params
|
|
||||||
//different from strbreak because it's more crafted for control
|
|
||||||
static cell AMX_NATIVE_CALL amx_strtok(AMX *amx, cell *params)
|
|
||||||
{
|
|
||||||
int left_pos = 0;
|
|
||||||
int right_pos = 0;
|
|
||||||
unsigned int i = 0;
|
|
||||||
bool done_flag = false;
|
|
||||||
int len = 0;
|
|
||||||
|
|
||||||
//string[]
|
|
||||||
char *string = get_amxstring(amx, params[1], 0, len);
|
|
||||||
//left[]
|
|
||||||
char *left = new char[len+1];
|
|
||||||
//right[]
|
|
||||||
char *right = new char[len+1];
|
|
||||||
int leftMax = params[3];
|
|
||||||
int rightMax = params[5];
|
|
||||||
//token
|
|
||||||
char token = params[6];
|
|
||||||
//trim
|
|
||||||
int trim = params[7];
|
|
||||||
for (i=0; i<len; i++)
|
|
||||||
{
|
|
||||||
if (trim && !done_flag)
|
|
||||||
{
|
|
||||||
if (isspace(string[i]))
|
|
||||||
{
|
|
||||||
while (isspace(string[++i]));
|
|
||||||
done_flag = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!done_flag && string[i] == token)
|
|
||||||
{
|
|
||||||
done_flag = true;
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
if (done_flag)
|
|
||||||
{
|
|
||||||
right[right_pos++] = string[i];
|
|
||||||
} else {
|
|
||||||
left[left_pos++] = string[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
right[right_pos] = 0;
|
|
||||||
left[left_pos] = 0;
|
|
||||||
set_amxstring(amx, params[2], left, leftMax);
|
|
||||||
set_amxstring(amx, params[4], right, rightMax);
|
|
||||||
delete [] left;
|
|
||||||
delete [] right;
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
//added by BAILOPAN
|
//added by BAILOPAN
|
||||||
//Takes a string and breaks it into a 1st param and rest params
|
//Takes a string and breaks it into a 1st param and rest params
|
||||||
//strbreak(String[], First[], FirstLen, Rest[], RestLen)
|
//strbreak(String[], First[], FirstLen, Rest[], RestLen)
|
||||||
@ -521,7 +467,7 @@ static cell AMX_NATIVE_CALL strbreak(AMX *amx, cell *params) /* 5 param */
|
|||||||
int LeftMax = params[3];
|
int LeftMax = params[3];
|
||||||
int RightMax = params[5];
|
int RightMax = params[5];
|
||||||
|
|
||||||
for (i=0; i<l; i++) {
|
for (i=0; i<strlen(string); i++) {
|
||||||
if (string[i] == '"' && !quote_flag) {
|
if (string[i] == '"' && !quote_flag) {
|
||||||
quote_flag = true;
|
quote_flag = true;
|
||||||
} else if (string[i] == '"' && quote_flag) {
|
} else if (string[i] == '"' && quote_flag) {
|
||||||
@ -665,6 +611,5 @@ AMX_NATIVE_INFO string_Natives[] = {
|
|||||||
{ "str_to_num", strtonum },
|
{ "str_to_num", strtonum },
|
||||||
{ "trim", amx_trim },
|
{ "trim", amx_trim },
|
||||||
{ "ucfirst", amx_ucfirst },
|
{ "ucfirst", amx_ucfirst },
|
||||||
{ "strtok", amx_strtok },
|
|
||||||
{ NULL, NULL }
|
{ NULL, NULL }
|
||||||
};
|
};
|
||||||
|
@ -79,15 +79,12 @@ void UTIL_ShowMenu( edict_t* pEdict, int slots, int time, char *menu, int mlen )
|
|||||||
/* warning - don't pass here const string */
|
/* warning - don't pass here const string */
|
||||||
void UTIL_ShowMOTD( edict_t *client , char *motd, int mlen, const char *name)
|
void UTIL_ShowMOTD( edict_t *client , char *motd, int mlen, const char *name)
|
||||||
{
|
{
|
||||||
if (!gmsgMOTD)
|
if (!gmsgServerName)
|
||||||
return; // :TODO: Maybe output a warning log?
|
return; // :TODO: Maybe output a warning log?
|
||||||
|
|
||||||
if (gmsgServerName)
|
|
||||||
{
|
|
||||||
MESSAGE_BEGIN( MSG_ONE , gmsgServerName, NULL, client );
|
MESSAGE_BEGIN( MSG_ONE , gmsgServerName, NULL, client );
|
||||||
WRITE_STRING(name);
|
WRITE_STRING(name);
|
||||||
MESSAGE_END();
|
MESSAGE_END();
|
||||||
}
|
|
||||||
|
|
||||||
char *n = motd;
|
char *n = motd;
|
||||||
char c = 0;
|
char c = 0;
|
||||||
@ -107,13 +104,10 @@ void UTIL_ShowMOTD( edict_t *client , char *motd, int mlen, const char *name)
|
|||||||
motd = n;
|
motd = n;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gmsgServerName)
|
|
||||||
{
|
|
||||||
MESSAGE_BEGIN( MSG_ONE , gmsgServerName, NULL, client );
|
MESSAGE_BEGIN( MSG_ONE , gmsgServerName, NULL, client );
|
||||||
WRITE_STRING( hostname->string );
|
WRITE_STRING( hostname->string );
|
||||||
MESSAGE_END();
|
MESSAGE_END();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
void UTIL_IntToString(int value, char *output)
|
void UTIL_IntToString(int value, char *output)
|
||||||
{
|
{
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1,323 +0,0 @@
|
|||||||
/* zconf.h -- configuration of the zlib compression library
|
|
||||||
* Copyright (C) 1995-2003 Jean-loup Gailly.
|
|
||||||
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* @(#) $Id$ */
|
|
||||||
|
|
||||||
#ifndef ZCONF_H
|
|
||||||
#define ZCONF_H
|
|
||||||
|
|
||||||
/*
|
|
||||||
* If you *really* need a unique prefix for all types and library functions,
|
|
||||||
* compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
|
|
||||||
*/
|
|
||||||
#ifdef Z_PREFIX
|
|
||||||
# define deflateInit_ z_deflateInit_
|
|
||||||
# define deflate z_deflate
|
|
||||||
# define deflateEnd z_deflateEnd
|
|
||||||
# define inflateInit_ z_inflateInit_
|
|
||||||
# define inflate z_inflate
|
|
||||||
# define inflateEnd z_inflateEnd
|
|
||||||
# define deflateInit2_ z_deflateInit2_
|
|
||||||
# define deflateSetDictionary z_deflateSetDictionary
|
|
||||||
# define deflateCopy z_deflateCopy
|
|
||||||
# define deflateReset z_deflateReset
|
|
||||||
# define deflatePrime z_deflatePrime
|
|
||||||
# define deflateParams z_deflateParams
|
|
||||||
# define deflateBound z_deflateBound
|
|
||||||
# define inflateInit2_ z_inflateInit2_
|
|
||||||
# define inflateSetDictionary z_inflateSetDictionary
|
|
||||||
# define inflateSync z_inflateSync
|
|
||||||
# define inflateSyncPoint z_inflateSyncPoint
|
|
||||||
# define inflateCopy z_inflateCopy
|
|
||||||
# define inflateReset z_inflateReset
|
|
||||||
# define compress z_compress
|
|
||||||
# define compress2 z_compress2
|
|
||||||
# define compressBound z_compressBound
|
|
||||||
# define uncompress z_uncompress
|
|
||||||
# define adler32 z_adler32
|
|
||||||
# define crc32 z_crc32
|
|
||||||
# define get_crc_table z_get_crc_table
|
|
||||||
|
|
||||||
# define Byte z_Byte
|
|
||||||
# define uInt z_uInt
|
|
||||||
# define uLong z_uLong
|
|
||||||
# define Bytef z_Bytef
|
|
||||||
# define charf z_charf
|
|
||||||
# define intf z_intf
|
|
||||||
# define uIntf z_uIntf
|
|
||||||
# define uLongf z_uLongf
|
|
||||||
# define voidpf z_voidpf
|
|
||||||
# define voidp z_voidp
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__MSDOS__) && !defined(MSDOS)
|
|
||||||
# define MSDOS
|
|
||||||
#endif
|
|
||||||
#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
|
|
||||||
# define OS2
|
|
||||||
#endif
|
|
||||||
#if defined(_WINDOWS) && !defined(WINDOWS)
|
|
||||||
# define WINDOWS
|
|
||||||
#endif
|
|
||||||
#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
|
|
||||||
# define WIN32
|
|
||||||
#endif
|
|
||||||
#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
|
|
||||||
# if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
|
|
||||||
# ifndef SYS16BIT
|
|
||||||
# define SYS16BIT
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Compile with -DMAXSEG_64K if the alloc function cannot allocate more
|
|
||||||
* than 64k bytes at a time (needed on systems with 16-bit int).
|
|
||||||
*/
|
|
||||||
#ifdef SYS16BIT
|
|
||||||
# define MAXSEG_64K
|
|
||||||
#endif
|
|
||||||
#ifdef MSDOS
|
|
||||||
# define UNALIGNED_OK
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __STDC_VERSION__
|
|
||||||
# ifndef STDC
|
|
||||||
# define STDC
|
|
||||||
# endif
|
|
||||||
# if __STDC_VERSION__ >= 199901L
|
|
||||||
# ifndef STDC99
|
|
||||||
# define STDC99
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
|
|
||||||
# define STDC
|
|
||||||
#endif
|
|
||||||
#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
|
|
||||||
# define STDC
|
|
||||||
#endif
|
|
||||||
#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
|
|
||||||
# define STDC
|
|
||||||
#endif
|
|
||||||
#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
|
|
||||||
# define STDC
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__OS400__) && !defined(STDC) /* iSeries (formerly AS/400). */
|
|
||||||
# define STDC
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef STDC
|
|
||||||
# ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
|
|
||||||
# define const /* note: need a more gentle solution here */
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Some Mac compilers merge all .h files incorrectly: */
|
|
||||||
#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
|
|
||||||
# define NO_DUMMY_DECL
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Maximum value for memLevel in deflateInit2 */
|
|
||||||
#ifndef MAX_MEM_LEVEL
|
|
||||||
# ifdef MAXSEG_64K
|
|
||||||
# define MAX_MEM_LEVEL 8
|
|
||||||
# else
|
|
||||||
# define MAX_MEM_LEVEL 9
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Maximum value for windowBits in deflateInit2 and inflateInit2.
|
|
||||||
* WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
|
|
||||||
* created by gzip. (Files created by minigzip can still be extracted by
|
|
||||||
* gzip.)
|
|
||||||
*/
|
|
||||||
#ifndef MAX_WBITS
|
|
||||||
# define MAX_WBITS 15 /* 32K LZ77 window */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* The memory requirements for deflate are (in bytes):
|
|
||||||
(1 << (windowBits+2)) + (1 << (memLevel+9))
|
|
||||||
that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values)
|
|
||||||
plus a few kilobytes for small objects. For example, if you want to reduce
|
|
||||||
the default memory requirements from 256K to 128K, compile with
|
|
||||||
make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
|
|
||||||
Of course this will generally degrade compression (there's no free lunch).
|
|
||||||
|
|
||||||
The memory requirements for inflate are (in bytes) 1 << windowBits
|
|
||||||
that is, 32K for windowBits=15 (default value) plus a few kilobytes
|
|
||||||
for small objects.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Type declarations */
|
|
||||||
|
|
||||||
#ifndef OF /* function prototypes */
|
|
||||||
# ifdef STDC
|
|
||||||
# define OF(args) args
|
|
||||||
# else
|
|
||||||
# define OF(args) ()
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* The following definitions for FAR are needed only for MSDOS mixed
|
|
||||||
* model programming (small or medium model with some far allocations).
|
|
||||||
* This was tested only with MSC; for other MSDOS compilers you may have
|
|
||||||
* to define NO_MEMCPY in zutil.h. If you don't need the mixed model,
|
|
||||||
* just define FAR to be empty.
|
|
||||||
*/
|
|
||||||
#ifdef SYS16BIT
|
|
||||||
# if defined(M_I86SM) || defined(M_I86MM)
|
|
||||||
/* MSC small or medium model */
|
|
||||||
# define SMALL_MEDIUM
|
|
||||||
# ifdef _MSC_VER
|
|
||||||
# define FAR _far
|
|
||||||
# else
|
|
||||||
# define FAR far
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
# if (defined(__SMALL__) || defined(__MEDIUM__))
|
|
||||||
/* Turbo C small or medium model */
|
|
||||||
# define SMALL_MEDIUM
|
|
||||||
# ifdef __BORLANDC__
|
|
||||||
# define FAR _far
|
|
||||||
# else
|
|
||||||
# define FAR far
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(WINDOWS) || defined(WIN32)
|
|
||||||
/* If building or using zlib as a DLL, define ZLIB_DLL.
|
|
||||||
* This is not mandatory, but it offers a little performance increase.
|
|
||||||
*/
|
|
||||||
# ifdef ZLIB_DLL
|
|
||||||
# if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
|
|
||||||
# ifdef ZLIB_INTERNAL
|
|
||||||
# define ZEXTERN extern __declspec(dllexport)
|
|
||||||
# else
|
|
||||||
# define ZEXTERN extern __declspec(dllimport)
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
# endif /* ZLIB_DLL */
|
|
||||||
/* If building or using zlib with the WINAPI/WINAPIV calling convention,
|
|
||||||
* define ZLIB_WINAPI.
|
|
||||||
* Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
|
|
||||||
*/
|
|
||||||
# ifdef ZLIB_WINAPI
|
|
||||||
# ifdef FAR
|
|
||||||
# undef FAR
|
|
||||||
# endif
|
|
||||||
# include <windows.h>
|
|
||||||
/* No need for _export, use ZLIB.DEF instead. */
|
|
||||||
/* For complete Windows compatibility, use WINAPI, not __stdcall. */
|
|
||||||
# define ZEXPORT WINAPI
|
|
||||||
# ifdef WIN32
|
|
||||||
# define ZEXPORTVA WINAPIV
|
|
||||||
# else
|
|
||||||
# define ZEXPORTVA FAR CDECL
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined (__BEOS__)
|
|
||||||
# ifdef ZLIB_DLL
|
|
||||||
# ifdef ZLIB_INTERNAL
|
|
||||||
# define ZEXPORT __declspec(dllexport)
|
|
||||||
# define ZEXPORTVA __declspec(dllexport)
|
|
||||||
# else
|
|
||||||
# define ZEXPORT __declspec(dllimport)
|
|
||||||
# define ZEXPORTVA __declspec(dllimport)
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef ZEXTERN
|
|
||||||
# define ZEXTERN extern
|
|
||||||
#endif
|
|
||||||
#ifndef ZEXPORT
|
|
||||||
# define ZEXPORT
|
|
||||||
#endif
|
|
||||||
#ifndef ZEXPORTVA
|
|
||||||
# define ZEXPORTVA
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef FAR
|
|
||||||
# define FAR
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(__MACTYPES__)
|
|
||||||
typedef unsigned char Byte; /* 8 bits */
|
|
||||||
#endif
|
|
||||||
typedef unsigned int uInt; /* 16 bits or more */
|
|
||||||
typedef unsigned long uLong; /* 32 bits or more */
|
|
||||||
|
|
||||||
#ifdef SMALL_MEDIUM
|
|
||||||
/* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
|
|
||||||
# define Bytef Byte FAR
|
|
||||||
#else
|
|
||||||
typedef Byte FAR Bytef;
|
|
||||||
#endif
|
|
||||||
typedef char FAR charf;
|
|
||||||
typedef int FAR intf;
|
|
||||||
typedef uInt FAR uIntf;
|
|
||||||
typedef uLong FAR uLongf;
|
|
||||||
|
|
||||||
#ifdef STDC
|
|
||||||
typedef void const *voidpc;
|
|
||||||
typedef void FAR *voidpf;
|
|
||||||
typedef void *voidp;
|
|
||||||
#else
|
|
||||||
typedef Byte const *voidpc;
|
|
||||||
typedef Byte FAR *voidpf;
|
|
||||||
typedef Byte *voidp;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if 0 /* HAVE_UNISTD_H -- this line is updated by ./configure */
|
|
||||||
# include <sys/types.h> /* for off_t */
|
|
||||||
# include <unistd.h> /* for SEEK_* and off_t */
|
|
||||||
# ifdef VMS
|
|
||||||
# include <unixio.h> /* for off_t */
|
|
||||||
# endif
|
|
||||||
# define z_off_t off_t
|
|
||||||
#endif
|
|
||||||
#ifndef SEEK_SET
|
|
||||||
# define SEEK_SET 0 /* Seek from beginning of file. */
|
|
||||||
# define SEEK_CUR 1 /* Seek from current position. */
|
|
||||||
# define SEEK_END 2 /* Set file pointer to EOF plus "offset" */
|
|
||||||
#endif
|
|
||||||
#ifndef z_off_t
|
|
||||||
# define z_off_t long
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__OS400__)
|
|
||||||
#define NO_vsnprintf
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__MVS__)
|
|
||||||
# define NO_vsnprintf
|
|
||||||
# ifdef FAR
|
|
||||||
# undef FAR
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* MVS linker does not support external names larger than 8 bytes */
|
|
||||||
#if defined(__MVS__)
|
|
||||||
# pragma map(deflateInit_,"DEIN")
|
|
||||||
# pragma map(deflateInit2_,"DEIN2")
|
|
||||||
# pragma map(deflateEnd,"DEEND")
|
|
||||||
# pragma map(deflateBound,"DEBND")
|
|
||||||
# pragma map(inflateInit_,"ININ")
|
|
||||||
# pragma map(inflateInit2_,"ININ2")
|
|
||||||
# pragma map(inflateEnd,"INEND")
|
|
||||||
# pragma map(inflateSync,"INSY")
|
|
||||||
# pragma map(inflateSetDictionary,"INSEDI")
|
|
||||||
# pragma map(compressBound,"CMBND")
|
|
||||||
# pragma map(inflate_table,"INTABL")
|
|
||||||
# pragma map(inflate_fast,"INFA")
|
|
||||||
# pragma map(inflate_copyright,"INCOPY")
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* ZCONF_H */
|
|
1200
amxmodx/zlib/zlib.h
1200
amxmodx/zlib/zlib.h
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,176 +0,0 @@
|
|||||||
#!/usr/bin/perl
|
|
||||||
#(C)2004 AMX Mod X Development Team
|
|
||||||
# by David "BAILOPAN" Anderson
|
|
||||||
|
|
||||||
# output will occur in bin.x.proc
|
|
||||||
# where x is debug or opt and proc is ix86 or amd64
|
|
||||||
# You must use this script from the project src dir
|
|
||||||
|
|
||||||
#options =
|
|
||||||
# debug - enable gdb debugging
|
|
||||||
# amd64 - compile for AMD64
|
|
||||||
# proc=ix86 - assumed not amd64
|
|
||||||
# clean - clean the specifications above
|
|
||||||
|
|
||||||
$PROJECT = "sasm";
|
|
||||||
$gccf = "gcc";
|
|
||||||
|
|
||||||
@CPP_SOURCE_FILES = ("amx_compiler.cpp", "amx_data.cpp", "amx_define.cpp", "amx_error.cpp", "amx_label.cpp", "amx_macro.cpp", "amx_natives.cpp", "amx_proc.cpp", "amx_parser.cpp", "amx_symbol.cpp", "amxasm.cpp", "cexpr.cpp");
|
|
||||||
|
|
||||||
@C_SOURCE_FILES = ();
|
|
||||||
my %OPTIONS, %OPT;
|
|
||||||
|
|
||||||
$OPT{"debug"} = "-g -ggdb";
|
|
||||||
$OPT{"opt"} = "-O2 -ffast-math -funroll-loops -fomit-frame-pointer -s -DNDEBUG -Wall -Wno-unknown-pragmas -DOPT_TYPE=\"optimized\"";
|
|
||||||
|
|
||||||
$OPTIONS{"include"} = "";
|
|
||||||
|
|
||||||
while ($cmd = shift)
|
|
||||||
{
|
|
||||||
if ($cmd =~ /amd64/) {
|
|
||||||
$OPTIONS{"amd64"} = 1;
|
|
||||||
} elsif ($cmd =~ /debug/) {
|
|
||||||
$OPTIONS{"debug"} = 1;
|
|
||||||
} elsif ($cmd =~ /proc=i(\d)86/) {
|
|
||||||
$proc = $1;
|
|
||||||
if ($OPTIONS{"amd64"})
|
|
||||||
{
|
|
||||||
die "You cannot compile for i".$proc."86 and AMD64.\n";
|
|
||||||
} else {
|
|
||||||
$OPTIONS{"proc"} = "i".$proc."86";
|
|
||||||
}
|
|
||||||
} elsif ($cmd =~ /clean/) {
|
|
||||||
$OPTIONS{"clean"} = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$gcc = `$gccf --version`;
|
|
||||||
if ($gcc =~ /2\.9/)
|
|
||||||
{
|
|
||||||
$OPT{"opt"} .= " -malign-loops=2 -malign-jumps=2 -malign-functions=2";
|
|
||||||
} else {
|
|
||||||
$OPT{"opt"} .= " -falign-loops=2 -falign-jumps=2 -falign-functions=2";
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($OPTIONS{"debug"})
|
|
||||||
{
|
|
||||||
$cflags = $OPT{"debug"};
|
|
||||||
} else {
|
|
||||||
if (!$OPTIONS{"amd64"})
|
|
||||||
{
|
|
||||||
$proc = $OPTIONS{"proc"};
|
|
||||||
if (!$proc)
|
|
||||||
{
|
|
||||||
$proc = 3;
|
|
||||||
}
|
|
||||||
$cflags = "-march=i".$proc."86 ".$OPT{"opt"};
|
|
||||||
} else {
|
|
||||||
$cflags = $OPT{"opt"};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($OPTIONS{"amd64"})
|
|
||||||
{
|
|
||||||
$cflags .= " -m64 -DHAVE_I64 -DSMALL_CELL_SIZE=64 $cflags";
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($OPTIONS{"debug"})
|
|
||||||
{
|
|
||||||
$outdir = "bin.debug";
|
|
||||||
} else {
|
|
||||||
$outdir = "bin.opt";
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($OPTIONS{"amd64"})
|
|
||||||
{
|
|
||||||
$outdir .= ".amd64";
|
|
||||||
$bin = $PROJECT."_amd64.so";
|
|
||||||
} else {
|
|
||||||
$proc = $OPTIONS{"proc"};
|
|
||||||
if ($proc)
|
|
||||||
{
|
|
||||||
$outdir .= ".i".$proc."86";
|
|
||||||
$bin = $PROJECT."_i".$proc."86.so";
|
|
||||||
} else {
|
|
||||||
$outdir .= ".i386";
|
|
||||||
$bin = $PROJECT."_i386.so";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
unlink("$outdir/$bin");
|
|
||||||
if ($OPTIONS{"clean"})
|
|
||||||
{
|
|
||||||
`rm $outdir/*.o`;
|
|
||||||
die("Project cleaned.\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
#create the dirs
|
|
||||||
#build link list
|
|
||||||
my @LINK;
|
|
||||||
for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|
||||||
{
|
|
||||||
$file = $CPP_SOURCE_FILES[$i];
|
|
||||||
$file =~ s/\.cpp/\.o/;
|
|
||||||
push(@LINK, $outdir."/".$file);
|
|
||||||
}
|
|
||||||
for ($i=0; $i<=$#C_SOURCE_FILES; $i++)
|
|
||||||
{
|
|
||||||
$file = $C_SOURCE_FILES[$i];
|
|
||||||
$file =~ s/\.c/\.o/;
|
|
||||||
push(@LINK, $outdir."/".$file);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!(-d $outdir))
|
|
||||||
{
|
|
||||||
mkdir($outdir);
|
|
||||||
}
|
|
||||||
|
|
||||||
$inc = $OPTIONS{"include"};
|
|
||||||
|
|
||||||
for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|
||||||
{
|
|
||||||
$file = $CPP_SOURCE_FILES[$i];
|
|
||||||
$ofile = $file;
|
|
||||||
$ofile =~ s/\.cpp/\.o/;
|
|
||||||
$ofile = "$outdir/$ofile";
|
|
||||||
$gcc = "$gccf $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
|
||||||
if (-e $ofile)
|
|
||||||
{
|
|
||||||
$file_time = (stat($file))[9];
|
|
||||||
$ofile_time = (stat($ofile))[9];
|
|
||||||
if ($file_time > $ofile_time)
|
|
||||||
{
|
|
||||||
print "$gcc\n";
|
|
||||||
`$gcc`;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
print "$gcc\n";
|
|
||||||
`$gcc`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|
||||||
{
|
|
||||||
$file = $C_SOURCE_FILES[$i];
|
|
||||||
$ofile = $file;
|
|
||||||
$ofile =~ s/\.c/\.o/;
|
|
||||||
$ofile = "$outdir/$ofile";
|
|
||||||
$gcc = "cc $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
|
||||||
if (-e $ofile)
|
|
||||||
{
|
|
||||||
$file_time = (stat($file))[9];
|
|
||||||
$ofile_time = (stat($file))[9];
|
|
||||||
if ($file_time > $ofile_time)
|
|
||||||
{
|
|
||||||
print "$gcc\n";
|
|
||||||
`$gcc`;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
print "$gcc\n";
|
|
||||||
`$gcc`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$gcc = "$gccf $cflags -shared -lstdc++ -ldl -lm @LINK -o $outdir/$bin";
|
|
||||||
print "$gcc\n";
|
|
||||||
`$gcc`;
|
|
@ -70,10 +70,3 @@ amx_extendmap_step 15
|
|||||||
|
|
||||||
//If you set this to 0, clients cannot chose their language
|
//If you set this to 0, clients cannot chose their language
|
||||||
amx_client_languages 1
|
amx_client_languages 1
|
||||||
|
|
||||||
// Plugin Debug mode
|
|
||||||
// 0 - No debugging (garbage line numbers)
|
|
||||||
// 1 - Plugins with "debug" option in plugins.ini are put into debug mode
|
|
||||||
// 2 - All plugins are put in debug mode
|
|
||||||
// Note - debug mode will affect JIT performance
|
|
||||||
amx_debug 1
|
|
@ -1,16 +1,16 @@
|
|||||||
; Configuration file for AMX Mod X
|
; Configuration file for AMX Mod X
|
||||||
amxx_logdir addons/amxmodx/logs
|
amxx_logdir addons/amxx/logs
|
||||||
amxx_configsdir addons/amxmodx/configs
|
amxx_configsdir addons/amxx/configs
|
||||||
amxx_datadir addons/amxmodx/data
|
amxx_datadir addons/amxx/data
|
||||||
amxx_modules addons/amxmodx/configs/modules.ini
|
amxx_modules addons/amxx/configs/modules.ini
|
||||||
amxx_plugins addons/amxmodx/configs/plugins.ini
|
amxx_plugins addons/amxx/configs/plugins.ini
|
||||||
amxx_pluginsdir addons/amxmodx/plugins
|
amxx_pluginsdir addons/amxx/plugins
|
||||||
amxx_modulesdir addons/amxmodx/modules
|
amxx_modulesdir addons/amxx/modules
|
||||||
amxx_vault addons/amxmodx/data/vault.ini
|
amxx_vault addons/amxx/data/vault.ini
|
||||||
|
|
||||||
; Logging mode
|
; Logging mode
|
||||||
; 0 - no logging
|
; 0 - no logging
|
||||||
; 1 - one logfile / day
|
; 1 - one logfile / day
|
||||||
; 2 - one logfile / map
|
; 2 - one logfile / map
|
||||||
; 3 - HL Logs
|
; 3 - HL Logs
|
||||||
amxx_logging 1
|
amx_logging 1
|
@ -86,10 +86,3 @@ amx_statsx_freeze -2.0
|
|||||||
|
|
||||||
//If you set this to 0, clients cannot chose their language
|
//If you set this to 0, clients cannot chose their language
|
||||||
amx_client_languages 1
|
amx_client_languages 1
|
||||||
|
|
||||||
// Plugin Debug mode
|
|
||||||
// 0 - No debugging (garbage line numbers)
|
|
||||||
// 1 - Plugins with "debug" option in plugins.ini are put into debug mode
|
|
||||||
// 2 - All plugins are put in debug mode
|
|
||||||
// Note - debug mode will affect JIT performance
|
|
||||||
amx_debug 1
|
|
@ -1,18 +1,18 @@
|
|||||||
; Configuration file for AMX Mod X
|
; Configuration file for AMX Mod X
|
||||||
amxx_logdir addons/amxmodx/logs
|
amxx_logdir addons/amxx/logs
|
||||||
amxx_configsdir addons/amxmodx/configs
|
amxx_configsdir addons/amxx/configs
|
||||||
amxx_datadir addons/amxmodx/data
|
amxx_datadir addons/amxx/data
|
||||||
amxx_modules addons/amxmodx/configs/modules.ini
|
amxx_modules addons/amxx/configs/modules.ini
|
||||||
amxx_plugins addons/amxmodx/configs/plugins.ini
|
amxx_plugins addons/amxx/configs/plugins.ini
|
||||||
amxx_pluginsdir addons/amxmodx/plugins
|
amxx_pluginsdir addons/amxx/plugins
|
||||||
amxx_modulesdir addons/amxmodx/modules
|
amxx_modulesdir addons/amxx/modules
|
||||||
amxx_vault addons/amxmodx/data/vault.ini
|
amxx_vault addons/amxx/data/vault.ini
|
||||||
csstats_score addons/amxmodx/data/csstats.amxx
|
csstats_score addons/amxx/data/csstats.amxx
|
||||||
csstats addons/amxmodx/data/csstats.dat
|
csstats addons/amxx/data/csstats.dat
|
||||||
|
|
||||||
; Logging mode
|
; Logging mode
|
||||||
; 0 - no logging
|
; 0 - no logging
|
||||||
; 1 - one logfile / day
|
; 1 - one logfile / day
|
||||||
; 2 - one logfile / map
|
; 2 - one logfile / map
|
||||||
; 3 - HL Logs
|
; 3 - HL Logs
|
||||||
amxx_logging 1
|
amx_logging 1
|
@ -19,7 +19,7 @@ mapsmenu.amxx ; maps menu (vote, changelevel)
|
|||||||
|
|
||||||
; Chat / Messages
|
; Chat / Messages
|
||||||
adminchat.amxx ; console chat commands
|
adminchat.amxx ; console chat commands
|
||||||
antiflood.amxx ; prevent clients from chat-flooding the server
|
;antiflood.amxx ; prevent clients from chat-flooding the server
|
||||||
scrollmsg.amxx ; displays a scrolling message
|
scrollmsg.amxx ; displays a scrolling message
|
||||||
imessage.amxx ; displays information messages
|
imessage.amxx ; displays information messages
|
||||||
adminvote.amxx ; vote commands
|
adminvote.amxx ; vote commands
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
;Generated by Stats Configuration Plugin. Do not modify!
|
|
||||||
;Variable Description
|
|
||||||
ShowAttackers ;Show Attackers
|
|
||||||
ShowVictims ;Show Victims
|
|
||||||
ShowStats ;HUD-stats default
|
|
||||||
SayRankStats ;Say /rankstats
|
|
||||||
SayRank ;Say /rank
|
|
||||||
SayTop15 ;Say /top15
|
|
||||||
ShowStats ;HUD-stats default
|
|
@ -1,19 +1,19 @@
|
|||||||
; Configuration file for AMX Mod X
|
; Configuration file for AMX Mod X
|
||||||
amxx_logdir addons/amxmodx/logs
|
amxx_logdir addons/amxx/logs
|
||||||
amxx_configsdir addons/amxmodx/configs
|
amxx_configsdir addons/amxx/configs
|
||||||
amxx_datadir addons/amxmodx/data
|
amxx_datadir addons/amxx/data
|
||||||
amxx_modules addons/amxmodx/configs/modules.ini
|
amxx_modules addons/amxx/configs/modules.ini
|
||||||
amxx_plugins addons/amxmodx/configs/plugins.ini
|
amxx_plugins addons/amxx/configs/plugins.ini
|
||||||
amxx_pluginsdir addons/amxmodx/plugins
|
amxx_pluginsdir addons/amxx/plugins
|
||||||
amxx_modulesdir addons/amxmodx/modules
|
amxx_modulesdir addons/amxx/modules
|
||||||
amxx_vault addons/amxmodx/data/vault.ini
|
amxx_vault addons/amxx/data/vault.ini
|
||||||
|
|
||||||
; Logging mode
|
; Logging mode
|
||||||
; 0 - no logging
|
; 0 - no logging
|
||||||
; 1 - one logfile / day
|
; 1 - one logfile / day
|
||||||
; 2 - one logfile / map
|
; 2 - one logfile / map
|
||||||
; 3 - HL Logs
|
; 3 - HL Logs
|
||||||
amxx_logging 1
|
amx_logging 1
|
||||||
|
|
||||||
dodstats_score addons/amxmodx/data/dodstats.amxx
|
dodstats_score addons/amxx/data/dodstats.amxx
|
||||||
dodstats addons/amxmodx/data/dodstats.dat
|
dodstats addons/amxx/data/dodstats.dat
|
@ -10,38 +10,29 @@
|
|||||||
"pausable" "0" "1" "u"
|
"pausable" "0" "1" "u"
|
||||||
"sv_voiceenable" "0" "1" "u"
|
"sv_voiceenable" "0" "1" "u"
|
||||||
"mp_chattime" "0" "1" "3" "u"
|
"mp_chattime" "0" "1" "3" "u"
|
||||||
|
"mp_logmessages" "0" "1" "u"
|
||||||
"mp_friendlyfire" "0" "1" "u"
|
"mp_friendlyfire" "0" "1" "u"
|
||||||
"mp_allowspectators" "0" "1" "u"
|
"mp_allowspectators" "0" "1" "u"
|
||||||
"mp_flashlight" "0" "1" "u"
|
|
||||||
"mp_deathmsg" "0" "1" "u"
|
"mp_deathmsg" "0" "1" "u"
|
||||||
"mp_fadetoblack" "0" "1" "u"
|
"mp_fadetoblack" "0" "1" "u"
|
||||||
"mp_tkpenalty" "0" "3" "6" "u"
|
"mp_tkpenalty" "-1" "3" "6" "u"
|
||||||
"mp_spawnbazookas" "0" "1" "u"
|
"mp_limitallies30cal" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitalliesgarand" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitalliesbar" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitalliescarbine" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitalliescarbine" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitalliesthompson" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitalliesgarand" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitalliesgreasegun" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitalliesgreasegun" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitalliesspring" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitalliesspring" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitalliesbar" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitalliesthompson" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitallies30cal" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitaxisfg42" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitalliesbazooka" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitaxisfg42s" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitalliesmortar" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
"mp_limitaxiskar" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
"mp_limitaxisk43" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitaxisk43" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
|
"mp_limitaxiskar" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
|
"mp_limitaxismg34" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
|
"mp_limitaxismg42" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitaxismp40" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitaxismp40" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitaxismp44" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitaxismp44" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitaxisscopedkar" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitaxisscopedkar" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitaxisfg42" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
"mp_limitaxisfg42s" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
"mp_limitaxismg34" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
"mp_limitaxismg42" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
"mp_combinemglimits" "0" "1" "u"
|
|
||||||
"mp_limitaxispschreck" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
"mp_limitaxismortar" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
"mp_limitbritlight" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
"mp_limitbritassault" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitbritassault" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitbritsniper" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitbritlight" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitbritmg" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitbritmg" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitbritpiat" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
"mp_limitbritsniper" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
||||||
"mp_limitbritmortar" "-1" "1" "2" "3" "4" "5" "6" "0" "u"
|
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ mapsmenu.amxx ; maps menu (vote, changelevel)
|
|||||||
|
|
||||||
; Chat / Messages
|
; Chat / Messages
|
||||||
adminchat.amxx ; console chat commands
|
adminchat.amxx ; console chat commands
|
||||||
antiflood.amxx ; prevent clients from chat-flooding the server
|
;antiflood.amxx ; prevent clients from chat-flooding the server
|
||||||
scrollmsg.amxx ; displays a scrolling message
|
scrollmsg.amxx ; displays a scrolling message
|
||||||
imessage.amxx ; displays information messages
|
imessage.amxx ; displays information messages
|
||||||
adminvote.amxx ; vote commands
|
adminvote.amxx ; vote commands
|
||||||
|
@ -68,23 +68,8 @@ amx_extendmap_max 90
|
|||||||
// Step for each extending
|
// Step for each extending
|
||||||
amx_extendmap_step 15
|
amx_extendmap_step 15
|
||||||
|
|
||||||
//If you set this to 0, clients cannot chose their language
|
|
||||||
amx_client_languages 1
|
|
||||||
|
|
||||||
// Plugin Debug mode
|
|
||||||
// 0 - No debugging (garbage line numbers)
|
|
||||||
// 1 - Plugins with "debug" option in plugins.ini are put into debug mode
|
|
||||||
// 2 - All plugins are put in debug mode
|
|
||||||
// Note - debug mode will affect JIT performance
|
|
||||||
amx_debug 1
|
|
||||||
|
|
||||||
// Ignore the minimum and maximum settings for maps in the mapcycle
|
// Ignore the minimum and maximum settings for maps in the mapcycle
|
||||||
amx_mapnum_ignore 0
|
amx_mapnum_ignore 0
|
||||||
|
|
||||||
// Idle Kicker Settings:
|
//If you set this to 0, clients cannot chose their language
|
||||||
amx_idle_time 120 // Time players must be idle to be kicked
|
amx_client_languages 1
|
||||||
amx_idle_min_players 8 // Minimum players on the server before kicking starts
|
|
||||||
amx_idle_ignore_immunity 1 // Kick idle admins with immunity?
|
|
||||||
|
|
||||||
// Change this value to alter the frequency (in seconds) players can say /stuck to free themselves.
|
|
||||||
//amx_unstuck_frequency 4
|
|
@ -16,6 +16,7 @@ co_daimos
|
|||||||
ns_origin
|
ns_origin
|
||||||
co_kestrel
|
co_kestrel
|
||||||
ns_tanith
|
ns_tanith
|
||||||
|
co_rebirth
|
||||||
ns_nancy
|
ns_nancy
|
||||||
ns_veil
|
ns_veil
|
||||||
co_core
|
co_core
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
; ------------------------------
|
; ------------------------------
|
||||||
; Fun - provides extra functions
|
; Fun - provides extra functions
|
||||||
; ------------------------------
|
; ------------------------------
|
||||||
;fun_amxx_i386.so
|
fun_amxx_i386.so
|
||||||
;fun_amxx.dll
|
fun_amxx.dll
|
||||||
|
|
||||||
; ----------------------------------------------------
|
; ----------------------------------------------------
|
||||||
; Engine - provides engine functions core to Half-Life
|
; Engine - provides engine functions core to Half-Life
|
||||||
@ -53,5 +53,5 @@
|
|||||||
; -----------------
|
; -----------------
|
||||||
; Natural Selection
|
; Natural Selection
|
||||||
; -----------------
|
; -----------------
|
||||||
ns_amxx_i386.so
|
;ns_amxx_i386.so
|
||||||
ns_amxx.dll
|
;ns_amxx.dll
|
||||||
|
@ -1,40 +0,0 @@
|
|||||||
; AMX Mod X plugins
|
|
||||||
|
|
||||||
; Admin Base - Always one has to be activated
|
|
||||||
admin.amxx ; admin base (required for any admin-related)
|
|
||||||
;admin_sql.amxx ; admin base - SQL version (comment admin.amxx)
|
|
||||||
|
|
||||||
; Basic
|
|
||||||
admincmd.amxx ; basic admin console commands
|
|
||||||
adminhelp.amxx ; help command for admin console commands
|
|
||||||
adminslots.amxx ; slot reservation
|
|
||||||
multilingual.amxx ; Multi-Lingual management
|
|
||||||
|
|
||||||
; Menus
|
|
||||||
menufront.amxx ; front-end for admin menus
|
|
||||||
cmdmenu.amxx ; command menu (speech, settings)
|
|
||||||
plmenu.amxx ; players menu (kick, ban, client cmds.)
|
|
||||||
;telemenu.amxx ; teleport menu (Fun Module required!)
|
|
||||||
mapsmenu.amxx ; maps menu (vote, changelevel)
|
|
||||||
|
|
||||||
; Chat / Messages
|
|
||||||
adminchat.amxx ; console chat commands
|
|
||||||
antiflood.amxx ; prevent clients from chat-flooding the server
|
|
||||||
scrollmsg.amxx ; displays a scrolling message
|
|
||||||
imessage.amxx ; displays information messages
|
|
||||||
adminvote.amxx ; vote commands
|
|
||||||
|
|
||||||
; Map related
|
|
||||||
nextmap.amxx ; displays next map in mapcycle
|
|
||||||
mapchooser.amxx ; allows to vote for next map
|
|
||||||
timeleft.amxx ; displays time left on map
|
|
||||||
|
|
||||||
; Configuration
|
|
||||||
pausecfg.amxx ; allows to pause and unpause some plugins
|
|
||||||
|
|
||||||
; NS Specific plugins
|
|
||||||
idlekicker.amxx ; kicks idle players
|
|
||||||
nscommands.amxx ; extra commands for Natural-Selection
|
|
||||||
unstuck.amxx ; Allows players to free themselves if they get stuck in the map (req engine & ns modules)
|
|
||||||
|
|
||||||
; Custom - Add 3rd party plugins here
|
|
@ -1,49 +0,0 @@
|
|||||||
; Users configuration file
|
|
||||||
; File location: $moddir/addons/amxx/configs/users.ini
|
|
||||||
|
|
||||||
; Line starting with ; is a comment
|
|
||||||
|
|
||||||
; Access flags:
|
|
||||||
; a - immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)
|
|
||||||
; b - reservation (can join on reserved slots)
|
|
||||||
; c - amx_kick command
|
|
||||||
; d - amx_ban and amx_unban commands
|
|
||||||
; e - amx_slay and amx_slap commands
|
|
||||||
; f - amx_map command
|
|
||||||
; g - amx_cvar command (not all cvars will be available)
|
|
||||||
; h - amx_cfg command
|
|
||||||
; i - amx_chat and other chat commands
|
|
||||||
; j - amx_vote and other vote commands
|
|
||||||
; k - access to sv_password cvar (by amx_cvar command)
|
|
||||||
; l - access to amx_rcon command and rcon_password cvar (by amx_cvar command)
|
|
||||||
; m - custom level A (for additional plugins)
|
|
||||||
; n - custom level B
|
|
||||||
; o - custom level C
|
|
||||||
; p - custom level D
|
|
||||||
; q - custom level E
|
|
||||||
; r - custom level F
|
|
||||||
; s - custom level G
|
|
||||||
; t - ns commands (amx_random, amx_readyroom, amx_uncomm, amx_alien, amx_marine)
|
|
||||||
; u - menu access
|
|
||||||
; z - user (no admin)
|
|
||||||
|
|
||||||
; Account flags:
|
|
||||||
; a - disconnect player on invalid password
|
|
||||||
; b - clan tag
|
|
||||||
; c - this is steamid/wonid
|
|
||||||
; d - this is ip
|
|
||||||
; e - password is not checked (only name/ip/steamid needed)
|
|
||||||
|
|
||||||
; Password:
|
|
||||||
; Add to your autoexec.cfg: setinfo _pw "<password>"
|
|
||||||
; Change _pw to the value of amx_password_field
|
|
||||||
|
|
||||||
; Format of admin account:
|
|
||||||
; <name|ip|steamid> <password> <access flags> <account flags>
|
|
||||||
|
|
||||||
; Examples of admin accounts:
|
|
||||||
; "STEAM_0:0:123456" "" "abcdefghijklmnopqrstu" "ce"
|
|
||||||
; "123.45.67.89" "" "abcdefghijklmnopqrstu" "de"
|
|
||||||
; "My Name" "my_password" "abcdefghijklmnopqrstu" "a"
|
|
||||||
|
|
||||||
"loopback" "" "abcdefghijklmnopqrstu" "de"
|
|
@ -19,7 +19,7 @@ mapsmenu.amxx ; maps menu (vote, changelevel)
|
|||||||
|
|
||||||
; Chat / Messages
|
; Chat / Messages
|
||||||
adminchat.amxx ; console chat commands
|
adminchat.amxx ; console chat commands
|
||||||
antiflood.amxx ; prevent clients from chat-flooding the server
|
;antiflood.amxx ; prevent clients from chat-flooding the server
|
||||||
scrollmsg.amxx ; displays a scrolling message
|
scrollmsg.amxx ; displays a scrolling message
|
||||||
imessage.amxx ; displays information messages
|
imessage.amxx ; displays information messages
|
||||||
adminvote.amxx ; vote commands
|
adminvote.amxx ; vote commands
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
; Configuration file for AMX Mod X
|
; Configuration file for AMX Mod X
|
||||||
amxx_logdir addons/amxmodx/logs
|
amxx_logdir addons/amxx/logs
|
||||||
amxx_configsdir addons/amxmodx/configs
|
amxx_configsdir addons/amxx/configs
|
||||||
amxx_datadir addons/amxmodx/data
|
amxx_datadir addons/amxx/data
|
||||||
amxx_modules addons/amxmodx/configs/modules.ini
|
amxx_modules addons/amxx/configs/modules.ini
|
||||||
amxx_plugins addons/amxmodx/configs/plugins.ini
|
amxx_plugins addons/amxx/configs/plugins.ini
|
||||||
amxx_pluginsdir addons/amxmodx/plugins
|
amxx_pluginsdir addons/amxx/plugins
|
||||||
amxx_modulesdir addons/amxmodx/modules
|
amxx_modulesdir addons/amxx/modules
|
||||||
amxx_vault addons/amxmodx/data/vault.ini
|
amxx_vault addons/amxx/data/vault.ini
|
||||||
tfcstats_score addons/amxmodx/data/tfcstats.amxx
|
tfcstats_score addons/amxx/data/tfcstats.amxx
|
||||||
tfcstats addons/amxmodx/data/tfcstats.dat
|
tfcstats addons/amxx/data/tfcstats.dat
|
||||||
|
|
||||||
; Logging mode
|
; Logging mode
|
||||||
; 0 - no logging
|
; 0 - no logging
|
||||||
; 1 - one logfile / day
|
; 1 - one logfile / day
|
||||||
; 2 - one logfile / map
|
; 2 - one logfile / map
|
||||||
; 3 - HL Logs
|
; 3 - HL Logs
|
||||||
amxx_logging 1
|
amx_logging 1
|
@ -19,7 +19,7 @@ mapsmenu.amxx ; maps menu (vote, changelevel)
|
|||||||
|
|
||||||
; Chat / Messages
|
; Chat / Messages
|
||||||
adminchat.amxx ; console chat commands
|
adminchat.amxx ; console chat commands
|
||||||
antiflood.amxx ; prevent clients from chat-flooding the server
|
;antiflood.amxx ; prevent clients from chat-flooding the server
|
||||||
scrollmsg.amxx ; displays a scrolling message
|
scrollmsg.amxx ; displays a scrolling message
|
||||||
imessage.amxx ; displays information messages
|
imessage.amxx ; displays information messages
|
||||||
adminvote.amxx ; vote commands
|
adminvote.amxx ; vote commands
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
; Configuration file for AMX Mod X
|
; Configuration file for AMX Mod X
|
||||||
amxx_logdir addons/amxmodx/logs
|
amxx_logdir addons/amxx/logs
|
||||||
amxx_configsdir addons/amxmodx/configs
|
amxx_configsdir addons/amxx/configs
|
||||||
amxx_datadir addons/amxmodx/data
|
amxx_datadir addons/amxx/data
|
||||||
amxx_modules addons/amxmodx/configs/modules.ini
|
amxx_modules addons/amxx/configs/modules.inia
|
||||||
mxx_plugins addons/amxmodx/configs/plugins.ini
|
mxx_plugins addons/amxx/configs/plugins.ini
|
||||||
amxx_pluginsdir addons/amxmodx/plugins
|
amxx_pluginsdir addons/amxx/plugins
|
||||||
amxx_modulesdir addons/amxmodx/modules
|
amxx_modulesdir addons/amxx/modules
|
||||||
amxx_vault addons/amxmodx/data/vault.ini
|
amxx_vault addons/amxx/data/vault.ini
|
||||||
tsstats_score addons/amxmodx/data/tsstats.amxx
|
tsstats_score addons/amxx/data/tsstats.amxx
|
||||||
tsstats addons/amxmodx/data/tsstats.dat
|
tsstats addons/amxx/data/tsstats.dat
|
||||||
|
|
||||||
; Logging mode
|
; Logging mode
|
||||||
; 0 - no logging
|
; 0 - no logging
|
||||||
; 1 - one logfile / day
|
; 1 - one logfile / day
|
||||||
; 2 - one logfile / map
|
; 2 - one logfile / map
|
||||||
; 3 - HL Logs
|
; 3 - HL Logs
|
||||||
amxx_logging 1
|
amx_logging 1
|
@ -19,7 +19,7 @@ mapsmenu.amxx ; maps menu (vote, changelevel)
|
|||||||
|
|
||||||
; Chat / Messages
|
; Chat / Messages
|
||||||
adminchat.amxx ; console chat commands
|
adminchat.amxx ; console chat commands
|
||||||
antiflood.amxx ; prevent clients from chat-flooding the server
|
;antiflood.amxx ; prevent clients from chat-flooding the server
|
||||||
scrollmsg.amxx ; displays a scrolling message
|
scrollmsg.amxx ; displays a scrolling message
|
||||||
imessage.amxx ; displays information messages
|
imessage.amxx ; displays information messages
|
||||||
adminvote.amxx ; vote commands
|
adminvote.amxx ; vote commands
|
||||||
|
@ -130,7 +130,7 @@ void RankSystem::clear(){
|
|||||||
|
|
||||||
bool RankSystem::loadCalc(const char* filename, char* error)
|
bool RankSystem::loadCalc(const char* filename, char* error)
|
||||||
{
|
{
|
||||||
if ((MF_LoadAmxScript(&calc.amx,&calc.code,filename,error,0)!=AMX_ERR_NONE)||
|
if ((MF_LoadAmxScript(&calc.amx,&calc.code,filename,error)!=AMX_ERR_NONE)||
|
||||||
(MF_AmxAllot(&calc.amx, 8 , &calc.amxAddr1, &calc.physAddr1)!=AMX_ERR_NONE)||
|
(MF_AmxAllot(&calc.amx, 8 , &calc.amxAddr1, &calc.physAddr1)!=AMX_ERR_NONE)||
|
||||||
(MF_AmxAllot(&calc.amx, 8 , &calc.amxAddr2, &calc.physAddr2)!=AMX_ERR_NONE)||
|
(MF_AmxAllot(&calc.amx, 8 , &calc.amxAddr2, &calc.physAddr2)!=AMX_ERR_NONE)||
|
||||||
(MF_AmxFindPublic(&calc.amx,"get_score",&calc.func)!=AMX_ERR_NONE)){
|
(MF_AmxFindPublic(&calc.amx,"get_score",&calc.func)!=AMX_ERR_NONE)){
|
||||||
@ -306,3 +306,4 @@ void RankSystem::saveRank( const char* filename )
|
|||||||
|
|
||||||
fclose(bfp);
|
fclose(bfp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -120,3 +120,4 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
$PROJECT = "csstats_amxx";
|
$PROJECT = "csstats_amxx";
|
||||||
$sdk = "../../../hlsdk/SourceCode";
|
$sdk = "../../../hlsdk/SourceCode";
|
||||||
$mm = "../../../metamod/metamod";
|
$mm = "../../../metamod/metamod";
|
||||||
$gccf = "gcc";
|
|
||||||
|
|
||||||
@CPP_SOURCE_FILES = ("amxxmodule.cpp", "CMisc.cpp", "usermsg.cpp", "meta_api.cpp", "rank.cpp", "CRank.cpp");
|
@CPP_SOURCE_FILES = ("amxxmodule.cpp", "CMisc.cpp", "usermsg.cpp", "meta_api.cpp", "rank.cpp", "CRank.cpp");
|
||||||
|
|
||||||
@ -23,7 +22,7 @@ $gccf = "gcc";
|
|||||||
my %OPTIONS, %OPT;
|
my %OPTIONS, %OPT;
|
||||||
|
|
||||||
$OPT{"debug"} = "-g -ggdb";
|
$OPT{"debug"} = "-g -ggdb";
|
||||||
$OPT{"opt"} = "-O2 -ffast-math -funroll-loops -fomit-frame-pointer -s -DNDEBUG -Wall -Wno-unknown-pragmas -DOPT_TYPE=\"optimized\" -fno-exceptions -fno-rtti";
|
$OPT{"opt"} = "-O2 -ffast-math -funroll-loops -fomit-frame-pointer -s -DNDEBUG -Wall -Wno-unknown-pragmas -DOPT_TYPE=\"optimized\"";
|
||||||
|
|
||||||
$OPTIONS{"include"} = "-I$sdk -I. -I$mm -I$sdk/engine -I$sdk/common -I$sdk/pm_shared -I$sdk/dlls";
|
$OPTIONS{"include"} = "-I$sdk -I. -I$mm -I$sdk/engine -I$sdk/common -I$sdk/pm_shared -I$sdk/dlls";
|
||||||
|
|
||||||
@ -46,7 +45,7 @@ while ($cmd = shift)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$gcc = `$gccf --version`;
|
$gcc = `g++ --version`;
|
||||||
if ($gcc =~ /2\.9/)
|
if ($gcc =~ /2\.9/)
|
||||||
{
|
{
|
||||||
$OPT{"opt"} .= " -malign-loops=2 -malign-jumps=2 -malign-functions=2";
|
$OPT{"opt"} .= " -malign-loops=2 -malign-jumps=2 -malign-functions=2";
|
||||||
@ -135,11 +134,11 @@ for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|||||||
$ofile = $file;
|
$ofile = $file;
|
||||||
$ofile =~ s/\.cpp/\.o/;
|
$ofile =~ s/\.cpp/\.o/;
|
||||||
$ofile = "$outdir/$ofile";
|
$ofile = "$outdir/$ofile";
|
||||||
$gcc = "$gccf $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
$gcc = "g++ $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
||||||
if (-e $ofile)
|
if (-e $ofile)
|
||||||
{
|
{
|
||||||
$file_time = (stat($file))[9];
|
$file_time = (stat($file))[9];
|
||||||
$ofile_time = (stat($ofile))[9];
|
$ofile_time = (stat($file))[9];
|
||||||
if ($file_time > $ofile_time)
|
if ($file_time > $ofile_time)
|
||||||
{
|
{
|
||||||
print "$gcc\n";
|
print "$gcc\n";
|
||||||
@ -161,7 +160,7 @@ for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|||||||
if (-e $ofile)
|
if (-e $ofile)
|
||||||
{
|
{
|
||||||
$file_time = (stat($file))[9];
|
$file_time = (stat($file))[9];
|
||||||
$ofile_time = (stat($ofile))[9];
|
$ofile_time = (stat($file))[9];
|
||||||
if ($file_time > $ofile_time)
|
if ($file_time > $ofile_time)
|
||||||
{
|
{
|
||||||
print "$gcc\n";
|
print "$gcc\n";
|
||||||
@ -173,6 +172,6 @@ for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$gcc = "$gccf $cflags -shared -ldl -lm @LINK -o $outdir/$bin";
|
$gcc = "g++ $cflags -shared -ldl -lm @LINK -o $outdir/$bin";
|
||||||
print "$gcc\n";
|
print "$gcc\n";
|
||||||
`$gcc`;
|
`$gcc`;
|
||||||
|
@ -2477,11 +2477,6 @@ PFN_CELL_TO_REAL g_fn_CellToReal;
|
|||||||
PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
||||||
PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
||||||
PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
||||||
PFN_MERGEDEFINITION_FILE g_fn_MergeDefinition_File;
|
|
||||||
PFN_AMX_FINDNATIVE g_fn_AmxFindNative;
|
|
||||||
PFN_GETPLAYERFLAGS g_fn_GetPlayerFlags;
|
|
||||||
PFN_GET_PLAYER_EDICT g_fn_GetPlayerEdict;
|
|
||||||
PFN_FORMAT g_fn_Format;
|
|
||||||
|
|
||||||
// *** Exports ***
|
// *** Exports ***
|
||||||
C_DLLEXPORT int AMXX_Query(int *interfaceVersion, amxx_module_info_s *moduleInfo)
|
C_DLLEXPORT int AMXX_Query(int *interfaceVersion, amxx_module_info_s *moduleInfo)
|
||||||
@ -2525,8 +2520,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("PrintSrvConsole", g_fn_PrintSrvConsole, PFN_PRINT_SRVCONSOLE);
|
REQFUNC("PrintSrvConsole", g_fn_PrintSrvConsole, PFN_PRINT_SRVCONSOLE);
|
||||||
REQFUNC("GetModname", g_fn_GetModname, PFN_GET_MODNAME);
|
REQFUNC("GetModname", g_fn_GetModname, PFN_GET_MODNAME);
|
||||||
REQFUNC("Log", g_fn_Log, PFN_LOG);
|
REQFUNC("Log", g_fn_Log, PFN_LOG);
|
||||||
REQFUNC("MergeDefinitionFile", g_fn_MergeDefinition_File, PFN_MERGEDEFINITION_FILE);
|
|
||||||
REQFUNC("Format", g_fn_Format, PFN_FORMAT);
|
|
||||||
|
|
||||||
// Amx scripts
|
// Amx scripts
|
||||||
REQFUNC("GetAmxScript", g_fn_GetAmxScript, PFN_GET_AMXSCRIPT);
|
REQFUNC("GetAmxScript", g_fn_GetAmxScript, PFN_GET_AMXSCRIPT);
|
||||||
@ -2534,7 +2527,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("FindAmxScriptByName", g_fn_FindAmxScriptByName, PFN_FIND_AMXSCRIPT_BYNAME);
|
REQFUNC("FindAmxScriptByName", g_fn_FindAmxScriptByName, PFN_FIND_AMXSCRIPT_BYNAME);
|
||||||
REQFUNC("LoadAmxScript", g_fn_LoadAmxScript, PFN_LOAD_AMXSCRIPT);
|
REQFUNC("LoadAmxScript", g_fn_LoadAmxScript, PFN_LOAD_AMXSCRIPT);
|
||||||
REQFUNC("UnloadAmxScript", g_fn_UnloadAmxScript, PFN_UNLOAD_AMXSCRIPT);
|
REQFUNC("UnloadAmxScript", g_fn_UnloadAmxScript, PFN_UNLOAD_AMXSCRIPT);
|
||||||
REQFUNC("GetAmxScriptName", g_fn_GetAmxScriptName, PFN_GET_AMXSCRIPTNAME);
|
|
||||||
|
|
||||||
// String / mem in amx scripts support
|
// String / mem in amx scripts support
|
||||||
REQFUNC("SetAmxString", g_fn_SetAmxString, PFN_SET_AMXSTRING);
|
REQFUNC("SetAmxString", g_fn_SetAmxString, PFN_SET_AMXSTRING);
|
||||||
@ -2548,7 +2540,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("amx_Execv", g_fn_AmxExecv, PFN_AMX_EXECV);
|
REQFUNC("amx_Execv", g_fn_AmxExecv, PFN_AMX_EXECV);
|
||||||
REQFUNC("amx_FindPublic", g_fn_AmxFindPublic, PFN_AMX_FINDPUBLIC);
|
REQFUNC("amx_FindPublic", g_fn_AmxFindPublic, PFN_AMX_FINDPUBLIC);
|
||||||
REQFUNC("amx_Allot", g_fn_AmxAllot, PFN_AMX_ALLOT);
|
REQFUNC("amx_Allot", g_fn_AmxAllot, PFN_AMX_ALLOT);
|
||||||
REQFUNC("amx_FindNative", g_fn_AmxFindNative, PFN_AMX_FINDNATIVE);
|
|
||||||
|
|
||||||
// Natives / Forwards
|
// Natives / Forwards
|
||||||
REQFUNC("AddNatives", g_fn_AddNatives, PFN_ADD_NATIVES);
|
REQFUNC("AddNatives", g_fn_AddNatives, PFN_ADD_NATIVES);
|
||||||
@ -2581,8 +2572,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("IsPlayerHLTV", g_fn_IsPlayerHLTV, PFN_IS_PLAYER_HLTV);
|
REQFUNC("IsPlayerHLTV", g_fn_IsPlayerHLTV, PFN_IS_PLAYER_HLTV);
|
||||||
REQFUNC("GetPlayerArmor", g_fn_GetPlayerArmor, PFN_GET_PLAYER_ARMOR);
|
REQFUNC("GetPlayerArmor", g_fn_GetPlayerArmor, PFN_GET_PLAYER_ARMOR);
|
||||||
REQFUNC("GetPlayerHealth", g_fn_GetPlayerHealth, PFN_GET_PLAYER_HEALTH);
|
REQFUNC("GetPlayerHealth", g_fn_GetPlayerHealth, PFN_GET_PLAYER_HEALTH);
|
||||||
REQFUNC("GetPlayerFlags", g_fn_GetPlayerFlags, PFN_GETPLAYERFLAGS);
|
|
||||||
REQFUNC("GetPlayerEdict", g_fn_GetPlayerEdict, PFN_GET_PLAYER_EDICT);
|
|
||||||
|
|
||||||
// Memory
|
// Memory
|
||||||
REQFUNC_OPT("Allocator", g_fn_Allocator, PFN_ALLOCATOR);
|
REQFUNC_OPT("Allocator", g_fn_Allocator, PFN_ALLOCATOR);
|
||||||
@ -2677,14 +2666,11 @@ void ValidateMacros_DontCallThis_Smiley()
|
|||||||
MF_AmxExecv(0, 0, 0, 0, 0);
|
MF_AmxExecv(0, 0, 0, 0, 0);
|
||||||
MF_AmxFindPublic(0, 0, 0);
|
MF_AmxFindPublic(0, 0, 0);
|
||||||
MF_AmxAllot(0, 0, 0, 0);
|
MF_AmxAllot(0, 0, 0, 0);
|
||||||
MF_LoadAmxScript(0, 0, 0, 0, 0);
|
MF_LoadAmxScript(0, 0, 0, 0);
|
||||||
MF_UnloadAmxScript(0, 0);
|
MF_UnloadAmxScript(0, 0);
|
||||||
MF_RegisterSPForward(0, 0, 0, 0, 0, 0);
|
MF_RegisterSPForward(0, 0, 0, 0, 0, 0);
|
||||||
MF_RegisterSPForwardByName(0, 0, 0, 0, 0, 0);
|
MF_RegisterSPForwardByName(0, 0, 0, 0, 0, 0);
|
||||||
MF_UnregisterSPForward(0);
|
MF_UnregisterSPForward(0);
|
||||||
MF_GetPlayerFrags(0);
|
|
||||||
MF_GetPlayerEdict(0);
|
|
||||||
MF_Format("", 4, "str");
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -2801,7 +2787,7 @@ void *operator new(size_t reportedSize)
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void *operator new[](size_t reportedSize)
|
void *operator new[](size_t reportedSize)
|
||||||
@ -2814,7 +2800,7 @@ void *operator new[](size_t reportedSize)
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Microsoft memory tracking operators
|
// Microsoft memory tracking operators
|
||||||
@ -2828,7 +2814,7 @@ void *operator new(size_t reportedSize, const char *sourceFile, int sourceLine)
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
void *operator new[](size_t reportedSize, const char *sourceFile, int sourceLine)
|
void *operator new[](size_t reportedSize, const char *sourceFile, int sourceLine)
|
||||||
{
|
{
|
||||||
@ -2840,7 +2826,7 @@ void *operator new[](size_t reportedSize, const char *sourceFile, int sourceLine
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void operator delete(void *reportedAddress)
|
void operator delete(void *reportedAddress)
|
||||||
|
@ -204,9 +204,11 @@ typedef struct tagAMX {
|
|||||||
cell reset_stk PACKED;
|
cell reset_stk PACKED;
|
||||||
cell reset_hea PACKED;
|
cell reset_hea PACKED;
|
||||||
cell sysreq_d PACKED; /* relocated address/value for the SYSREQ.D opcode */
|
cell sysreq_d PACKED; /* relocated address/value for the SYSREQ.D opcode */
|
||||||
|
#if defined JIT
|
||||||
/* support variables for the JIT */
|
/* support variables for the JIT */
|
||||||
int reloc_size PACKED; /* required temporary buffer for relocations */
|
int reloc_size PACKED; /* required temporary buffer for relocations */
|
||||||
long code_size PACKED; /* estimated memory footprint of the native code */
|
long code_size PACKED; /* estimated memory footprint of the native code */
|
||||||
|
#endif
|
||||||
} AMX;
|
} AMX;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
@ -238,14 +240,6 @@ enum {
|
|||||||
AMX_ERR_DOMAIN, /* domain error, expression result does not fit in range */
|
AMX_ERR_DOMAIN, /* domain error, expression result does not fit in range */
|
||||||
};
|
};
|
||||||
|
|
||||||
#if !defined AMX_NO_ALIGN
|
|
||||||
#if defined __linux__
|
|
||||||
#pragma pack() /* reset default packing */
|
|
||||||
#else
|
|
||||||
#pragma pack(pop) /* reset previous packing */
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
// ***** declare functions *****
|
// ***** declare functions *****
|
||||||
|
|
||||||
@ -1932,7 +1926,6 @@ typedef int (*PFN_IS_PLAYER_BOT) (int /*id*/);
|
|||||||
typedef int (*PFN_IS_PLAYER_AUTHORIZED) (int /*id*/);
|
typedef int (*PFN_IS_PLAYER_AUTHORIZED) (int /*id*/);
|
||||||
typedef float (*PFN_GET_PLAYER_TIME) (int /*id*/);
|
typedef float (*PFN_GET_PLAYER_TIME) (int /*id*/);
|
||||||
typedef float (*PFN_GET_PLAYER_PLAYTIME) (int /*id*/);
|
typedef float (*PFN_GET_PLAYER_PLAYTIME) (int /*id*/);
|
||||||
typedef int (*PFN_GETPLAYERFLAGS) (int /* id*/);
|
|
||||||
typedef int (*PFN_GET_PLAYER_CURWEAPON) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_CURWEAPON) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_TEAMID) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_TEAMID) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_DEATHS) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_DEATHS) (int /*id*/);
|
||||||
@ -1944,12 +1937,6 @@ typedef int (*PFN_IS_PLAYER_CONNECTING) (int /*id*/);
|
|||||||
typedef int (*PFN_IS_PLAYER_HLTV) (int /*id*/);
|
typedef int (*PFN_IS_PLAYER_HLTV) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_ARMOR) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_ARMOR) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_HEALTH) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_HEALTH) (int /*id*/);
|
||||||
#ifdef USE_METAMOD
|
|
||||||
typedef edict_t * (*PFN_GET_PLAYER_EDICT) (int /*id*/);
|
|
||||||
#else
|
|
||||||
typedef void * (*PFN_GET_PLAYER_EDICT) (int /*id*/);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef void * (*PFN_ALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
typedef void * (*PFN_ALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
||||||
const unsigned int /*type*/, const size_t /*size*/);
|
const unsigned int /*type*/, const size_t /*size*/);
|
||||||
typedef void * (*PFN_REALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
typedef void * (*PFN_REALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
||||||
@ -1960,16 +1947,13 @@ typedef int (*PFN_AMX_EXEC) (AMX* /*amx*/, cell* /*return val*/, int /*in
|
|||||||
typedef int (*PFN_AMX_EXECV) (AMX* /*amx*/, cell* /*return val*/, int /*index*/, int /*numparams*/, cell[] /*params*/);
|
typedef int (*PFN_AMX_EXECV) (AMX* /*amx*/, cell* /*return val*/, int /*index*/, int /*numparams*/, cell[] /*params*/);
|
||||||
typedef int (*PFN_AMX_ALLOT) (AMX* /*amx*/, int /*length*/, cell* /*amx_addr*/, cell** /*phys_addr*/);
|
typedef int (*PFN_AMX_ALLOT) (AMX* /*amx*/, int /*length*/, cell* /*amx_addr*/, cell** /*phys_addr*/);
|
||||||
typedef int (*PFN_AMX_FINDPUBLIC) (AMX* /*amx*/, char* /*func name*/, int* /*index*/);
|
typedef int (*PFN_AMX_FINDPUBLIC) (AMX* /*amx*/, char* /*func name*/, int* /*index*/);
|
||||||
typedef int (*PFN_AMX_FINDNATIVE) (AMX* /*amx*/, char* /*func name*/, int* /*index*/);
|
typedef int (*PFN_LOAD_AMXSCRIPT) (AMX* /*amx*/, void** /*code*/, const char* /*path*/, char[64] /*error info*/);
|
||||||
typedef int (*PFN_LOAD_AMXSCRIPT) (AMX* /*amx*/, void** /*code*/, const char* /*path*/, char[64] /*error info*/, int /* debug */);
|
|
||||||
typedef int (*PFN_UNLOAD_AMXSCRIPT) (AMX* /*amx*/,void** /*code*/);
|
typedef int (*PFN_UNLOAD_AMXSCRIPT) (AMX* /*amx*/,void** /*code*/);
|
||||||
typedef cell (*PFN_REAL_TO_CELL) (REAL /*x*/);
|
typedef cell (*PFN_REAL_TO_CELL) (REAL /*x*/);
|
||||||
typedef REAL (*PFN_CELL_TO_REAL) (cell /*x*/);
|
typedef REAL (*PFN_CELL_TO_REAL) (cell /*x*/);
|
||||||
typedef int (*PFN_REGISTER_SPFORWARD) (AMX * /*amx*/, int /*func*/, ... /*params*/);
|
typedef int (*PFN_REGISTER_SPFORWARD) (AMX * /*amx*/, int /*func*/, ... /*params*/);
|
||||||
typedef int (*PFN_REGISTER_SPFORWARD_BYNAME) (AMX * /*amx*/, const char * /*funcName*/, ... /*params*/);
|
typedef int (*PFN_REGISTER_SPFORWARD_BYNAME) (AMX * /*amx*/, const char * /*funcName*/, ... /*params*/);
|
||||||
typedef void (*PFN_UNREGISTER_SPFORWARD) (int /*id*/);
|
typedef void (*PFN_UNREGISTER_SPFORWARD) (int /*id*/);
|
||||||
typedef void (*PFN_MERGEDEFINITION_FILE) (const char * /*filename*/);
|
|
||||||
typedef const char * (*PFN_FORMAT) (const char * /*fmt*/, ... /*params*/);
|
|
||||||
|
|
||||||
extern PFN_ADD_NATIVES g_fn_AddNatives;
|
extern PFN_ADD_NATIVES g_fn_AddNatives;
|
||||||
extern PFN_BUILD_PATHNAME g_fn_BuildPathname;
|
extern PFN_BUILD_PATHNAME g_fn_BuildPathname;
|
||||||
@ -2021,11 +2005,6 @@ extern PFN_CELL_TO_REAL g_fn_CellToReal;
|
|||||||
extern PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
extern PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
||||||
extern PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
extern PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
||||||
extern PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
extern PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
||||||
extern PFN_MERGEDEFINITION_FILE g_fn_MergeDefinition_File;
|
|
||||||
extern PFN_AMX_FINDNATIVE g_fn_AmxFindNative;
|
|
||||||
extern PFN_GETPLAYERFLAGS g_fn_GetPlayerFlags;
|
|
||||||
extern PFN_GET_PLAYER_EDICT g_fn_GetPlayerEdict;
|
|
||||||
extern PFN_FORMAT g_fn_Format;
|
|
||||||
|
|
||||||
#ifdef MAY_NEVER_BE_DEFINED
|
#ifdef MAY_NEVER_BE_DEFINED
|
||||||
// Function prototypes for intellisense and similar systems
|
// Function prototypes for intellisense and similar systems
|
||||||
@ -2074,9 +2053,6 @@ cell amx_ftoc (float x) { }
|
|||||||
int MF_RegisterSPForwardByName (AMX * amx, const char *str, ...) { }
|
int MF_RegisterSPForwardByName (AMX * amx, const char *str, ...) { }
|
||||||
int MF_RegisterSPForward (AMX * amx, int func, ...) { }
|
int MF_RegisterSPForward (AMX * amx, int func, ...) { }
|
||||||
void MF_UnregisterSPForward (int id) { }
|
void MF_UnregisterSPForward (int id) { }
|
||||||
int MF_GetPlayerFlags (int id) { }
|
|
||||||
edict_t* MF_GetPlayerEdict (int id) { }
|
|
||||||
const char * MF_Format (const char *fmt, ...) { }
|
|
||||||
#endif // MAY_NEVER_BE_DEFINED
|
#endif // MAY_NEVER_BE_DEFINED
|
||||||
|
|
||||||
#define MF_AddNatives g_fn_AddNatives
|
#define MF_AddNatives g_fn_AddNatives
|
||||||
@ -2122,18 +2098,13 @@ void MF_Log(const char *fmt, ...);
|
|||||||
#define MF_AmxExecv g_fn_AmxExecv
|
#define MF_AmxExecv g_fn_AmxExecv
|
||||||
#define MF_AmxFindPublic g_fn_AmxFindPublic
|
#define MF_AmxFindPublic g_fn_AmxFindPublic
|
||||||
#define MF_AmxAllot g_fn_AmxAllot
|
#define MF_AmxAllot g_fn_AmxAllot
|
||||||
#define MF_AmxFindNative g_fn_AmxFindNative
|
|
||||||
#define MF_LoadAmxScript g_fn_LoadAmxScript
|
#define MF_LoadAmxScript g_fn_LoadAmxScript
|
||||||
#define MF_UnloadAmxScript g_fn_UnloadAmxScript
|
#define MF_UnloadAmxScript g_fn_UnloadAmxScript
|
||||||
#define MF_MergeDefinitionFile g_fn_MergeDefinition_File
|
|
||||||
#define amx_ctof g_fn_CellToReal
|
#define amx_ctof g_fn_CellToReal
|
||||||
#define amx_ftoc g_fn_RealToCell
|
#define amx_ftoc g_fn_RealToCell
|
||||||
#define MF_RegisterSPForwardByName g_fn_RegisterSPForwardByName
|
#define MF_RegisterSPForwardByName g_fn_RegisterSPForwardByName
|
||||||
#define MF_RegisterSPForward g_fn_RegisterSPForward
|
#define MF_RegisterSPForward g_fn_RegisterSPForward
|
||||||
#define MF_UnregisterSPForward g_fn_UnregisterSPForward
|
#define MF_UnregisterSPForward g_fn_UnregisterSPForward
|
||||||
#define MF_GetPlayerFlags g_fn_GetPlayerFlags
|
|
||||||
#define MF_GetPlayerEdict g_fn_GetPlayerEdict
|
|
||||||
#define MF_Format g_fn_Format;
|
|
||||||
|
|
||||||
/*** Memory ***/
|
/*** Memory ***/
|
||||||
void *operator new(size_t reportedSize);
|
void *operator new(size_t reportedSize);
|
||||||
|
@ -26,6 +26,7 @@ bool rankBots;
|
|||||||
int gmsgCurWeapon;
|
int gmsgCurWeapon;
|
||||||
int gmsgDeathMsg;
|
int gmsgDeathMsg;
|
||||||
int gmsgDamage;
|
int gmsgDamage;
|
||||||
|
int gmsgDamageEnd;
|
||||||
int gmsgWeaponList;
|
int gmsgWeaponList;
|
||||||
int gmsgResetHUD;
|
int gmsgResetHUD;
|
||||||
int gmsgAmmoX;
|
int gmsgAmmoX;
|
||||||
@ -56,6 +57,7 @@ struct sUserMsg {
|
|||||||
} g_user_msg[] = {
|
} g_user_msg[] = {
|
||||||
{ "CurWeapon" , &gmsgCurWeapon , Client_CurWeapon, false },
|
{ "CurWeapon" , &gmsgCurWeapon , Client_CurWeapon, false },
|
||||||
{ "Damage" , &gmsgDamage,Client_Damage, false },
|
{ "Damage" , &gmsgDamage,Client_Damage, false },
|
||||||
|
{ "Damage" , &gmsgDamageEnd, Client_Damage_End, true },
|
||||||
{ "WeaponList" , &gmsgWeaponList, Client_WeaponList, false },
|
{ "WeaponList" , &gmsgWeaponList, Client_WeaponList, false },
|
||||||
{ "ResetHUD" , &gmsgResetHUD,Client_ResetHUD, true },
|
{ "ResetHUD" , &gmsgResetHUD,Client_ResetHUD, true },
|
||||||
{ "AmmoX" , &gmsgAmmoX, Client_AmmoX , false },
|
{ "AmmoX" , &gmsgAmmoX, Client_AmmoX , false },
|
||||||
@ -287,7 +289,7 @@ void OnMetaAttach() {
|
|||||||
|
|
||||||
void OnAmxxAttach(){
|
void OnAmxxAttach(){
|
||||||
MF_AddNatives(stats_Natives);
|
MF_AddNatives(stats_Natives);
|
||||||
const char* path = get_localinfo("csstats_score");
|
const char* path = get_localinfo("csstats_score","addons/amxx/data/csstats.amxx");
|
||||||
if ( path && *path )
|
if ( path && *path )
|
||||||
{
|
{
|
||||||
char error[128];
|
char error[128];
|
||||||
@ -297,7 +299,7 @@ void OnAmxxAttach(){
|
|||||||
if ( !g_rank.begin() )
|
if ( !g_rank.begin() )
|
||||||
{
|
{
|
||||||
g_rank.loadRank( MF_BuildPathname("%s",
|
g_rank.loadRank( MF_BuildPathname("%s",
|
||||||
get_localinfo("csstats") ) );
|
get_localinfo("csstats","addons/amxx/data/csstats.dat") ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,6 +52,7 @@ extern int mPlayerIndex;
|
|||||||
extern int mState;
|
extern int mState;
|
||||||
|
|
||||||
extern int gmsgCurWeapon;
|
extern int gmsgCurWeapon;
|
||||||
|
extern int gmsgDamageEnd;
|
||||||
extern int gmsgDamage;
|
extern int gmsgDamage;
|
||||||
extern int gmsgWeaponList;
|
extern int gmsgWeaponList;
|
||||||
extern int gmsgResetHUD;
|
extern int gmsgResetHUD;
|
||||||
@ -68,6 +69,7 @@ void Client_CurWeapon(void*);
|
|||||||
void Client_Damage(void*);
|
void Client_Damage(void*);
|
||||||
void Client_WeaponList(void*);
|
void Client_WeaponList(void*);
|
||||||
void Client_AmmoPickup(void*);
|
void Client_AmmoPickup(void*);
|
||||||
|
void Client_Damage_End(void*);
|
||||||
void Client_ScoreInfo(void*);
|
void Client_ScoreInfo(void*);
|
||||||
void Client_ResetHUD(void*);
|
void Client_ResetHUD(void*);
|
||||||
|
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
|
|
||||||
weaponsVault weaponData[MAX_WEAPONS];
|
weaponsVault weaponData[MAX_WEAPONS];
|
||||||
|
|
||||||
|
int damage;
|
||||||
|
int TK;
|
||||||
|
int weapon;
|
||||||
|
int aim;
|
||||||
|
CPlayer *pAttacker;
|
||||||
|
|
||||||
int g_Planter;
|
int g_Planter;
|
||||||
int g_Defuser;
|
int g_Defuser;
|
||||||
|
|
||||||
@ -46,13 +52,6 @@ void Client_WeaponList(void* mValue){
|
|||||||
|
|
||||||
void Client_Damage(void* mValue){
|
void Client_Damage(void* mValue){
|
||||||
static int bits;
|
static int bits;
|
||||||
static int damage;
|
|
||||||
static int TK;
|
|
||||||
static int weapon;
|
|
||||||
static int aim;
|
|
||||||
static bool ignore;
|
|
||||||
static CPlayer *pAttacker;
|
|
||||||
|
|
||||||
switch (mState++) {
|
switch (mState++) {
|
||||||
case 1:
|
case 1:
|
||||||
damage = *(int*)mValue;
|
damage = *(int*)mValue;
|
||||||
@ -61,7 +60,7 @@ void Client_Damage(void* mValue){
|
|||||||
bits = *(int*)mValue;
|
bits = *(int*)mValue;
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
if ( ignore = (!mPlayer || !damage || !*(float*)mValue || bits) ) break;
|
if (!mPlayer || !damage || !*(float*)mValue || bits) break;
|
||||||
edict_t *enemy;
|
edict_t *enemy;
|
||||||
enemy = mPlayer->pEdict->v.dmg_inflictor;
|
enemy = mPlayer->pEdict->v.dmg_inflictor;
|
||||||
|
|
||||||
@ -80,19 +79,19 @@ void Client_Damage(void* mValue){
|
|||||||
}
|
}
|
||||||
if( g_grenades.find(enemy , &pAttacker , &weapon ) )
|
if( g_grenades.find(enemy , &pAttacker , &weapon ) )
|
||||||
pAttacker->saveHit( mPlayer , weapon , damage, aim );
|
pAttacker->saveHit( mPlayer , weapon , damage, aim );
|
||||||
break;
|
}
|
||||||
case 4:
|
}
|
||||||
if ( ignore || mPlayer->IsAlive() )
|
|
||||||
break;
|
void Client_Damage_End(void* mValue){
|
||||||
|
if ( !mPlayer || !damage || mPlayer->IsAlive() )
|
||||||
|
return;
|
||||||
|
|
||||||
if ( !pAttacker )
|
if ( !pAttacker )
|
||||||
pAttacker = mPlayer;
|
pAttacker = mPlayer;
|
||||||
TK = 0;
|
TK = 0;
|
||||||
if ( (mPlayer->teamId == pAttacker->teamId) && (mPlayer != pAttacker) )
|
if ( (mPlayer->teamId == pAttacker->teamId) && (mPlayer != pAttacker) )
|
||||||
TK = 1;
|
TK = 1;
|
||||||
pAttacker->saveKill(mPlayer,weapon,( aim == 1 ) ? 1:0 ,TK);
|
pAttacker->saveKill(mPlayer,weapon,( aim == 1 ) ? 1:0 ,TK);
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Client_CurWeapon(void* mValue){
|
void Client_CurWeapon(void* mValue){
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
$PROJECT = "cstrike_amxx";
|
$PROJECT = "cstrike_amxx";
|
||||||
$sdk = "../hlsdk/SourceCode";
|
$sdk = "../hlsdk/SourceCode";
|
||||||
$mm = "../metamod/metamod";
|
$mm = "../metamod/metamod";
|
||||||
$gccf = "gcc";
|
|
||||||
|
|
||||||
@CPP_SOURCE_FILES = ("CstrikePlayer.cpp", "cstrike.cpp", "amxxmodule.cpp");
|
@CPP_SOURCE_FILES = ("CstrikePlayer.cpp", "cstrike.cpp", "amxxmodule.cpp");
|
||||||
|
|
||||||
@ -23,7 +22,7 @@ $gccf = "gcc";
|
|||||||
my %OPTIONS, %OPT;
|
my %OPTIONS, %OPT;
|
||||||
|
|
||||||
$OPT{"debug"} = "-g -ggdb";
|
$OPT{"debug"} = "-g -ggdb";
|
||||||
$OPT{"opt"} = "-O2 -ffast-math -funroll-loops -fomit-frame-pointer -s -DNDEBUG -Wall -Wno-unknown-pragmas -DOPT_TYPE=\"optimized\" -fno-exceptions -fno-rtti";
|
$OPT{"opt"} = "-O2 -ffast-math -funroll-loops -fomit-frame-pointer -s -DNDEBUG -Wall -Wno-unknown-pragmas -DOPT_TYPE=\"optimized\"";
|
||||||
|
|
||||||
$OPTIONS{"include"} = "-I$sdk -I. -I$mm -I$sdk/engine -I$sdk/common -I$sdk/pm_shared -I$sdk/dlls";
|
$OPTIONS{"include"} = "-I$sdk -I. -I$mm -I$sdk/engine -I$sdk/common -I$sdk/pm_shared -I$sdk/dlls";
|
||||||
|
|
||||||
@ -46,7 +45,7 @@ while ($cmd = shift)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$gcc = `$gccf --version`;
|
$gcc = `g++ --version`;
|
||||||
if ($gcc =~ /2\.9/)
|
if ($gcc =~ /2\.9/)
|
||||||
{
|
{
|
||||||
$OPT{"opt"} .= " -malign-loops=2 -malign-jumps=2 -malign-functions=2";
|
$OPT{"opt"} .= " -malign-loops=2 -malign-jumps=2 -malign-functions=2";
|
||||||
@ -73,7 +72,7 @@ if ($OPTIONS{"debug"})
|
|||||||
|
|
||||||
if ($OPTIONS{"amd64"})
|
if ($OPTIONS{"amd64"})
|
||||||
{
|
{
|
||||||
$cflags = " -m64 -DSMALL_CELL_SIZE=64 $cflags";
|
$cflags .= "-m64 -DSMALL_CELLSIZE=64 $cflags";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($OPTIONS{"debug"})
|
if ($OPTIONS{"debug"})
|
||||||
@ -135,11 +134,11 @@ for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|||||||
$ofile = $file;
|
$ofile = $file;
|
||||||
$ofile =~ s/\.cpp/\.o/;
|
$ofile =~ s/\.cpp/\.o/;
|
||||||
$ofile = "$outdir/$ofile";
|
$ofile = "$outdir/$ofile";
|
||||||
$gcc = "$gccf $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
$gcc = "g++ $cflags -Dstrcmpi=strcasecmp -fPIC $inc -c $file -o $ofile";
|
||||||
if (-e $ofile)
|
if (-e $ofile)
|
||||||
{
|
{
|
||||||
$file_time = (stat($file))[9];
|
$file_time = (stat($file))[9];
|
||||||
$ofile_time = (stat($ofile))[9];
|
$ofile_time = (stat($file))[9];
|
||||||
if ($file_time > $ofile_time)
|
if ($file_time > $ofile_time)
|
||||||
{
|
{
|
||||||
print "$gcc\n";
|
print "$gcc\n";
|
||||||
@ -161,7 +160,7 @@ for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|||||||
if (-e $ofile)
|
if (-e $ofile)
|
||||||
{
|
{
|
||||||
$file_time = (stat($file))[9];
|
$file_time = (stat($file))[9];
|
||||||
$ofile_time = (stat($ofile))[9];
|
$ofile_time = (stat($file))[9];
|
||||||
if ($file_time > $ofile_time)
|
if ($file_time > $ofile_time)
|
||||||
{
|
{
|
||||||
print "$gcc\n";
|
print "$gcc\n";
|
||||||
@ -173,6 +172,5 @@ for ($i=0; $i<=$#CPP_SOURCE_FILES; $i++)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$gcc = "$gccf $cflags -shared -ldl -lm @LINK -o $outdir/$bin";
|
$gcc = "g++ $cflags -shared -ldl -lm @LINK -o $outdir/$bin";
|
||||||
print "$gcc\n";
|
|
||||||
`$gcc`;
|
`$gcc`;
|
||||||
|
@ -2477,11 +2477,6 @@ PFN_CELL_TO_REAL g_fn_CellToReal;
|
|||||||
PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
||||||
PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
||||||
PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
||||||
PFN_MERGEDEFINITION_FILE g_fn_MergeDefinition_File;
|
|
||||||
PFN_AMX_FINDNATIVE g_fn_AmxFindNative;
|
|
||||||
PFN_GETPLAYERFLAGS g_fn_GetPlayerFlags;
|
|
||||||
PFN_GET_PLAYER_EDICT g_fn_GetPlayerEdict;
|
|
||||||
PFN_FORMAT g_fn_Format;
|
|
||||||
|
|
||||||
// *** Exports ***
|
// *** Exports ***
|
||||||
C_DLLEXPORT int AMXX_Query(int *interfaceVersion, amxx_module_info_s *moduleInfo)
|
C_DLLEXPORT int AMXX_Query(int *interfaceVersion, amxx_module_info_s *moduleInfo)
|
||||||
@ -2525,8 +2520,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("PrintSrvConsole", g_fn_PrintSrvConsole, PFN_PRINT_SRVCONSOLE);
|
REQFUNC("PrintSrvConsole", g_fn_PrintSrvConsole, PFN_PRINT_SRVCONSOLE);
|
||||||
REQFUNC("GetModname", g_fn_GetModname, PFN_GET_MODNAME);
|
REQFUNC("GetModname", g_fn_GetModname, PFN_GET_MODNAME);
|
||||||
REQFUNC("Log", g_fn_Log, PFN_LOG);
|
REQFUNC("Log", g_fn_Log, PFN_LOG);
|
||||||
REQFUNC("MergeDefinitionFile", g_fn_MergeDefinition_File, PFN_MERGEDEFINITION_FILE);
|
|
||||||
REQFUNC("Format", g_fn_Format, PFN_FORMAT);
|
|
||||||
|
|
||||||
// Amx scripts
|
// Amx scripts
|
||||||
REQFUNC("GetAmxScript", g_fn_GetAmxScript, PFN_GET_AMXSCRIPT);
|
REQFUNC("GetAmxScript", g_fn_GetAmxScript, PFN_GET_AMXSCRIPT);
|
||||||
@ -2534,7 +2527,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("FindAmxScriptByName", g_fn_FindAmxScriptByName, PFN_FIND_AMXSCRIPT_BYNAME);
|
REQFUNC("FindAmxScriptByName", g_fn_FindAmxScriptByName, PFN_FIND_AMXSCRIPT_BYNAME);
|
||||||
REQFUNC("LoadAmxScript", g_fn_LoadAmxScript, PFN_LOAD_AMXSCRIPT);
|
REQFUNC("LoadAmxScript", g_fn_LoadAmxScript, PFN_LOAD_AMXSCRIPT);
|
||||||
REQFUNC("UnloadAmxScript", g_fn_UnloadAmxScript, PFN_UNLOAD_AMXSCRIPT);
|
REQFUNC("UnloadAmxScript", g_fn_UnloadAmxScript, PFN_UNLOAD_AMXSCRIPT);
|
||||||
REQFUNC("GetAmxScriptName", g_fn_GetAmxScriptName, PFN_GET_AMXSCRIPTNAME);
|
|
||||||
|
|
||||||
// String / mem in amx scripts support
|
// String / mem in amx scripts support
|
||||||
REQFUNC("SetAmxString", g_fn_SetAmxString, PFN_SET_AMXSTRING);
|
REQFUNC("SetAmxString", g_fn_SetAmxString, PFN_SET_AMXSTRING);
|
||||||
@ -2548,7 +2540,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("amx_Execv", g_fn_AmxExecv, PFN_AMX_EXECV);
|
REQFUNC("amx_Execv", g_fn_AmxExecv, PFN_AMX_EXECV);
|
||||||
REQFUNC("amx_FindPublic", g_fn_AmxFindPublic, PFN_AMX_FINDPUBLIC);
|
REQFUNC("amx_FindPublic", g_fn_AmxFindPublic, PFN_AMX_FINDPUBLIC);
|
||||||
REQFUNC("amx_Allot", g_fn_AmxAllot, PFN_AMX_ALLOT);
|
REQFUNC("amx_Allot", g_fn_AmxAllot, PFN_AMX_ALLOT);
|
||||||
REQFUNC("amx_FindNative", g_fn_AmxFindNative, PFN_AMX_FINDNATIVE);
|
|
||||||
|
|
||||||
// Natives / Forwards
|
// Natives / Forwards
|
||||||
REQFUNC("AddNatives", g_fn_AddNatives, PFN_ADD_NATIVES);
|
REQFUNC("AddNatives", g_fn_AddNatives, PFN_ADD_NATIVES);
|
||||||
@ -2581,8 +2572,6 @@ C_DLLEXPORT int AMXX_Attach(PFN_REQ_FNPTR reqFnptrFunc)
|
|||||||
REQFUNC("IsPlayerHLTV", g_fn_IsPlayerHLTV, PFN_IS_PLAYER_HLTV);
|
REQFUNC("IsPlayerHLTV", g_fn_IsPlayerHLTV, PFN_IS_PLAYER_HLTV);
|
||||||
REQFUNC("GetPlayerArmor", g_fn_GetPlayerArmor, PFN_GET_PLAYER_ARMOR);
|
REQFUNC("GetPlayerArmor", g_fn_GetPlayerArmor, PFN_GET_PLAYER_ARMOR);
|
||||||
REQFUNC("GetPlayerHealth", g_fn_GetPlayerHealth, PFN_GET_PLAYER_HEALTH);
|
REQFUNC("GetPlayerHealth", g_fn_GetPlayerHealth, PFN_GET_PLAYER_HEALTH);
|
||||||
REQFUNC("GetPlayerFlags", g_fn_GetPlayerFlags, PFN_GETPLAYERFLAGS);
|
|
||||||
REQFUNC("GetPlayerEdict", g_fn_GetPlayerEdict, PFN_GET_PLAYER_EDICT);
|
|
||||||
|
|
||||||
// Memory
|
// Memory
|
||||||
REQFUNC_OPT("Allocator", g_fn_Allocator, PFN_ALLOCATOR);
|
REQFUNC_OPT("Allocator", g_fn_Allocator, PFN_ALLOCATOR);
|
||||||
@ -2677,14 +2666,11 @@ void ValidateMacros_DontCallThis_Smiley()
|
|||||||
MF_AmxExecv(0, 0, 0, 0, 0);
|
MF_AmxExecv(0, 0, 0, 0, 0);
|
||||||
MF_AmxFindPublic(0, 0, 0);
|
MF_AmxFindPublic(0, 0, 0);
|
||||||
MF_AmxAllot(0, 0, 0, 0);
|
MF_AmxAllot(0, 0, 0, 0);
|
||||||
MF_LoadAmxScript(0, 0, 0, 0, 0);
|
MF_LoadAmxScript(0, 0, 0, 0);
|
||||||
MF_UnloadAmxScript(0, 0);
|
MF_UnloadAmxScript(0, 0);
|
||||||
MF_RegisterSPForward(0, 0, 0, 0, 0, 0);
|
MF_RegisterSPForward(0, 0, 0, 0, 0, 0);
|
||||||
MF_RegisterSPForwardByName(0, 0, 0, 0, 0, 0);
|
MF_RegisterSPForwardByName(0, 0, 0, 0, 0, 0);
|
||||||
MF_UnregisterSPForward(0);
|
MF_UnregisterSPForward(0);
|
||||||
MF_GetPlayerFrags(0);
|
|
||||||
MF_GetPlayerEdict(0);
|
|
||||||
MF_Format("", 4, "str");
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -2801,7 +2787,7 @@ void *operator new(size_t reportedSize)
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void *operator new[](size_t reportedSize)
|
void *operator new[](size_t reportedSize)
|
||||||
@ -2814,7 +2800,7 @@ void *operator new[](size_t reportedSize)
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Microsoft memory tracking operators
|
// Microsoft memory tracking operators
|
||||||
@ -2828,7 +2814,7 @@ void *operator new(size_t reportedSize, const char *sourceFile, int sourceLine)
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
void *operator new[](size_t reportedSize, const char *sourceFile, int sourceLine)
|
void *operator new[](size_t reportedSize, const char *sourceFile, int sourceLine)
|
||||||
{
|
{
|
||||||
@ -2840,7 +2826,7 @@ void *operator new[](size_t reportedSize, const char *sourceFile, int sourceLine
|
|||||||
return ptr;
|
return ptr;
|
||||||
|
|
||||||
// allocation failed
|
// allocation failed
|
||||||
return NULL;
|
throw std::bad_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void operator delete(void *reportedAddress)
|
void operator delete(void *reportedAddress)
|
||||||
|
@ -204,9 +204,11 @@ typedef struct tagAMX {
|
|||||||
cell reset_stk PACKED;
|
cell reset_stk PACKED;
|
||||||
cell reset_hea PACKED;
|
cell reset_hea PACKED;
|
||||||
cell sysreq_d PACKED; /* relocated address/value for the SYSREQ.D opcode */
|
cell sysreq_d PACKED; /* relocated address/value for the SYSREQ.D opcode */
|
||||||
|
#if defined JIT
|
||||||
/* support variables for the JIT */
|
/* support variables for the JIT */
|
||||||
int reloc_size PACKED; /* required temporary buffer for relocations */
|
int reloc_size PACKED; /* required temporary buffer for relocations */
|
||||||
long code_size PACKED; /* estimated memory footprint of the native code */
|
long code_size PACKED; /* estimated memory footprint of the native code */
|
||||||
|
#endif
|
||||||
} AMX;
|
} AMX;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
@ -238,14 +240,6 @@ enum {
|
|||||||
AMX_ERR_DOMAIN, /* domain error, expression result does not fit in range */
|
AMX_ERR_DOMAIN, /* domain error, expression result does not fit in range */
|
||||||
};
|
};
|
||||||
|
|
||||||
#if !defined AMX_NO_ALIGN
|
|
||||||
#if defined __linux__
|
|
||||||
#pragma pack() /* reset default packing */
|
|
||||||
#else
|
|
||||||
#pragma pack(pop) /* reset previous packing */
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
// ***** declare functions *****
|
// ***** declare functions *****
|
||||||
|
|
||||||
@ -263,9 +257,9 @@ void FN_META_QUERY(void);
|
|||||||
void FN_META_ATTACH(void);
|
void FN_META_ATTACH(void);
|
||||||
#endif // FN_META_ATTACH
|
#endif // FN_META_ATTACH
|
||||||
|
|
||||||
#ifdef FN_META_DETACH
|
#ifdef FN_META_DETTACH
|
||||||
void FN_META_DETACH(void);
|
void FN_META_DETTACH(void);
|
||||||
#endif // FN_META_DETACH
|
#endif // FN_META_DETTACH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1875,9 +1869,9 @@ void FN_AMXX_QUERY(void);
|
|||||||
void FN_AMXX_ATTACH(void);
|
void FN_AMXX_ATTACH(void);
|
||||||
#endif // FN_AMXX_ATTACH
|
#endif // FN_AMXX_ATTACH
|
||||||
|
|
||||||
#ifdef FN_AMXX_DETACH
|
#ifdef FN_AMXX_DETTACH
|
||||||
void FN_AMXX_DETACH(void);
|
void FN_AMXX_DETTACH(void);
|
||||||
#endif // FN_AMXX_DETACH
|
#endif // FN_AMXX_DETTACH
|
||||||
|
|
||||||
#ifdef FN_AMXX_PLUGINSLOADED
|
#ifdef FN_AMXX_PLUGINSLOADED
|
||||||
void FN_AMXX_PLUGINSLOADED(void);
|
void FN_AMXX_PLUGINSLOADED(void);
|
||||||
@ -1932,7 +1926,6 @@ typedef int (*PFN_IS_PLAYER_BOT) (int /*id*/);
|
|||||||
typedef int (*PFN_IS_PLAYER_AUTHORIZED) (int /*id*/);
|
typedef int (*PFN_IS_PLAYER_AUTHORIZED) (int /*id*/);
|
||||||
typedef float (*PFN_GET_PLAYER_TIME) (int /*id*/);
|
typedef float (*PFN_GET_PLAYER_TIME) (int /*id*/);
|
||||||
typedef float (*PFN_GET_PLAYER_PLAYTIME) (int /*id*/);
|
typedef float (*PFN_GET_PLAYER_PLAYTIME) (int /*id*/);
|
||||||
typedef int (*PFN_GETPLAYERFLAGS) (int /* id*/);
|
|
||||||
typedef int (*PFN_GET_PLAYER_CURWEAPON) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_CURWEAPON) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_TEAMID) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_TEAMID) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_DEATHS) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_DEATHS) (int /*id*/);
|
||||||
@ -1944,12 +1937,6 @@ typedef int (*PFN_IS_PLAYER_CONNECTING) (int /*id*/);
|
|||||||
typedef int (*PFN_IS_PLAYER_HLTV) (int /*id*/);
|
typedef int (*PFN_IS_PLAYER_HLTV) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_ARMOR) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_ARMOR) (int /*id*/);
|
||||||
typedef int (*PFN_GET_PLAYER_HEALTH) (int /*id*/);
|
typedef int (*PFN_GET_PLAYER_HEALTH) (int /*id*/);
|
||||||
#ifdef USE_METAMOD
|
|
||||||
typedef edict_t * (*PFN_GET_PLAYER_EDICT) (int /*id*/);
|
|
||||||
#else
|
|
||||||
typedef void * (*PFN_GET_PLAYER_EDICT) (int /*id*/);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef void * (*PFN_ALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
typedef void * (*PFN_ALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
||||||
const unsigned int /*type*/, const size_t /*size*/);
|
const unsigned int /*type*/, const size_t /*size*/);
|
||||||
typedef void * (*PFN_REALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
typedef void * (*PFN_REALLOCATOR) (const char* /*filename*/, const unsigned int /*line*/, const char* /*func*/,
|
||||||
@ -1960,16 +1947,13 @@ typedef int (*PFN_AMX_EXEC) (AMX* /*amx*/, cell* /*return val*/, int /*in
|
|||||||
typedef int (*PFN_AMX_EXECV) (AMX* /*amx*/, cell* /*return val*/, int /*index*/, int /*numparams*/, cell[] /*params*/);
|
typedef int (*PFN_AMX_EXECV) (AMX* /*amx*/, cell* /*return val*/, int /*index*/, int /*numparams*/, cell[] /*params*/);
|
||||||
typedef int (*PFN_AMX_ALLOT) (AMX* /*amx*/, int /*length*/, cell* /*amx_addr*/, cell** /*phys_addr*/);
|
typedef int (*PFN_AMX_ALLOT) (AMX* /*amx*/, int /*length*/, cell* /*amx_addr*/, cell** /*phys_addr*/);
|
||||||
typedef int (*PFN_AMX_FINDPUBLIC) (AMX* /*amx*/, char* /*func name*/, int* /*index*/);
|
typedef int (*PFN_AMX_FINDPUBLIC) (AMX* /*amx*/, char* /*func name*/, int* /*index*/);
|
||||||
typedef int (*PFN_AMX_FINDNATIVE) (AMX* /*amx*/, char* /*func name*/, int* /*index*/);
|
typedef int (*PFN_LOAD_AMXSCRIPT) (AMX* /*amx*/, void** /*code*/, const char* /*path*/, char[64] /*error info*/);
|
||||||
typedef int (*PFN_LOAD_AMXSCRIPT) (AMX* /*amx*/, void** /*code*/, const char* /*path*/, char[64] /*error info*/, int /* debug */);
|
|
||||||
typedef int (*PFN_UNLOAD_AMXSCRIPT) (AMX* /*amx*/,void** /*code*/);
|
typedef int (*PFN_UNLOAD_AMXSCRIPT) (AMX* /*amx*/,void** /*code*/);
|
||||||
typedef cell (*PFN_REAL_TO_CELL) (REAL /*x*/);
|
typedef cell (*PFN_REAL_TO_CELL) (REAL /*x*/);
|
||||||
typedef REAL (*PFN_CELL_TO_REAL) (cell /*x*/);
|
typedef REAL (*PFN_CELL_TO_REAL) (cell /*x*/);
|
||||||
typedef int (*PFN_REGISTER_SPFORWARD) (AMX * /*amx*/, int /*func*/, ... /*params*/);
|
typedef int (*PFN_REGISTER_SPFORWARD) (AMX * /*amx*/, int /*func*/, ... /*params*/);
|
||||||
typedef int (*PFN_REGISTER_SPFORWARD_BYNAME) (AMX * /*amx*/, const char * /*funcName*/, ... /*params*/);
|
typedef int (*PFN_REGISTER_SPFORWARD_BYNAME) (AMX * /*amx*/, const char * /*funcName*/, ... /*params*/);
|
||||||
typedef void (*PFN_UNREGISTER_SPFORWARD) (int /*id*/);
|
typedef void (*PFN_UNREGISTER_SPFORWARD) (int /*id*/);
|
||||||
typedef void (*PFN_MERGEDEFINITION_FILE) (const char * /*filename*/);
|
|
||||||
typedef const char * (*PFN_FORMAT) (const char * /*fmt*/, ... /*params*/);
|
|
||||||
|
|
||||||
extern PFN_ADD_NATIVES g_fn_AddNatives;
|
extern PFN_ADD_NATIVES g_fn_AddNatives;
|
||||||
extern PFN_BUILD_PATHNAME g_fn_BuildPathname;
|
extern PFN_BUILD_PATHNAME g_fn_BuildPathname;
|
||||||
@ -2021,11 +2005,6 @@ extern PFN_CELL_TO_REAL g_fn_CellToReal;
|
|||||||
extern PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
extern PFN_REGISTER_SPFORWARD g_fn_RegisterSPForward;
|
||||||
extern PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
extern PFN_REGISTER_SPFORWARD_BYNAME g_fn_RegisterSPForwardByName;
|
||||||
extern PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
extern PFN_UNREGISTER_SPFORWARD g_fn_UnregisterSPForward;
|
||||||
extern PFN_MERGEDEFINITION_FILE g_fn_MergeDefinition_File;
|
|
||||||
extern PFN_AMX_FINDNATIVE g_fn_AmxFindNative;
|
|
||||||
extern PFN_GETPLAYERFLAGS g_fn_GetPlayerFlags;
|
|
||||||
extern PFN_GET_PLAYER_EDICT g_fn_GetPlayerEdict;
|
|
||||||
extern PFN_FORMAT g_fn_Format;
|
|
||||||
|
|
||||||
#ifdef MAY_NEVER_BE_DEFINED
|
#ifdef MAY_NEVER_BE_DEFINED
|
||||||
// Function prototypes for intellisense and similar systems
|
// Function prototypes for intellisense and similar systems
|
||||||
@ -2074,9 +2053,6 @@ cell amx_ftoc (float x) { }
|
|||||||
int MF_RegisterSPForwardByName (AMX * amx, const char *str, ...) { }
|
int MF_RegisterSPForwardByName (AMX * amx, const char *str, ...) { }
|
||||||
int MF_RegisterSPForward (AMX * amx, int func, ...) { }
|
int MF_RegisterSPForward (AMX * amx, int func, ...) { }
|
||||||
void MF_UnregisterSPForward (int id) { }
|
void MF_UnregisterSPForward (int id) { }
|
||||||
int MF_GetPlayerFlags (int id) { }
|
|
||||||
edict_t* MF_GetPlayerEdict (int id) { }
|
|
||||||
const char * MF_Format (const char *fmt, ...) { }
|
|
||||||
#endif // MAY_NEVER_BE_DEFINED
|
#endif // MAY_NEVER_BE_DEFINED
|
||||||
|
|
||||||
#define MF_AddNatives g_fn_AddNatives
|
#define MF_AddNatives g_fn_AddNatives
|
||||||
@ -2122,18 +2098,13 @@ void MF_Log(const char *fmt, ...);
|
|||||||
#define MF_AmxExecv g_fn_AmxExecv
|
#define MF_AmxExecv g_fn_AmxExecv
|
||||||
#define MF_AmxFindPublic g_fn_AmxFindPublic
|
#define MF_AmxFindPublic g_fn_AmxFindPublic
|
||||||
#define MF_AmxAllot g_fn_AmxAllot
|
#define MF_AmxAllot g_fn_AmxAllot
|
||||||
#define MF_AmxFindNative g_fn_AmxFindNative
|
|
||||||
#define MF_LoadAmxScript g_fn_LoadAmxScript
|
#define MF_LoadAmxScript g_fn_LoadAmxScript
|
||||||
#define MF_UnloadAmxScript g_fn_UnloadAmxScript
|
#define MF_UnloadAmxScript g_fn_UnloadAmxScript
|
||||||
#define MF_MergeDefinitionFile g_fn_MergeDefinition_File
|
|
||||||
#define amx_ctof g_fn_CellToReal
|
#define amx_ctof g_fn_CellToReal
|
||||||
#define amx_ftoc g_fn_RealToCell
|
#define amx_ftoc g_fn_RealToCell
|
||||||
#define MF_RegisterSPForwardByName g_fn_RegisterSPForwardByName
|
#define MF_RegisterSPForwardByName g_fn_RegisterSPForwardByName
|
||||||
#define MF_RegisterSPForward g_fn_RegisterSPForward
|
#define MF_RegisterSPForward g_fn_RegisterSPForward
|
||||||
#define MF_UnregisterSPForward g_fn_UnregisterSPForward
|
#define MF_UnregisterSPForward g_fn_UnregisterSPForward
|
||||||
#define MF_GetPlayerFlags g_fn_GetPlayerFlags
|
|
||||||
#define MF_GetPlayerEdict g_fn_GetPlayerEdict
|
|
||||||
#define MF_Format g_fn_Format;
|
|
||||||
|
|
||||||
/*** Memory ***/
|
/*** Memory ***/
|
||||||
void *operator new(size_t reportedSize);
|
void *operator new(size_t reportedSize);
|
||||||
|
@ -1186,11 +1186,8 @@ static cell AMX_NATIVE_CALL cs_get_hostage_follow(AMX *amx, cell *params) // cs_
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined __amd64__
|
|
||||||
int following = *((int *)pHostage->pvPrivateData + OFFSET_HOSTAGEFOLLOW);
|
int following = *((int *)pHostage->pvPrivateData + OFFSET_HOSTAGEFOLLOW);
|
||||||
#else
|
|
||||||
long following = *((long *)pHostage->pvPrivateData + OFFSET_HOSTAGEFOLLOW);
|
|
||||||
#endif
|
|
||||||
if (following == 0)
|
if (following == 0)
|
||||||
return following;
|
return following;
|
||||||
|
|
||||||
@ -1235,12 +1232,7 @@ static cell AMX_NATIVE_CALL cs_set_hostage_follow(AMX *amx, cell *params) // cs_
|
|||||||
|
|
||||||
// Set to not follow anything?
|
// Set to not follow anything?
|
||||||
if (params[2] == 0) {
|
if (params[2] == 0) {
|
||||||
#if !defined __amd64__
|
|
||||||
*((int *)pHostage->pvPrivateData + OFFSET_HOSTAGEFOLLOW) = 0;
|
*((int *)pHostage->pvPrivateData + OFFSET_HOSTAGEFOLLOW) = 0;
|
||||||
#else
|
|
||||||
*((long *)pHostage->pvPrivateData + OFFSET_HOSTAGEFOLLOW) = 0;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1260,11 +1252,8 @@ static cell AMX_NATIVE_CALL cs_set_hostage_follow(AMX *amx, cell *params) // cs_
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined __amd64__
|
|
||||||
*((int *)pHostage->pvPrivateData + OFFSET_HOSTAGEFOLLOW) = (int)pEntity;
|
*((int *)pHostage->pvPrivateData + OFFSET_HOSTAGEFOLLOW) = (int)pEntity;
|
||||||
#else
|
|
||||||
*((long *)pHostage->pvPrivateData + OFFSET_HOSTAGEFOLLOW) = (long)pEntity;
|
|
||||||
#endif
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -51,7 +51,6 @@
|
|||||||
#endif // defined __linux__
|
#endif // defined __linux__
|
||||||
|
|
||||||
// "player" entities
|
// "player" entities
|
||||||
#if !defined __amd64__
|
|
||||||
#define OFFSET_TEAM 114 + EXTRAOFFSET
|
#define OFFSET_TEAM 114 + EXTRAOFFSET
|
||||||
#define OFFSET_CSMONEY 115 + EXTRAOFFSET
|
#define OFFSET_CSMONEY 115 + EXTRAOFFSET
|
||||||
#define OFFSET_PRIMARYWEAPON 116 + EXTRAOFFSET
|
#define OFFSET_PRIMARYWEAPON 116 + EXTRAOFFSET
|
||||||
@ -84,40 +83,6 @@
|
|||||||
// "hostage_entity" entities
|
// "hostage_entity" entities
|
||||||
#define OFFSET_HOSTAGEFOLLOW 86 + EXTRAOFFSET
|
#define OFFSET_HOSTAGEFOLLOW 86 + EXTRAOFFSET
|
||||||
#define OFFSET_HOSTAGEID 487 + EXTRAOFFSET
|
#define OFFSET_HOSTAGEID 487 + EXTRAOFFSET
|
||||||
#else
|
|
||||||
#define OFFSET_TEAM 139 + EXTRAOFFSET // +25
|
|
||||||
#define OFFSET_CSMONEY 140 + EXTRAOFFSET // +25
|
|
||||||
#define OFFSET_PRIMARYWEAPON 141 + EXTRAOFFSET // +25
|
|
||||||
#define OFFSET_INTERNALMODEL 152 + EXTRAOFFSET // +26
|
|
||||||
#define OFFSET_NVGOGGLES 155 + EXTRAOFFSET // +26
|
|
||||||
#define OFFSET_DEFUSE_PLANT 219 + EXTRAOFFSET // +26
|
|
||||||
#define OFFSET_VIP 242 + EXTRAOFFSET // +27
|
|
||||||
#define OFFSET_BUYZONE 268 + EXTRAOFFSET // +27
|
|
||||||
|
|
||||||
#define OFFSET_AWM_AMMO 426 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_SCOUT_AMMO 427 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_PARA_AMMO 428 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_FAMAS_AMMO 429 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_M3_AMMO 430 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_USP_AMMO 431 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_FIVESEVEN_AMMO 432 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_DEAGLE_AMMO 433 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_P228_AMMO 434 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_GLOCK_AMMO 435 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_FLASH_AMMO 436 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_HE_AMMO 437 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_SMOKE_AMMO 438 + EXTRAOFFSET // +44
|
|
||||||
#define OFFSET_C4_AMMO 439 + EXTRAOFFSET // +44
|
|
||||||
|
|
||||||
#define OFFSET_CSDEATHS 493 + EXTRAOFFSET // +44
|
|
||||||
// "weapon_*" entities
|
|
||||||
#define OFFSET_WEAPONTYPE 57 + EXTRAOFFSET // +14
|
|
||||||
#define OFFSET_CLIPAMMO 65 + EXTRAOFFSET // +14
|
|
||||||
#define OFFSET_SILENCER_FIREMODE 88 + EXTRAOFFSET // +14
|
|
||||||
// "hostage_entity" entities
|
|
||||||
#define OFFSET_HOSTAGEFOLLOW 51 + EXTRAOFFSET // +21, long=51, int=107! (must use the long* offset becuase pointers on amd64 are stored the size of longs, 8 bytes, instead of the usual int 4 bytes.)
|
|
||||||
#define OFFSET_HOSTAGEID 516 + EXTRAOFFSET // +29
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Ids of weapons in CS
|
// Ids of weapons in CS
|
||||||
#define CSW_P228 1
|
#define CSW_P228 1
|
||||||
|
@ -1,61 +0,0 @@
|
|||||||
|
|
||||||
#if defined _csstats_included
|
|
||||||
#endinput
|
|
||||||
#endif
|
|
||||||
#define _csstats_included
|
|
||||||
|
|
||||||
/* Gets stats from given weapon index. If wpnindex is 0
|
|
||||||
* then the stats are from all weapons. If weapon has not been used function
|
|
||||||
* returns 0 in other case 1. Fields in stats are:
|
|
||||||
* 0 - kills
|
|
||||||
* 1 - deaths
|
|
||||||
* 2 - headshots
|
|
||||||
* 3 - teamkilling
|
|
||||||
* 4 - shots
|
|
||||||
* 5 - hits
|
|
||||||
* 6 - damage
|
|
||||||
|
|
||||||
* For body hits fields see amxconst.inc. */
|
|
||||||
native get_user_wstats(index,wpnindex,stats[8],bodyhits[8]);
|
|
||||||
|
|
||||||
/* Gets round stats from given weapon index.*/
|
|
||||||
native get_user_wrstats(index,wpnindex,stats[8],bodyhits[8]);
|
|
||||||
|
|
||||||
/* Gets overall stats which are stored in file on server
|
|
||||||
* and updated on every respawn or user disconnect.
|
|
||||||
* Function returns the position in stats by diff. kills to deaths. */
|
|
||||||
native get_user_stats(index,stats[8],bodyhits[8]);
|
|
||||||
|
|
||||||
/* Gets round stats of player. */
|
|
||||||
native get_user_rstats(index,stats[8],bodyhits[8]);
|
|
||||||
|
|
||||||
/* Gets stats with which user have killed/hurt his victim. If victim is 0
|
|
||||||
* then stats are from all victims. If victim has not been hurt, function
|
|
||||||
* returns 0 in other case 1. User stats are reset on his respawn. */
|
|
||||||
native get_user_vstats(index,victim,stats[8],bodyhits[8],wpnname[]="",len=0);
|
|
||||||
|
|
||||||
/* Gets stats with which user have been killed/hurt. If killer is 0
|
|
||||||
* then stats are from all attacks. If killer has not hurt user, function
|
|
||||||
* returns 0 in other case 1. User stats are reset on his respawn. */
|
|
||||||
native get_user_astats(index,wpnindex,stats[8],bodyhits[8],wpnname[]="",len=0);
|
|
||||||
|
|
||||||
/* Resets life, weapon, victims and attackers user stats. */
|
|
||||||
native reset_user_wstats(index);
|
|
||||||
|
|
||||||
/* Gets overall stats which stored in stats.dat file in amx folder
|
|
||||||
* and updated on every mapchange or user disconnect.
|
|
||||||
* Function returns next index of stats entry or 0 if no more exists. */
|
|
||||||
native get_stats(index,stats[8],bodyhits[8],name[],len);
|
|
||||||
|
|
||||||
/* Returns number of all entries in stats. */
|
|
||||||
native get_statsnum();
|
|
||||||
|
|
||||||
/*
|
|
||||||
* new stats:
|
|
||||||
* 0 - total defusions
|
|
||||||
* 1 - bomb defused
|
|
||||||
* 2 - bomb plants
|
|
||||||
* 3 - bomb explosions
|
|
||||||
*/
|
|
||||||
native get_user_stats2(index,stats[4]);
|
|
||||||
native get_stats2(index,stats[4]);
|
|
@ -1,59 +0,0 @@
|
|||||||
/* CSX functions
|
|
||||||
*
|
|
||||||
* (c) 2004, SidLuke
|
|
||||||
* This file is provided as is (no warranties).
|
|
||||||
*/
|
|
||||||
|
|
||||||
#if defined _csx_included
|
|
||||||
#endinput
|
|
||||||
#endif
|
|
||||||
#define _csx_included
|
|
||||||
|
|
||||||
#include <csstats>
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Forwards
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* Function is called after player to player attacks ,
|
|
||||||
* if players were damaged by teammate TA is set to 1 */
|
|
||||||
forward client_damage(attacker,victim,damage,wpnindex,hitplace,TA);
|
|
||||||
|
|
||||||
/* Function is called after player death ,
|
|
||||||
* if player was killed by teammate TK is set to 1 */
|
|
||||||
forward client_death(killer,victim,wpnindex,hitplace,TK);
|
|
||||||
|
|
||||||
forward grenade_throw( index,greindex,wId );
|
|
||||||
|
|
||||||
forward bomb_planting(planter);
|
|
||||||
forward bomb_planted(planter);
|
|
||||||
forward bomb_explode(planter,defuser);
|
|
||||||
forward bomb_defusing(defuser);
|
|
||||||
forward bomb_defused(defuser);
|
|
||||||
|
|
||||||
/************* Shared Natives Start ********************************/
|
|
||||||
|
|
||||||
/* Custom Weapon Support */
|
|
||||||
/* function will return index of new weapon */
|
|
||||||
native custom_weapon_add( wpnname[],melee = 0,logname[]="" );
|
|
||||||
/* Function will pass damage done by this custom weapon to stats module and other plugins */
|
|
||||||
native custom_weapon_dmg( weapon, att, vic, damage, hitplace=0 );
|
|
||||||
/* Function will pass info about custom weapon shot to stats module */
|
|
||||||
native custom_weapon_shot( weapon,index ); // weapon id , player id
|
|
||||||
|
|
||||||
/* function will return 1 if true */
|
|
||||||
native xmod_is_melee_wpn(wpnindex);
|
|
||||||
|
|
||||||
/* Returns weapon name. */
|
|
||||||
native xmod_get_wpnname(wpnindex,name[],len);
|
|
||||||
|
|
||||||
/* Returns weapon logname. */
|
|
||||||
native xmod_get_wpnlogname(wpnindex,name[],len);
|
|
||||||
|
|
||||||
/* Returns weapons array size */
|
|
||||||
native xmod_get_maxweapons();
|
|
||||||
|
|
||||||
/* Returns stats array size */
|
|
||||||
native xmod_get_stats_size();
|
|
||||||
|
|
||||||
/************* Shared Natives End ********************************/
|
|
@ -1,515 +0,0 @@
|
|||||||
/* AMX Mod X
|
|
||||||
* Misc. Stats Plugin
|
|
||||||
*
|
|
||||||
* by the AMX Mod X Development Team
|
|
||||||
* originally developed by OLO
|
|
||||||
*
|
|
||||||
* This file is part of AMX Mod X.
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify it
|
|
||||||
* under the terms of the GNU General Public License as published by the
|
|
||||||
* Free Software Foundation; either version 2 of the License, or (at
|
|
||||||
* your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful, but
|
|
||||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software Foundation,
|
|
||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
*
|
|
||||||
* In addition, as a special exception, the author gives permission to
|
|
||||||
* link the code of this program with the Half-Life Game Engine ("HL
|
|
||||||
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
|
|
||||||
* L.L.C ("Valve"). You must obey the GNU General Public License in all
|
|
||||||
* respects for all of the code used other than the HL Engine and MODs
|
|
||||||
* from Valve. If you modify this file, you may extend this exception
|
|
||||||
* to your version of the file, but you are not obligated to do so. If
|
|
||||||
* you do not wish to do so, delete this exception statement from your
|
|
||||||
* version.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <amxmodx>
|
|
||||||
|
|
||||||
public MultiKill
|
|
||||||
public MultiKillSound
|
|
||||||
public BombPlanting
|
|
||||||
public BombDefusing
|
|
||||||
public BombPlanted
|
|
||||||
public BombDefused
|
|
||||||
public BombFailed
|
|
||||||
public BombPickUp
|
|
||||||
public BombDrop
|
|
||||||
public BombCountVoice
|
|
||||||
public BombCountDef
|
|
||||||
public BombReached
|
|
||||||
public ItalyBonusKill
|
|
||||||
public EnemyRemaining
|
|
||||||
public LastMan
|
|
||||||
public KnifeKill
|
|
||||||
public KnifeKillSound
|
|
||||||
public GrenadeKill
|
|
||||||
public GrenadeSuicide
|
|
||||||
public HeadShotKill
|
|
||||||
public HeadShotKillSound
|
|
||||||
public RoundCounterSound
|
|
||||||
public RoundCounter
|
|
||||||
public KillingStreak
|
|
||||||
public KillingStreakSound
|
|
||||||
public DoubleKill
|
|
||||||
public DoubleKillSound
|
|
||||||
public PlayerName
|
|
||||||
public FirstBloodSound
|
|
||||||
|
|
||||||
new g_streakKills[33][2]
|
|
||||||
new g_multiKills[33][2]
|
|
||||||
new g_C4Timer
|
|
||||||
new g_Defusing
|
|
||||||
new g_Planter
|
|
||||||
new Float:g_LastOmg
|
|
||||||
new g_LastAnnounce
|
|
||||||
new g_roundCount
|
|
||||||
new Float:g_doubleKill
|
|
||||||
new g_doubleKillId
|
|
||||||
new g_friend[33]
|
|
||||||
new g_firstBlood
|
|
||||||
|
|
||||||
new g_MultiKillMsg[7][] = {
|
|
||||||
"Multi-Kill! %s^n%L %d kills (%d hs)",
|
|
||||||
"Ultra-Kill!!! %s^n%L %d kills (%d hs)",
|
|
||||||
"%s IS ON A KILLING SPREE!!!^n%L %d kills (%d hs)",
|
|
||||||
"RAMPAGE!!! %s^n%L %d kills (%d hs)" ,
|
|
||||||
"%s IS UNSTOPPABLE!!!^n%L %d kills (%d hs)",
|
|
||||||
"%s IS A MONSTER!^n%L %d kills (%d hs)",
|
|
||||||
"%s IS GODLIKE!!!!^n%L %d kills (%d hs)"
|
|
||||||
}
|
|
||||||
new g_Sounds[7][] = {
|
|
||||||
"multikill",
|
|
||||||
"ultrakill",
|
|
||||||
"killingspree",
|
|
||||||
"rampage",
|
|
||||||
"unstoppable",
|
|
||||||
"monsterkill",
|
|
||||||
"godlike"
|
|
||||||
}
|
|
||||||
new g_KillingMsg[7][] = {
|
|
||||||
"%s: Multi-Kill!",
|
|
||||||
"%s: Ultra-Kill!!!",
|
|
||||||
"%s IS ON A KILLING SPREE!!!",
|
|
||||||
"%s: RAMPAGE!!!",
|
|
||||||
"%s IS UNSTOPPABLE!!!",
|
|
||||||
"%s IS A MONSTER!",
|
|
||||||
"%s IS GODLIKE!!!"
|
|
||||||
}
|
|
||||||
new g_KinfeMsg[4][] = {
|
|
||||||
"KNIFE_MSG_1",
|
|
||||||
"KNIFE_MSG_2",
|
|
||||||
"KNIFE_MSG_3",
|
|
||||||
"KNIFE_MSG_4"
|
|
||||||
}
|
|
||||||
new g_LastMessages[4][] = {
|
|
||||||
"LAST_MSG_1",
|
|
||||||
"LAST_MSG_2",
|
|
||||||
"LAST_MSG_3",
|
|
||||||
"LAST_MSG_4"
|
|
||||||
}
|
|
||||||
new g_HeMessages[4][] = {
|
|
||||||
"HE_MSG_1",
|
|
||||||
"HE_MSG_2",
|
|
||||||
"HE_MSG_3",
|
|
||||||
"HE_MSG_4"
|
|
||||||
}
|
|
||||||
new g_SHeMessages[4][] = {
|
|
||||||
"SHE_MSG_1",
|
|
||||||
"SHE_MSG_2",
|
|
||||||
"SHE_MSG_3",
|
|
||||||
"SHE_MSG_4"
|
|
||||||
}
|
|
||||||
new g_HeadShots[7][] = {
|
|
||||||
"HS_MSG_1",
|
|
||||||
"HS_MSG_2",
|
|
||||||
"HS_MSG_3",
|
|
||||||
"HS_MSG_4",
|
|
||||||
"HS_MSG_5",
|
|
||||||
"HS_MSG_6",
|
|
||||||
"HS_MSG_7"
|
|
||||||
}
|
|
||||||
|
|
||||||
new g_teamsNames[4][] = {
|
|
||||||
"TERRORIST",
|
|
||||||
"CT",
|
|
||||||
"TERRORISTS",
|
|
||||||
"CTS"
|
|
||||||
}
|
|
||||||
|
|
||||||
public plugin_init() {
|
|
||||||
register_plugin("CS Misc. Stats",AMXX_VERSION_STR,"AMXX Dev Team")
|
|
||||||
register_dictionary("miscstats.txt")
|
|
||||||
register_event("TextMsg","eRestart","a","2&#Game_C","2&#Game_w")
|
|
||||||
register_event("SendAudio", "eEndRound", "a", "2&%!MRAD_terwin","2&%!MRAD_ctwin","2&%!MRAD_rounddraw")
|
|
||||||
register_event("RoundTime", "eNewRound", "bc")
|
|
||||||
register_event("StatusValue","setTeam","be","1=1")
|
|
||||||
register_event("StatusValue","showStatus","be","1=2","2!0")
|
|
||||||
register_event("StatusValue","hideStatus","be","1=1","2=0")
|
|
||||||
new mapname[32]
|
|
||||||
get_mapname(mapname,31)
|
|
||||||
if (equali(mapname,"de_",3)||equali(mapname,"csde_",5)) {
|
|
||||||
register_event("StatusIcon", "eGotBomb", "be", "1=1", "1=2", "2=c4")
|
|
||||||
register_event("TextMsg", "eBombPickUp", "bc", "2&#Got_bomb")
|
|
||||||
register_event("TextMsg", "eBombDrop", "bc", "2&#Game_bomb_d")
|
|
||||||
}
|
|
||||||
else if ( equali( mapname , "cs_italy" ) ) {
|
|
||||||
register_event( "23" , "chickenKill", "a" , "1=108" , /*"12=106",*/ "15=4" )
|
|
||||||
register_event( "23" , "radioKill", "a" , "1=108" , /*"12=294",*/ "15=2" )
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public plugin_cfg() {
|
|
||||||
new g_addStast[] = "amx_statscfg add ^"%s^" %s"
|
|
||||||
server_cmd(g_addStast,"MultiKill","MultiKill")
|
|
||||||
server_cmd(g_addStast,"MultiKillSound","MultiKillSound")
|
|
||||||
server_cmd(g_addStast,"Bomb Planting","BombPlanting")
|
|
||||||
server_cmd(g_addStast,"Bomb Defusing","BombDefusing")
|
|
||||||
server_cmd(g_addStast,"Bomb Planted","BombPlanted")
|
|
||||||
server_cmd(g_addStast,"Bomb Defuse Succ.","BombDefused")
|
|
||||||
server_cmd(g_addStast,"Bomb Def. Failure","BombFailed")
|
|
||||||
server_cmd(g_addStast,"Bomb PickUp","BombPickUp")
|
|
||||||
server_cmd(g_addStast,"Bomb Drop","BombDrop")
|
|
||||||
server_cmd(g_addStast,"Bomb Count Down","BombCountVoice")
|
|
||||||
server_cmd(g_addStast,"Bomb Count Down (def)","BombCountDef")
|
|
||||||
server_cmd(g_addStast,"Bomb Site Reached","BombReached")
|
|
||||||
server_cmd(g_addStast,"Italy Bonus Kill","ItalyBonusKill")
|
|
||||||
server_cmd(g_addStast,"Last Man","LastMan")
|
|
||||||
server_cmd(g_addStast,"Knife Kill","KnifeKill")
|
|
||||||
server_cmd(g_addStast,"Knife Kill Sound","KnifeKillSound")
|
|
||||||
server_cmd(g_addStast,"Grenade Kill","GrenadeKill")
|
|
||||||
server_cmd(g_addStast,"Grenade Suicide","GrenadeSuicide")
|
|
||||||
server_cmd(g_addStast,"HeadShot Kill","HeadShotKill")
|
|
||||||
server_cmd(g_addStast,"HeadShot Kill Sound","HeadShotKillSound")
|
|
||||||
server_cmd(g_addStast,"Round Counter","RoundCounter")
|
|
||||||
server_cmd(g_addStast,"Round Counter Sound","RoundCounterSound")
|
|
||||||
server_cmd(g_addStast,"Killing Streak","KillingStreak")
|
|
||||||
server_cmd(g_addStast,"Killing Streak Sound","KillingStreakSound")
|
|
||||||
server_cmd(g_addStast,"Enemy Remaining","EnemyRemaining")
|
|
||||||
server_cmd(g_addStast,"Double Kill","DoubleKill")
|
|
||||||
server_cmd(g_addStast,"Double Kill Sound","DoubleKillSound")
|
|
||||||
server_cmd(g_addStast,"Player Name","PlayerName")
|
|
||||||
server_cmd(g_addStast,"First Blood Sound","FirstBloodSound")
|
|
||||||
}
|
|
||||||
|
|
||||||
public client_putinserver(id)
|
|
||||||
g_multiKills[id] = g_streakKills[ id ] = { 0 , 0 }
|
|
||||||
|
|
||||||
public client_death(killer,victim,wpnindex,hitplace,TK) {
|
|
||||||
|
|
||||||
new headshot = ( hitplace == HIT_HEAD ) ? 1:0
|
|
||||||
|
|
||||||
if ( g_firstBlood ) {
|
|
||||||
g_firstBlood = 0
|
|
||||||
if ( FirstBloodSound ) client_cmd(0,"spk misc/firstblood")
|
|
||||||
}
|
|
||||||
if ( (KillingStreak || KillingStreakSound) && !TK ) {
|
|
||||||
g_streakKills[ killer ][ 0 ]++
|
|
||||||
g_streakKills[ killer ][ 1 ] = 0
|
|
||||||
g_streakKills[ victim ][ 1 ]++
|
|
||||||
g_streakKills[ victim ][ 0 ] = 0
|
|
||||||
new a = g_streakKills[ killer ][ 0 ] - 3
|
|
||||||
if ( (a > -1) && !( a % 2 ) ) {
|
|
||||||
new name[32]
|
|
||||||
get_user_name( killer , name , 31 )
|
|
||||||
if ( (a >>= 1) > 6 ) a = 6
|
|
||||||
if ( KillingStreak ){
|
|
||||||
set_hudmessage(0, 100, 255, 0.05, 0.55, 2, 0.02, 6.0, 0.01, 0.1, 3)
|
|
||||||
show_hudmessage(0,g_KillingMsg[ a ], name )
|
|
||||||
}
|
|
||||||
if ( KillingStreakSound ) client_cmd( 0, "spk misc/%s", g_Sounds[ a ] )
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ( MultiKill || MultiKillSound ) {
|
|
||||||
if (killer && !TK ) {
|
|
||||||
g_multiKills[killer][0]++
|
|
||||||
g_multiKills[killer][1] += headshot
|
|
||||||
new param[2]
|
|
||||||
param[0] = killer
|
|
||||||
param[1] = g_multiKills[killer][0]
|
|
||||||
set_task( 4.0 + float( param[1] ) ,"checkKills",0,param,2)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ( EnemyRemaining ) {
|
|
||||||
new ppl[32], pplnum
|
|
||||||
new team = get_user_team( victim ) - 1
|
|
||||||
get_players(ppl,pplnum,"e", g_teamsNames[1 - team] )
|
|
||||||
if (pplnum) {
|
|
||||||
new eppl[32], epplnum
|
|
||||||
get_players(eppl,epplnum,"ae",g_teamsNames[team])
|
|
||||||
if (epplnum) {
|
|
||||||
new message[128],team_name[32]
|
|
||||||
set_hudmessage(255,255,255,0.02,0.85,2, 0.05, 0.1, 0.02, 3.0, 3)
|
|
||||||
for(new a=0; a<pplnum; ++a){
|
|
||||||
format(team_name,31,"%L",ppl[a],(epplnum==1)?g_teamsNames[team]:g_teamsNames[team+2])
|
|
||||||
format(message,127,"%L",ppl[a],"REMAINING",epplnum,team_name)
|
|
||||||
show_hudmessage(ppl[a],message)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ( LastMan ) {
|
|
||||||
new cts[32], ts[32], ctsnum, tsnum
|
|
||||||
get_players(cts,ctsnum,"ae", g_teamsNames[1] )
|
|
||||||
get_players(ts,tsnum,"ae", g_teamsNames[0] )
|
|
||||||
if ( ctsnum == 1 && tsnum == 1 ) {
|
|
||||||
new ctname[32], tname[32]
|
|
||||||
get_user_name(cts[0],ctname,31)
|
|
||||||
get_user_name(ts[0],tname,31)
|
|
||||||
set_hudmessage(0, 255, 255, -1.0, 0.35, 0, 6.0, 6.0, 0.5, 0.15, 3)
|
|
||||||
show_hudmessage(0,"%s vs. %s",ctname,tname)
|
|
||||||
client_cmd(0,"spk misc/maytheforce")
|
|
||||||
}
|
|
||||||
else if ( !g_LastAnnounce ) {
|
|
||||||
new oposite = 0, team = 0
|
|
||||||
if ( ctsnum == 1 && tsnum > 1 ) {
|
|
||||||
g_LastAnnounce = cts[0]
|
|
||||||
oposite = tsnum
|
|
||||||
team = 0
|
|
||||||
}
|
|
||||||
else if ( tsnum == 1 && ctsnum > 1 ) {
|
|
||||||
g_LastAnnounce = ts[0]
|
|
||||||
oposite = ctsnum
|
|
||||||
team = 1
|
|
||||||
}
|
|
||||||
if (g_LastAnnounce) {
|
|
||||||
new name[32]
|
|
||||||
get_user_name(g_LastAnnounce,name,31)
|
|
||||||
set_hudmessage(0, 255, 255, -1.0, 0.35, 0, 6.0, 6.0, 0.5, 0.15, 3)
|
|
||||||
show_hudmessage(0,"%s (%d HP) vs. %d %s%s: %L",name,
|
|
||||||
get_user_health(g_LastAnnounce),oposite,
|
|
||||||
g_teamsNames[team],(oposite==1)?"":"S",LANG_PLAYER,g_LastMessages[ random_num(0,3) ] )
|
|
||||||
client_cmd(g_LastAnnounce,"spk misc/oneandonly")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( wpnindex == 29 && ( KnifeKill || KnifeKillSound ) ) {
|
|
||||||
if ( KnifeKill ) {
|
|
||||||
new killer_name[32],victim_name[32]
|
|
||||||
get_user_name(killer,killer_name,31)
|
|
||||||
get_user_name(victim,victim_name,31)
|
|
||||||
set_hudmessage(255, 100, 100, -1.0, 0.25, 1, 6.0, 6.0, 0.5, 0.15, 1)
|
|
||||||
show_hudmessage(0,"%L",LANG_PLAYER,g_KinfeMsg[ random_num(0,3) ],killer_name,victim_name)
|
|
||||||
}
|
|
||||||
if ( KnifeKillSound ) client_cmd(0,"spk misc/humiliation")
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( wpnindex == 4 && (GrenadeKill || GrenadeSuicide) ) {
|
|
||||||
new killer_name[32],victim_name[32]
|
|
||||||
get_user_name(killer,killer_name,32)
|
|
||||||
get_user_name(victim,victim_name,32)
|
|
||||||
set_hudmessage(255, 100, 100, -1.0, 0.25, 1, 6.0, 6.0, 0.5, 0.15, 1)
|
|
||||||
if ( killer != victim ) {
|
|
||||||
if ( GrenadeKill ) show_hudmessage(0,"%L",LANG_PLAYER,g_HeMessages[ random_num(0,3)],killer_name,victim_name)
|
|
||||||
}
|
|
||||||
else if ( GrenadeSuicide ) show_hudmessage(0,"%L",LANG_PLAYER,g_SHeMessages[ random_num(0,3) ],victim_name)
|
|
||||||
}
|
|
||||||
if ( headshot && (HeadShotKill || HeadShotKillSound) ) {
|
|
||||||
if ( HeadShotKill ) {
|
|
||||||
new killer_name[32], victim_name[32], weapon_name[32], message[128], players[32], pnum
|
|
||||||
get_weaponname(wpnindex,weapon_name,31)
|
|
||||||
get_user_name(killer,killer_name,31)
|
|
||||||
get_user_name(victim,victim_name,31)
|
|
||||||
|
|
||||||
get_players(players,pnum,"c")
|
|
||||||
for (new i=0;i<pnum;i++) {
|
|
||||||
format( message, 127, "%L",players[i],g_HeadShots[ random_num(0,6) ] )
|
|
||||||
replace( message, 127 , "$vn", victim_name )
|
|
||||||
replace( message, 127 , "$wn", weapon_name )
|
|
||||||
replace( message, 127 , "$kn", killer_name )
|
|
||||||
set_hudmessage(100, 100, 255, -1.0, 0.29, 0, 6.0, 6.0, 0.5, 0.15, 1)
|
|
||||||
show_hudmessage(players[i],message )
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ( HeadShotKillSound ) {
|
|
||||||
client_cmd(killer,"spk misc/headshot")
|
|
||||||
client_cmd(victim,"spk misc/headshot")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ( DoubleKill || DoubleKillSound ) {
|
|
||||||
new Float:nowtime = get_gametime()
|
|
||||||
if ( g_doubleKill == nowtime && g_doubleKillId == killer ) {
|
|
||||||
if ( DoubleKill ) {
|
|
||||||
new name[32]
|
|
||||||
get_user_name( killer , name , 31 )
|
|
||||||
set_hudmessage(255, 0, 255, -1.0, 0.35, 0, 6.0, 6.0, 0.5, 0.15, 3)
|
|
||||||
show_hudmessage(0,"%L",LANG_PLAYER,"DOUBLE_KILL",name )
|
|
||||||
}
|
|
||||||
if ( DoubleKillSound ) client_cmd(0,"spk misc/doublekill")
|
|
||||||
}
|
|
||||||
g_doubleKill = nowtime
|
|
||||||
g_doubleKillId = killer
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public hideStatus(id) {
|
|
||||||
if ( PlayerName ) {
|
|
||||||
set_hudmessage(0,0,0,0.0,0.0,0, 0.0, 0.01, 0.0, 0.0, 4)
|
|
||||||
show_hudmessage(id,"")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public setTeam(id)
|
|
||||||
g_friend[id] = read_data(2)
|
|
||||||
|
|
||||||
public showStatus(id) {
|
|
||||||
if ( PlayerName ) {
|
|
||||||
new name[32],pid = read_data(2)
|
|
||||||
get_user_name(pid,name,31)
|
|
||||||
new color1 = 0,color2 = 0
|
|
||||||
if ( get_user_team(pid)==1 )
|
|
||||||
color1 = 255
|
|
||||||
else
|
|
||||||
color2 = 255
|
|
||||||
if (g_friend[id]==1) { // friend
|
|
||||||
new clip, ammo, wpnid = get_user_weapon(pid,clip,ammo)
|
|
||||||
new wpnname[32]
|
|
||||||
get_weaponname(wpnid,wpnname,31)
|
|
||||||
set_hudmessage(color1,50,color2,-1.0,0.60,1, 0.01, 3.0, 0.01, 0.01, 4)
|
|
||||||
show_hudmessage(id,"%s -- %d HP / %d AP / %s",name,
|
|
||||||
get_user_health(pid),get_user_armor(pid),wpnname[7])
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
set_hudmessage(color1,50,color2,-1.0,0.60,1, 0.01, 3.0, 0.01, 0.01, 4)
|
|
||||||
show_hudmessage(id,name)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public eNewRound()
|
|
||||||
if ( read_data(1) == floatround(get_cvar_float("mp_roundtime") * 60.0) ) {
|
|
||||||
g_firstBlood = 1
|
|
||||||
g_C4Timer = 0
|
|
||||||
++g_roundCount
|
|
||||||
if ( RoundCounter ) {
|
|
||||||
set_hudmessage(200, 0, 0, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 1)
|
|
||||||
show_hudmessage(0, "%L", LANG_PLAYER, "PREPARE_FIGHT", g_roundCount )
|
|
||||||
}
|
|
||||||
if ( RoundCounterSound ) client_cmd( 0 , "spk misc/prepare" )
|
|
||||||
if ( KillingStreak ) {
|
|
||||||
new appl[32],ppl, i
|
|
||||||
get_players(appl,ppl, "ac" )
|
|
||||||
for (new a = 0; a < ppl; ++a) {
|
|
||||||
i = appl[ a ]
|
|
||||||
if ( g_streakKills[ i ][ 0 ] >= 2 )
|
|
||||||
client_print( i , print_chat , "* %L", i, "KILLED_ROW", g_streakKills[ i ][ 0 ] )
|
|
||||||
else if ( g_streakKills[ i ][ 1 ] >= 2 )
|
|
||||||
client_print( i , print_chat , "* %L", i, "DIED_ROUNDS", g_streakKills[ i ][ 1 ] )
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public eRestart() {
|
|
||||||
eEndRound()
|
|
||||||
g_roundCount = 0
|
|
||||||
g_firstBlood = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
public eEndRound() {
|
|
||||||
g_C4Timer = -2
|
|
||||||
g_LastOmg = 0.0
|
|
||||||
remove_task(8038)
|
|
||||||
g_LastAnnounce = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
public checkKills(param[]) {
|
|
||||||
new id = param[0]
|
|
||||||
new a = param[1]
|
|
||||||
if (a == g_multiKills[id][0]) {
|
|
||||||
a -= 3
|
|
||||||
if ( a > -1 ) {
|
|
||||||
if ( MultiKill ) {
|
|
||||||
new name[32]
|
|
||||||
get_user_name(id,name,31)
|
|
||||||
set_hudmessage(255, 0, 100, 0.05, 0.65, 2, 0.02, 6.0, 0.01, 0.1, 2)
|
|
||||||
if ( a > 6 ) a = 6
|
|
||||||
show_hudmessage(0,g_MultiKillMsg[a],name,LANG_PLAYER,"WITH",g_multiKills[id][0],g_multiKills[id][1])
|
|
||||||
}
|
|
||||||
if ( MultiKillSound ) client_cmd(0,"spk misc/%s",g_Sounds[a])
|
|
||||||
}
|
|
||||||
g_multiKills[id] = { 0,0 }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public chickenKill()
|
|
||||||
if ( ItalyBonusKill ) announceEvent( 0 , "KILLED_CHICKEN" )
|
|
||||||
|
|
||||||
public radioKill() {
|
|
||||||
if ( ItalyBonusKill ) announceEvent( 0 , "BLEW_RADIO" )
|
|
||||||
}
|
|
||||||
|
|
||||||
announceEvent( id, message[] ) {
|
|
||||||
new name[32]
|
|
||||||
get_user_name(id, name , 31)
|
|
||||||
set_hudmessage(255, 100, 50, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 1)
|
|
||||||
show_hudmessage(0,"%L",LANG_PLAYER,message,name)
|
|
||||||
}
|
|
||||||
|
|
||||||
public eBombPickUp(id)
|
|
||||||
if (BombPickUp) announceEvent(id , "PICKED_BOMB")
|
|
||||||
|
|
||||||
public eBombDrop()
|
|
||||||
if (BombDrop) announceEvent(g_Planter , "DROPPED_BOMB")
|
|
||||||
|
|
||||||
public eGotBomb(id) {
|
|
||||||
g_Planter = id
|
|
||||||
if ( BombReached && read_data(1)==2 && g_LastOmg<get_gametime()) {
|
|
||||||
g_LastOmg = get_gametime() + 15.0
|
|
||||||
announceEvent(g_Planter, "REACHED_TARGET" )
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public bombTimer() {
|
|
||||||
if (--g_C4Timer > 0) {
|
|
||||||
if (BombCountVoice) {
|
|
||||||
if (g_C4Timer == 30 || g_C4Timer == 20) {
|
|
||||||
new temp[48]
|
|
||||||
num_to_word(g_C4Timer,temp,47)
|
|
||||||
client_cmd(0,"spk ^"vox/%s seconds until explosion^"",temp)
|
|
||||||
}
|
|
||||||
else if (g_C4Timer < 11) {
|
|
||||||
new temp[48]
|
|
||||||
num_to_word(g_C4Timer,temp,47)
|
|
||||||
client_cmd(0,"spk ^"vox/%s^"",temp)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (BombCountDef && g_Defusing) client_print(g_Defusing,print_center,"%d",g_C4Timer)
|
|
||||||
}
|
|
||||||
else remove_task(8038)
|
|
||||||
}
|
|
||||||
|
|
||||||
public bomb_planted(planter){
|
|
||||||
g_Defusing = 0
|
|
||||||
if (BombPlanted) announceEvent(planter, "SET_UP_BOMB" )
|
|
||||||
g_C4Timer = get_cvar_num("mp_c4timer")
|
|
||||||
set_task(1.0,"bombTimer",8038,"",0,"b")
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public bomb_planting(planter)
|
|
||||||
if (BombPlanting) announceEvent(planter, "PLANT_BOMB" )
|
|
||||||
|
|
||||||
public bomb_defusing(defuser){
|
|
||||||
if (BombDefusing) announceEvent(defuser, "DEFUSING_BOMB" )
|
|
||||||
g_Defusing = defuser
|
|
||||||
}
|
|
||||||
|
|
||||||
public bomb_defused(defuser)
|
|
||||||
if (BombDefused) announceEvent(defuser, "DEFUSED_BOMB" )
|
|
||||||
|
|
||||||
public bomb_explode(planter,defuser)
|
|
||||||
if (BombFailed && defuser) announceEvent(defuser , "FAILED_DEFU" )
|
|
||||||
|
|
||||||
public plugin_modules()
|
|
||||||
{
|
|
||||||
require_module("csx")
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
[en]
|
|
||||||
WITH = with
|
|
||||||
KNIFE_MSG_1 = %s sliced and diced %s
|
|
||||||
KNIFE_MSG_2 = %s pulled out knife and gutted %s
|
|
||||||
KNIFE_MSG_3 = %s sneaks carefully behind and knifed %s
|
|
||||||
KNIFE_MSG_4 = %s knived %s
|
|
||||||
LAST_MSG_1 = Now all depend on you!
|
|
||||||
LAST_MSG_2 = I hope you still have a healthpack.
|
|
||||||
LAST_MSG_3 = All your teammates were killed. Good luck!
|
|
||||||
LAST_MSG_4 = Now you are alone. Have fun!
|
|
||||||
HE_MSG_1 = %s sends a little gift to %s
|
|
||||||
HE_MSG_2 = %s throws a small present to %s
|
|
||||||
HE_MSG_3 = %s made a precision throw to %s
|
|
||||||
HE_MSG_4 = %s got a big explosion for %s
|
|
||||||
SHE_MSG_1 = %s detonated himself with a grenade
|
|
||||||
SHE_MSG_2 = %s trys the effect of an HE Grenade
|
|
||||||
SHE_MSG_3 = %s swallows grenades whole!
|
|
||||||
SHE_MSG_4 = %s explodes!
|
|
||||||
HS_MSG_1 = $kn killed $vn with a well^nplaced shot to the head!
|
|
||||||
HS_MSG_2 = $kn removed $vn's^nhead with the $wn
|
|
||||||
HS_MSG_3 = $kn turned $vn's head^ninto pudding with the $wn
|
|
||||||
HS_MSG_4 = $vn got pwned by $kn
|
|
||||||
HS_MSG_5 = $vn's head has been^nturned into red jello
|
|
||||||
HS_MSG_6 = $kn has superb aim with the $wn,^nas $vn well knows.
|
|
||||||
HS_MSG_7 = $vn's head stayed in $kn's^ncrosshairs a bit too long...
|
|
||||||
DOUBLE_KILL = Wow! %s made a double kill!!!
|
|
||||||
PREPARE_FIGHT = Prepare to FIGHT!^nRound %d
|
|
||||||
KILLED_ROW = You've killed %d in a row so far
|
|
||||||
DIED_ROUNDS = Careful! You've died %d rounds in a row now...
|
|
||||||
KILLED_CHICKEN = Somebody killed a chicken!!!
|
|
||||||
BLEW_RADIO = Somebody blew up the radio!!!
|
|
||||||
REACHED_TARGET = Omg! %s reached the target!
|
|
||||||
PLANT_BOMB = %s is planting the bomb!
|
|
||||||
DEFUSING_BOMB = %s is defusing the bomb...
|
|
||||||
SET_UP_BOMB = %s set us up the bomb!!!
|
|
||||||
DEFUSED_BOMB = %s defused the bomb!
|
|
||||||
FAILED_DEFU = %s failed to defuse the bomb...
|
|
||||||
PICKED_BOMB = %s picked up the bomb...
|
|
||||||
DROPPED_BOMB = %s dropped the bomb!!!
|
|
||||||
CT = CT
|
|
||||||
CTS = CTS
|
|
||||||
TERRORIST = TERRORIST
|
|
||||||
TERRORISTS = TERRORISTS
|
|
||||||
REMAINING = %d %s Remaining...
|
|
File diff suppressed because it is too large
Load Diff
@ -1,177 +0,0 @@
|
|||||||
/* Gasnades */
|
|
||||||
|
|
||||||
#include <amxmodx>
|
|
||||||
#include <fun>
|
|
||||||
#include <engine>
|
|
||||||
#include <csx>
|
|
||||||
|
|
||||||
new g_Gas
|
|
||||||
//----------------------------------------------------------------------------------------------
|
|
||||||
public plugin_init()
|
|
||||||
{
|
|
||||||
register_plugin("Gasgrenades", "1.3 (CSX)", "RichoDemus/AssKicR/T(+)rget")
|
|
||||||
|
|
||||||
register_cvar("amx_gasnades", "1")
|
|
||||||
register_cvar("amx_gasdmg", "10")
|
|
||||||
register_cvar("amx_gascheck", "3")
|
|
||||||
register_cvar("amx_gasradius", "200")
|
|
||||||
register_cvar("amx_smokegasp", "1")
|
|
||||||
register_cvar("amx_gasobeyFF", "1")
|
|
||||||
|
|
||||||
g_Gas = custom_weapon_add("gasnade",0,"gasnade")
|
|
||||||
}
|
|
||||||
//----------------------------------------------------------------------------------------------
|
|
||||||
public plugin_precache()
|
|
||||||
{
|
|
||||||
precache_sound("player/gasp1.wav")
|
|
||||||
precache_sound("player/gasp2.wav")
|
|
||||||
}
|
|
||||||
|
|
||||||
public gas(par[])
|
|
||||||
{
|
|
||||||
new grenadeid = par[1]
|
|
||||||
new id = par[0]
|
|
||||||
|
|
||||||
if ( !is_valid_ent(grenadeid) )
|
|
||||||
return
|
|
||||||
|
|
||||||
new player[3], inum, Float:temp_grenade[3], grenade[3], players[32]
|
|
||||||
if(get_cvar_num("amx_gasobeyFF") != 1)
|
|
||||||
get_players(players, inum) // Get number of players
|
|
||||||
else{
|
|
||||||
new FFOn = get_cvar_num("mp_friendlyfire")
|
|
||||||
if(FFOn == 0){
|
|
||||||
new team[33]
|
|
||||||
get_user_team(id, team, 32)
|
|
||||||
if(equali(team, "CT"))
|
|
||||||
get_players(players, inum, "ae", "TERRORIST")
|
|
||||||
else
|
|
||||||
get_players(players, inum, "ae", "CT")
|
|
||||||
}
|
|
||||||
else
|
|
||||||
get_players(players, inum) // Get number of players
|
|
||||||
}
|
|
||||||
entity_get_vector(grenadeid, EV_VEC_origin, temp_grenade) // Get the position of the grenade
|
|
||||||
grenade[0] = floatround(temp_grenade[0])
|
|
||||||
grenade[1] = floatround(temp_grenade[1])
|
|
||||||
grenade[2] = floatround(temp_grenade[2])
|
|
||||||
for(new i = 0; i < inum; ++i){ // Loop through all players
|
|
||||||
get_user_origin(players[i],player,0)
|
|
||||||
new distance = get_distance(grenade, player)
|
|
||||||
|
|
||||||
if((distance < get_cvar_num("amx_gasradius"))){ // Check who is standing close
|
|
||||||
if(get_cvar_num("amx_smokegasp") != 0){
|
|
||||||
if(get_cvar_num("amx_gascheck") >= 1){
|
|
||||||
new number = random_num(1, 2)
|
|
||||||
if(is_user_alive(players[i])){
|
|
||||||
switch (number){
|
|
||||||
case 1:emit_sound(players[i], CHAN_VOICE, "player/gasp1.wav", 1.0, ATTN_NORM, 0, PITCH_NORM)
|
|
||||||
case 2:emit_sound(players[i], CHAN_VOICE, "player/gasp2.wav", 1.0, ATTN_NORM, 0, PITCH_NORM)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
message_begin(MSG_ONE, get_user_msgid("Damage"), {0,0,0}, players[i])
|
|
||||||
write_byte(30) // dmg_save
|
|
||||||
write_byte(30) // dmg_take
|
|
||||||
write_long((1 << 16)) // visibleDamageBits
|
|
||||||
write_coord(grenade[0]) // damageOrigin.x
|
|
||||||
write_coord(grenade[1]) // damageOrigin.y
|
|
||||||
write_coord(grenade[2]) // damageOrigin.z
|
|
||||||
message_end()
|
|
||||||
if(is_user_alive(id))
|
|
||||||
ExtraDamage(players[i], id, get_cvar_num("amx_gasdmg"), "gasgrenade")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
set_task(get_cvar_float("amx_gascheck"), "gas",grenadeid,par,2) // If the grenade still exists we do a new check in get_cvar_num("amx_gascheck") second
|
|
||||||
}
|
|
||||||
//----------------------------------------------------------------------------------------------
|
|
||||||
public grenade_throw(index,greindex,wId){
|
|
||||||
if ( task_exists(greindex) )
|
|
||||||
remove_task(greindex)
|
|
||||||
if( get_cvar_num("amx_gasnades") !=1 || wId != CSW_SMOKEGRENADE )
|
|
||||||
return PLUGIN_CONTINUE
|
|
||||||
if (g_Gas) custom_weapon_shot(g_Gas,index)
|
|
||||||
new par[2]
|
|
||||||
par[0] = index
|
|
||||||
par[1] = greindex
|
|
||||||
set_task(1.5, "gas", greindex,par,2)
|
|
||||||
return PLUGIN_CONTINUE
|
|
||||||
}
|
|
||||||
//----------------------------------------------------------------------------------------------
|
|
||||||
stock ExtraDamage(id, attacker, damage, weaponDescription[])
|
|
||||||
{
|
|
||||||
if(is_user_alive(id))
|
|
||||||
{
|
|
||||||
new userHealth = get_user_health(id)
|
|
||||||
set_user_health(id, userHealth - damage)
|
|
||||||
if (g_Gas)
|
|
||||||
custom_weapon_dmg(g_Gas,attacker,id,damage)
|
|
||||||
|
|
||||||
if(userHealth - damage <= 0)
|
|
||||||
{
|
|
||||||
logKill(attacker, id, weaponDescription)
|
|
||||||
if(get_user_team(id) != get_user_team(attacker))
|
|
||||||
{
|
|
||||||
// The person dying shouldn't get negative credit for this kill (so add it back)
|
|
||||||
set_user_frags(id, get_user_frags(id) + 1)
|
|
||||||
// The killing should get credit for the frag
|
|
||||||
set_user_frags(attacker, get_user_frags(attacker) + 1)
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// The person dying shouldn't get negative credit for this kill (so add it back)
|
|
||||||
set_user_frags(id, get_user_frags(id) + 1)
|
|
||||||
// The killer killed a teammember or self
|
|
||||||
// Engine gives credit for the kill so let's take away that + 1
|
|
||||||
set_user_frags(attacker, get_user_frags(attacker) - 2)
|
|
||||||
}
|
|
||||||
}else{
|
|
||||||
if(get_cvar_num("mp_logdetail") == 3){
|
|
||||||
logDmg(attacker, id, weaponDescription,"body",damage,userHealth-damage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//----------------------------------------------------------------------------------------------
|
|
||||||
/* Log a kill using standard HL-logging format */
|
|
||||||
stock logKill(attacker, victim, weaponDescription[])
|
|
||||||
{
|
|
||||||
// Save Hummiliation
|
|
||||||
new namea[24], namev[24], authida[20], authidv[20], teama[10], teamv[10]
|
|
||||||
|
|
||||||
// Info On Attacker
|
|
||||||
get_user_name(attacker, namea, 23)
|
|
||||||
get_user_team(attacker, teama, 9)
|
|
||||||
get_user_authid(attacker, authida, 19)
|
|
||||||
// Info On Victim
|
|
||||||
get_user_name(victim, namev, 23)
|
|
||||||
get_user_team(victim, teamv, 9)
|
|
||||||
get_user_authid(victim, authidv, 19)
|
|
||||||
// Log This Kill
|
|
||||||
log_message("^"%s<%d><%s><%s>^" killed ^"%s<%d><%s><%s>^" with ^"%s^"",
|
|
||||||
namea, get_user_userid(attacker), authida, teama, namev, get_user_userid(victim), authidv, teamv, weaponDescription)
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Log damage using standard HL-logging format */
|
|
||||||
stock logDmg(attacker, victim, weaponDescription[],hit[],damage,health)
|
|
||||||
{
|
|
||||||
// Save Hummiliation
|
|
||||||
new namea[24], namev[24], authida[20], authidv[20], teama[10], teamv[10]
|
|
||||||
|
|
||||||
// Info On Attacker
|
|
||||||
get_user_name(attacker, namea, 23)
|
|
||||||
get_user_team(attacker, teama, 9)
|
|
||||||
get_user_authid(attacker, authida, 19)
|
|
||||||
// Info On Victim
|
|
||||||
get_user_name(victim, namev, 23)
|
|
||||||
get_user_team(victim, teamv, 9)
|
|
||||||
get_user_authid(victim, authidv, 19)
|
|
||||||
// Log This Damage
|
|
||||||
log_message("^"%s<%d><%s><%s>^" attacked ^"%s<%d><%s><%s>^" with ^"%s^" (hit ^"%s^") (damage ^"%d^") (health ^"%d^")",
|
|
||||||
namea,get_user_userid(attacker),authida,teama,namev,get_user_userid(victim),authidv,teamv,weaponDescription,hit,damage,health)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//----------------------------------------------------------------------------------------------
|
|
@ -1,299 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "CMisc.h"
|
|
||||||
#include "rank.h"
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class Grenades
|
|
||||||
// *****************************************************
|
|
||||||
void Grenades::put( edict_t* grenade, float time, int type, CPlayer* player )
|
|
||||||
{
|
|
||||||
Obj* a = new Obj;
|
|
||||||
if ( a == 0 ) return;
|
|
||||||
a->player = player;
|
|
||||||
a->grenade = grenade;
|
|
||||||
a->time = gpGlobals->time + time;
|
|
||||||
a->type = type;
|
|
||||||
a->prev = 0;
|
|
||||||
a->next = head;
|
|
||||||
if ( head ) head->prev = a;
|
|
||||||
head = a;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Grenades::find( edict_t* enemy, CPlayer** p, int* type )
|
|
||||||
{
|
|
||||||
bool found = false;
|
|
||||||
Obj* a = head;
|
|
||||||
while ( a ){
|
|
||||||
if ( a->time > gpGlobals->time ) {
|
|
||||||
if ( a->grenade == enemy ) {
|
|
||||||
found = true;
|
|
||||||
*p = a->player;
|
|
||||||
*type = a->type;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
Obj* next = a->next;
|
|
||||||
if (a->prev) a->prev->next = next;
|
|
||||||
else head = next;
|
|
||||||
if (next) next->prev = a->prev;
|
|
||||||
delete a;
|
|
||||||
a = next;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
a = a->next;
|
|
||||||
}
|
|
||||||
|
|
||||||
return found;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void Grenades::clear()
|
|
||||||
{
|
|
||||||
while(head){
|
|
||||||
Obj* a = head->next;
|
|
||||||
delete head;
|
|
||||||
head = a;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class CPlayer
|
|
||||||
// *****************************************************
|
|
||||||
|
|
||||||
void CPlayer::Disconnect(){
|
|
||||||
|
|
||||||
if ( ignoreBots(pEdict) || !isModuleActive() ) // ignore if he is bot and bots rank is disabled or module is paused
|
|
||||||
return;
|
|
||||||
|
|
||||||
rank->updatePosition( &life );
|
|
||||||
rank = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CPlayer::PutInServer(){
|
|
||||||
|
|
||||||
if ( ignoreBots(pEdict) )
|
|
||||||
return;
|
|
||||||
|
|
||||||
restartStats();
|
|
||||||
const char* name = STRING(pEdict->v.netname);
|
|
||||||
const char* unique = name;
|
|
||||||
switch((int)csstats_rank->value) {
|
|
||||||
case 1:
|
|
||||||
if ( (unique = GETPLAYERAUTHID(pEdict)) == 0 )
|
|
||||||
unique = name; // failed to get authid
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
unique = ip;
|
|
||||||
}
|
|
||||||
rank = g_rank.findEntryInRank( unique , name );
|
|
||||||
}
|
|
||||||
|
|
||||||
void CPlayer::Connect(const char* address ){
|
|
||||||
bot = IsBot();
|
|
||||||
strcpy(ip,address);
|
|
||||||
rank = 0;
|
|
||||||
clearStats = 0.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CPlayer::restartStats(bool all)
|
|
||||||
{
|
|
||||||
if ( all ) memset(weapons,0,sizeof(weapons));
|
|
||||||
memset(weaponsRnd,0,sizeof(weaponsRnd)); //DEC-Weapon (Round) stats
|
|
||||||
memset(attackers,0,sizeof(attackers));
|
|
||||||
memset(victims,0,sizeof(victims));
|
|
||||||
memset(&life,0,sizeof(life));
|
|
||||||
}
|
|
||||||
|
|
||||||
void CPlayer::Init( int pi, edict_t* pe )
|
|
||||||
{
|
|
||||||
pEdict = pe;
|
|
||||||
index = pi;
|
|
||||||
current = 0;
|
|
||||||
clearStats = 0.0f;
|
|
||||||
rank = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CPlayer::saveKill(CPlayer* pVictim, int wweapon, int hhs, int ttk){
|
|
||||||
|
|
||||||
if ( ignoreBots(pEdict,pVictim->pEdict) )
|
|
||||||
return;
|
|
||||||
|
|
||||||
if ( pVictim->index == index ){ // killed self
|
|
||||||
pVictim->weapons[0].deaths++;
|
|
||||||
pVictim->life.deaths++;
|
|
||||||
pVictim->weaponsRnd[0].deaths++; // DEC-Weapon (round) stats
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
pVictim->attackers[index].name = weaponData[wweapon].name;
|
|
||||||
pVictim->attackers[index].kills++;
|
|
||||||
pVictim->attackers[index].hs += hhs;
|
|
||||||
pVictim->attackers[index].tks += ttk;
|
|
||||||
pVictim->attackers[0].kills++;
|
|
||||||
pVictim->attackers[0].hs += hhs;
|
|
||||||
pVictim->attackers[0].tks += ttk;
|
|
||||||
pVictim->weapons[pVictim->current].deaths++;
|
|
||||||
pVictim->weapons[0].deaths++;
|
|
||||||
pVictim->life.deaths++;
|
|
||||||
|
|
||||||
|
|
||||||
pVictim->weaponsRnd[pVictim->current].deaths++; // DEC-Weapon (round) stats
|
|
||||||
pVictim->weaponsRnd[0].deaths++; // DEC-Weapon (round) stats
|
|
||||||
|
|
||||||
int vi = pVictim->index;
|
|
||||||
victims[vi].name = weaponData[wweapon].name;
|
|
||||||
victims[vi].deaths++;
|
|
||||||
victims[vi].hs += hhs;
|
|
||||||
victims[vi].tks += ttk;
|
|
||||||
victims[0].deaths++;
|
|
||||||
victims[0].hs += hhs;
|
|
||||||
victims[0].tks += ttk;
|
|
||||||
|
|
||||||
weaponsRnd[wweapon].kills++; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[wweapon].hs += hhs; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[wweapon].tks += ttk; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[0].kills++; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[0].hs += hhs; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[0].tks += ttk; // DEC-Weapon (round) stats
|
|
||||||
|
|
||||||
weapons[wweapon].kills++;
|
|
||||||
weapons[wweapon].hs += hhs;
|
|
||||||
weapons[wweapon].tks += ttk;
|
|
||||||
weapons[0].kills++;
|
|
||||||
weapons[0].hs += hhs;
|
|
||||||
weapons[0].tks += ttk;
|
|
||||||
life.kills++;
|
|
||||||
life.hs += hhs;
|
|
||||||
life.tks += ttk;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CPlayer::saveHit(CPlayer* pVictim, int wweapon, int ddamage, int bbody){
|
|
||||||
|
|
||||||
if ( ignoreBots(pEdict,pVictim->pEdict) )
|
|
||||||
return;
|
|
||||||
|
|
||||||
if ( index == pVictim->index ) return;
|
|
||||||
|
|
||||||
pVictim->attackers[index].hits++;
|
|
||||||
pVictim->attackers[index].damage += ddamage;
|
|
||||||
pVictim->attackers[index].bodyHits[bbody]++;
|
|
||||||
pVictim->attackers[0].hits++;
|
|
||||||
pVictim->attackers[0].damage += ddamage;
|
|
||||||
pVictim->attackers[0].bodyHits[bbody]++;
|
|
||||||
|
|
||||||
|
|
||||||
int vi = pVictim->index;
|
|
||||||
victims[vi].hits++;
|
|
||||||
victims[vi].damage += ddamage;
|
|
||||||
victims[vi].bodyHits[bbody]++;
|
|
||||||
victims[0].hits++;
|
|
||||||
victims[0].damage += ddamage;
|
|
||||||
victims[0].bodyHits[bbody]++;
|
|
||||||
|
|
||||||
weaponsRnd[wweapon].hits++; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[wweapon].damage += ddamage; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[wweapon].bodyHits[bbody]++; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[0].hits++; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[0].damage += ddamage; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[0].bodyHits[bbody]++; // DEC-Weapon (round) stats
|
|
||||||
|
|
||||||
weapons[wweapon].hits++;
|
|
||||||
weapons[wweapon].damage += ddamage;
|
|
||||||
weapons[wweapon].bodyHits[bbody]++;
|
|
||||||
weapons[0].hits++;
|
|
||||||
weapons[0].damage += ddamage;
|
|
||||||
weapons[0].bodyHits[bbody]++;
|
|
||||||
|
|
||||||
life.hits++;
|
|
||||||
life.damage += ddamage;
|
|
||||||
life.bodyHits[bbody]++;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void CPlayer::saveShot(int weapon){
|
|
||||||
|
|
||||||
if ( ignoreBots(pEdict) )
|
|
||||||
return;
|
|
||||||
|
|
||||||
victims[0].shots++;
|
|
||||||
weapons[weapon].shots++;
|
|
||||||
weapons[0].shots++;
|
|
||||||
life.shots++;
|
|
||||||
weaponsRnd[weapon].shots++; // DEC-Weapon (round) stats
|
|
||||||
weaponsRnd[0].shots++; // DEC-Weapon (round) stats
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void CPlayer::saveBPlant(){
|
|
||||||
life.bPlants++;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CPlayer::saveBExplode(){
|
|
||||||
life.bExplosions++;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CPlayer::saveBDefusing(){
|
|
||||||
life.bDefusions++;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CPlayer::saveBDefused(){
|
|
||||||
life.bDefused++;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class Forward
|
|
||||||
// *****************************************************
|
|
||||||
|
|
||||||
void Forward::put( AMX *a , int i ){
|
|
||||||
head = new AmxCall( a, i , head );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void Forward::clear(){
|
|
||||||
while ( head ) {
|
|
||||||
AmxCall* a = head->next;
|
|
||||||
delete head;
|
|
||||||
head = a;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void Forward::exec(int p1,int p2,int p3,int p4,int p5,int p6){
|
|
||||||
AmxCall* a = head;
|
|
||||||
while ( a ){
|
|
||||||
MF_AmxExec(a->amx, NULL, a->iFunctionIdx, 6,p1, p2, p3, p4, p5, p6);
|
|
||||||
a = a->next;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void Forward::exec(int p1,int p2,int p3,int p4,int p5){
|
|
||||||
AmxCall* a = head;
|
|
||||||
while ( a ){
|
|
||||||
MF_AmxExec(a->amx, NULL, a->iFunctionIdx, 5,p1, p2, p3, p4, p5);
|
|
||||||
a = a->next;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void Forward::exec(int p1,int p2){
|
|
||||||
AmxCall* a = head;
|
|
||||||
while ( a ){
|
|
||||||
MF_AmxExec(a->amx, NULL, a->iFunctionIdx, 2,p1, p2);
|
|
||||||
a = a->next;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
|
|
||||||
bool ignoreBots (edict_t *pEnt, edict_t *pOther){
|
|
||||||
if ( !rankBots && ( pEnt->v.flags & FL_FAKECLIENT || ( pOther && pOther->v.flags & FL_FAKECLIENT ) ) )
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool isModuleActive(){
|
|
||||||
if ( !(int)CVAR_GET_FLOAT("csstats_pause") )
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
@ -1,116 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
#ifndef CMISC_H
|
|
||||||
#define CMISC_H
|
|
||||||
|
|
||||||
#include "amxxmodule.h"
|
|
||||||
#include "CRank.h"
|
|
||||||
|
|
||||||
#define MAX_CWEAPONS 6
|
|
||||||
|
|
||||||
#define CSW_HEGRENADE 4
|
|
||||||
#define CSW_C4 6
|
|
||||||
#define CSW_SMOKEGRENADE 9
|
|
||||||
#define CSW_FLASHBANG 25
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class CPlayer
|
|
||||||
// *****************************************************
|
|
||||||
|
|
||||||
struct CPlayer {
|
|
||||||
edict_t* pEdict;
|
|
||||||
char ip[32];
|
|
||||||
int index;
|
|
||||||
int aiming;
|
|
||||||
int current;
|
|
||||||
bool bot;
|
|
||||||
float clearStats;
|
|
||||||
RankSystem::RankStats* rank;
|
|
||||||
|
|
||||||
struct PlayerWeapon : Stats {
|
|
||||||
const char* name;
|
|
||||||
int ammo;
|
|
||||||
int clip;
|
|
||||||
};
|
|
||||||
|
|
||||||
PlayerWeapon weapons[MAX_WEAPONS+MAX_CWEAPONS];
|
|
||||||
PlayerWeapon attackers[33];
|
|
||||||
PlayerWeapon victims[33];
|
|
||||||
Stats weaponsRnd[MAX_WEAPONS+MAX_CWEAPONS]; // DEC-Weapon (Round) stats
|
|
||||||
Stats life;
|
|
||||||
|
|
||||||
int teamId;
|
|
||||||
|
|
||||||
void Init( int pi, edict_t* pe );
|
|
||||||
void Connect(const char* ip );
|
|
||||||
void PutInServer();
|
|
||||||
void Disconnect();
|
|
||||||
void saveKill(CPlayer* pVictim, int weapon, int hs, int tk);
|
|
||||||
void saveHit(CPlayer* pVictim, int weapon, int damage, int aiming);
|
|
||||||
void saveShot(int weapon);
|
|
||||||
|
|
||||||
void saveBPlant();
|
|
||||||
void saveBExplode();
|
|
||||||
void saveBDefusing();
|
|
||||||
void saveBDefused();
|
|
||||||
|
|
||||||
void restartStats(bool all = true);
|
|
||||||
inline bool IsBot(){
|
|
||||||
const char* auth= (*g_engfuncs.pfnGetPlayerAuthId)(pEdict);
|
|
||||||
return ( auth && !strcmp( auth , "BOT" ) );
|
|
||||||
}
|
|
||||||
inline bool IsAlive(){
|
|
||||||
return ((pEdict->v.deadflag==DEAD_NO)&&(pEdict->v.health>0));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class Grenades
|
|
||||||
// *****************************************************
|
|
||||||
|
|
||||||
class Grenades
|
|
||||||
{
|
|
||||||
struct Obj
|
|
||||||
{
|
|
||||||
CPlayer* player;
|
|
||||||
edict_t* grenade;
|
|
||||||
float time;
|
|
||||||
int type;
|
|
||||||
Obj* next;
|
|
||||||
Obj* prev;
|
|
||||||
} *head;
|
|
||||||
|
|
||||||
public:
|
|
||||||
Grenades() { head = 0; }
|
|
||||||
~Grenades() { clear(); }
|
|
||||||
void put( edict_t* grenade, float time, int type, CPlayer* player );
|
|
||||||
bool find( edict_t* enemy, CPlayer** p, int* type );
|
|
||||||
void clear();
|
|
||||||
};
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class Forward
|
|
||||||
// *****************************************************
|
|
||||||
|
|
||||||
class Forward
|
|
||||||
{
|
|
||||||
struct AmxCall {
|
|
||||||
AMX *amx;
|
|
||||||
int iFunctionIdx;
|
|
||||||
AmxCall* next;
|
|
||||||
AmxCall( AMX *a , int i, AmxCall* n ): amx(a), iFunctionIdx(i), next(n) {}
|
|
||||||
} *head;
|
|
||||||
public:
|
|
||||||
Forward() { head = 0; }
|
|
||||||
~Forward() { clear(); }
|
|
||||||
void clear();
|
|
||||||
void put( AMX *a , int i );
|
|
||||||
void exec(int p1,int p2,int p3,int p4,int p5,int p6);
|
|
||||||
void exec(int p1,int p2,int p3,int p4,int p5);
|
|
||||||
void exec(int p1,int p2);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // CMISC_H
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,308 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "amxxmodule.h"
|
|
||||||
#include "CRank.h"
|
|
||||||
#include "rank.h"
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class Stats
|
|
||||||
// *****************************************************
|
|
||||||
Stats::Stats(){
|
|
||||||
hits = shots = damage = hs = tks = kills = deaths = bDefusions = bDefused = bPlants = bExplosions = 0;
|
|
||||||
memset( bodyHits , 0 ,sizeof( bodyHits ) );
|
|
||||||
}
|
|
||||||
void Stats::commit(Stats* a){
|
|
||||||
hits += a->hits;
|
|
||||||
shots += a->shots;
|
|
||||||
damage += a->damage;
|
|
||||||
hs += a->hs;
|
|
||||||
tks += a->tks;
|
|
||||||
kills += a->kills;
|
|
||||||
deaths += a->deaths;
|
|
||||||
|
|
||||||
bDefusions += a->bDefusions;
|
|
||||||
bDefused += a->bDefused;
|
|
||||||
bPlants += a->bPlants;
|
|
||||||
bExplosions += a->bExplosions;
|
|
||||||
|
|
||||||
for(int i = 1; i < 8; ++i)
|
|
||||||
bodyHits[i] += a->bodyHits[i];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class RankSystem
|
|
||||||
// *****************************************************
|
|
||||||
RankSystem::RankStats::RankStats( const char* uu, const char* nn, RankSystem* pp ) {
|
|
||||||
name = 0;
|
|
||||||
namelen = 0;
|
|
||||||
unique = 0;
|
|
||||||
uniquelen = 0;
|
|
||||||
score = 0;
|
|
||||||
parent = pp;
|
|
||||||
id = ++parent->rankNum;
|
|
||||||
next = prev = 0;
|
|
||||||
setName( nn );
|
|
||||||
setUnique( uu );
|
|
||||||
}
|
|
||||||
|
|
||||||
RankSystem::RankStats::~RankStats() {
|
|
||||||
delete[] name;
|
|
||||||
delete[] unique;
|
|
||||||
--parent->rankNum;
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::RankStats::setName( const char* nn ) {
|
|
||||||
delete[] name;
|
|
||||||
namelen = strlen(nn) + 1;
|
|
||||||
name = new char[namelen];
|
|
||||||
if ( name )
|
|
||||||
strcpy( name , nn );
|
|
||||||
else
|
|
||||||
namelen = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::RankStats::setUnique( const char* nn ) {
|
|
||||||
delete[] unique;
|
|
||||||
uniquelen = strlen(nn) + 1;
|
|
||||||
unique = new char[uniquelen];
|
|
||||||
if ( unique )
|
|
||||||
strcpy( unique , nn );
|
|
||||||
else
|
|
||||||
uniquelen = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
RankSystem::RankSystem() {
|
|
||||||
head = 0;
|
|
||||||
tail = 0;
|
|
||||||
rankNum = 0;
|
|
||||||
calc.code = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
RankSystem::~RankSystem() {
|
|
||||||
clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::put_before( RankStats* a, RankStats* ptr ){
|
|
||||||
a->next = ptr;
|
|
||||||
if ( ptr ){
|
|
||||||
a->prev = ptr->prev;
|
|
||||||
ptr->prev = a;
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
a->prev = head;
|
|
||||||
head = a;
|
|
||||||
}
|
|
||||||
if ( a->prev ) a->prev->next = a;
|
|
||||||
else tail = a;
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::put_after( RankStats* a, RankStats* ptr ) {
|
|
||||||
a->prev = ptr;
|
|
||||||
if ( ptr ){
|
|
||||||
a->next = ptr->next;
|
|
||||||
ptr->next = a;
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
a->next = tail;
|
|
||||||
tail = a;
|
|
||||||
}
|
|
||||||
if ( a->next ) a->next->prev = a;
|
|
||||||
else head = a;
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::unlink( RankStats* ptr ){
|
|
||||||
if (ptr->prev) ptr->prev->next = ptr->next;
|
|
||||||
else tail = ptr->next;
|
|
||||||
if (ptr->next) ptr->next->prev = ptr->prev;
|
|
||||||
else head = ptr->prev;
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::clear(){
|
|
||||||
while( tail ){
|
|
||||||
head = tail->next;
|
|
||||||
delete tail;
|
|
||||||
tail = head;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
bool RankSystem::loadCalc(const char* filename, char* error)
|
|
||||||
{
|
|
||||||
if ((MF_LoadAmxScript(&calc.amx,&calc.code,filename,error,0)!=AMX_ERR_NONE)||
|
|
||||||
(MF_AmxAllot(&calc.amx, 8 , &calc.amxAddr1, &calc.physAddr1)!=AMX_ERR_NONE)||
|
|
||||||
(MF_AmxAllot(&calc.amx, 8 , &calc.amxAddr2, &calc.physAddr2)!=AMX_ERR_NONE)||
|
|
||||||
(MF_AmxFindPublic(&calc.amx,"get_score",&calc.func)!=AMX_ERR_NONE)){
|
|
||||||
LOG_CONSOLE( PLID, "Couldn't load plugin (file \"%s\")",filename);
|
|
||||||
MF_UnloadAmxScript(&calc.amx, &calc.code);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::unloadCalc()
|
|
||||||
{
|
|
||||||
MF_UnloadAmxScript(&calc.amx , &calc.code);
|
|
||||||
}
|
|
||||||
|
|
||||||
RankSystem::RankStats* RankSystem::findEntryInRank(const char* unique, const char* name )
|
|
||||||
{
|
|
||||||
RankStats* a = head;
|
|
||||||
|
|
||||||
while ( a )
|
|
||||||
{
|
|
||||||
if ( strcmp( a->getUnique() ,unique ) == 0 )
|
|
||||||
return a;
|
|
||||||
|
|
||||||
a = a->prev;
|
|
||||||
}
|
|
||||||
a = new RankStats( unique ,name,this );
|
|
||||||
if ( a == 0 ) return 0;
|
|
||||||
put_after( a , 0 );
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::updatePos( RankStats* rr , Stats* s )
|
|
||||||
{
|
|
||||||
rr->addStats( s );
|
|
||||||
if ( calc.code ) {
|
|
||||||
calc.physAddr1[0] = rr->kills;
|
|
||||||
calc.physAddr1[1] = rr->deaths;
|
|
||||||
calc.physAddr1[2] = rr->hs;
|
|
||||||
calc.physAddr1[3] = rr->tks;
|
|
||||||
calc.physAddr1[4] = rr->shots;
|
|
||||||
calc.physAddr1[5] = rr->hits;
|
|
||||||
calc.physAddr1[6] = rr->damage;
|
|
||||||
|
|
||||||
calc.physAddr1[7] = rr->bDefusions;
|
|
||||||
calc.physAddr1[8] = rr->bDefused;
|
|
||||||
calc.physAddr1[9] = rr->bPlants;
|
|
||||||
calc.physAddr1[10] = rr->bExplosions;
|
|
||||||
|
|
||||||
for(int i = 1; i < 8; ++i)
|
|
||||||
calc.physAddr2[i] = rr->bodyHits[i];
|
|
||||||
cell result = 0;
|
|
||||||
int err;
|
|
||||||
if ((err = MF_AmxExec(&calc.amx,&result, calc.func ,2,calc.amxAddr1,calc.amxAddr2 )) != AMX_ERR_NONE)
|
|
||||||
LOG_CONSOLE( PLID, "Run time error %d on line %ld (plugin \"%s\")", err,calc.amx.curline,LOCALINFO("csstats_score"));
|
|
||||||
rr->score = result;
|
|
||||||
}
|
|
||||||
else rr->score = rr->kills - rr->deaths;
|
|
||||||
|
|
||||||
|
|
||||||
RankStats* aa = rr->next;
|
|
||||||
while ( aa && (aa->score <= rr->score) ) { // try to nominate
|
|
||||||
rr->goUp();
|
|
||||||
aa->goDown();
|
|
||||||
aa = aa->next; // go to next rank
|
|
||||||
}
|
|
||||||
if ( aa != rr->next )
|
|
||||||
{
|
|
||||||
unlink( rr );
|
|
||||||
put_before( rr, aa );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
aa = rr->prev;
|
|
||||||
while ( aa && (aa->score > rr->score) ) { // go down
|
|
||||||
rr->goDown();
|
|
||||||
aa->goUp();
|
|
||||||
aa = aa->prev; // go to prev rank
|
|
||||||
}
|
|
||||||
if ( aa != rr->prev ){
|
|
||||||
unlink( rr );
|
|
||||||
put_after( rr, aa );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::loadRank( const char* filename )
|
|
||||||
{
|
|
||||||
FILE *bfp = fopen( filename , "rb" );
|
|
||||||
|
|
||||||
if ( !bfp ) return;
|
|
||||||
|
|
||||||
short int i = 0;
|
|
||||||
fread(&i, 1 , sizeof(short int) , bfp);
|
|
||||||
|
|
||||||
if (i == RANK_VERSION)
|
|
||||||
{
|
|
||||||
Stats d;
|
|
||||||
char unique[64], name[64];
|
|
||||||
fread(&i , 1, sizeof(short int), bfp);
|
|
||||||
|
|
||||||
while( i )
|
|
||||||
{
|
|
||||||
fread(name , i,sizeof(char) , bfp);
|
|
||||||
fread(&i , 1, sizeof(short int), bfp);
|
|
||||||
fread(unique , i,sizeof(char) , bfp);
|
|
||||||
fread(&d.tks, 1,sizeof(int), bfp);
|
|
||||||
fread(&d.damage, 1,sizeof(int), bfp);
|
|
||||||
fread(&d.deaths, 1,sizeof(int), bfp);
|
|
||||||
fread(&d.kills, 1,sizeof(int), bfp);
|
|
||||||
fread(&d.shots, 1,sizeof(int), bfp);
|
|
||||||
fread(&d.hits, 1,sizeof(int), bfp);
|
|
||||||
fread(&d.hs, 1,sizeof(int), bfp);
|
|
||||||
|
|
||||||
fread(&d.bDefusions, 1,sizeof(int), bfp);
|
|
||||||
fread(&d.bDefused, 1,sizeof(int), bfp);
|
|
||||||
fread(&d.bPlants, 1,sizeof(int), bfp);
|
|
||||||
fread(&d.bExplosions, 1,sizeof(int), bfp);
|
|
||||||
|
|
||||||
fread(d.bodyHits, 1,sizeof(d.bodyHits), bfp);
|
|
||||||
fread(&i , 1, sizeof(short int), bfp);
|
|
||||||
|
|
||||||
RankSystem::RankStats* a = findEntryInRank( unique , name );
|
|
||||||
|
|
||||||
if ( a ) a->updatePosition( &d );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fclose(bfp);
|
|
||||||
}
|
|
||||||
|
|
||||||
void RankSystem::saveRank( const char* filename )
|
|
||||||
{
|
|
||||||
FILE *bfp = fopen(filename, "wb");
|
|
||||||
|
|
||||||
if ( !bfp ) return;
|
|
||||||
|
|
||||||
short int i = RANK_VERSION;
|
|
||||||
|
|
||||||
fwrite(&i, 1, sizeof(short int) , bfp);
|
|
||||||
|
|
||||||
RankSystem::iterator a = front();
|
|
||||||
|
|
||||||
while ( a )
|
|
||||||
{
|
|
||||||
if ( (*a).score != (1<<31) ) // score must be different than mincell
|
|
||||||
{
|
|
||||||
fwrite( &(*a).namelen , 1, sizeof(short int), bfp);
|
|
||||||
fwrite( (*a).name , (*a).namelen , sizeof(char) , bfp);
|
|
||||||
fwrite( &(*a).uniquelen , 1, sizeof(short int), bfp);
|
|
||||||
fwrite( (*a).unique , (*a).uniquelen , sizeof(char) , bfp);
|
|
||||||
fwrite( &(*a).tks, 1, sizeof(int), bfp);
|
|
||||||
fwrite( &(*a).damage, 1, sizeof(int), bfp);
|
|
||||||
fwrite( &(*a).deaths, 1, sizeof(int), bfp);
|
|
||||||
fwrite( &(*a).kills, 1, sizeof(int), bfp);
|
|
||||||
fwrite( &(*a).shots, 1, sizeof(int), bfp);
|
|
||||||
fwrite( &(*a).hits, 1, sizeof(int), bfp);
|
|
||||||
fwrite( &(*a).hs, 1, sizeof(int), bfp);
|
|
||||||
|
|
||||||
fwrite( &(*a).bDefusions, 1, sizeof(int), bfp);
|
|
||||||
fwrite( &(*a).bDefused, 1, sizeof(int), bfp);
|
|
||||||
fwrite( &(*a).bPlants, 1, sizeof(int), bfp);
|
|
||||||
fwrite( &(*a).bExplosions, 1, sizeof(int), bfp);
|
|
||||||
|
|
||||||
fwrite( (*a).bodyHits, 1, sizeof((*a).bodyHits), bfp);
|
|
||||||
}
|
|
||||||
|
|
||||||
--a;
|
|
||||||
}
|
|
||||||
|
|
||||||
i = 0;
|
|
||||||
fwrite( &i , 1, sizeof(short int), bfp); // null terminator
|
|
||||||
|
|
||||||
fclose(bfp);
|
|
||||||
}
|
|
@ -1,122 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
#ifndef CRANK_H
|
|
||||||
#define CRANK_H
|
|
||||||
|
|
||||||
#define RANK_VERSION 11
|
|
||||||
|
|
||||||
#include "amxxmodule.h"
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class Stats
|
|
||||||
// *****************************************************
|
|
||||||
|
|
||||||
struct Stats {
|
|
||||||
int hits;
|
|
||||||
int shots;
|
|
||||||
int damage;
|
|
||||||
int hs;
|
|
||||||
int tks;
|
|
||||||
int kills;
|
|
||||||
int deaths;
|
|
||||||
int bodyHits[9]; ////////////////////
|
|
||||||
|
|
||||||
// SiDLuke start
|
|
||||||
int bPlants;
|
|
||||||
int bExplosions;
|
|
||||||
int bDefusions;
|
|
||||||
int bDefused;
|
|
||||||
// SiDLuke end :D
|
|
||||||
|
|
||||||
Stats();
|
|
||||||
void commit(Stats* a);
|
|
||||||
};
|
|
||||||
|
|
||||||
// *****************************************************
|
|
||||||
// class RankSystem
|
|
||||||
// *****************************************************
|
|
||||||
|
|
||||||
class RankSystem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
class RankStats;
|
|
||||||
friend class RankStats;
|
|
||||||
class iterator;
|
|
||||||
|
|
||||||
class RankStats : public Stats {
|
|
||||||
friend class RankSystem;
|
|
||||||
friend class iterator;
|
|
||||||
RankSystem* parent;
|
|
||||||
RankStats* next;
|
|
||||||
RankStats* prev;
|
|
||||||
char* unique;
|
|
||||||
short int uniquelen;
|
|
||||||
char* name;
|
|
||||||
short int namelen;
|
|
||||||
int score;
|
|
||||||
int id;
|
|
||||||
RankStats( const char* uu, const char* nn, RankSystem* pp );
|
|
||||||
~RankStats();
|
|
||||||
void setUnique( const char* nn );
|
|
||||||
inline void goDown() {++id;}
|
|
||||||
inline void goUp() {--id;}
|
|
||||||
inline void addStats(Stats* a) { commit( a ); }
|
|
||||||
public:
|
|
||||||
void setName( const char* nn );
|
|
||||||
inline const char* getName() const { return name ? name : ""; }
|
|
||||||
inline const char* getUnique() const { return unique ? unique : ""; }
|
|
||||||
inline int getPosition() const { return id; }
|
|
||||||
inline void updatePosition( Stats* points ) {
|
|
||||||
parent->updatePos( this , points );
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
private:
|
|
||||||
RankStats* head;
|
|
||||||
RankStats* tail;
|
|
||||||
int rankNum;
|
|
||||||
|
|
||||||
struct scoreCalc{
|
|
||||||
AMX amx;
|
|
||||||
void* code;
|
|
||||||
int func;
|
|
||||||
cell amxAddr1;
|
|
||||||
cell amxAddr2;
|
|
||||||
cell *physAddr1;
|
|
||||||
cell *physAddr2;
|
|
||||||
} calc;
|
|
||||||
|
|
||||||
void put_before( RankStats* a, RankStats* ptr );
|
|
||||||
void put_after( RankStats* a, RankStats* ptr );
|
|
||||||
void unlink( RankStats* ptr );
|
|
||||||
void updatePos( RankStats* r , Stats* s );
|
|
||||||
|
|
||||||
public:
|
|
||||||
|
|
||||||
RankSystem();
|
|
||||||
~RankSystem();
|
|
||||||
|
|
||||||
void saveRank( const char* filename );
|
|
||||||
void loadRank( const char* filename );
|
|
||||||
RankStats* findEntryInRank(const char* unique, const char* name );
|
|
||||||
bool loadCalc(const char* filename, char* error);
|
|
||||||
inline int getRankNum( ) const { return rankNum; }
|
|
||||||
void clear();
|
|
||||||
void unloadCalc();
|
|
||||||
|
|
||||||
class iterator {
|
|
||||||
RankStats* ptr;
|
|
||||||
public:
|
|
||||||
iterator(RankStats* a): ptr(a){}
|
|
||||||
inline iterator& operator--() { ptr = ptr->prev; return *this;}
|
|
||||||
inline iterator& operator++() { ptr = ptr->next; return *this; }
|
|
||||||
inline RankStats& operator*() { return *ptr;}
|
|
||||||
operator bool () { return (ptr != 0); }
|
|
||||||
};
|
|
||||||
|
|
||||||
inline iterator front() { return iterator(head); }
|
|
||||||
inline iterator begin() { return iterator(tail); }
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,102 +0,0 @@
|
|||||||
MODNAME = csx_amxx
|
|
||||||
SRCFILES = amxxmodule.cpp CMisc.cpp CRank.cpp meta_api.cpp rank.cpp usermsg.cpp
|
|
||||||
|
|
||||||
EXTRA_LIBS_LINUX =
|
|
||||||
EXTRA_LIBS_WIN32 =
|
|
||||||
EXTRA_LIBDIRS_LINUX = -Lextra/lib_linux
|
|
||||||
EXTRA_LIBDIRS_WIN32 = -Lextra/lib_win32
|
|
||||||
|
|
||||||
EXTRA_INCLUDEDIRS = -Iextra/include -I../amx
|
|
||||||
|
|
||||||
EXTRA_FLAGS = -Dstrcmpi=strcasecmp
|
|
||||||
|
|
||||||
AMXDIR=../amx
|
|
||||||
SDKSRC=../sdk
|
|
||||||
METADIR=../metamod
|
|
||||||
|
|
||||||
OBJDIR_LINUX=obj.linux
|
|
||||||
OBJDIR_WIN32=obj.win32
|
|
||||||
SRCDIR=.
|
|
||||||
|
|
||||||
ifdef windir
|
|
||||||
OS=WIN32
|
|
||||||
else
|
|
||||||
OS=LINUX
|
|
||||||
endif
|
|
||||||
|
|
||||||
CC_LINUX=gcc
|
|
||||||
ifeq "$(OS)" "WIN32"
|
|
||||||
CC_WIN32=gcc
|
|
||||||
LD_WINDLL=dllwrap
|
|
||||||
DEFAULT=win32
|
|
||||||
CLEAN=clean_win32
|
|
||||||
else
|
|
||||||
CC_WIN32=/usr/local/cross-tools/i386-mingw32msvc/bin/gcc
|
|
||||||
LD_WINDLL=/usr/local/cross-tools/bin/i386-mingw32msvc-dllwrap
|
|
||||||
DEFAULT=linux win32
|
|
||||||
CLEAN=clean_both
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
LIBFILE_LINUX = $(MODNAME)_i386.so
|
|
||||||
LIBFILE_WIN32 = $(MODNAME).dll
|
|
||||||
TARGET_LINUX = $(OBJDIR_LINUX)/$(LIBFILE_LINUX)
|
|
||||||
TARGET_WIN32 = $(OBJDIR_WIN32)/$(LIBFILE_WIN32)
|
|
||||||
|
|
||||||
FILES_ALL = *.cpp *.h [A-Z]* *.rc
|
|
||||||
ifeq "$(OS)" "LINUX"
|
|
||||||
ASRCFILES := $(shell ls -t $(SRCFILES))
|
|
||||||
else
|
|
||||||
ASRCFILES := $(shell dir /b)
|
|
||||||
endif
|
|
||||||
OBJ_LINUX := $(SRCFILES:%.cpp=$(OBJDIR_LINUX)/%.o)
|
|
||||||
OBJ_WIN32 := $(SRCFILES:%.cpp=$(OBJDIR_WIN32)/%.o)
|
|
||||||
|
|
||||||
CCOPT = -march=i586 -O6 -ffast-math -funroll-loops \
|
|
||||||
-fomit-frame-pointer -fexpensive-optimizations -malign-loops=2 \
|
|
||||||
-malign-jumps=2 -malign-functions=2 -s -DNDEBUG
|
|
||||||
|
|
||||||
INCLUDEDIRS=-I../curl/include -I$(SRCDIR) -I$(AMXDIR) -I$(METADIR) -I$(SDKSRC)/engine -I$(SDKSRC)/common -I$(SDKSRC)/dlls -I$(SDKSRC) $(EXTRA_INCLUDEDIRS)
|
|
||||||
CFLAGS=-Wall -Wno-unknown-pragmas
|
|
||||||
ODEF = -DOPT_TYPE=\"optimized\"
|
|
||||||
CFLAGS:=$(CCOPT) $(CFLAGS) $(ODEF) $(EXTRA_FLAGS)
|
|
||||||
|
|
||||||
DO_CC_LINUX=$(CC_LINUX) $(CFLAGS) -fPIC $(INCLUDEDIRS) -o $@ -c $<
|
|
||||||
DO_CC_WIN32=$(CC_WIN32) $(CFLAGS) $(INCLUDEDIRS) -o $@ -c $<
|
|
||||||
LINK_LINUX=$(CC_LINUX) $(CFLAGS) -shared -ldl -lm $(OBJ_LINUX) $(EXTRA_LIBDIRS_LINUX) $(EXTRA_LIBS_LINUX) -o $@
|
|
||||||
LINK_WIN32=$(LD_WINDLL) -mwindows --add-stdcall-alias $(OBJ_WIN32) $(EXTRA_LIBDIRS_WIN32) $(EXTRA_LIBS_WIN32) -o $@
|
|
||||||
|
|
||||||
$(OBJDIR_LINUX)/%.o: $(SRCDIR)/%.cpp
|
|
||||||
$(DO_CC_LINUX)
|
|
||||||
|
|
||||||
$(OBJDIR_WIN32)/%.o: $(SRCDIR)/%.cpp
|
|
||||||
$(DO_CC_WIN32)
|
|
||||||
|
|
||||||
default: $(DEFAULT)
|
|
||||||
|
|
||||||
$(TARGET_LINUX): $(OBJDIR_LINUX) $(OBJ_LINUX)
|
|
||||||
$(LINK_LINUX)
|
|
||||||
|
|
||||||
$(TARGET_WIN32): $(OBJDIR_WIN32) $(OBJ_WIN32)
|
|
||||||
$(LINK_WIN32)
|
|
||||||
|
|
||||||
$(OBJDIR_LINUX):
|
|
||||||
mkdir $@
|
|
||||||
|
|
||||||
$(OBJDIR_WIN32):
|
|
||||||
mkdir $@
|
|
||||||
|
|
||||||
win32: $(TARGET_WIN32)
|
|
||||||
|
|
||||||
linux: $(TARGET_LINUX)
|
|
||||||
|
|
||||||
clean: $(CLEAN)
|
|
||||||
|
|
||||||
clean_both:
|
|
||||||
-rm -f $(OBJDIR_LINUX)/*
|
|
||||||
-rm -f $(OBJDIR_WIN32)/*
|
|
||||||
|
|
||||||
clean_win32:
|
|
||||||
del /q $(OBJDIR_WIN32)
|
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,6 +0,0 @@
|
|||||||
@echo off
|
|
||||||
PATH=D:\gcc\bin;%PATH%
|
|
||||||
|
|
||||||
make
|
|
||||||
|
|
||||||
pause
|
|
@ -1,368 +0,0 @@
|
|||||||
#include "amxxmodule.h"
|
|
||||||
#include "rank.h"
|
|
||||||
|
|
||||||
funEventCall modMsgsEnd[MAX_REG_MSGS];
|
|
||||||
funEventCall modMsgs[MAX_REG_MSGS];
|
|
||||||
|
|
||||||
void (*function)(void*);
|
|
||||||
void (*endfunction)(void*);
|
|
||||||
|
|
||||||
CPlayer players[33];
|
|
||||||
|
|
||||||
CPlayer* mPlayer;
|
|
||||||
|
|
||||||
int mPlayerIndex;
|
|
||||||
int mState;
|
|
||||||
|
|
||||||
RankSystem g_rank;
|
|
||||||
|
|
||||||
Grenades g_grenades;
|
|
||||||
|
|
||||||
int iFGrenade;
|
|
||||||
int iFDeath;
|
|
||||||
int iFDamage;
|
|
||||||
|
|
||||||
int iFBPlanted;
|
|
||||||
int iFBDefused;
|
|
||||||
int iFBPlanting;
|
|
||||||
int iFBDefusing;
|
|
||||||
int iFBExplode;
|
|
||||||
|
|
||||||
int g_bombAnnounce;
|
|
||||||
int g_Planter;
|
|
||||||
int g_Defuser;
|
|
||||||
|
|
||||||
bool rankBots;
|
|
||||||
|
|
||||||
int gmsgCurWeapon;
|
|
||||||
int gmsgDeathMsg;
|
|
||||||
int gmsgDamage;
|
|
||||||
int gmsgDamageEnd;
|
|
||||||
int gmsgWeaponList;
|
|
||||||
int gmsgResetHUD;
|
|
||||||
int gmsgAmmoX;
|
|
||||||
int gmsgScoreInfo;
|
|
||||||
int gmsgAmmoPickup;
|
|
||||||
|
|
||||||
int gmsgSendAudio;
|
|
||||||
int gmsgTextMsg;
|
|
||||||
int gmsgBarTime;
|
|
||||||
|
|
||||||
cvar_t init_csstats_maxsize ={"csstats_maxsize","3500", 0 , 3500.0 };
|
|
||||||
cvar_t init_csstats_reset ={"csstats_reset","0"};
|
|
||||||
cvar_t init_csstats_rank ={"csstats_rank","0"};
|
|
||||||
cvar_t *csstats_maxsize;
|
|
||||||
cvar_t *csstats_reset;
|
|
||||||
cvar_t *csstats_rank;
|
|
||||||
|
|
||||||
cvar_t* csstats_rankbots;
|
|
||||||
cvar_t* csstats_pause;
|
|
||||||
cvar_t init_csstats_rankbots ={"csstats_rankbots","1"};
|
|
||||||
cvar_t init_csstats_pause = {"csstats_pause","0"};
|
|
||||||
|
|
||||||
struct sUserMsg {
|
|
||||||
const char* name;
|
|
||||||
int* id;
|
|
||||||
funEventCall func;
|
|
||||||
bool endmsg;
|
|
||||||
} g_user_msg[] = {
|
|
||||||
{ "CurWeapon" , &gmsgCurWeapon , Client_CurWeapon, false },
|
|
||||||
{ "Damage" , &gmsgDamage,Client_Damage, false },
|
|
||||||
{ "Damage" , &gmsgDamageEnd, Client_Damage_End, true },
|
|
||||||
{ "WeaponList" , &gmsgWeaponList, Client_WeaponList, false },
|
|
||||||
{ "ResetHUD" , &gmsgResetHUD,Client_ResetHUD, true },
|
|
||||||
{ "AmmoX" , &gmsgAmmoX, Client_AmmoX , false },
|
|
||||||
{ "ScoreInfo" , &gmsgScoreInfo, Client_ScoreInfo, false },
|
|
||||||
{ "AmmoPickup" , &gmsgAmmoPickup, Client_AmmoPickup , false },
|
|
||||||
|
|
||||||
{ "SendAudio" , &gmsgSendAudio , Client_SendAudio , false },
|
|
||||||
{ "TextMsg" , &gmsgTextMsg , Client_TextMsg , false },
|
|
||||||
{ "BarTime" , &gmsgBarTime , Client_BarTime , false },
|
|
||||||
|
|
||||||
{ 0 , 0,0,false }
|
|
||||||
};
|
|
||||||
|
|
||||||
int RegUserMsg_Post(const char *pszName, int iSize)
|
|
||||||
{
|
|
||||||
for (int i = 0; g_user_msg[ i ].name; ++i )
|
|
||||||
{
|
|
||||||
if ( !*g_user_msg[i].id && strcmp( g_user_msg[ i ].name , pszName ) == 0 )
|
|
||||||
{
|
|
||||||
int id = META_RESULT_ORIG_RET( int );
|
|
||||||
|
|
||||||
*g_user_msg[ i ].id = id;
|
|
||||||
|
|
||||||
if ( g_user_msg[ i ].endmsg )
|
|
||||||
modMsgsEnd[ id ] = g_user_msg[ i ].func;
|
|
||||||
else
|
|
||||||
modMsgs[ id ] = g_user_msg[ i ].func;
|
|
||||||
//break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
RETURN_META_VALUE(MRES_IGNORED, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
const char* get_localinfo( const char* name , const char* def = 0 )
|
|
||||||
{
|
|
||||||
const char* b = LOCALINFO( (char*)name );
|
|
||||||
if (((b==0)||(*b==0)) && def )
|
|
||||||
SET_LOCALINFO((char*)name,(char*)(b = def) );
|
|
||||||
return b;
|
|
||||||
}
|
|
||||||
|
|
||||||
void ServerActivate_Post( edict_t *pEdictList, int edictCount, int clientMax ){
|
|
||||||
|
|
||||||
rankBots = (int)csstats_rankbots->value ? true:false;
|
|
||||||
|
|
||||||
for( int i = 1; i <= gpGlobals->maxClients; ++i)
|
|
||||||
GET_PLAYER_POINTER_I(i)->Init( i , pEdictList + i );
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void PlayerPreThink_Post( edict_t *pEntity ) {
|
|
||||||
if ( !isModuleActive() )
|
|
||||||
return;
|
|
||||||
|
|
||||||
CPlayer *pPlayer = GET_PLAYER_POINTER(pEntity);
|
|
||||||
if (pPlayer->clearStats && pPlayer->clearStats < gpGlobals->time ){
|
|
||||||
|
|
||||||
if ( !ignoreBots(pEntity) ){
|
|
||||||
pPlayer->clearStats = 0.0f;
|
|
||||||
if (pPlayer->rank)
|
|
||||||
pPlayer->rank->updatePosition( &pPlayer->life );
|
|
||||||
pPlayer->restartStats(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ServerDeactivate() {
|
|
||||||
int i;
|
|
||||||
for( i = 1;i<=gpGlobals->maxClients; ++i){
|
|
||||||
CPlayer *pPlayer = GET_PLAYER_POINTER_I(i);
|
|
||||||
if (pPlayer->rank) pPlayer->Disconnect();
|
|
||||||
}
|
|
||||||
if ( (g_rank.getRankNum() >= (int)csstats_maxsize->value) || ((int)csstats_reset->value == 1 ) ) {
|
|
||||||
CVAR_SET_FLOAT("csstats_reset",0.0);
|
|
||||||
g_rank.clear(); // clear before save to file
|
|
||||||
}
|
|
||||||
g_rank.saveRank( MF_BuildPathname("%s",get_localinfo("csstats")) );
|
|
||||||
|
|
||||||
// clear custom weapons info
|
|
||||||
for ( i=MAX_WEAPONS;i<MAX_WEAPONS+MAX_CWEAPONS;i++)
|
|
||||||
weaponData[i].ammoSlot = 0;
|
|
||||||
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOL ClientConnect_Post( edict_t *pEntity, const char *pszName, const char *pszAddress, char szRejectReason[ 128 ] ){
|
|
||||||
GET_PLAYER_POINTER(pEntity)->Connect(pszAddress);
|
|
||||||
RETURN_META_VALUE(MRES_IGNORED, TRUE);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ClientDisconnect( edict_t *pEntity ) {
|
|
||||||
CPlayer *pPlayer = GET_PLAYER_POINTER(pEntity);
|
|
||||||
if (pPlayer->rank) pPlayer->Disconnect();
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ClientPutInServer_Post( edict_t *pEntity ) {
|
|
||||||
GET_PLAYER_POINTER(pEntity)->PutInServer();
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ClientUserInfoChanged_Post( edict_t *pEntity, char *infobuffer ) {
|
|
||||||
CPlayer *pPlayer = GET_PLAYER_POINTER(pEntity);
|
|
||||||
const char* name = INFOKEY_VALUE(infobuffer,"name");
|
|
||||||
const char* oldname = STRING(pEntity->v.netname);
|
|
||||||
|
|
||||||
if ( pPlayer->rank ){
|
|
||||||
if ( strcmp(oldname,name) != 0 ) {
|
|
||||||
if ((int)csstats_rank->value == 0)
|
|
||||||
pPlayer->rank = g_rank.findEntryInRank( name, name );
|
|
||||||
else
|
|
||||||
pPlayer->rank->setName( name );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if ( pPlayer->IsBot() ) {
|
|
||||||
pPlayer->Connect( "127.0.0.1" );
|
|
||||||
pPlayer->PutInServer();
|
|
||||||
}
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MessageBegin_Post(int msg_dest, int msg_type, const float *pOrigin, edict_t *ed) {
|
|
||||||
if (ed){
|
|
||||||
mPlayerIndex = ENTINDEX(ed);
|
|
||||||
mPlayer = GET_PLAYER_POINTER_I(mPlayerIndex);
|
|
||||||
} else {
|
|
||||||
mPlayerIndex = 0;
|
|
||||||
mPlayer = 0;
|
|
||||||
}
|
|
||||||
mState = 0;
|
|
||||||
if ( msg_type < 0 || msg_type >= MAX_REG_MSGS )
|
|
||||||
msg_type = 0;
|
|
||||||
function=modMsgs[msg_type];
|
|
||||||
endfunction=modMsgsEnd[msg_type];
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MessageEnd_Post(void) {
|
|
||||||
if (endfunction) (*endfunction)(NULL);
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriteByte_Post(int iValue) {
|
|
||||||
if (function) (*function)((void *)&iValue);
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriteChar_Post(int iValue) {
|
|
||||||
if (function) (*function)((void *)&iValue);
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriteShort_Post(int iValue) {
|
|
||||||
if (function) (*function)((void *)&iValue);
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriteLong_Post(int iValue) {
|
|
||||||
if (function) (*function)((void *)&iValue);
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriteAngle_Post(float flValue) {
|
|
||||||
if (function) (*function)((void *)&flValue);
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriteCoord_Post(float flValue) {
|
|
||||||
if (function) (*function)((void *)&flValue);
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriteString_Post(const char *sz) {
|
|
||||||
if (function) (*function)((void *)sz);
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriteEntity_Post(int iValue) {
|
|
||||||
if (function) (*function)((void *)&iValue);
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void StartFrame_Post(){
|
|
||||||
if (g_bombAnnounce){
|
|
||||||
switch (g_bombAnnounce){
|
|
||||||
case BOMB_PLANTING:
|
|
||||||
MF_ExecuteForward( iFBPlanting,g_Planter );
|
|
||||||
break;
|
|
||||||
case BOMB_PLANTED:
|
|
||||||
MF_ExecuteForward( iFBPlanted,g_Planter );
|
|
||||||
break;
|
|
||||||
case BOMB_EXPLODE:
|
|
||||||
MF_ExecuteForward( iFBExplode,g_Planter,g_Defuser );
|
|
||||||
break;
|
|
||||||
case BOMB_DEFUSING:
|
|
||||||
MF_ExecuteForward( iFBDefusing,g_Defuser );
|
|
||||||
break;
|
|
||||||
case BOMB_DEFUSED:
|
|
||||||
MF_ExecuteForward( iFBDefused,g_Defuser );
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
g_bombAnnounce = 0;
|
|
||||||
}
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void SetModel_Post(edict_t *e, const char *m){
|
|
||||||
|
|
||||||
if ( !isModuleActive() )
|
|
||||||
return;
|
|
||||||
|
|
||||||
if ( e->v.owner && m[7]=='w' && m[8]=='_' ){
|
|
||||||
int w_id = 0;
|
|
||||||
CPlayer *pPlayer = GET_PLAYER_POINTER(e->v.owner);
|
|
||||||
switch(m[9]){
|
|
||||||
case 'h':
|
|
||||||
w_id = CSW_HEGRENADE;
|
|
||||||
g_grenades.put(e, 2.0, 4, pPlayer);
|
|
||||||
pPlayer->saveShot(CSW_HEGRENADE);
|
|
||||||
break;
|
|
||||||
case 'f':
|
|
||||||
if (m[10]=='l') w_id = CSW_FLASHBANG;
|
|
||||||
break;
|
|
||||||
case 's':
|
|
||||||
if (m[10]=='m') w_id = CSW_SMOKEGRENADE;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if ( w_id )
|
|
||||||
MF_ExecuteForward( iFGrenade, pPlayer->index, ENTINDEX(e) ,w_id );
|
|
||||||
}
|
|
||||||
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void EmitSound_Post(edict_t *entity, int channel, const char *sample, /*int*/float volume, float attenuation, int fFlags, int pitch) {
|
|
||||||
if (sample[0]=='w'&&sample[1]=='e'&&sample[8]=='k'&&sample[9]=='n'&&sample[14]!='d'){
|
|
||||||
CPlayer*pPlayer = GET_PLAYER_POINTER(entity);
|
|
||||||
pPlayer->saveShot(pPlayer->current);
|
|
||||||
}
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void TraceLine_Post(const float *v1, const float *v2, int fNoMonsters, edict_t *e, TraceResult *ptr) {
|
|
||||||
if (ptr->pHit&&(ptr->pHit->v.flags& (FL_CLIENT | FL_FAKECLIENT) )&&
|
|
||||||
e&&(e->v.flags& (FL_CLIENT | FL_FAKECLIENT) )&&ptr->iHitgroup)
|
|
||||||
GET_PLAYER_POINTER(e)->aiming = ptr->iHitgroup;
|
|
||||||
RETURN_META(MRES_IGNORED);
|
|
||||||
}
|
|
||||||
|
|
||||||
void OnMetaAttach() {
|
|
||||||
|
|
||||||
CVAR_REGISTER (&init_csstats_maxsize);
|
|
||||||
CVAR_REGISTER (&init_csstats_reset);
|
|
||||||
CVAR_REGISTER (&init_csstats_rank);
|
|
||||||
csstats_maxsize=CVAR_GET_POINTER(init_csstats_maxsize.name);
|
|
||||||
csstats_reset=CVAR_GET_POINTER(init_csstats_reset.name);
|
|
||||||
csstats_rank=CVAR_GET_POINTER(init_csstats_rank.name);
|
|
||||||
|
|
||||||
CVAR_REGISTER (&init_csstats_rankbots);
|
|
||||||
CVAR_REGISTER (&init_csstats_pause);
|
|
||||||
csstats_rankbots = CVAR_GET_POINTER(init_csstats_rankbots.name);
|
|
||||||
csstats_pause = CVAR_GET_POINTER(init_csstats_pause.name);
|
|
||||||
}
|
|
||||||
|
|
||||||
void OnAmxxAttach(){
|
|
||||||
MF_AddNatives(stats_Natives);
|
|
||||||
const char* path = get_localinfo("csstats_score");
|
|
||||||
if ( path && *path )
|
|
||||||
{
|
|
||||||
char error[128];
|
|
||||||
g_rank.loadCalc( MF_BuildPathname("%s",path) , error );
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( !g_rank.begin() )
|
|
||||||
{
|
|
||||||
g_rank.loadRank( MF_BuildPathname("%s",
|
|
||||||
get_localinfo("csstats") ) );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void OnAmxxDetach() {
|
|
||||||
g_grenades.clear();
|
|
||||||
g_rank.clear();
|
|
||||||
g_rank.unloadCalc();
|
|
||||||
}
|
|
||||||
|
|
||||||
void OnPluginsLoaded(){
|
|
||||||
iFDeath = MF_RegisterForward("client_death",ET_IGNORE,FP_CELL,FP_CELL,FP_CELL,FP_CELL,FP_CELL,FP_DONE);
|
|
||||||
iFDamage = MF_RegisterForward("client_damage",ET_IGNORE,FP_CELL,FP_CELL,FP_CELL,FP_CELL,FP_CELL,FP_CELL,FP_DONE);
|
|
||||||
iFBPlanted = MF_RegisterForward("bomb_planted",ET_IGNORE,FP_CELL,FP_DONE);
|
|
||||||
iFBDefused = MF_RegisterForward("bomb_defused",ET_IGNORE,FP_CELL,FP_DONE);
|
|
||||||
iFBPlanting = MF_RegisterForward("bomb_planting",ET_IGNORE,FP_CELL,FP_DONE);
|
|
||||||
iFBDefusing = MF_RegisterForward("bomb_defusing",ET_IGNORE,FP_CELL,FP_DONE);
|
|
||||||
iFBExplode = MF_RegisterForward("bomb_explode",ET_IGNORE,FP_CELL,FP_CELL,FP_DONE);
|
|
||||||
iFGrenade = MF_RegisterForward("grenade_throw",ET_IGNORE,FP_CELL,FP_CELL,FP_CELL,FP_DONE);
|
|
||||||
}
|
|
@ -1,462 +0,0 @@
|
|||||||
// Configuration
|
|
||||||
|
|
||||||
#ifndef __MODULECONFIG_H__
|
|
||||||
#define __MODULECONFIG_H__
|
|
||||||
|
|
||||||
// Module info
|
|
||||||
#define MODULE_NAME "CSX"
|
|
||||||
#define MODULE_VERSION "0.20"
|
|
||||||
#define MODULE_AUTHOR "AMXx Dev Team"
|
|
||||||
#define MODULE_URL "http://www.amxmodx.org/"
|
|
||||||
#define MODULE_LOGTAG "CSX"
|
|
||||||
// If you want the module not to be reloaded on mapchange, remove / comment out the next line
|
|
||||||
#define MODULE_RELOAD_ON_MAPCHANGE
|
|
||||||
|
|
||||||
#ifdef __DATE__
|
|
||||||
#define MODULE_DATE __DATE__
|
|
||||||
#else // __DATE__
|
|
||||||
#define MODULE_DATE "Unknown"
|
|
||||||
#endif // __DATE__
|
|
||||||
|
|
||||||
// metamod plugin?
|
|
||||||
#define USE_METAMOD
|
|
||||||
|
|
||||||
// - AMXX Init functions
|
|
||||||
// Also consider using FN_META_*
|
|
||||||
// AMXX query
|
|
||||||
//#define FN_AMXX_QUERY OnAmxxQuery
|
|
||||||
// AMXX attach
|
|
||||||
// Do native functions init here (MF_AddNatives)
|
|
||||||
#define FN_AMXX_ATTACH OnAmxxAttach
|
|
||||||
// AMXX detach
|
|
||||||
#define FN_AMXX_DETACH OnAmxxDetach
|
|
||||||
// All plugins loaded
|
|
||||||
// Do forward functions init here (MF_RegisterForward)
|
|
||||||
#define FN_AMXX_PLUGINSLOADED OnPluginsLoaded
|
|
||||||
|
|
||||||
/**** METAMOD ****/
|
|
||||||
// If your module doesn't use metamod, you may close the file now :)
|
|
||||||
#ifdef USE_METAMOD
|
|
||||||
// ----
|
|
||||||
// Hook Functions
|
|
||||||
// Uncomment these to be called
|
|
||||||
// You can also change the function name
|
|
||||||
|
|
||||||
// - Metamod init functions
|
|
||||||
// Also consider using FN_AMXX_*
|
|
||||||
// Meta query
|
|
||||||
//#define FN_META_QUERY OnMetaQuery
|
|
||||||
// Meta attach
|
|
||||||
#define FN_META_ATTACH OnMetaAttach
|
|
||||||
// Meta detach
|
|
||||||
//#define FN_META_DETACH OnMetaDetach
|
|
||||||
|
|
||||||
// (wd) are Will Day's notes
|
|
||||||
// - GetEntityAPI2 functions
|
|
||||||
// #define FN_GameDLLInit GameDLLInit /* pfnGameInit() */
|
|
||||||
// #define FN_DispatchSpawn DispatchSpawn /* pfnSpawn() */
|
|
||||||
// #define FN_DispatchThink DispatchThink /* pfnThink() */
|
|
||||||
// #define FN_DispatchUse DispatchUse /* pfnUse() */
|
|
||||||
// #define FN_DispatchTouch DispatchTouch /* pfnTouch() */
|
|
||||||
// #define FN_DispatchBlocked DispatchBlocked /* pfnBlocked() */
|
|
||||||
// #define FN_DispatchKeyValue DispatchKeyValue /* pfnKeyValue() */
|
|
||||||
// #define FN_DispatchSave DispatchSave /* pfnSave() */
|
|
||||||
// #define FN_DispatchRestore DispatchRestore /* pfnRestore() */
|
|
||||||
// #define FN_DispatchObjectCollsionBox DispatchObjectCollsionBox /* pfnSetAbsBox() */
|
|
||||||
// #define FN_SaveWriteFields SaveWriteFields /* pfnSaveWriteFields() */
|
|
||||||
// #define FN_SaveReadFields SaveReadFields /* pfnSaveReadFields() */
|
|
||||||
// #define FN_SaveGlobalState SaveGlobalState /* pfnSaveGlobalState() */
|
|
||||||
// #define FN_RestoreGlobalState RestoreGlobalState /* pfnRestoreGlobalState() */
|
|
||||||
// #define FN_ResetGlobalState ResetGlobalState /* pfnResetGlobalState() */
|
|
||||||
// #define FN_ClientConnect ClientConnect /* pfnClientConnect() (wd) Client has connected */
|
|
||||||
#define FN_ClientDisconnect ClientDisconnect /* pfnClientDisconnect() (wd) Player has left the game */
|
|
||||||
// #define FN_ClientKill ClientKill /* pfnClientKill() (wd) Player has typed "kill" */
|
|
||||||
// #define FN_ClientPutInServer ClientPutInServer /* pfnClientPutInServer() (wd) Client is entering the game */
|
|
||||||
// #define FN_ClientCommand ClientCommand /* pfnClientCommand() (wd) Player has sent a command (typed or from a bind) */
|
|
||||||
// #define FN_ClientUserInfoChanged ClientUserInfoChanged /* pfnClientUserInfoChanged() (wd) Client has updated their setinfo structure */
|
|
||||||
// #define FN_ServerActivate ServerActivate /* pfnServerActivate() (wd) Server is starting a new map */
|
|
||||||
#define FN_ServerDeactivate ServerDeactivate /* pfnServerDeactivate() (wd) Server is leaving the map (shutdown or changelevel); SDK2 */
|
|
||||||
// #define FN_PlayerPreThink PlayerPreThink /* pfnPlayerPreThink() */
|
|
||||||
// #define FN_PlayerPostThink PlayerPostThink /* pfnPlayerPostThink() */
|
|
||||||
// #define FN_StartFrame StartFrame /* pfnStartFrame() */
|
|
||||||
// #define FN_ParmsNewLevel ParmsNewLevel /* pfnParmsNewLevel() */
|
|
||||||
// #define FN_ParmsChangeLevel ParmsChangeLevel /* pfnParmsChangeLevel() */
|
|
||||||
// #define FN_GetGameDescription GetGameDescription /* pfnGetGameDescription() Returns string describing current .dll. E.g. "TeamFotrress 2" "Half-Life" */
|
|
||||||
// #define FN_PlayerCustomization PlayerCustomization /* pfnPlayerCustomization() Notifies .dll of new customization for player. */
|
|
||||||
// #define FN_SpectatorConnect SpectatorConnect /* pfnSpectatorConnect() Called when spectator joins server */
|
|
||||||
// #define FN_SpectatorDisconnect SpectatorDisconnect /* pfnSpectatorDisconnect() Called when spectator leaves the server */
|
|
||||||
// #define FN_SpectatorThink SpectatorThink /* pfnSpectatorThink() Called when spectator sends a command packet (usercmd_t) */
|
|
||||||
// #define FN_Sys_Error Sys_Error /* pfnSys_Error() Notify game .dll that engine is going to shut down. Allows mod authors to set a breakpoint. SDK2 */
|
|
||||||
// #define FN_PM_Move PM_Move /* pfnPM_Move() (wd) SDK2 */
|
|
||||||
// #define FN_PM_Init PM_Init /* pfnPM_Init() Server version of player movement initialization; (wd) SDK2 */
|
|
||||||
// #define FN_PM_FindTextureType PM_FindTextureType /* pfnPM_FindTextureType() (wd) SDK2 */
|
|
||||||
// #define FN_SetupVisibility SetupVisibility /* pfnSetupVisibility() Set up PVS and PAS for networking for this client; (wd) SDK2 */
|
|
||||||
// #define FN_UpdateClientData UpdateClientData /* pfnUpdateClientData() Set up data sent only to specific client; (wd) SDK2 */
|
|
||||||
// #define FN_AddToFullPack AddToFullPack /* pfnAddToFullPack() (wd) SDK2 */
|
|
||||||
// #define FN_CreateBaseline CreateBaseline /* pfnCreateBaseline() Tweak entity baseline for network encoding allows setup of player baselines too.; (wd) SDK2 */
|
|
||||||
// #define FN_RegisterEncoders RegisterEncoders /* pfnRegisterEncoders() Callbacks for network encoding; (wd) SDK2 */
|
|
||||||
// #define FN_GetWeaponData GetWeaponData /* pfnGetWeaponData() (wd) SDK2 */
|
|
||||||
// #define FN_CmdStart CmdStart /* pfnCmdStart() (wd) SDK2 */
|
|
||||||
// #define FN_CmdEnd CmdEnd /* pfnCmdEnd() (wd) SDK2 */
|
|
||||||
// #define FN_ConnectionlessPacket ConnectionlessPacket /* pfnConnectionlessPacket() (wd) SDK2 */
|
|
||||||
// #define FN_GetHullBounds GetHullBounds /* pfnGetHullBounds() (wd) SDK2 */
|
|
||||||
// #define FN_CreateInstancedBaselines CreateInstancedBaselines /* pfnCreateInstancedBaselines() (wd) SDK2 */
|
|
||||||
// #define FN_InconsistentFile InconsistentFile /* pfnInconsistentFile() (wd) SDK2 */
|
|
||||||
// #define FN_AllowLagCompensation AllowLagCompensation /* pfnAllowLagCompensation() (wd) SDK2 */
|
|
||||||
|
|
||||||
// - GetEntityAPI2_Post functions
|
|
||||||
// #define FN_GameDLLInit_Post GameDLLInit_Post
|
|
||||||
// #define FN_DispatchSpawn_Post DispatchSpawn_Post
|
|
||||||
// #define FN_DispatchThink_Post DispatchThink_Post
|
|
||||||
// #define FN_DispatchUse_Post DispatchUse_Post
|
|
||||||
// #define FN_DispatchTouch_Post DispatchTouch_Post
|
|
||||||
// #define FN_DispatchBlocked_Post DispatchBlocked_Post
|
|
||||||
// #define FN_DispatchKeyValue_Post DispatchKeyValue_Post
|
|
||||||
// #define FN_DispatchSave_Post DispatchSave_Post
|
|
||||||
// #define FN_DispatchRestore_Post DispatchRestore_Post
|
|
||||||
// #define FN_DispatchObjectCollsionBox_Post DispatchObjectCollsionBox_Post
|
|
||||||
// #define FN_SaveWriteFields_Post SaveWriteFields_Post
|
|
||||||
// #define FN_SaveReadFields_Post SaveReadFields_Post
|
|
||||||
// #define FN_SaveGlobalState_Post SaveGlobalState_Post
|
|
||||||
// #define FN_RestoreGlobalState_Post RestoreGlobalState_Post
|
|
||||||
// #define FN_ResetGlobalState_Post ResetGlobalState_Post
|
|
||||||
#define FN_ClientConnect_Post ClientConnect_Post
|
|
||||||
// #define FN_ClientDisconnect_Post ClientDisconnect_Post
|
|
||||||
// #define FN_ClientKill_Post ClientKill_Post
|
|
||||||
#define FN_ClientPutInServer_Post ClientPutInServer_Post
|
|
||||||
// #define FN_ClientCommand_Post ClientCommand_Post
|
|
||||||
#define FN_ClientUserInfoChanged_Post ClientUserInfoChanged_Post
|
|
||||||
#define FN_ServerActivate_Post ServerActivate_Post
|
|
||||||
// #define FN_ServerDeactivate_Post ServerDeactivate_Post
|
|
||||||
#define FN_PlayerPreThink_Post PlayerPreThink_Post
|
|
||||||
// #define FN_PlayerPostThink_Post PlayerPostThink_Post
|
|
||||||
#define FN_StartFrame_Post StartFrame_Post
|
|
||||||
// #define FN_ParmsNewLevel_Post ParmsNewLevel_Post
|
|
||||||
// #define FN_ParmsChangeLevel_Post ParmsChangeLevel_Post
|
|
||||||
// #define FN_GetGameDescription_Post GetGameDescription_Post
|
|
||||||
// #define FN_PlayerCustomization_Post PlayerCustomization_Post
|
|
||||||
// #define FN_SpectatorConnect_Post SpectatorConnect_Post
|
|
||||||
// #define FN_SpectatorDisconnect_Post SpectatorDisconnect_Post
|
|
||||||
// #define FN_SpectatorThink_Post SpectatorThink_Post
|
|
||||||
// #define FN_Sys_Error_Post Sys_Error_Post
|
|
||||||
// #define FN_PM_Move_Post PM_Move_Post
|
|
||||||
// #define FN_PM_Init_Post PM_Init_Post
|
|
||||||
// #define FN_PM_FindTextureType_Post PM_FindTextureType_Post
|
|
||||||
// #define FN_SetupVisibility_Post SetupVisibility_Post
|
|
||||||
// #define FN_UpdateClientData_Post UpdateClientData_Post
|
|
||||||
// #define FN_AddToFullPack_Post AddToFullPack_Post
|
|
||||||
// #define FN_CreateBaseline_Post CreateBaseline_Post
|
|
||||||
// #define FN_RegisterEncoders_Post RegisterEncoders_Post
|
|
||||||
// #define FN_GetWeaponData_Post GetWeaponData_Post
|
|
||||||
// #define FN_CmdStart_Post CmdStart_Post
|
|
||||||
// #define FN_CmdEnd_Post CmdEnd_Post
|
|
||||||
// #define FN_ConnectionlessPacket_Post ConnectionlessPacket_Post
|
|
||||||
// #define FN_GetHullBounds_Post GetHullBounds_Post
|
|
||||||
// #define FN_CreateInstancedBaselines_Post CreateInstancedBaselines_Post
|
|
||||||
// #define FN_InconsistentFile_Post InconsistentFile_Post
|
|
||||||
// #define FN_AllowLagCompensation_Post AllowLagCompensation_Post
|
|
||||||
|
|
||||||
// - GetEngineAPI functions
|
|
||||||
// #define FN_PrecacheModel PrecacheModel
|
|
||||||
// #define FN_PrecacheSound PrecacheSound
|
|
||||||
// #define FN_SetModel SetModel
|
|
||||||
// #define FN_ModelIndex ModelIndex
|
|
||||||
// #define FN_ModelFrames ModelFrames
|
|
||||||
// #define FN_SetSize SetSize
|
|
||||||
// #define FN_ChangeLevel ChangeLevel
|
|
||||||
// #define FN_GetSpawnParms GetSpawnParms
|
|
||||||
// #define FN_SaveSpawnParms SaveSpawnParms
|
|
||||||
// #define FN_VecToYaw VecToYaw
|
|
||||||
// #define FN_VecToAngles VecToAngles
|
|
||||||
// #define FN_MoveToOrigin MoveToOrigin
|
|
||||||
// #define FN_ChangeYaw ChangeYaw
|
|
||||||
// #define FN_ChangePitch ChangePitch
|
|
||||||
// #define FN_FindEntityByString FindEntityByString
|
|
||||||
// #define FN_GetEntityIllum GetEntityIllum
|
|
||||||
// #define FN_FindEntityInSphere FindEntityInSphere
|
|
||||||
// #define FN_FindClientInPVS FindClientInPVS
|
|
||||||
// #define FN_EntitiesInPVS EntitiesInPVS
|
|
||||||
// #define FN_MakeVectors MakeVectors
|
|
||||||
// #define FN_AngleVectors AngleVectors
|
|
||||||
// #define FN_CreateEntity CreateEntity
|
|
||||||
// #define FN_RemoveEntity RemoveEntity
|
|
||||||
// #define FN_CreateNamedEntity CreateNamedEntity
|
|
||||||
// #define FN_MakeStatic MakeStatic
|
|
||||||
// #define FN_EntIsOnFloor EntIsOnFloor
|
|
||||||
// #define FN_DropToFloor DropToFloor
|
|
||||||
// #define FN_WalkMove WalkMove
|
|
||||||
// #define FN_SetOrigin SetOrigin
|
|
||||||
// #define FN_EmitSound EmitSound
|
|
||||||
// #define FN_EmitAmbientSound EmitAmbientSound
|
|
||||||
// #define FN_TraceLine TraceLine
|
|
||||||
// #define FN_TraceToss TraceToss
|
|
||||||
// #define FN_TraceMonsterHull TraceMonsterHull
|
|
||||||
// #define FN_TraceHull TraceHull
|
|
||||||
// #define FN_TraceModel TraceModel
|
|
||||||
// #define FN_TraceTexture TraceTexture
|
|
||||||
// #define FN_TraceSphere TraceSphere
|
|
||||||
// #define FN_GetAimVector GetAimVector
|
|
||||||
// #define FN_ServerCommand ServerCommand
|
|
||||||
// #define FN_ServerExecute ServerExecute
|
|
||||||
// #define FN_engClientCommand engClientCommand
|
|
||||||
// #define FN_ParticleEffect ParticleEffect
|
|
||||||
// #define FN_LightStyle LightStyle
|
|
||||||
// #define FN_DecalIndex DecalIndex
|
|
||||||
// #define FN_PointContents PointContents
|
|
||||||
// #define FN_MessageBegin MessageBegin
|
|
||||||
// #define FN_MessageEnd MessageEnd
|
|
||||||
// #define FN_WriteByte WriteByte
|
|
||||||
// #define FN_WriteChar WriteChar
|
|
||||||
// #define FN_WriteShort WriteShort
|
|
||||||
// #define FN_WriteLong WriteLong
|
|
||||||
// #define FN_WriteAngle WriteAngle
|
|
||||||
// #define FN_WriteCoord WriteCoord
|
|
||||||
// #define FN_WriteString WriteString
|
|
||||||
// #define FN_WriteEntity WriteEntity
|
|
||||||
// #define FN_CVarRegister CVarRegister
|
|
||||||
// #define FN_CVarGetFloat CVarGetFloat
|
|
||||||
// #define FN_CVarGetString CVarGetString
|
|
||||||
// #define FN_CVarSetFloat CVarSetFloat
|
|
||||||
// #define FN_CVarSetString CVarSetString
|
|
||||||
// #define FN_AlertMessage AlertMessage
|
|
||||||
// #define FN_EngineFprintf EngineFprintf
|
|
||||||
// #define FN_PvAllocEntPrivateData PvAllocEntPrivateData
|
|
||||||
// #define FN_PvEntPrivateData PvEntPrivateData
|
|
||||||
// #define FN_FreeEntPrivateData FreeEntPrivateData
|
|
||||||
// #define FN_SzFromIndex SzFromIndex
|
|
||||||
// #define FN_AllocString AllocString
|
|
||||||
// #define FN_GetVarsOfEnt GetVarsOfEnt
|
|
||||||
// #define FN_PEntityOfEntOffset PEntityOfEntOffset
|
|
||||||
// #define FN_EntOffsetOfPEntity EntOffsetOfPEntity
|
|
||||||
// #define FN_IndexOfEdict IndexOfEdict
|
|
||||||
// #define FN_PEntityOfEntIndex PEntityOfEntIndex
|
|
||||||
// #define FN_FindEntityByVars FindEntityByVars
|
|
||||||
// #define FN_GetModelPtr GetModelPtr
|
|
||||||
// #define FN_RegUserMsg RegUserMsg
|
|
||||||
// #define FN_AnimationAutomove AnimationAutomove
|
|
||||||
// #define FN_GetBonePosition GetBonePosition
|
|
||||||
// #define FN_FunctionFromName FunctionFromName
|
|
||||||
// #define FN_NameForFunction NameForFunction
|
|
||||||
// #define FN_ClientPrintf ClientPrintf
|
|
||||||
// #define FN_ServerPrint ServerPrint
|
|
||||||
// #define FN_Cmd_Args Cmd_Args
|
|
||||||
// #define FN_Cmd_Argv Cmd_Argv
|
|
||||||
// #define FN_Cmd_Argc Cmd_Argc
|
|
||||||
// #define FN_GetAttachment GetAttachment
|
|
||||||
// #define FN_CRC32_Init CRC32_Init
|
|
||||||
// #define FN_CRC32_ProcessBuffer CRC32_ProcessBuffer
|
|
||||||
// #define FN_CRC32_ProcessByte CRC32_ProcessByte
|
|
||||||
// #define FN_CRC32_Final CRC32_Final
|
|
||||||
// #define FN_RandomLong RandomLong
|
|
||||||
// #define FN_RandomFloat RandomFloat
|
|
||||||
// #define FN_SetView SetView
|
|
||||||
// #define FN_Time Time
|
|
||||||
// #define FN_CrosshairAngle CrosshairAngle
|
|
||||||
// #define FN_LoadFileForMe LoadFileForMe
|
|
||||||
// #define FN_FreeFile FreeFile
|
|
||||||
// #define FN_EndSection EndSection
|
|
||||||
// #define FN_CompareFileTime CompareFileTime
|
|
||||||
// #define FN_GetGameDir GetGameDir
|
|
||||||
// #define FN_Cvar_RegisterVariable Cvar_RegisterVariable
|
|
||||||
// #define FN_FadeClientVolume FadeClientVolume
|
|
||||||
// #define FN_SetClientMaxspeed SetClientMaxspeed
|
|
||||||
// #define FN_CreateFakeClient CreateFakeClient
|
|
||||||
// #define FN_RunPlayerMove RunPlayerMove
|
|
||||||
// #define FN_NumberOfEntities NumberOfEntities
|
|
||||||
// #define FN_GetInfoKeyBuffer GetInfoKeyBuffer
|
|
||||||
// #define FN_InfoKeyValue InfoKeyValue
|
|
||||||
// #define FN_SetKeyValue SetKeyValue
|
|
||||||
// #define FN_SetClientKeyValue SetClientKeyValue
|
|
||||||
// #define FN_IsMapValid IsMapValid
|
|
||||||
// #define FN_StaticDecal StaticDecal
|
|
||||||
// #define FN_PrecacheGeneric PrecacheGeneric
|
|
||||||
// #define FN_GetPlayerUserId GetPlayerUserId
|
|
||||||
// #define FN_BuildSoundMsg BuildSoundMsg
|
|
||||||
// #define FN_IsDedicatedServer IsDedicatedServer
|
|
||||||
// #define FN_CVarGetPointer CVarGetPointer
|
|
||||||
// #define FN_GetPlayerWONId GetPlayerWONId
|
|
||||||
// #define FN_Info_RemoveKey Info_RemoveKey
|
|
||||||
// #define FN_GetPhysicsKeyValue GetPhysicsKeyValue
|
|
||||||
// #define FN_SetPhysicsKeyValue SetPhysicsKeyValue
|
|
||||||
// #define FN_GetPhysicsInfoString GetPhysicsInfoString
|
|
||||||
// #define FN_PrecacheEvent PrecacheEvent
|
|
||||||
// #define FN_PlaybackEvent PlaybackEvent
|
|
||||||
// #define FN_SetFatPVS SetFatPVS
|
|
||||||
// #define FN_SetFatPAS SetFatPAS
|
|
||||||
// #define FN_CheckVisibility CheckVisibility
|
|
||||||
// #define FN_DeltaSetField DeltaSetField
|
|
||||||
// #define FN_DeltaUnsetField DeltaUnsetField
|
|
||||||
// #define FN_DeltaAddEncoder DeltaAddEncoder
|
|
||||||
// #define FN_GetCurrentPlayer GetCurrentPlayer
|
|
||||||
// #define FN_CanSkipPlayer CanSkipPlayer
|
|
||||||
// #define FN_DeltaFindField DeltaFindField
|
|
||||||
// #define FN_DeltaSetFieldByIndex DeltaSetFieldByIndex
|
|
||||||
// #define FN_DeltaUnsetFieldByIndex DeltaUnsetFieldByIndex
|
|
||||||
// #define FN_SetGroupMask SetGroupMask
|
|
||||||
// #define FN_engCreateInstancedBaseline engCreateInstancedBaseline
|
|
||||||
// #define FN_Cvar_DirectSet Cvar_DirectSet
|
|
||||||
// #define FN_ForceUnmodified ForceUnmodified
|
|
||||||
// #define FN_GetPlayerStats GetPlayerStats
|
|
||||||
// #define FN_AddServerCommand AddServerCommand
|
|
||||||
// #define FN_Voice_GetClientListening Voice_GetClientListening
|
|
||||||
// #define FN_Voice_SetClientListening Voice_SetClientListening
|
|
||||||
// #define FN_GetPlayerAuthId GetPlayerAuthId
|
|
||||||
|
|
||||||
// - GetEngineAPI_Post functions
|
|
||||||
// #define FN_PrecacheModel_Post PrecacheModel_Post
|
|
||||||
// #define FN_PrecacheSound_Post PrecacheSound_Post
|
|
||||||
#define FN_SetModel_Post SetModel_Post
|
|
||||||
// #define FN_ModelIndex_Post ModelIndex_Post
|
|
||||||
// #define FN_ModelFrames_Post ModelFrames_Post
|
|
||||||
// #define FN_SetSize_Post SetSize_Post
|
|
||||||
// #define FN_ChangeLevel_Post ChangeLevel_Post
|
|
||||||
// #define FN_GetSpawnParms_Post GetSpawnParms_Post
|
|
||||||
// #define FN_SaveSpawnParms_Post SaveSpawnParms_Post
|
|
||||||
// #define FN_VecToYaw_Post VecToYaw_Post
|
|
||||||
// #define FN_VecToAngles_Post VecToAngles_Post
|
|
||||||
// #define FN_MoveToOrigin_Post MoveToOrigin_Post
|
|
||||||
// #define FN_ChangeYaw_Post ChangeYaw_Post
|
|
||||||
// #define FN_ChangePitch_Post ChangePitch_Post
|
|
||||||
// #define FN_FindEntityByString_Post FindEntityByString_Post
|
|
||||||
// #define FN_GetEntityIllum_Post GetEntityIllum_Post
|
|
||||||
// #define FN_FindEntityInSphere_Post FindEntityInSphere_Post
|
|
||||||
// #define FN_FindClientInPVS_Post FindClientInPVS_Post
|
|
||||||
// #define FN_EntitiesInPVS_Post EntitiesInPVS_Post
|
|
||||||
// #define FN_MakeVectors_Post MakeVectors_Post
|
|
||||||
// #define FN_AngleVectors_Post AngleVectors_Post
|
|
||||||
// #define FN_CreateEntity_Post CreateEntity_Post
|
|
||||||
// #define FN_RemoveEntity_Post RemoveEntity_Post
|
|
||||||
// #define FN_CreateNamedEntity_Post CreateNamedEntity_Post
|
|
||||||
// #define FN_MakeStatic_Post MakeStatic_Post
|
|
||||||
// #define FN_EntIsOnFloor_Post EntIsOnFloor_Post
|
|
||||||
// #define FN_DropToFloor_Post DropToFloor_Post
|
|
||||||
// #define FN_WalkMove_Post WalkMove_Post
|
|
||||||
// #define FN_SetOrigin_Post SetOrigin_Post
|
|
||||||
// #define FN_EmitSound_Post EmitSound_Post
|
|
||||||
// #define FN_EmitAmbientSound_Post EmitAmbientSound_Post
|
|
||||||
#define FN_TraceLine_Post TraceLine_Post
|
|
||||||
// #define FN_TraceToss_Post TraceToss_Post
|
|
||||||
// #define FN_TraceMonsterHull_Post TraceMonsterHull_Post
|
|
||||||
// #define FN_TraceHull_Post TraceHull_Post
|
|
||||||
// #define FN_TraceModel_Post TraceModel_Post
|
|
||||||
// #define FN_TraceTexture_Post TraceTexture_Post
|
|
||||||
// #define FN_TraceSphere_Post TraceSphere_Post
|
|
||||||
// #define FN_GetAimVector_Post GetAimVector_Post
|
|
||||||
// #define FN_ServerCommand_Post ServerCommand_Post
|
|
||||||
// #define FN_ServerExecute_Post ServerExecute_Post
|
|
||||||
// #define FN_engClientCommand_Post engClientCommand_Post
|
|
||||||
// #define FN_ParticleEffect_Post ParticleEffect_Post
|
|
||||||
// #define FN_LightStyle_Post LightStyle_Post
|
|
||||||
// #define FN_DecalIndex_Post DecalIndex_Post
|
|
||||||
// #define FN_PointContents_Post PointContents_Post
|
|
||||||
#define FN_MessageBegin_Post MessageBegin_Post
|
|
||||||
#define FN_MessageEnd_Post MessageEnd_Post
|
|
||||||
#define FN_WriteByte_Post WriteByte_Post
|
|
||||||
#define FN_WriteChar_Post WriteChar_Post
|
|
||||||
#define FN_WriteShort_Post WriteShort_Post
|
|
||||||
#define FN_WriteLong_Post WriteLong_Post
|
|
||||||
#define FN_WriteAngle_Post WriteAngle_Post
|
|
||||||
#define FN_WriteCoord_Post WriteCoord_Post
|
|
||||||
#define FN_WriteString_Post WriteString_Post
|
|
||||||
#define FN_WriteEntity_Post WriteEntity_Post
|
|
||||||
// #define FN_CVarRegister_Post CVarRegister_Post
|
|
||||||
// #define FN_CVarGetFloat_Post CVarGetFloat_Post
|
|
||||||
// #define FN_CVarGetString_Post CVarGetString_Post
|
|
||||||
// #define FN_CVarSetFloat_Post CVarSetFloat_Post
|
|
||||||
// #define FN_CVarSetString_Post CVarSetString_Post
|
|
||||||
// #define FN_AlertMessage_Post AlertMessage_Post
|
|
||||||
// #define FN_EngineFprintf_Post EngineFprintf_Post
|
|
||||||
// #define FN_PvAllocEntPrivateData_Post PvAllocEntPrivateData_Post
|
|
||||||
// #define FN_PvEntPrivateData_Post PvEntPrivateData_Post
|
|
||||||
// #define FN_FreeEntPrivateData_Post FreeEntPrivateData_Post
|
|
||||||
// #define FN_SzFromIndex_Post SzFromIndex_Post
|
|
||||||
// #define FN_AllocString_Post AllocString_Post
|
|
||||||
// #define FN_GetVarsOfEnt_Post GetVarsOfEnt_Post
|
|
||||||
// #define FN_PEntityOfEntOffset_Post PEntityOfEntOffset_Post
|
|
||||||
// #define FN_EntOffsetOfPEntity_Post EntOffsetOfPEntity_Post
|
|
||||||
// #define FN_IndexOfEdict_Post IndexOfEdict_Post
|
|
||||||
// #define FN_PEntityOfEntIndex_Post PEntityOfEntIndex_Post
|
|
||||||
// #define FN_FindEntityByVars_Post FindEntityByVars_Post
|
|
||||||
// #define FN_GetModelPtr_Post GetModelPtr_Post
|
|
||||||
#define FN_RegUserMsg_Post RegUserMsg_Post
|
|
||||||
// #define FN_AnimationAutomove_Post AnimationAutomove_Post
|
|
||||||
// #define FN_GetBonePosition_Post GetBonePosition_Post
|
|
||||||
// #define FN_FunctionFromName_Post FunctionFromName_Post
|
|
||||||
// #define FN_NameForFunction_Post NameForFunction_Post
|
|
||||||
// #define FN_ClientPrintf_Post ClientPrintf_Post
|
|
||||||
// #define FN_ServerPrint_Post ServerPrint_Post
|
|
||||||
// #define FN_Cmd_Args_Post Cmd_Args_Post
|
|
||||||
// #define FN_Cmd_Argv_Post Cmd_Argv_Post
|
|
||||||
// #define FN_Cmd_Argc_Post Cmd_Argc_Post
|
|
||||||
// #define FN_GetAttachment_Post GetAttachment_Post
|
|
||||||
// #define FN_CRC32_Init_Post CRC32_Init_Post
|
|
||||||
// #define FN_CRC32_ProcessBuffer_Post CRC32_ProcessBuffer_Post
|
|
||||||
// #define FN_CRC32_ProcessByte_Post CRC32_ProcessByte_Post
|
|
||||||
// #define FN_CRC32_Final_Post CRC32_Final_Post
|
|
||||||
// #define FN_RandomLong_Post RandomLong_Post
|
|
||||||
// #define FN_RandomFloat_Post RandomFloat_Post
|
|
||||||
// #define FN_SetView_Post SetView_Post
|
|
||||||
// #define FN_Time_Post Time_Post
|
|
||||||
// #define FN_CrosshairAngle_Post CrosshairAngle_Post
|
|
||||||
// #define FN_LoadFileForMe_Post LoadFileForMe_Post
|
|
||||||
// #define FN_FreeFile_Post FreeFile_Post
|
|
||||||
// #define FN_EndSection_Post EndSection_Post
|
|
||||||
// #define FN_CompareFileTime_Post CompareFileTime_Post
|
|
||||||
// #define FN_GetGameDir_Post GetGameDir_Post
|
|
||||||
// #define FN_Cvar_RegisterVariable_Post Cvar_RegisterVariable_Post
|
|
||||||
// #define FN_FadeClientVolume_Post FadeClientVolume_Post
|
|
||||||
// #define FN_SetClientMaxspeed_Post SetClientMaxspeed_Post
|
|
||||||
// #define FN_CreateFakeClient_Post CreateFakeClient_Post
|
|
||||||
// #define FN_RunPlayerMove_Post RunPlayerMove_Post
|
|
||||||
// #define FN_NumberOfEntities_Post NumberOfEntities_Post
|
|
||||||
// #define FN_GetInfoKeyBuffer_Post GetInfoKeyBuffer_Post
|
|
||||||
// #define FN_InfoKeyValue_Post InfoKeyValue_Post
|
|
||||||
// #define FN_SetKeyValue_Post SetKeyValue_Post
|
|
||||||
// #define FN_SetClientKeyValue_Post SetClientKeyValue_Post
|
|
||||||
// #define FN_IsMapValid_Post IsMapValid_Post
|
|
||||||
// #define FN_StaticDecal_Post StaticDecal_Post
|
|
||||||
// #define FN_PrecacheGeneric_Post PrecacheGeneric_Post
|
|
||||||
// #define FN_GetPlayerUserId_Post GetPlayerUserId_Post
|
|
||||||
// #define FN_BuildSoundMsg_Post BuildSoundMsg_Post
|
|
||||||
// #define FN_IsDedicatedServer_Post IsDedicatedServer_Post
|
|
||||||
// #define FN_CVarGetPointer_Post CVarGetPointer_Post
|
|
||||||
// #define FN_GetPlayerWONId_Post GetPlayerWONId_Post
|
|
||||||
// #define FN_Info_RemoveKey_Post Info_RemoveKey_Post
|
|
||||||
// #define FN_GetPhysicsKeyValue_Post GetPhysicsKeyValue_Post
|
|
||||||
// #define FN_SetPhysicsKeyValue_Post SetPhysicsKeyValue_Post
|
|
||||||
// #define FN_GetPhysicsInfoString_Post GetPhysicsInfoString_Post
|
|
||||||
// #define FN_PrecacheEvent_Post PrecacheEvent_Post
|
|
||||||
// #define FN_PlaybackEvent_Post PlaybackEvent_Post
|
|
||||||
// #define FN_SetFatPVS_Post SetFatPVS_Post
|
|
||||||
// #define FN_SetFatPAS_Post SetFatPAS_Post
|
|
||||||
// #define FN_CheckVisibility_Post CheckVisibility_Post
|
|
||||||
// #define FN_DeltaSetField_Post DeltaSetField_Post
|
|
||||||
// #define FN_DeltaUnsetField_Post DeltaUnsetField_Post
|
|
||||||
// #define FN_DeltaAddEncoder_Post DeltaAddEncoder_Post
|
|
||||||
// #define FN_GetCurrentPlayer_Post GetCurrentPlayer_Post
|
|
||||||
// #define FN_CanSkipPlayer_Post CanSkipPlayer_Post
|
|
||||||
// #define FN_DeltaFindField_Post DeltaFindField_Post
|
|
||||||
// #define FN_DeltaSetFieldByIndex_Post DeltaSetFieldByIndex_Post
|
|
||||||
// #define FN_DeltaUnsetFieldByIndex_Post DeltaUnsetFieldByIndex_Post
|
|
||||||
// #define FN_SetGroupMask_Post SetGroupMask_Post
|
|
||||||
// #define FN_engCreateInstancedBaseline_Post engCreateInstancedBaseline_Post
|
|
||||||
// #define FN_Cvar_DirectSet_Post Cvar_DirectSet_Post
|
|
||||||
// #define FN_ForceUnmodified_Post ForceUnmodified_Post
|
|
||||||
// #define FN_GetPlayerStats_Post GetPlayerStats_Post
|
|
||||||
// #define FN_AddServerCommand_Post AddServerCommand_Post
|
|
||||||
// #define FN_Voice_GetClientListening_Post Voice_GetClientListening_Post
|
|
||||||
// #define FN_Voice_SetClientListening_Post Voice_SetClientListening_Post
|
|
||||||
// #define FN_GetPlayerAuthId_Post GetPlayerAuthId_Post
|
|
||||||
|
|
||||||
// #define FN_OnFreeEntPrivateData OnFreeEntPrivateData
|
|
||||||
// #define FN_GameShutdown GameShutdown
|
|
||||||
// #define FN_ShouldCollide ShouldCollide
|
|
||||||
|
|
||||||
// #define FN_OnFreeEntPrivateData_Post OnFreeEntPrivateData_Post
|
|
||||||
// #define FN_GameShutdown_Post GameShutdown_Post
|
|
||||||
// #define FN_ShouldCollide_Post ShouldCollide_Post
|
|
||||||
|
|
||||||
|
|
||||||
#endif // USE_METAMOD
|
|
||||||
|
|
||||||
#endif // __MODULECONFIG_H__
|
|
@ -1,149 +0,0 @@
|
|||||||
# Microsoft Developer Studio Project File - Name="csx" - Package Owner=<4>
|
|
||||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
|
||||||
# ** DO NOT EDIT **
|
|
||||||
|
|
||||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
|
||||||
|
|
||||||
CFG=csx - Win32 Debug
|
|
||||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
|
||||||
!MESSAGE use the Export Makefile command and run
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "csx.mak".
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE You can specify a configuration when running NMAKE
|
|
||||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE NMAKE /f "csx.mak" CFG="csx - Win32 Debug"
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE Possible choices for configuration are:
|
|
||||||
!MESSAGE
|
|
||||||
!MESSAGE "csx - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
|
|
||||||
!MESSAGE "csx - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
|
|
||||||
!MESSAGE
|
|
||||||
|
|
||||||
# Begin Project
|
|
||||||
# PROP AllowPerConfigDependencies 0
|
|
||||||
# PROP Scc_ProjName ""
|
|
||||||
# PROP Scc_LocalPath ""
|
|
||||||
CPP=cl.exe
|
|
||||||
MTL=midl.exe
|
|
||||||
RSC=rc.exe
|
|
||||||
|
|
||||||
!IF "$(CFG)" == "csx - Win32 Release"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 0
|
|
||||||
# PROP BASE Output_Dir "Release"
|
|
||||||
# PROP BASE Intermediate_Dir "Release"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 0
|
|
||||||
# PROP Output_Dir "release"
|
|
||||||
# PROP Intermediate_Dir "release"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "csx_EXPORTS" /YX /FD /c
|
|
||||||
# ADD CPP /nologo /Zp4 /MT /W3 /GX /O2 /I "..\..\metamod" /I "..\..\sdk\common" /I "..\..\sdk\engine" /I "..\..\sdk\dlls" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "csx_EXPORTS" /D "JIT" /FR /YX /FD /c
|
|
||||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
|
||||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
|
||||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 /out:"release/csx_amxx.dll"
|
|
||||||
# SUBTRACT LINK32 /pdb:none
|
|
||||||
|
|
||||||
!ELSEIF "$(CFG)" == "csx - Win32 Debug"
|
|
||||||
|
|
||||||
# PROP BASE Use_MFC 0
|
|
||||||
# PROP BASE Use_Debug_Libraries 1
|
|
||||||
# PROP BASE Output_Dir "Debug"
|
|
||||||
# PROP BASE Intermediate_Dir "Debug"
|
|
||||||
# PROP BASE Target_Dir ""
|
|
||||||
# PROP Use_MFC 0
|
|
||||||
# PROP Use_Debug_Libraries 1
|
|
||||||
# PROP Output_Dir "debug"
|
|
||||||
# PROP Intermediate_Dir "debug"
|
|
||||||
# PROP Ignore_Export_Lib 0
|
|
||||||
# PROP Target_Dir ""
|
|
||||||
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "csx_EXPORTS" /YX /FD /GZ /c
|
|
||||||
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "..\..\metamod" /I "..\..\sdk\common" /I "..\..\sdk\engine" /I "..\..\sdk\dlls" /I "..\..\hlsdk\sourcecode\pm_shared" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "csx_EXPORTS" /FR /YX /FD /GZ /c
|
|
||||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
|
||||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
|
||||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
|
||||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
|
||||||
BSC32=bscmake.exe
|
|
||||||
# ADD BASE BSC32 /nologo
|
|
||||||
# ADD BSC32 /nologo
|
|
||||||
LINK32=link.exe
|
|
||||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
|
||||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /out:"debug/csx_amxx.dll" /pdbtype:sept
|
|
||||||
# SUBTRACT LINK32 /pdb:none
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# Begin Target
|
|
||||||
|
|
||||||
# Name "csx - Win32 Release"
|
|
||||||
# Name "csx - Win32 Debug"
|
|
||||||
# Begin Group "Source Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\amxxmodule.cpp
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\CMisc.cpp
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\CRank.cpp
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\meta_api.cpp
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\rank.cpp
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\usermsg.cpp
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Header Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\amxxmodule.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\CMisc.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\CRank.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\moduleconfig.h
|
|
||||||
# End Source File
|
|
||||||
# Begin Source File
|
|
||||||
|
|
||||||
SOURCE=..\rank.h
|
|
||||||
# End Source File
|
|
||||||
# End Group
|
|
||||||
# Begin Group "Resource Files"
|
|
||||||
|
|
||||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
|
||||||
# End Group
|
|
||||||
# End Target
|
|
||||||
# End Project
|
|
@ -1,29 +0,0 @@
|
|||||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
|
||||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Project: "csx"=.\csx.dsp - Package Owner=<4>
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<4>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
Global:
|
|
||||||
|
|
||||||
Package=<5>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
Package=<3>
|
|
||||||
{{{
|
|
||||||
}}}
|
|
||||||
|
|
||||||
###############################################################################
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user