2022-05-09 21:21:05 +02:00
|
|
|
//=============================================================================//
|
|
|
|
//
|
|
|
|
// Purpose:
|
|
|
|
//
|
|
|
|
//=============================================================================//
|
|
|
|
|
|
|
|
#include "core/stdafx.h"
|
|
|
|
#include "tier0/tslist.h"
|
|
|
|
#include "squirrel/sqvm.h"
|
|
|
|
#include "squirrel/sqstdaux.h"
|
|
|
|
|
|
|
|
bool g_bSQAuxError = false;
|
2022-05-20 01:16:30 +02:00
|
|
|
bool g_bSQAuxBadLogic = false;
|
2022-08-08 17:49:46 +02:00
|
|
|
HSQUIRRELVM g_pErrorVM = nullptr;
|
|
|
|
|
2022-05-09 21:21:05 +02:00
|
|
|
SQInteger sqstd_aux_printerror(HSQUIRRELVM v)
|
|
|
|
{
|
|
|
|
g_bSQAuxError = true;
|
|
|
|
SQInteger results = v_sqstd_aux_printerror(v);
|
|
|
|
g_bSQAuxError = false;
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
2022-05-20 01:12:05 +02:00
|
|
|
SQInteger sqstd_aux_badlogic(HSQUIRRELVM v, __m128i* a2, __m128i* a3)
|
2022-05-20 01:07:42 +02:00
|
|
|
{
|
2022-08-08 17:49:46 +02:00
|
|
|
g_pErrorVM = v;
|
|
|
|
|
2022-05-20 01:12:05 +02:00
|
|
|
SQInteger results = v_sqstd_aux_badlogic(v, a2, a3);
|
2022-05-20 01:07:42 +02:00
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
2022-05-09 21:21:05 +02:00
|
|
|
void SQAUX_Attach()
|
|
|
|
{
|
|
|
|
DetourAttach((LPVOID*)&v_sqstd_aux_printerror, &sqstd_aux_printerror);
|
2022-05-20 01:12:05 +02:00
|
|
|
DetourAttach((LPVOID*)&v_sqstd_aux_badlogic, &sqstd_aux_badlogic);
|
2022-05-09 21:21:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SQAUX_Detach()
|
|
|
|
{
|
|
|
|
DetourDetach((LPVOID*)&v_sqstd_aux_printerror, &sqstd_aux_printerror);
|
2022-05-20 01:12:05 +02:00
|
|
|
DetourDetach((LPVOID*)&v_sqstd_aux_badlogic, &sqstd_aux_badlogic);
|
2022-05-09 21:21:05 +02:00
|
|
|
}
|