mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-02 14:24:16 +01:00
1904372f67
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40134
241 lines
6.2 KiB
C++
241 lines
6.2 KiB
C++
#include <string>
|
|
#include "sourcehook_impl.h"
|
|
#include "testevents.h"
|
|
|
|
// TEST3
|
|
// Tests with inheritance / thisptroffsets
|
|
|
|
namespace
|
|
{
|
|
StateList g_States;
|
|
SourceHook::ISourceHook *g_SHPtr;
|
|
SourceHook::Plugin g_PLID;
|
|
|
|
MAKE_STATE_1(State_Func1_Called, void*); // param1: This pointer
|
|
MAKE_STATE_1(State_Func2_Called, void*); // param1: This pointer
|
|
MAKE_STATE_1(State_Func3_Called, void*); // param1: This pointer
|
|
|
|
MAKE_STATE_1(State_Func1H_Called, void*);
|
|
MAKE_STATE_1(State_Func2H_Called, void*);
|
|
MAKE_STATE_1(State_Func3H_Called, void*);
|
|
|
|
class Base1
|
|
{
|
|
int a;
|
|
public:
|
|
virtual void Func1()
|
|
{
|
|
ADD_STATE(State_Func1_Called(reinterpret_cast<void*>(this)));
|
|
}
|
|
};
|
|
class Base2
|
|
{
|
|
int b;
|
|
public:
|
|
virtual void Func2()
|
|
{
|
|
ADD_STATE(State_Func2_Called(reinterpret_cast<void*>(this)));
|
|
}
|
|
};
|
|
class Derived : public Base1, public Base2
|
|
{
|
|
int c;
|
|
public:
|
|
virtual void Func3()
|
|
{
|
|
ADD_STATE(State_Func3_Called(reinterpret_cast<void*>(this)));
|
|
}
|
|
};
|
|
|
|
SH_DECL_HOOK0_void(Derived, Func1, SH_NOATTRIB, 0);
|
|
SH_DECL_HOOK0_void(Derived, Func2, SH_NOATTRIB, 0);
|
|
SH_DECL_HOOK0_void(Derived, Func3, SH_NOATTRIB, 0);
|
|
SH_DECL_HOOK0_void(Base1, Func1, SH_NOATTRIB, 0);
|
|
SH_DECL_HOOK0_void(Base2, Func2, SH_NOATTRIB, 0);
|
|
|
|
void Handler_Func1()
|
|
{
|
|
ADD_STATE(State_Func1H_Called(META_IFACEPTR(void)));
|
|
}
|
|
void Handler_Func2()
|
|
{
|
|
ADD_STATE(State_Func2H_Called(META_IFACEPTR(void)));
|
|
}
|
|
void Handler_Func3()
|
|
{
|
|
ADD_STATE(State_Func3H_Called(META_IFACEPTR(void)));
|
|
}
|
|
}
|
|
|
|
bool TestThisPtrOffs(std::string &error)
|
|
{
|
|
SourceHook::CSourceHookImpl g_SHImpl;
|
|
g_SHPtr = &g_SHImpl;
|
|
g_PLID = 1337;
|
|
|
|
Derived inst;
|
|
Derived *pD = &inst;
|
|
Base1 *pB1 = pD;
|
|
Base2 *pB2 = pD;
|
|
|
|
// It should be:
|
|
// pB1 = pD
|
|
// pB2 > pB1
|
|
|
|
// 1)
|
|
// Get a callclass for pD
|
|
// Verify whether the this pointers are correct
|
|
// Also call them normally to make sure that we aren't messing it up ;)
|
|
SourceHook::CallClass<Derived> *pD_CC = SH_GET_CALLCLASS(pD);
|
|
|
|
SH_CALL(pD_CC, &Derived::Func1)();
|
|
SH_CALL(pD_CC, &Derived::Func2)();
|
|
SH_CALL(pD_CC, &Derived::Func3)();
|
|
pD->Func1();
|
|
pD->Func2();
|
|
pD->Func3();
|
|
|
|
CHECK_STATES((&g_States,
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2_Called(pB2),
|
|
new State_Func3_Called(pD),
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2_Called(pB2),
|
|
new State_Func3_Called(pD),
|
|
NULL), "Part 1");
|
|
|
|
SH_CALL(pD_CC, &Base1::Func1)();
|
|
SH_CALL(pD_CC, &Base2::Func2)();
|
|
|
|
CHECK_STATES((&g_States,
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2_Called(pB2),
|
|
NULL), "Part 1.1");
|
|
|
|
// 2)
|
|
// Get callclasses for the other ones and verify it as well
|
|
|
|
SourceHook::CallClass<Base1> *pB1_CC = SH_GET_CALLCLASS(pB1);
|
|
SourceHook::CallClass<Base2> *pB2_CC = SH_GET_CALLCLASS(pB2);
|
|
|
|
SH_CALL(pB1_CC, &Base1::Func1)();
|
|
SH_CALL(pB2_CC, &Base2::Func2)();
|
|
|
|
CHECK_STATES((&g_States,
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2_Called(pB2),
|
|
NULL), "Part 2");
|
|
|
|
|
|
// 3) Add hooks on them (referring to them through pD1 / Derived)
|
|
// Check whether the hooks are called with the correct this pointer
|
|
|
|
SH_ADD_HOOK_STATICFUNC(Derived, Func1, pD, Handler_Func1, false);
|
|
SH_ADD_HOOK_STATICFUNC(Derived, Func2, pD, Handler_Func2, false);
|
|
SH_ADD_HOOK_STATICFUNC(Derived, Func3, pD, Handler_Func3, false);
|
|
|
|
pD->Func1();
|
|
pD->Func2();
|
|
pD->Func3();
|
|
pB1->Func1();
|
|
pB2->Func2();
|
|
|
|
// The handlers should always be called with the pointer to Derived
|
|
CHECK_STATES((&g_States,
|
|
new State_Func1H_Called(pD),
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2H_Called(pD),
|
|
new State_Func2_Called(pB2),
|
|
new State_Func3H_Called(pD),
|
|
new State_Func3_Called(pD),
|
|
new State_Func1H_Called(pD),
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2H_Called(pD),
|
|
new State_Func2_Called(pB2),
|
|
NULL), "Part 3");
|
|
|
|
SH_REMOVE_HOOK_STATICFUNC(Derived, Func1, pD, Handler_Func1, false);
|
|
SH_REMOVE_HOOK_STATICFUNC(Derived, Func2, pD, Handler_Func2, false);
|
|
SH_REMOVE_HOOK_STATICFUNC(Derived, Func3, pD, Handler_Func3, false);
|
|
|
|
// 4)
|
|
// Now add the hooks on Base1 and Base2 and check again
|
|
|
|
// Note that the new implicit_cast should convert the pD to Base1*/Base2* :)
|
|
SH_ADD_HOOK_STATICFUNC(Base1, Func1, pD, Handler_Func1, false);
|
|
SH_ADD_HOOK_STATICFUNC(Base2, Func2, pD, Handler_Func2, false);
|
|
SH_ADD_HOOK_STATICFUNC(Derived, Func3, pD, Handler_Func3, false);
|
|
|
|
pD->Func1();
|
|
pD->Func2();
|
|
pD->Func3();
|
|
pB1->Func1();
|
|
pB2->Func2();
|
|
|
|
// This time, the handlers for Func1 should be called with pB1 and the handlers
|
|
// for Func2 should be called with pB2
|
|
CHECK_STATES((&g_States,
|
|
new State_Func1H_Called(pB1),
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2H_Called(pB2),
|
|
new State_Func2_Called(pB2),
|
|
new State_Func3H_Called(pD),
|
|
new State_Func3_Called(pD),
|
|
new State_Func1H_Called(pB1),
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2H_Called(pB2),
|
|
new State_Func2_Called(pB2),
|
|
NULL), "Part 4");
|
|
|
|
SH_REMOVE_HOOK_STATICFUNC(Base1, Func1, pD, Handler_Func1, false);
|
|
SH_REMOVE_HOOK_STATICFUNC(Base2, Func2, pD, Handler_Func2, false);
|
|
SH_REMOVE_HOOK_STATICFUNC(Derived, Func3, pD, Handler_Func3, false);
|
|
|
|
|
|
// 5)
|
|
// Add some hooks, and use callclasses
|
|
|
|
// 5.1) First off, add all of them on pD
|
|
SH_ADD_HOOK_STATICFUNC(Derived, Func1, pD, Handler_Func1, false);
|
|
SH_ADD_HOOK_STATICFUNC(Derived, Func2, pD, Handler_Func2, false);
|
|
SH_ADD_HOOK_STATICFUNC(Derived, Func3, pD, Handler_Func3, false);
|
|
|
|
pD->Func1();
|
|
pD->Func2();
|
|
pD->Func3();
|
|
|
|
CHECK_STATES((&g_States,
|
|
new State_Func1H_Called(pD),
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2H_Called(pD),
|
|
new State_Func2_Called(pB2),
|
|
new State_Func3H_Called(pD),
|
|
new State_Func3_Called(pD),
|
|
NULL), "Part 5.1");
|
|
|
|
SH_CALL(pD_CC, &Derived::Func1)();
|
|
SH_CALL(pD_CC, &Derived::Func2)();
|
|
SH_CALL(pD_CC, &Derived::Func3)();
|
|
SH_CALL(pB1_CC, &Base1::Func1)();
|
|
SH_CALL(pB2_CC, &Base2::Func2)();
|
|
|
|
CHECK_STATES((&g_States,
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2_Called(pB2),
|
|
new State_Func3_Called(pD),
|
|
new State_Func1_Called(pB1),
|
|
new State_Func2_Called(pB2),
|
|
NULL), "Part 5.2");
|
|
|
|
SH_REMOVE_HOOK_STATICFUNC(Derived, Func1, pD, Handler_Func1, false);
|
|
SH_REMOVE_HOOK_STATICFUNC(Derived, Func2, pD, Handler_Func2, false);
|
|
SH_REMOVE_HOOK_STATICFUNC(Derived, Func3, pD, Handler_Func3, false);
|
|
|
|
SH_RELEASE_CALLCLASS(pB1_CC);
|
|
SH_RELEASE_CALLCLASS(pB2_CC);
|
|
SH_RELEASE_CALLCLASS(pD_CC);
|
|
|
|
return true;
|
|
}
|
|
|