iw4x-client/src/Components/Modules/QuickPatch.hpp

39 lines
910 B
C++
Raw Normal View History

2016-08-01 11:21:46 -04:00
namespace Components
{
class QuickPatch : public Component
{
public:
typedef void(Callback)();
QuickPatch();
~QuickPatch();
2016-08-15 10:40:30 -04:00
2016-09-16 05:04:28 -04:00
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
const char* getName() { return "QuickPatch"; };
2016-08-15 10:40:30 -04:00
#endif
2016-08-01 11:21:46 -04:00
bool unitTest();
2016-09-17 08:05:01 -04:00
2016-08-01 11:21:46 -04:00
static void UnlockStats();
static void OnShutdown(Utils::Slot<Callback> callback);
2016-08-01 11:21:46 -04:00
static void OnFrame(Utils::Slot<Callback> callback);
static void Once(Utils::Slot<Callback> callback);
2016-08-01 11:21:46 -04:00
private:
static Utils::Signal<Callback> ShutdownSignal;
2016-08-01 11:21:46 -04:00
static int64_t* GetStatsID();
static void ShutdownStub(int num);
2016-08-01 11:21:46 -04:00
2016-08-07 11:52:13 -04:00
static void SelectStringTableEntryInDvarStub();
2016-08-01 11:21:46 -04:00
static int MsgReadBitsCompressCheckSV(const char *from, char *to, int size);
static int MsgReadBitsCompressCheckCL(const char *from, char *to, int size);
static void CompareMaterialStateBits();
static void testFunc();
2016-08-01 11:21:46 -04:00
};
}